Skip to content

Commit

Permalink
Revert "chore: NO-JIRA add all possible textInput types (#123)" (#124)
Browse files Browse the repository at this point in the history
This reverts commit d3c9c88.
  • Loading branch information
adrian-potepa authored Feb 13, 2024
1 parent d3c9c88 commit f459355
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/components/TextInput/TextInputType.type.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import { HTMLInputTypeAttribute } from 'react';

export type TextInputType = HTMLInputTypeAttribute;
export type TextInputType =
| 'text'
| 'email'
| 'password'
| 'search'
| 'tel'
| 'url';

0 comments on commit f459355

Please sign in to comment.