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