Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joyce-foo committed Dec 16, 2024
1 parent 0132aec commit 9fca2b0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/camp/src/NumberInput/NumberInput.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import type { Ref } from 'react'
import { useMemo, useRef } from 'react'
import {
Box,
chakra,
NumberInputProps as ChakraNumberInputProps,
Divider,
forwardRef,
mergeThemeOverride,
NumberInputProps as ChakraNumberInputProps,
SystemStyleObject,
useFormControlProps,
useMergeRefs,
useMultiStyleConfig,
useNumberInput,
} from '@chakra-ui/react'
import type { Ref } from 'react'
import { useMemo, useRef } from 'react'

import { IconButton } from '~/IconButton'
import { BxMinus, BxPlus } from '~/icons'
Expand All @@ -31,6 +31,9 @@ export interface NumberInputProps extends ChakraNumberInputProps {
*/
showSteppers?: boolean

/**
* Merge styles for inner input field
*/
inputStyles?: SystemStyleObject
}

Expand Down

0 comments on commit 9fca2b0

Please sign in to comment.