{ "type": "composition", "npmDependencies": [], "fileDependencies": [], "id": "pin-input", "file": { "name": "pin-input.tsx", "content": "import { PinInput as ChakraPinInput, Group } from \"@chakra-ui/react\"\nimport * as React from \"react\"\n\nexport interface PinInputProps extends ChakraPinInput.RootProps {\n rootRef?: React.RefObject\n count?: number\n inputProps?: React.InputHTMLAttributes\n attached?: boolean\n}\n\nexport const PinInput = React.forwardRef(\n function PinInput(props, ref) {\n const { count = 4, inputProps, rootRef, attached, ...rest } = props\n return (\n \n \n \n \n {Array.from({ length: count }).map((_, index) => (\n \n ))}\n \n \n \n )\n },\n)\n" }, "component": "PinInput" }