diff --git a/src/components/TextArea/index.tsx b/src/components/TextArea/index.tsx index 45ff034..e57d3b5 100644 --- a/src/components/TextArea/index.tsx +++ b/src/components/TextArea/index.tsx @@ -16,7 +16,7 @@ type TextAreaProps = { error?: boolean; errorMessage?: string; value: string; - label: string; + label?: string; placeholder?: string; fullWidth?: boolean; onChange: (event: React.ChangeEvent) => void; @@ -25,6 +25,7 @@ type TextAreaProps = { const TextArea = ({ color = 'client', label, + placeholder, value, onChange, error, @@ -46,7 +47,12 @@ const TextArea = ({ )}
-