| 4 | import { cn } from "@/lib/utils"; |
| 5 | |
| 6 | interface ComponentPreviewProps |
| 7 | extends Omit<React.ComponentProps<"div">, "ref"> { |
| 8 | name: string; |
| 9 | align?: "center" | "start" | "end"; |
| 10 | description?: string; |
| 11 | hideCode?: boolean; |
| 12 | } |
| 13 | |
| 14 | export function ComponentPreview({ |
| 15 | name, |
nothing calls this directly
no outgoing calls
no test coverage detected