We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 938a237 commit d9b09b6Copy full SHA for d9b09b6
packages/ui-components/src/Common/AlertBox/index.stories.tsx
@@ -104,3 +104,24 @@ export default {
104
},
105
106
} as Meta;
107
+
108
+export const SmallWindows: Story = {
109
+ render: args => (
110
+ <div className="w-200">
111
+ <AlertBox {...args} />
112
+ </div>
113
+ ),
114
+ args: {
115
+ level: 'info',
116
+ title: 'Stability: 3',
117
+ children: (
118
+ <p>
119
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Inventore,
120
+ quasi doloremque. Totam, earum velit, sunt voluptates fugiat beatae
121
+ praesentium quis magni explicabo repudiandae nam aut molestias ex ad
122
+ sequi eum!
123
+ </p>
124
125
+ size: 'default',
126
+ },
127
+};
0 commit comments