We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02b31fc commit 45836b1Copy full SHA for 45836b1
src/components/common/input/TextInput.tsx
@@ -3,12 +3,12 @@ import { ReactNode } from 'react'
3
import { FieldValues, UseFormRegister } from 'react-hook-form'
4
import { twMerge } from 'tailwind-merge'
5
6
-interface TextInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
+export interface TextInputProps
7
+ extends React.InputHTMLAttributes<HTMLInputElement> {
8
error?: boolean
9
register?: ReturnType<UseFormRegister<FieldValues>>
10
startAdornment?: ReactNode
11
endAdornment?: ReactNode
- className?: string
12
fullWidth?: boolean
13
}
14
0 commit comments