10 lines
289 B
TypeScript
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>;
|
|
}
|