MCPcopy Create free account
hub / github.com/TanStack/devtools / CheckboxProps

Interface CheckboxProps

packages/devtools-ui/src/components/checkbox.tsx:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { createStyles } from '../styles/use-styles'
3
4interface CheckboxProps {
5 label?: string
6 checked?: boolean
7 onChange?: (checked: boolean) => void
8 description?: string
9}
10
11export function Checkbox(props: CheckboxProps) {
12 const styles = createStyles()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected