import { classNames } from '@app/utils/classes' import { FC, PropsWithChildren } from 'react' type SectionContainerProps = PropsWithChildren<{ className?: string id?: string gapY?: boolean gapX?: boolean container?: boolean block?: boolean }> const SectionContainer: FC = ({ children, className, gapY = true, gapX = true, container, block, ...props }) => { return (
{container ? (
{block ?
{children}
: children}
) : ( children )}
) } export { SectionContainer }