Skip to content

Commit 2876f53

Browse files
committed
feat: add Logo story
1 parent 2473832 commit 2876f53

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

src/components/Logo/Logo.stories.tsx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
export default null
1+
import * as React from "react"
2+
import { Meta, StoryObj } from "@storybook/react"
3+
4+
import LogoComponent from "."
5+
6+
const meta = {
7+
title: "Atoms / Media & Icons / Logo",
8+
component: LogoComponent,
9+
} satisfies Meta<typeof LogoComponent>
10+
11+
export default meta
12+
13+
type Story = StoryObj<typeof meta>
14+
15+
export const Logo: Story = {
16+
render: () => (
17+
<LogoComponent />
18+
),
19+
}

0 commit comments

Comments
 (0)