-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from Giveth/resolving_givback_icons
Fixing giveth 32 and 64 GIV economy back icons
- Loading branch information
Showing
7 changed files
with
99 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/stories/icons/GIVEconomyBack/GIVEconomyBack.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { IconGIVBack } from '../../../components/icons/giv-economy/Back/Back'; | ||
|
||
export default { | ||
title: 'Example/Icons/GIVEconomyBack/GIVEconomyBack', | ||
component: IconGIVBack, | ||
} as ComponentMeta<typeof IconGIVBack>; | ||
|
||
const Template: ComponentStory<typeof IconGIVBack> = args => ( | ||
<IconGIVBack {...args} /> | ||
); | ||
|
||
export const GIVEconomyBack = Template.bind({}); | ||
GIVEconomyBack.args = { | ||
color: 'white', | ||
size: 24, | ||
}; |
19 changes: 19 additions & 0 deletions
19
src/stories/icons/GIVEconomyBack/GIVEconomyBack16.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { IconGIVBack16 } from '../../../components/icons/giv-economy/Back/Back16'; | ||
|
||
export default { | ||
title: 'Example/Icons/GIVEconomyBack/GIVEconomyBack16', | ||
component: IconGIVBack16, | ||
} as ComponentMeta<typeof IconGIVBack16>; | ||
|
||
const Template: ComponentStory<typeof IconGIVBack16> = args => ( | ||
<IconGIVBack16 {...args} /> | ||
); | ||
|
||
export const GIVEconomyBack16 = Template.bind({}); | ||
GIVEconomyBack16.args = { | ||
color: 'white', | ||
size: 16, | ||
}; |
19 changes: 19 additions & 0 deletions
19
src/stories/icons/GIVEconomyBack/GIVEconomyBack24.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { IconGIVBack24 } from '../../../components/icons/giv-economy/Back/Back24'; | ||
|
||
export default { | ||
title: 'Example/Icons/GIVEconomyBack/GIVEconomyBack24', | ||
component: IconGIVBack24, | ||
} as ComponentMeta<typeof IconGIVBack24>; | ||
|
||
const Template: ComponentStory<typeof IconGIVBack24> = args => ( | ||
<IconGIVBack24 {...args} /> | ||
); | ||
|
||
export const GIVEconomyBack24 = Template.bind({}); | ||
GIVEconomyBack24.args = { | ||
color: 'white', | ||
size: 24, | ||
}; |
19 changes: 19 additions & 0 deletions
19
src/stories/icons/GIVEconomyBack/GIVEconomyBack32.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { IconGIVBack32 } from '../../../components/icons/giv-economy/Back/Back32'; | ||
|
||
export default { | ||
title: 'Example/Icons/GIVEconomyBack/GIVEconomyBack32', | ||
component: IconGIVBack32, | ||
} as ComponentMeta<typeof IconGIVBack32>; | ||
|
||
const Template: ComponentStory<typeof IconGIVBack32> = args => ( | ||
<IconGIVBack32 {...args} /> | ||
); | ||
|
||
export const GIVEconomyBack32 = Template.bind({}); | ||
GIVEconomyBack32.args = { | ||
color: 'white', | ||
size: 32, | ||
}; |
19 changes: 19 additions & 0 deletions
19
src/stories/icons/GIVEconomyBack/GIVEconomyBack64.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { IconGIVBack64 } from '../../../components/icons/giv-economy/Back/Back64'; | ||
|
||
export default { | ||
title: 'Example/Icons/GIVEconomyBack/GIVEconomyBack64', | ||
component: IconGIVBack64, | ||
} as ComponentMeta<typeof IconGIVBack64>; | ||
|
||
const Template: ComponentStory<typeof IconGIVBack64> = args => ( | ||
<IconGIVBack64 {...args} /> | ||
); | ||
|
||
export const GIVEconomyBack64 = Template.bind({}); | ||
GIVEconomyBack64.args = { | ||
color: 'white', | ||
size: 64, | ||
}; |