import type {ReactNode, FC} from "react"; import {clsx} from "@heroui/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
)} */}
); };