MCPcopy Create free account
hub / github.com/evolify/dumpfun / Props

Interface Props

common/components/toggle-group.tsx:16–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14import { useMobile } from "@/hooks/media"
15
16interface 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
27export default function ToggleGroup(props: Props) {
28 const { value, onChange, responsive = true, options } = props

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected