Textarea Example

How to use this separator

Props

NameTypeDefaultDescription
autocapitalizebooleanfalseControls automatic capitalization in inputted text.
autocompletebooleanfalseHint for form autofill feature.
dirnamestring-Name of form field to use for sending the element's directionality in form submission.
disabledbooleanfalseWhether the user can interract with the input or not.
formForm-Associates the control with a form element.
maxlengthnumber | undefined-Maximum length (number of characters) of value.
minlengthnumber | undefined-Minimum length (number of characters) of value.
namestring-Name of the form control. Submitted with the form as part of a name/value pair.
placeholderstring-Text that appears in the form control when it has no value set.
readonlybooleanfalseThe value is not editable.
requiredbooleanfalseA value is required or must be checked for the form to be submittable.
valuestring-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" />