"use client"; import React, { useState } from "react"; import TextArea from "../components/TextArea"; export default function FormsPlayground() { const [smallValue, setSmallValue] = useState(""); const [mediumValue, setMediumValue] = useState(""); const [largeValue, setLargeValue] = useState(""); const [defaultLabelValue, setDefaultLabelValue] = useState(""); const [horizontalLabelValue, setHorizontalLabelValue] = useState(""); const [smallHorizontalValue, setSmallHorizontalValue] = useState(""); const [smallDefaultValue, setSmallDefaultValue] = useState(""); const [errorStateValue, setErrorStateValue] = useState(""); const [disabledStateValue, setDisabledStateValue] = useState(""); return (

Forms Playground

TextArea Examples

Sizes