Skip to content

Commit

Permalink
chore: pick type to InputHTMLAttributes (#6290)
Browse files Browse the repository at this point in the history
  • Loading branch information
1587315093 authored Aug 7, 2023
1 parent 121468b commit 180f18d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ export type InputProps = Pick<
| 'onClick'
| 'step'
| 'id'
| 'placeholder'
| 'readOnly'
| 'disabled'
> & {
value?: string
defaultValue?: string
onChange?: (val: string) => void
placeholder?: string
disabled?: boolean
readOnly?: boolean
clearable?: boolean
onlyShowClearWhenFocus?: boolean
onClear?: () => void
Expand Down

0 comments on commit 180f18d

Please sign in to comment.