import * as React from "react"; import { Story, Meta } from "@storybook/react"; import { action } from "@storybook/addon-actions"; import { Textarea } from "../index"; import { InputAppearance } from "../../shared/types/inputAppearance"; import { InputStoryWrapper } from "../../../decorators/inputStoryWrapper"; export default { title: "Forms/Textarea", decorators: [Story => {Story()}], component: Textarea, argTypes: { hintContent: { control: { type: "text" } }, errors: { control: { disable: true } } }, args: { inputLabel: "Default Input Label", placeholder: "Placeholder" } } as Meta; const Template: Story = args =>