import { cn } from "@/utils/helpers"; type Props = { children: React.ReactNode; className?: string; }; export function Description({ children, className }: Readonly) { return (
{children}
); }