import { cn } from '@/lib/utils' import type { FC, ReactNode } from 'react' type Props = { children: ReactNode className?: string } export default (({ children, className }: Props) => (
{children}
)) satisfies FC