| 4 | import { ChipColor } from "types"; |
| 5 | |
| 6 | export interface ChipProps { |
| 7 | size?: "small" | "large"; |
| 8 | className?: string; |
| 9 | empty?: boolean; |
| 10 | color?: ChipColor; |
| 11 | darkMode?: boolean; |
| 12 | text: string; |
| 13 | rounded?: boolean; |
| 14 | } |
| 15 | |
| 16 | export default function Chip({ |
| 17 | size, |
nothing calls this directly
no outgoing calls
no test coverage detected