({ value }: { value: string })
| 1 | export default function MultipleOptionChip({ value }: { value: string }) { |
| 2 | return ( |
| 3 | <div className="inline-flex align-middle px-3 py-1 bg-muted rounded-full m-1"> |
| 4 | <div className="">{value}</div> |
| 5 | </div> |
| 6 | ); |
| 7 | } |
nothing calls this directly
no outgoing calls
no test coverage detected