diff --git a/src/components/icons/giv-economy/Back/Back32.tsx b/src/components/icons/giv-economy/Back/Back32.tsx index b3c2e31..18bdb89 100644 --- a/src/components/icons/giv-economy/Back/Back32.tsx +++ b/src/components/icons/giv-economy/Back/Back32.tsx @@ -10,11 +10,11 @@ export const IconGIVBack32: FC = ({ width={size} height={size} fill='none' - viewBox='0 0 24 24' + viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' > diff --git a/src/components/icons/giv-economy/Back/Back64.tsx b/src/components/icons/giv-economy/Back/Back64.tsx index 41e6d0a..3a5b784 100644 --- a/src/components/icons/giv-economy/Back/Back64.tsx +++ b/src/components/icons/giv-economy/Back/Back64.tsx @@ -10,11 +10,11 @@ export const IconGIVBack64: FC = ({ width={size} height={size} fill='none' - viewBox='0 0 24 24' + viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' > diff --git a/src/stories/icons/GIVEconomyBack/GIVEconomyBack.stories.tsx b/src/stories/icons/GIVEconomyBack/GIVEconomyBack.stories.tsx new file mode 100644 index 0000000..17f17b3 --- /dev/null +++ b/src/stories/icons/GIVEconomyBack/GIVEconomyBack.stories.tsx @@ -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; + +const Template: ComponentStory = args => ( + +); + +export const GIVEconomyBack = Template.bind({}); +GIVEconomyBack.args = { + color: 'white', + size: 24, +}; diff --git a/src/stories/icons/GIVEconomyBack/GIVEconomyBack16.stories.tsx b/src/stories/icons/GIVEconomyBack/GIVEconomyBack16.stories.tsx new file mode 100644 index 0000000..dc9a5b4 --- /dev/null +++ b/src/stories/icons/GIVEconomyBack/GIVEconomyBack16.stories.tsx @@ -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; + +const Template: ComponentStory = args => ( + +); + +export const GIVEconomyBack16 = Template.bind({}); +GIVEconomyBack16.args = { + color: 'white', + size: 16, +}; diff --git a/src/stories/icons/GIVEconomyBack/GIVEconomyBack24.stories.tsx b/src/stories/icons/GIVEconomyBack/GIVEconomyBack24.stories.tsx new file mode 100644 index 0000000..c81773e --- /dev/null +++ b/src/stories/icons/GIVEconomyBack/GIVEconomyBack24.stories.tsx @@ -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; + +const Template: ComponentStory = args => ( + +); + +export const GIVEconomyBack24 = Template.bind({}); +GIVEconomyBack24.args = { + color: 'white', + size: 24, +}; diff --git a/src/stories/icons/GIVEconomyBack/GIVEconomyBack32.stories.tsx b/src/stories/icons/GIVEconomyBack/GIVEconomyBack32.stories.tsx new file mode 100644 index 0000000..8e26fc1 --- /dev/null +++ b/src/stories/icons/GIVEconomyBack/GIVEconomyBack32.stories.tsx @@ -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; + +const Template: ComponentStory = args => ( + +); + +export const GIVEconomyBack32 = Template.bind({}); +GIVEconomyBack32.args = { + color: 'white', + size: 32, +}; diff --git a/src/stories/icons/GIVEconomyBack/GIVEconomyBack64.stories.tsx b/src/stories/icons/GIVEconomyBack/GIVEconomyBack64.stories.tsx new file mode 100644 index 0000000..577d776 --- /dev/null +++ b/src/stories/icons/GIVEconomyBack/GIVEconomyBack64.stories.tsx @@ -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; + +const Template: ComponentStory = args => ( + +); + +export const GIVEconomyBack64 = Template.bind({}); +GIVEconomyBack64.args = { + color: 'white', + size: 64, +};