(props: ComponentPropsWithRef<typeof HintText>)
| 132 | Label.displayName = "Label"; |
| 133 | |
| 134 | const Description = (props: ComponentPropsWithRef<typeof HintText>) => { |
| 135 | const { id, size } = usePinInputContext(); |
| 136 | |
| 137 | return <HintText {...props} id={"pin-input-description-" + id} role="description" className={cx(size === "xxxs" && "text-xs")} />; |
| 138 | }; |
| 139 | Description.displayName = "Description"; |
| 140 | |
| 141 | const PinInput = Root as typeof Root & { |
nothing calls this directly
no test coverage detected