Textarea Example
How to use this separator
Props
Name | Type | Default | Description |
---|---|---|---|
autocapitalize | boolean | false | Controls automatic capitalization in inputted text. |
autocomplete | boolean | false | Hint for form autofill feature. |
dirname | string | - | Name of form field to use for sending the element's directionality in form submission. |
disabled | boolean | false | Whether the user can interract with the input or not. |
form | Form | - | Associates the control with a form element. |
maxlength | number | undefined | - | Maximum length (number of characters) of value. |
minlength | number | undefined | - | Minimum length (number of characters) of value. |
name | string | - | Name of the form control. Submitted with the form as part of a name/value pair. |
placeholder | string | - | Text that appears in the form control when it has no value set. |
readonly | boolean | false | The value is not editable. |
required | boolean | false | A value is required or must be checked for the form to be submittable. |
value | string | - | The value of the control. When specified in the HTML, corresponds to the initial value. |
onChange | () => void | - | Triggered function when the value changes. |
Playground
Import from filigran-ui :
Import {Separator} from 'filigran-ui'
Playground
<Textarea placeholder="Insert your paragraph here" />