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 6eb6f76 commit bb85decCopy full SHA for bb85dec
dotcom-rendering/src/components/LabsLogo/LabsLogo.stories.tsx
@@ -1,21 +1,11 @@
1
-// LabsLogo.stories.tsx
2
-import type { StoryObj } from '@storybook/react';
3
import { LabsLogo } from './LabsLogo';
4
-import type { LabsLogoProps } from './LabsLogo';
5
6
export default {
7
title: 'Components/LabsLogo',
8
component: LabsLogo,
9
};
10
11
-export const Default: StoryObj<LabsLogoProps> = {
12
- args: { size: 100 },
13
-};
14
-
15
-export const Small = () => <LabsLogo size={50} />;
16
-export const Large = () => <LabsLogo size={200} />;
17
18
-export const SizeComparison = () => (
+export const Default = () => (
19
<div style={{ display: 'flex', gap: '20px', alignItems: 'center' }}>
20
<div>
21
<LabsLogo size={50} />
0 commit comments