Skip to content

Commit 45836b1

Browse files
committed
[#43] ♻️ Remove className prop from TextInputProps
1 parent 02b31fc commit 45836b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/common/input/TextInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { ReactNode } from 'react'
33
import { FieldValues, UseFormRegister } from 'react-hook-form'
44
import { twMerge } from 'tailwind-merge'
55

6-
interface TextInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
6+
export interface TextInputProps
7+
extends React.InputHTMLAttributes<HTMLInputElement> {
78
error?: boolean
89
register?: ReturnType<UseFormRegister<FieldValues>>
910
startAdornment?: ReactNode
1011
endAdornment?: ReactNode
11-
className?: string
1212
fullWidth?: boolean
1313
}
1414

0 commit comments

Comments
 (0)