({
title,
description,
link,
icon: Icon,
}: ToolCardProps)
| 11 | } |
| 12 | |
| 13 | export const ToolCard = ({ |
| 14 | title, |
| 15 | description, |
| 16 | link, |
| 17 | icon: Icon, |
| 18 | }: ToolCardProps) => { |
| 19 | return ( |
| 20 | <Card |
| 21 | component={Link} |
| 22 | to={link} |
| 23 | padding="xl" |
| 24 | radius="md" |
| 25 | className={styles.toolCard} |
| 26 | prefetch="intent" |
| 27 | > |
| 28 | <Group> |
| 29 | <Icon /> |
| 30 | </Group> |
| 31 | <Title order={3} mt="md"> |
| 32 | {title} |
| 33 | </Title> |
| 34 | <Text size="sm" c="dimmed" mt="sm"> |
| 35 | {description} |
| 36 | </Text> |
| 37 | </Card> |
| 38 | ); |
| 39 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected