{ "type": "composition", "npmDependencies": [], "fileDependencies": [], "id": "number-input", "file": { "name": "number-input.tsx", "content": "import { NumberInput as ChakraNumberInput } from \"@chakra-ui/react\"\nimport * as React from \"react\"\n\nexport interface NumberInputProps extends ChakraNumberInput.RootProps {}\n\nexport const NumberInputRoot = React.forwardRef<\n HTMLDivElement,\n NumberInputProps\n>(function NumberInput(props, ref) {\n const { children, ...rest } = props\n return (\n \n {children}\n \n \n \n \n \n )\n})\n\nexport const NumberInputField = ChakraNumberInput.Input\nexport const NumberInputScrubber = ChakraNumberInput.Scrubber\nexport const NumberInputLabel = ChakraNumberInput.Label\n" }, "component": "NumberInput" }