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 5cc1e9f commit 6b168d6Copy full SHA for 6b168d6
site/src/components/EmptyState/EmptyState.stories.tsx
@@ -13,11 +13,17 @@ const meta: Meta<typeof EmptyState> = {
13
export default meta;
14
type Story = StoryObj<typeof EmptyState>;
15
16
-const Example: Story = {
+export const Example: Story = {
17
args: {
18
description: "It is easy, just click the button below",
19
cta: <Button>Create workspace</Button>,
20
},
21
};
22
23
-export { Example as EmptyState };
+export const Compact: Story = {
24
+ args: {
25
+ description: "It is easy, just click the button below",
26
+ cta: <Button>Create workspace</Button>,
27
+ isCompact: true,
28
+ },
29
+};
0 commit comments