MCPcopy Create free account
hub / github.com/fontsource/fontsource / ToolCard

Function ToolCard

website/app/components/tools/ToolCard.tsx:13–39  ·  view source on GitHub ↗
({
	title,
	description,
	link,
	icon: Icon,
}: ToolCardProps)

Source from the content-addressed store, hash-verified

11}
12
13export 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};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected