diff --git a/apps/storybook/stories/TextArea.stories.tsx b/apps/storybook/stories/TextArea.stories.tsx index 45178076c5e2..40dbecb4c594 100644 --- a/apps/storybook/stories/TextArea.stories.tsx +++ b/apps/storybook/stories/TextArea.stories.tsx @@ -83,6 +83,10 @@ const meta: Meta = { options: ['sm', 'md', 'lg'], description: 'Textarea size (affects padding, not height)', }, + isLoading: { + control: 'boolean', + description: 'Whether the textarea is in a loading state', + }, }, }; @@ -635,3 +639,16 @@ export const MaxLengthVariations: Story = { ); }, }; + +export const IsLoading: Story = { + render: args => { + const [value, setValue] = useState(args.value ?? ''); + return