import { cn } from '@/lib/utils'; import { PlusIcon } from 'lucide-react'; import type { HTMLAttributes } from 'react'; type SectionProps = { sectionClassName?: string; } & HTMLAttributes; const Cross = () => (
); export const Section = ({ children, sectionClassName, className, ...props }: SectionProps) => (
{children}
);