diff --git a/src/components/TextInput/TextInputType.type.ts b/src/components/TextInput/TextInputType.type.ts index 07ca8ca5..8b0bea20 100644 --- a/src/components/TextInput/TextInputType.type.ts +++ b/src/components/TextInput/TextInputType.type.ts @@ -1,7 +1,3 @@ -export type TextInputType = - | 'text' - | 'email' - | 'password' - | 'search' - | 'tel' - | 'url'; +import { HTMLInputTypeAttribute } from 'react'; + +export type TextInputType = HTMLInputTypeAttribute;