MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / CheckboxProps

Interface CheckboxProps

src/components/kit/Checkbox.tsx:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { ReactNode } from "react";
4
5interface CheckboxProps {
6 value: boolean;
7 label: string;
8 onValueChange: (tableName: string, value: boolean) => void;
9}
10const Checkbox = (props: CheckboxProps & { children?: ReactNode }) => {
11 const { value, label, onValueChange, children } = props;
12 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected