import { Meta } from "@storybook/react"; import React, { useRef } from "react"; import { TextArea } from ":/components/Forms/TextArea/index"; import { Input } from ":/components/Forms/Input"; import { Button } from ":/components/Button"; export default { title: "Components/Forms/TextArea", component: TextArea, args: { rows: 4, }, argTypes: { variant: { control: "select", options: ["floating", "classic"], }, }, } as Meta; export const ShowCase = () => { return (