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} > - -