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

Interface Props

src/components/kit/Radio.tsx:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { HTMLInputTypeAttribute } from "react";
2
3interface Props {
4 value: string;
5 onChange?: (value: string) => void;
6 type?: HTMLInputTypeAttribute;
7 className?: string;
8 disabled?: boolean;
9 checked?: boolean;
10}
11
12const getDefaultProps = () => ({
13 value: "",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected