({ children }: { children: string })
| 1 | import clsx from 'clsx' |
| 2 | |
| 3 | export function Tag({ children }: { children: string }) { |
| 4 | return ( |
| 5 | <span |
| 6 | className={clsx( |
| 7 | 'text-[0.625rem] font-semibold uppercase text-red-500 ring-red-300 dark:text-red-400 dark:ring-red-400/30', |
| 8 | )} |
| 9 | > |
| 10 | {children} |
| 11 | </span> |
| 12 | ) |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected