MCPcopy
hub / github.com/untitleduico/react / RootProps

Interface RootProps

components/base/input/pin-input.tsx:36–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34};
35
36interface RootProps extends ComponentPropsWithRef<"div"> {
37 size?: PinInputSize;
38 disabled?: boolean;
39 invalid?: boolean;
40}
41
42const Root = ({ className, size = "md", disabled = false, invalid = false, ...props }: RootProps) => {
43 const id = useId();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected