2025-02-11 18:36:41 +03:00

10 lines
289 B
TypeScript

import { cn } from '@repo/ui/lib/utils';
import { type PropsWithChildren } from 'react';
export function Container({
children,
className,
}: Readonly<PropsWithChildren> & { readonly className?: string }) {
return <div className={cn('space-y-4 px-4', className)}>{children}</div>;
}