diff --git a/rsconcept/frontend/src/components/Common/TextArea.tsx b/rsconcept/frontend/src/components/Common/TextArea.tsx index fc285852..4ca8799f 100644 --- a/rsconcept/frontend/src/components/Common/TextArea.tsx +++ b/rsconcept/frontend/src/components/Common/TextArea.tsx @@ -7,18 +7,19 @@ extends Omit, 'className' | 'title'> label?: string tooltip?: string dimensions?: string + dense?: boolean colorClass?: string } function TextArea({ - id, label, required, tooltip, + id, label, required, tooltip, dense, dimensions = 'w-full', colorClass = 'clr-input', rows = 4, ...props }: TextAreaProps) { return ( -
+
{label &&