diff --git a/packages/orbit-components/src/tmp-tailwind/Textarea/Textarea.stories.tsx b/packages/orbit-components/src/tmp-tailwind/Textarea/Textarea.stories.tsx new file mode 100644 index 0000000000..5760ff89c3 --- /dev/null +++ b/packages/orbit-components/src/tmp-tailwind/Textarea/Textarea.stories.tsx @@ -0,0 +1,172 @@ +import * as React from "react"; +import { action } from "@storybook/addon-actions"; +import { text, boolean, select, number } from "@storybook/addon-knobs"; + +import { SIZE_OPTIONS, RESIZE_OPTIONS } from "../../Textarea/consts"; +import RenderInRtl from "../../utils/rtl/RenderInRtl"; +import SPACINGS_AFTER from "../../common/getSpacingToken/consts"; + +import Textarea from "."; + +export default { + title: "Tailwind/Textarea", +}; + +export const Default = () => { + const label = text("Label", "Label"); + const value = text("Value", ""); + const placeholder = text("Placeholder", "Placeholder"); + + return ( +