Skip to content

Commit

Permalink
fix: add IconGift stories
Browse files Browse the repository at this point in the history
  • Loading branch information
RamRamez committed Aug 29, 2023
1 parent 26bdc32 commit bfb4cbc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/stories/icons/IconGift.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
import { IconGift } from '../../components';

export default {
title: 'Example/Icons/Gift',
component: IconGift,
} as ComponentMeta<typeof IconGift>;

const Template: ComponentStory<typeof IconGift> = args => (
<IconGift {...args} />
);

export const ArrowLeft = Template.bind({});
ArrowLeft.storyName = 'Gift';
ArrowLeft.args = {
color: 'white',
size: 32,
};

0 comments on commit bfb4cbc

Please sign in to comment.