Text area
Last updated: 2.0.0 (18/01/2024)
Usage
import { Textarea } from "@valence-ui/core";
function MyComponent() {
const [value, setValue] = React.useState("");
return (
<Textarea
value={value}
setValue={setValue}
/>
)
}Allow resize
import { Textarea } from "@valence-ui/core";
function MyComponent() {
const [value, setValue] = React.useState("");
return (
<Textarea
value={value}
setValue={setValue}
minHeight={100}
maxHeight={250}
minWidth={300}
maxWidth={500}
/>
)
}Props
Property
Type
Description
LineWrapBehaviour
ResizeBehaviour
Last updated