Skip to content

Commit 31697ae

Browse files
chore: Added horizontal-logo-light and Storybook, #issue 27 (#5879)
* chore: Added horizontal-logo-light and Storybook, #issue 27 * chore: added file horizontal-dark.svg * chore: updated horizontal-logos.stories * chore: updated horizontal-dark.svg * chore: updated horizontal-light and horizontal-dark logos * chore: updated horizontal-logos.stories.tsx * fix: code format --------- Co-authored-by: Augustin Mauroy <[email protected]>
1 parent 780ee99 commit 31697ae

File tree

3 files changed

+103
-0
lines changed

3 files changed

+103
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import Image from 'next/image';
2+
import type { Meta as MetaObj, StoryObj } from '@storybook/react';
3+
4+
export const HorizontalLogos: StoryObj = {};
5+
6+
export default {
7+
title: 'Design System/Logos',
8+
component: () => {
9+
return (
10+
<div>
11+
<Image
12+
src={`/static/images/logos/horizontal-light.svg`}
13+
className="bg-black"
14+
alt="Node.js"
15+
width={267}
16+
height={80}
17+
/>
18+
<Image
19+
src={`/static/images/logos/horizontal-dark.svg`}
20+
alt="Node.js"
21+
width={267}
22+
height={80}
23+
/>
24+
</div>
25+
);
26+
},
27+
} as MetaObj;
Lines changed: 38 additions & 0 deletions
Loading
Lines changed: 38 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)