From 23a7e0926b32b631771c2ca6f0bded6fe1fdb9a5 Mon Sep 17 00:00:00 2001 From: Chester Sim Date: Mon, 14 Oct 2024 17:44:14 +0800 Subject: [PATCH] refactor(icons): update --- icons/src/icons/components/Calculator.tsx | 34 ++++++++++++++++++ icons/src/icons/components/EyeShow.tsx | 8 +++-- icons/src/icons/components/Health.tsx | 42 +++++++++++++++++++++++ icons/src/icons/components/Link.tsx | 28 +++++++++++++++ icons/src/icons/components/NewMarket.tsx | 6 ++-- icons/src/icons/components/Settings.tsx | 14 -------- icons/src/icons/index.ts | 3 ++ 7 files changed, 115 insertions(+), 20 deletions(-) create mode 100644 icons/src/icons/components/Calculator.tsx create mode 100644 icons/src/icons/components/Health.tsx create mode 100644 icons/src/icons/components/Link.tsx diff --git a/icons/src/icons/components/Calculator.tsx b/icons/src/icons/components/Calculator.tsx new file mode 100644 index 00000000..17f531e3 --- /dev/null +++ b/icons/src/icons/components/Calculator.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from '../../types'; +import { IconWrapper } from '../IconWrapper'; + +const Calculator = (allProps: IconProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + } + {...restProps} + /> + ); +}; +export default Calculator; diff --git a/icons/src/icons/components/EyeShow.tsx b/icons/src/icons/components/EyeShow.tsx index d3348456..b77061ef 100644 --- a/icons/src/icons/components/EyeShow.tsx +++ b/icons/src/icons/components/EyeShow.tsx @@ -16,11 +16,13 @@ const EyeShow = (allProps: IconProps) => { - diff --git a/icons/src/icons/components/Health.tsx b/icons/src/icons/components/Health.tsx new file mode 100644 index 00000000..076ab10d --- /dev/null +++ b/icons/src/icons/components/Health.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; +import { IconProps } from '../../types'; +import { IconWrapper } from '../IconWrapper'; + +const Health = (allProps: IconProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + + + + + + + } + {...restProps} + /> + ); +}; +export default Health; diff --git a/icons/src/icons/components/Link.tsx b/icons/src/icons/components/Link.tsx new file mode 100644 index 00000000..8176bf70 --- /dev/null +++ b/icons/src/icons/components/Link.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from '../../types'; +import { IconWrapper } from '../IconWrapper'; + +const Link = (allProps: IconProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + } + {...restProps} + /> + ); +}; +export default Link; diff --git a/icons/src/icons/components/NewMarket.tsx b/icons/src/icons/components/NewMarket.tsx index 99647556..f6b7447e 100644 --- a/icons/src/icons/components/NewMarket.tsx +++ b/icons/src/icons/components/NewMarket.tsx @@ -26,9 +26,9 @@ const NewMarket = (allProps: IconProps) => { y2={12} gradientUnits="userSpaceOnUse" > - - - + + + diff --git a/icons/src/icons/components/Settings.tsx b/icons/src/icons/components/Settings.tsx index 87e096dc..11acf5fc 100644 --- a/icons/src/icons/components/Settings.tsx +++ b/icons/src/icons/components/Settings.tsx @@ -13,20 +13,6 @@ const Settings = (allProps: IconProps) => { xmlns="http://www.w3.org/2000/svg" {...props} > - -