diff --git a/src/components/Text/Text.stories.tsx b/src/components/Text/Text.stories.tsx index 5e813510..e97e7c75 100644 --- a/src/components/Text/Text.stories.tsx +++ b/src/components/Text/Text.stories.tsx @@ -43,8 +43,21 @@ type Story = StoryObj; export const Default: Story = { args: { - children: 'This is a paragraph of text.', + children: + 'This is a paragraph of text that demonstrates how the Text component works with different options including truncation.', + variant: 'default', + size: 'base', + weight: 'normal', + align: 'left', + truncate: false, }, + decorators: [ + (Story) => ( +
+ +
+ ), + ], }; export const AllVariants: Story = {