import {ReactNode, FC} from "react"; import {Image} from "@nextui-org/react"; import {clsx} from "@nextui-org/shared-utils"; export interface BgGridContainerProps { showGradient?: boolean; children?: ReactNode; className?: string; } export const BgGridContainer: FC = ({ showGradient = true, children, className, }) => { return (
{children}
{showGradient && (
custom themes background
)}
); };