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