| 14 | import { useMobile } from "@/hooks/media" |
| 15 | |
| 16 | interface Props { |
| 17 | value: string |
| 18 | onChange: (value: string) => void |
| 19 | responsive?: boolean |
| 20 | className?: string |
| 21 | options: { |
| 22 | label: string |
| 23 | value: string |
| 24 | }[] |
| 25 | } |
| 26 | |
| 27 | export default function ToggleGroup(props: Props) { |
| 28 | const { value, onChange, responsive = true, options } = props |
nothing calls this directly
no outgoing calls
no test coverage detected