(props: CardProps)
| 1 | import { Card, type CardProps } from "@chakra-ui/react"; |
| 2 | |
| 3 | const ContentCard = (props: CardProps) => ( |
| 4 | <Card variant="outline" w="full" p={4} br={4} borderColor="gray.200" {...props} /> |
| 5 | ); |
| 6 | |
| 7 | export default ContentCard; |
nothing calls this directly
no outgoing calls
no test coverage detected