diff --git a/src/components/icons/CheckmarkCircle.tsx b/src/components/icons/CheckmarkCircle.tsx deleted file mode 100644 index 6520ac9..0000000 --- a/src/components/icons/CheckmarkCircle.tsx +++ /dev/null @@ -1,63 +0,0 @@ -import React, { FC } from 'react'; -import { IIconProps } from './type'; - -export const IconCheckmarkCircle: FC = ({ - size = 16, - color = 'currentColor', -}) => { - const size16 = ( - - - - ); - - const size24 = ( - - - - ); - - const size32 = ( - - - - ); - - switch (size.toString()) { - case '16': - return size16; - case '24': - return size24; - case '32': - return size32; - default: - return size16; - } -}; diff --git a/src/components/icons/CheckmarkCircleOutline.tsx b/src/components/icons/CheckmarkCircleOutline.tsx deleted file mode 100644 index 5842e0a..0000000 --- a/src/components/icons/CheckmarkCircleOutline.tsx +++ /dev/null @@ -1,63 +0,0 @@ -import React, { FC } from 'react'; -import { IIconProps } from './type'; - -export const IconCheckmarkCircleOutline: FC = ({ - size = 16, - color = 'currentColor', -}) => { - const size16 = ( - - - - ); - - const size24 = ( - - - - ); - - const size32 = ( - - - - ); - - switch (size.toString()) { - case '16': - return size16; - case '24': - return size24; - case '32': - return size32; - default: - return size16; - } -}; diff --git a/src/components/icons/Sort/Sort.tsx b/src/components/icons/Sort/Sort.tsx deleted file mode 100644 index 11bce91..0000000 --- a/src/components/icons/Sort/Sort.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React, { FC } from 'react'; -import { IIconProps } from '../type'; -import { IconSort16 } from './Sort16'; -import { IconSort24 } from './Sort24'; -import { IconSort32 } from './Sort32'; - -export const IconSort: 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/Sort/Sort16.tsx b/src/components/icons/Sort/Sort16.tsx deleted file mode 100644 index 0dc2cc1..0000000 --- a/src/components/icons/Sort/Sort16.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React, { FC } from 'react'; -import { IIconProps } from '../type'; - -export const IconSort16: FC = ({ - size = 16, - color = 'currentColor', -}) => ( - - - -); diff --git a/src/components/icons/Sort/Sort24.tsx b/src/components/icons/Sort/Sort24.tsx deleted file mode 100644 index eaa83f2..0000000 --- a/src/components/icons/Sort/Sort24.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React, { FC } from 'react'; -import { IIconProps } from '../type'; - -export const IconSort24: FC = ({ - size = 24, - color = 'currentColor', -}) => ( - - - -); diff --git a/src/components/icons/Sort/Sort32.tsx b/src/components/icons/Sort/Sort32.tsx deleted file mode 100644 index 7892a43..0000000 --- a/src/components/icons/Sort/Sort32.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import React, { FC } from 'react'; -import { IIconProps } from '../type'; - -export const IconSort32: FC = ({ - size = 32, - color = 'currentColor', -}) => ( - - - -); diff --git a/src/components/icons/Verified.tsx b/src/components/icons/Verified.tsx deleted file mode 100644 index 1b698be..0000000 --- a/src/components/icons/Verified.tsx +++ /dev/null @@ -1,63 +0,0 @@ -import React, { FC } from 'react'; -import { IIconProps } from './type'; - -export const IconVerified: FC = ({ - size = 16, - color = 'currentColor', -}) => { - const size16 = ( - - - - ); - - const size24 = ( - - - - ); - - const size32 = ( - - - - ); - - switch (size.toString()) { - case '16': - return size16; - case '24': - return size24; - case '32': - return size32; - default: - return size16; - } -}; diff --git a/src/components/icons/index.tsx b/src/components/icons/index.tsx index 2adb531..5775afa 100644 --- a/src/components/icons/index.tsx +++ b/src/components/icons/index.tsx @@ -151,6 +151,7 @@ export * from './DelegateBoost/DelegateBoost16'; export * from './DelegateBoost/DelegateBoost24'; export * from './DelegateBoost/DelegateBoost32'; export * from './Donation/Donation'; +export * from './Donation/Donation16'; export * from './Donation/Donation24'; export * from './Donation/Donation32'; export * from './Dots/Dots'; @@ -403,6 +404,10 @@ export * from './Unlock/Unlock'; export * from './Unlock/Unlock16'; export * from './Unlock/Unlock24'; export * from './Unlock/Unlock32'; +export * from './UnLockable/UnLockable'; +export * from './UnLockable/UnLockable16'; +export * from './UnLockable/UnLockable24'; +export * from './UnLockable/UnLockable32'; export * from './Unstake/Unstake'; export * from './Unstake/Unstake16'; export * from './Unstake/Unstake24'; @@ -435,3 +440,9 @@ export * from './XCircle/XCircle'; export * from './XCircle/XCircle16'; export * from './XCircle/XCircle24'; export * from './XCircle/XCircle32'; +export * from './arrows/ArrowBottom'; +export * from './arrows/ArrowTop'; +export * from './giv-economy/Back'; +export * from './giv-economy/Farm'; +export * from './giv-economy/Garden'; +export * from './giv-economy/Stream';