UNPKG

@bootstrap-styled/v4

Version:

twbs/bootstrap V4 UI Components made with bootstrap-styled. Work with css-in-js, react, styled-components, and Bootstrap Styled utilities.

23 lines (16 loc) 487 B
The `<Textarea />` component defines a multi-line text input control. This component has no props. `<Textarea />` component example: ```js import { Form, Textarea } from '$PACKAGE_NAME'; <Form> <Textarea className="w-100" name="text" id="example-text-area" /> </Form> ``` You can also use `<Input />` component of type `textarea` as below: ```js import { Form, Input } from '$PACKAGE_NAME'; <Form> <Input type="textarea" name="text" id="example-text-area-input" /> </Form> ```