From c940ffdf9268618077d55b4d84e0a5c51cae1835 Mon Sep 17 00:00:00 2001 From: Cherik Date: Mon, 23 May 2022 14:29:16 +0430 Subject: [PATCH 1/7] add IconRocketInSpace --- .../icons/RocketInSpace/RocketInSpace.tsx | 21 +++++++++++++++++++ .../icons/RocketInSpace/RocketInSpace16.tsx | 20 ++++++++++++++++++ .../icons/RocketInSpace/RocketInSpace24.tsx | 20 ++++++++++++++++++ .../icons/RocketInSpace/RocketInSpace32.tsx | 20 ++++++++++++++++++ 4 files changed, 81 insertions(+) create mode 100644 src/components/icons/RocketInSpace/RocketInSpace.tsx create mode 100644 src/components/icons/RocketInSpace/RocketInSpace16.tsx create mode 100644 src/components/icons/RocketInSpace/RocketInSpace24.tsx create mode 100644 src/components/icons/RocketInSpace/RocketInSpace32.tsx diff --git a/src/components/icons/RocketInSpace/RocketInSpace.tsx b/src/components/icons/RocketInSpace/RocketInSpace.tsx new file mode 100644 index 0000000..c226f55 --- /dev/null +++ b/src/components/icons/RocketInSpace/RocketInSpace.tsx @@ -0,0 +1,21 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; +import { IconRocketInSpace16 } from './RocketInSpace16'; +import { IconRocketInSpace24 } from './RocketInSpace24'; +import { IconRocketInSpace32 } from './RocketInSpace32'; + +export const IconRocketInSpace: FC = ({ + size = 16, + color = 'currentColor', +}) => { + switch (size.toString()) { + case '16': + return ; + case '24': + return ; + case '32': + return ; + default: + return ; + } +}; diff --git a/src/components/icons/RocketInSpace/RocketInSpace16.tsx b/src/components/icons/RocketInSpace/RocketInSpace16.tsx new file mode 100644 index 0000000..844fdb3 --- /dev/null +++ b/src/components/icons/RocketInSpace/RocketInSpace16.tsx @@ -0,0 +1,20 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconRocketInSpace16: FC = ({ + size = 16, + color = 'currentColor', +}) => ( + + + +); diff --git a/src/components/icons/RocketInSpace/RocketInSpace24.tsx b/src/components/icons/RocketInSpace/RocketInSpace24.tsx new file mode 100644 index 0000000..29aceff --- /dev/null +++ b/src/components/icons/RocketInSpace/RocketInSpace24.tsx @@ -0,0 +1,20 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconRocketInSpace24: FC = ({ + size = 24, + color = 'currentColor', +}) => ( + + + +); diff --git a/src/components/icons/RocketInSpace/RocketInSpace32.tsx b/src/components/icons/RocketInSpace/RocketInSpace32.tsx new file mode 100644 index 0000000..20bf317 --- /dev/null +++ b/src/components/icons/RocketInSpace/RocketInSpace32.tsx @@ -0,0 +1,20 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconRocketInSpace32: FC = ({ + size = 32, + color = 'currentColor', +}) => ( + + + +); From 883faf0a8a06d98fe74742ad7f3c53ca9191ec1d Mon Sep 17 00:00:00 2001 From: Cherik Date: Mon, 23 May 2022 14:49:39 +0430 Subject: [PATCH 2/7] add AutoBoost --- src/components/icons/AutoBoost/AutoBoost.tsx | 21 ++++++++++++++++ .../icons/AutoBoost/AutoBoost16.tsx | 25 +++++++++++++++++++ .../icons/AutoBoost/AutoBoost24.tsx | 25 +++++++++++++++++++ .../icons/AutoBoost/AutoBoost32.tsx | 25 +++++++++++++++++++ 4 files changed, 96 insertions(+) create mode 100644 src/components/icons/AutoBoost/AutoBoost.tsx create mode 100644 src/components/icons/AutoBoost/AutoBoost16.tsx create mode 100644 src/components/icons/AutoBoost/AutoBoost24.tsx create mode 100644 src/components/icons/AutoBoost/AutoBoost32.tsx diff --git a/src/components/icons/AutoBoost/AutoBoost.tsx b/src/components/icons/AutoBoost/AutoBoost.tsx new file mode 100644 index 0000000..c6462cf --- /dev/null +++ b/src/components/icons/AutoBoost/AutoBoost.tsx @@ -0,0 +1,21 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; +import { IconAutoBoost16 } from './AutoBoost16'; +import { IconAutoBoost24 } from './AutoBoost24'; +import { IconAutoBoost32 } from './AutoBoost32'; + +export const IconAutoBoost: FC = ({ + size = 16, + color = 'currentColor', +}) => { + switch (size.toString()) { + case '16': + return ; + case '24': + return ; + case '32': + return ; + default: + return ; + } +}; diff --git a/src/components/icons/AutoBoost/AutoBoost16.tsx b/src/components/icons/AutoBoost/AutoBoost16.tsx new file mode 100644 index 0000000..980fc80 --- /dev/null +++ b/src/components/icons/AutoBoost/AutoBoost16.tsx @@ -0,0 +1,25 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconAutoBoost16: FC = ({ + size = 16, + color = 'currentColor', +}) => ( + + + + + +); diff --git a/src/components/icons/AutoBoost/AutoBoost24.tsx b/src/components/icons/AutoBoost/AutoBoost24.tsx new file mode 100644 index 0000000..0c18cf5 --- /dev/null +++ b/src/components/icons/AutoBoost/AutoBoost24.tsx @@ -0,0 +1,25 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconAutoBoost24: FC = ({ + size = 24, + color = 'currentColor', +}) => ( + + + + + +); diff --git a/src/components/icons/AutoBoost/AutoBoost32.tsx b/src/components/icons/AutoBoost/AutoBoost32.tsx new file mode 100644 index 0000000..123cf54 --- /dev/null +++ b/src/components/icons/AutoBoost/AutoBoost32.tsx @@ -0,0 +1,25 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconAutoBoost32: FC = ({ + size = 32, + color = 'currentColor', +}) => ( + + + + + +); From b32c7e4b851a8760fa22c2fd0a2a62057608936f Mon Sep 17 00:00:00 2001 From: Cherik Date: Mon, 23 May 2022 14:49:54 +0430 Subject: [PATCH 3/7] add DelegateBoost --- .../icons/DelegateBoost/DelegateBoost.tsx | 21 ++++++++++++++ .../icons/DelegateBoost/DelegateBoost16.tsx | 27 ++++++++++++++++++ .../icons/DelegateBoost/DelegateBoost24.tsx | 28 +++++++++++++++++++ .../icons/DelegateBoost/DelegateBoost32.tsx | 28 +++++++++++++++++++ 4 files changed, 104 insertions(+) create mode 100644 src/components/icons/DelegateBoost/DelegateBoost.tsx create mode 100644 src/components/icons/DelegateBoost/DelegateBoost16.tsx create mode 100644 src/components/icons/DelegateBoost/DelegateBoost24.tsx create mode 100644 src/components/icons/DelegateBoost/DelegateBoost32.tsx diff --git a/src/components/icons/DelegateBoost/DelegateBoost.tsx b/src/components/icons/DelegateBoost/DelegateBoost.tsx new file mode 100644 index 0000000..66cf169 --- /dev/null +++ b/src/components/icons/DelegateBoost/DelegateBoost.tsx @@ -0,0 +1,21 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; +import { IconDelegateBoost16 } from './DelegateBoost16'; +import { IconDelegateBoost24 } from './DelegateBoost24'; +import { IconDelegateBoost32 } from './DelegateBoost32'; + +export const IconDelegateBoost: FC = ({ + size = 16, + color = 'currentColor', +}) => { + switch (size.toString()) { + case '16': + return ; + case '24': + return ; + case '32': + return ; + default: + return ; + } +}; diff --git a/src/components/icons/DelegateBoost/DelegateBoost16.tsx b/src/components/icons/DelegateBoost/DelegateBoost16.tsx new file mode 100644 index 0000000..20318ff --- /dev/null +++ b/src/components/icons/DelegateBoost/DelegateBoost16.tsx @@ -0,0 +1,27 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconDelegateBoost16: FC = ({ + size = 16, + color = 'currentColor', +}) => ( + + + + + +); diff --git a/src/components/icons/DelegateBoost/DelegateBoost24.tsx b/src/components/icons/DelegateBoost/DelegateBoost24.tsx new file mode 100644 index 0000000..e187e87 --- /dev/null +++ b/src/components/icons/DelegateBoost/DelegateBoost24.tsx @@ -0,0 +1,28 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconDelegateBoost24: FC = ({ + size = 24, + color = 'currentColor', +}) => ( + + + + + +); diff --git a/src/components/icons/DelegateBoost/DelegateBoost32.tsx b/src/components/icons/DelegateBoost/DelegateBoost32.tsx new file mode 100644 index 0000000..130d7dc --- /dev/null +++ b/src/components/icons/DelegateBoost/DelegateBoost32.tsx @@ -0,0 +1,28 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconDelegateBoost32: FC = ({ + size = 32, + color = 'currentColor', +}) => ( + + + + + +); From d517513999f06542fe925ddc2c681895431eaae7 Mon Sep 17 00:00:00 2001 From: Cherik Date: Mon, 23 May 2022 14:50:12 +0430 Subject: [PATCH 4/7] add IconLock --- src/components/icons/Lock/Lock.tsx | 21 +++++++++++++++++++ src/components/icons/Lock/Lock16.tsx | 28 ++++++++++++++++++++++++++ src/components/icons/Lock/Lock24.tsx | 30 ++++++++++++++++++++++++++++ src/components/icons/Lock/Lock32.tsx | 30 ++++++++++++++++++++++++++++ 4 files changed, 109 insertions(+) create mode 100644 src/components/icons/Lock/Lock.tsx create mode 100644 src/components/icons/Lock/Lock16.tsx create mode 100644 src/components/icons/Lock/Lock24.tsx create mode 100644 src/components/icons/Lock/Lock32.tsx diff --git a/src/components/icons/Lock/Lock.tsx b/src/components/icons/Lock/Lock.tsx new file mode 100644 index 0000000..dc5b400 --- /dev/null +++ b/src/components/icons/Lock/Lock.tsx @@ -0,0 +1,21 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; +import { IconLock16 } from './Lock16'; +import { IconLock24 } from './Lock24'; +import { IconLock32 } from './Lock32'; + +export const IconLock: FC = ({ + size = 16, + color = 'currentColor', +}) => { + switch (size.toString()) { + case '16': + return ; + case '24': + return ; + case '32': + return ; + default: + return ; + } +}; diff --git a/src/components/icons/Lock/Lock16.tsx b/src/components/icons/Lock/Lock16.tsx new file mode 100644 index 0000000..e90122d --- /dev/null +++ b/src/components/icons/Lock/Lock16.tsx @@ -0,0 +1,28 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconLock16: FC = ({ + size = 16, + color = 'currentColor', +}) => ( + + + + +); diff --git a/src/components/icons/Lock/Lock24.tsx b/src/components/icons/Lock/Lock24.tsx new file mode 100644 index 0000000..febbc44 --- /dev/null +++ b/src/components/icons/Lock/Lock24.tsx @@ -0,0 +1,30 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconLock24: FC = ({ + size = 24, + color = 'currentColor', +}) => ( + + + + +); diff --git a/src/components/icons/Lock/Lock32.tsx b/src/components/icons/Lock/Lock32.tsx new file mode 100644 index 0000000..e6e321e --- /dev/null +++ b/src/components/icons/Lock/Lock32.tsx @@ -0,0 +1,30 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconLock32: FC = ({ + size = 32, + color = 'currentColor', +}) => ( + + + + +); From 6e7a35ff1562b7a9932c35aaaf57042a8c5b54da Mon Sep 17 00:00:00 2001 From: Cherik Date: Mon, 23 May 2022 14:50:21 +0430 Subject: [PATCH 5/7] add IconUnlock --- src/components/icons/Unlock/Unlock.tsx | 21 +++++++++++++++++++++ src/components/icons/Unlock/Unlock16.tsx | 22 ++++++++++++++++++++++ src/components/icons/Unlock/Unlock24.tsx | 23 +++++++++++++++++++++++ src/components/icons/Unlock/Unlock32.tsx | 23 +++++++++++++++++++++++ 4 files changed, 89 insertions(+) create mode 100644 src/components/icons/Unlock/Unlock.tsx create mode 100644 src/components/icons/Unlock/Unlock16.tsx create mode 100644 src/components/icons/Unlock/Unlock24.tsx create mode 100644 src/components/icons/Unlock/Unlock32.tsx diff --git a/src/components/icons/Unlock/Unlock.tsx b/src/components/icons/Unlock/Unlock.tsx new file mode 100644 index 0000000..4445130 --- /dev/null +++ b/src/components/icons/Unlock/Unlock.tsx @@ -0,0 +1,21 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; +import { IconUnlock16 } from './Unlock16'; +import { IconUnlock24 } from './Unlock24'; +import { IconUnlock32 } from './Unlock32'; + +export const IconUnlock: FC = ({ + size = 16, + color = 'currentColor', +}) => { + switch (size.toString()) { + case '16': + return ; + case '24': + return ; + case '32': + return ; + default: + return ; + } +}; diff --git a/src/components/icons/Unlock/Unlock16.tsx b/src/components/icons/Unlock/Unlock16.tsx new file mode 100644 index 0000000..8235db3 --- /dev/null +++ b/src/components/icons/Unlock/Unlock16.tsx @@ -0,0 +1,22 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconUnlock16: FC = ({ + size = 16, + color = 'currentColor', +}) => ( + + + +); diff --git a/src/components/icons/Unlock/Unlock24.tsx b/src/components/icons/Unlock/Unlock24.tsx new file mode 100644 index 0000000..e1323a4 --- /dev/null +++ b/src/components/icons/Unlock/Unlock24.tsx @@ -0,0 +1,23 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconUnlock24: FC = ({ + size = 24, + color = 'currentColor', +}) => ( + + + +); diff --git a/src/components/icons/Unlock/Unlock32.tsx b/src/components/icons/Unlock/Unlock32.tsx new file mode 100644 index 0000000..2d579ef --- /dev/null +++ b/src/components/icons/Unlock/Unlock32.tsx @@ -0,0 +1,23 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconUnlock32: FC = ({ + size = 32, + color = 'currentColor', +}) => ( + + + +); From ec9d6ff95bd57bb3e5a2e1a44b9deda70cb59bb7 Mon Sep 17 00:00:00 2001 From: Cherik Date: Mon, 23 May 2022 15:11:32 +0430 Subject: [PATCH 6/7] export new icons --- src/components/index.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/components/index.ts b/src/components/index.ts index 6393754..4c9d57c 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -66,6 +66,31 @@ export * from './icons/Share/Share16'; export * from './icons/Share/Share24'; export * from './icons/Share/Share32'; +export * from './icons/AutoBoost/AutoBoost'; +export * from './icons/AutoBoost/AutoBoost16'; +export * from './icons/AutoBoost/AutoBoost24'; +export * from './icons/AutoBoost/AutoBoost32'; + +export * from './icons/DelegateBoost/DelegateBoost'; +export * from './icons/DelegateBoost/DelegateBoost16'; +export * from './icons/DelegateBoost/DelegateBoost24'; +export * from './icons/DelegateBoost/DelegateBoost32'; + +export * from './icons/Lock/Lock'; +export * from './icons/Lock/Lock16'; +export * from './icons/Lock/Lock24'; +export * from './icons/Lock/Lock32'; + +export * from './icons/Unlock/Unlock'; +export * from './icons/Unlock/Unlock16'; +export * from './icons/Unlock/Unlock24'; +export * from './icons/Unlock/Unlock32'; + +export * from './icons/RocketInSpace/RocketInSpace'; +export * from './icons/RocketInSpace/RocketInSpace16'; +export * from './icons/RocketInSpace/RocketInSpace24'; +export * from './icons/RocketInSpace/RocketInSpace32'; + export * from './icons/arrowCircles/ArrowCircleBottom'; export * from './icons/arrowCircles/ArrowCircleLeft'; export * from './icons/arrowCircles/ArrowCircleRight'; From ad643d41a00786ded00ab7b36219e910bc839fa3 Mon Sep 17 00:00:00 2001 From: Cherik Date: Mon, 23 May 2022 15:13:52 +0430 Subject: [PATCH 7/7] fix: add giv power icons --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2e705ec..44d53f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@giveth/ui-design-system", - "version": "1.8.3", + "version": "1.8.4", "files": [ "/lib" ],