MCPcopy Create free account
hub / github.com/cartesiancs/map3d / Description

Function Description

src/components/text/Description.tsx:4–17  ·  view source on GitHub ↗
({ children }: { children?: React.ReactNode })

Source from the content-addressed store, hash-verified

2import { DESC_COLOR } from "@/theme/color";
3
4export function Description({ children }: { children?: React.ReactNode }) {
5 return (
6 <p
7 css={css({
8 margin: 0,
9 color: DESC_COLOR,
10 fontSize: "1rem",
11 fontWeight: "400",
12 })}
13 >
14 {children}
15 </p>
16 );
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected