#
Text areas: the expandable boxes where you can type longer messages or multiple lines of text.
#
Preview
#
Code
"use client" // for nextJS
import { TextArea } from 'mvk-ui';
import './App.css'
const App = () => {
return (
<div className="app-container">
<TextArea
label="Description"
placeholder="Enter your description here"
rows={4}
/>
</div>
);
};
export default App;