From 340eee82eda5fe8a89020643058f52b4a5407f8a Mon Sep 17 00:00:00 2001 From: rohitmalhotra1420 Date: Thu, 12 Sep 2024 13:42:22 +0530 Subject: [PATCH] added the new monotone icons --- .../icons/components/ArbitrumMonotone.tsx | 46 ++++++++++++++++++ src/blocks/icons/components/BnbMonotone.tsx | 48 +++++++++++++++++++ .../icons/components/EtheriumMonotone.tsx | 46 ++++++++++++++++++ .../icons/components/OptimismMonotone.tsx | 48 +++++++++++++++++++ .../icons/components/PolygonMonotone.tsx | 44 +++++++++++++++++ src/blocks/icons/components/PushMonotone.tsx | 48 +++++++++++++++++++ src/blocks/icons/index.ts | 12 +++++ 7 files changed, 292 insertions(+) create mode 100644 src/blocks/icons/components/ArbitrumMonotone.tsx create mode 100644 src/blocks/icons/components/BnbMonotone.tsx create mode 100644 src/blocks/icons/components/EtheriumMonotone.tsx create mode 100644 src/blocks/icons/components/OptimismMonotone.tsx create mode 100644 src/blocks/icons/components/PolygonMonotone.tsx create mode 100644 src/blocks/icons/components/PushMonotone.tsx diff --git a/src/blocks/icons/components/ArbitrumMonotone.tsx b/src/blocks/icons/components/ArbitrumMonotone.tsx new file mode 100644 index 0000000000..df10c1eeb0 --- /dev/null +++ b/src/blocks/icons/components/ArbitrumMonotone.tsx @@ -0,0 +1,46 @@ +import { FC } from 'react'; +import { IconWrapper } from '../IconWrapper'; +import { IconProps } from '../Icons.types'; + +const ArbitrumMonotone: FC = (allProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + + + + + + + + } + {...restProps} + /> + ); +}; + +export default ArbitrumMonotone; diff --git a/src/blocks/icons/components/BnbMonotone.tsx b/src/blocks/icons/components/BnbMonotone.tsx new file mode 100644 index 0000000000..654b4aa225 --- /dev/null +++ b/src/blocks/icons/components/BnbMonotone.tsx @@ -0,0 +1,48 @@ +import { FC } from 'react'; +import { IconWrapper } from '../IconWrapper'; +import { IconProps } from '../Icons.types'; + +const BnbMonotone: FC = (allProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + + + + + + + + + } + {...restProps} + /> + ); +}; + +export default BnbMonotone; diff --git a/src/blocks/icons/components/EtheriumMonotone.tsx b/src/blocks/icons/components/EtheriumMonotone.tsx new file mode 100644 index 0000000000..1600bde99e --- /dev/null +++ b/src/blocks/icons/components/EtheriumMonotone.tsx @@ -0,0 +1,46 @@ +import { FC } from 'react'; +import { IconWrapper } from '../IconWrapper'; +import { IconProps } from '../Icons.types'; + +const EtheriumMonotone: FC = (allProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + + + + } + {...restProps} + /> + ); +}; + +export default EtheriumMonotone; diff --git a/src/blocks/icons/components/OptimismMonotone.tsx b/src/blocks/icons/components/OptimismMonotone.tsx new file mode 100644 index 0000000000..f9471d55c4 --- /dev/null +++ b/src/blocks/icons/components/OptimismMonotone.tsx @@ -0,0 +1,48 @@ +import { FC } from 'react'; +import { IconWrapper } from '../IconWrapper'; +import { IconProps } from '../Icons.types'; + +const OptimismMonotone: FC = (allProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + + + + + + + + + } + {...restProps} + /> + ); +}; + +export default OptimismMonotone; diff --git a/src/blocks/icons/components/PolygonMonotone.tsx b/src/blocks/icons/components/PolygonMonotone.tsx new file mode 100644 index 0000000000..54dbfe5537 --- /dev/null +++ b/src/blocks/icons/components/PolygonMonotone.tsx @@ -0,0 +1,44 @@ +import { FC } from 'react'; +import { IconWrapper } from '../IconWrapper'; +import { IconProps } from '../Icons.types'; + +const PolygonMonotone: FC = (allProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + + + + + + + + } + {...restProps} + /> + ); +}; + +export default PolygonMonotone; diff --git a/src/blocks/icons/components/PushMonotone.tsx b/src/blocks/icons/components/PushMonotone.tsx new file mode 100644 index 0000000000..6034537b9e --- /dev/null +++ b/src/blocks/icons/components/PushMonotone.tsx @@ -0,0 +1,48 @@ +import { FC } from 'react'; +import { IconWrapper } from '../IconWrapper'; +import { IconProps } from '../Icons.types'; + +const PushMonotone: FC = (allProps) => { + const { svgProps: props, ...restProps } = allProps; + return ( + + + + + + + + + + + + + } + {...restProps} + /> + ); +}; + +export default PushMonotone; diff --git a/src/blocks/icons/index.ts b/src/blocks/icons/index.ts index b07ad6209f..ecb14ee2cf 100644 --- a/src/blocks/icons/index.ts +++ b/src/blocks/icons/index.ts @@ -5,6 +5,8 @@ export { default as Add } from './components/Add'; export { default as AddEmoji } from './components/AddEmoji'; +export { default as ArbitrumMonotone } from './components/ArbitrumMonotone'; + export { default as ArrowUpRight } from './components/ArrowUpRight'; export { default as Asterisk } from './components/Asterisk'; @@ -15,6 +17,8 @@ export { default as BellRingFilled } from './components/BellRingFilled'; export { default as BellSimple } from './components/BellSimple'; export { default as BellSimpleSlash } from './components/BellSimpleSlash'; +export { default as BnbMonotone } from './components/BnbMonotone'; + export { default as CalendarBlank } from './components/CalendarBlank'; export { default as CaretDown } from './components/CaretDown'; @@ -54,6 +58,8 @@ export { default as Dashboard } from './components/Dashboard'; export { default as EditProfile } from './components/EditProfile'; +export { default as EtheriumMonotone } from './components/EtheriumMonotone'; + export { default as Ellipse } from './components/Ellipse'; export { default as Envelope } from './components/Envelope'; @@ -103,6 +109,8 @@ export { default as NotificationMobile } from './components/NotificationMobile'; export { default as OptOut } from './components/OptOut'; +export { default as OptimismMonotone } from './components/OptimismMonotone'; + export { default as Pencil } from './components/Pencil'; export { default as PlusCircle } from './components/PlusCircle'; @@ -115,6 +123,10 @@ export { default as PrevIconSlider } from './components/PrevIconSlider'; export { default as Pin } from './components/Pin'; +export { default as PolygonMonotone } from './components/PolygonMonotone'; + +export { default as PushMonotone } from './components/PushMonotone'; + export { default as PublicChat } from './components/PublicChat'; export { default as PrivateChat } from './components/PrivateChat';