import React from "react"; import TextArea from "../app/components/TextArea"; export default { title: "Forms/TextArea", component: TextArea, parameters: { layout: "centered", }, argTypes: { size: { control: { type: "select" }, options: ["small", "medium", "large"], }, labelVariant: { control: { type: "select" }, options: ["default", "horizontal"], }, state: { control: { type: "select" }, options: ["default", "active", "hover", "focus", "error"], }, disabled: { control: { type: "boolean" }, }, error: { control: { type: "boolean" }, }, }, }; const Template = (args) =>