({ children }: { children?: React.ReactNode })
| 2 | import { DESC_COLOR } from "@/theme/color"; |
| 3 | |
| 4 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected