| 4 | import Link from "components/common/Link"; |
| 5 | |
| 6 | export interface CardProps extends PropsWithChildren { |
| 7 | padding?: boolean; |
| 8 | link?: string; |
| 9 | className?: string; |
| 10 | externalLink?: string; |
| 11 | bordered?: boolean; |
| 12 | hoverable?: boolean; |
| 13 | } |
| 14 | |
| 15 | export default function Card({ |
| 16 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected