Textarea
A multi-line text input for longer content.
Preview
Props
| Prop | Type | Default | Description |
|---|---|---|---|
placeholder | string | — | Placeholder text |
rows | number | 4 | Visible rows |
disabled | boolean | false | Disables textarea |
value | string | — | Controlled value |
onChange | function | — | Change handler |
Usage
const { Textarea } = window.ColorSnap;
ReactDOM.createRoot(document.getElementById('root')).render(
React.createElement(Textarea, { placeholder: 'Write something...', rows: 4 })
);