chore: removed all TextArea related entities from branch as it's outiside scope of branch/issue

This commit is contained in:
utin-francis-peter
2024-07-09 13:32:46 +01:00
parent abf5b89c28
commit 0413cab0d9
3 changed files with 27 additions and 17 deletions

View File

@@ -1,5 +1,7 @@
export type TextAreaProps = {
export type InputProps = {
type: 'text' | 'number';
value: string | string[] | number;
colorVariant?: 'silver' | 'jet' | 'gray';
isAutoFocused?: boolean;
id?: string;
maxLength?: number;
@@ -17,8 +19,3 @@ export type TextAreaProps = {
e: React.KeyboardEvent<HTMLTextAreaElement | HTMLInputElement>,
) => void;
};
export type InputProps = TextAreaProps & {
type: 'text' | 'number';
colorVariant?: 'silver' | 'jet' | 'gray';
};