mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-12-01 01:23:14 +00:00
chore: removed all TextArea related entities from branch as it's outiside scope of branch/issue
This commit is contained in:
@@ -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';
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user