import { cn } from '@/lib/utils';
function ExampleWrapper({ className, ...props }: React.ComponentProps<'div'>) {
return (
);
}
function Example({
title,
children,
className,
containerClassName,
...props
}: React.ComponentProps<'div'> & {
title?: string;
containerClassName?: string;
}) {
return (
{title && (
{title}
)}
{children}
);
}
export { ExampleWrapper, Example };