new line in input text area for build

This commit is contained in:
dal 2025-09-26 15:01:32 -06:00
parent 5ed6bdffbd
commit 6d0a8962b5
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 4 additions and 4 deletions

View File

@ -21,9 +21,9 @@ const textAreaVariants = cva('leading-1.3', {
export interface InputTextAreaProps
extends React.TextareaHTMLAttributes<HTMLTextAreaElement>,
Omit<TextareaAutosizeProps, 'style'>,
VariantProps<typeof inputTextAreaVariants>,
VariantProps<typeof textAreaVariants> {
Omit<TextareaAutosizeProps, 'style'>,
VariantProps<typeof inputTextAreaVariants>,
VariantProps<typeof textAreaVariants> {
onPressMetaEnter?: (e: React.KeyboardEvent<HTMLTextAreaElement>) => void;
onPressEnter?: (e: React.KeyboardEvent<HTMLTextAreaElement>) => void;
}
@ -94,4 +94,4 @@ export const InputTextArea = React.forwardRef<InputTextAreaRef, InputTextAreaPro
}
);
InputTextArea.displayName = 'InputTextArea';
InputTextArea.displayName = 'InputTextArea';