| 3 | import { Cloud, FileText, GitBranch, Palette, Zap } from "lucide-react" |
| 4 | |
| 5 | interface ExampleCardProps { |
| 6 | icon: React.ReactNode |
| 7 | title: string |
| 8 | description: string |
| 9 | onClick: () => void |
| 10 | isNew?: boolean |
| 11 | } |
| 12 | |
| 13 | function ExampleCard({ |
| 14 | icon, |
nothing calls this directly
no outgoing calls
no test coverage detected