MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / Checkbox

Function Checkbox

dashboard/shell/src/sdk.jsx:182–188  ·  view source on GitHub ↗
({ className, ...rest })

Source from the content-addressed store, hash-verified

180}
181
182export function Checkbox({ className, ...rest }) {
183 return React.createElement("input", {
184 type: "checkbox",
185 className: cn("ts-checkbox", className),
186 ...rest,
187 });
188}
189
190export function Select({ className, children, ...rest }) {
191 return React.createElement("select", { className: cn("ts-input", className), ...rest }, children);

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected