From 36968289248061e545fc94d9ff62def0f4013a5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Bu=C4=9Fra=20Yi=C4=9Fiter?= Date: Fri, 2 Feb 2024 12:56:01 +0300 Subject: [PATCH] Add missing icons for builder --- public/static/icons/DashedCircleIcon.svg | 3 ++ public/static/icons/HomeIcon.svg | 3 ++ src/icons/DashedCircleIcon.tsx | 39 ++++++++++++++++++++++++ src/icons/HomeIcon.tsx | 34 +++++++++++++++++++++ src/icons/index.ts | 2 ++ 5 files changed, 81 insertions(+) create mode 100644 public/static/icons/DashedCircleIcon.svg create mode 100644 public/static/icons/HomeIcon.svg create mode 100644 src/icons/DashedCircleIcon.tsx create mode 100644 src/icons/HomeIcon.tsx diff --git a/public/static/icons/DashedCircleIcon.svg b/public/static/icons/DashedCircleIcon.svg new file mode 100644 index 000000000..a2b4b76a9 --- /dev/null +++ b/public/static/icons/DashedCircleIcon.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/static/icons/HomeIcon.svg b/public/static/icons/HomeIcon.svg new file mode 100644 index 000000000..80e76270a --- /dev/null +++ b/public/static/icons/HomeIcon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/DashedCircleIcon.tsx b/src/icons/DashedCircleIcon.tsx new file mode 100644 index 000000000..d1c2bc7a2 --- /dev/null +++ b/src/icons/DashedCircleIcon.tsx @@ -0,0 +1,39 @@ +// Auto-generated file created by svgr-cli source /src/icons/template.js +// Run pnpm build:icons to update +import { SVGProps } from 'react' + +import { Box } from '~/components/Box' + +import { iconVariants } from './styles.css' +import { IconProps } from './types' + +const Svg = (props: SVGProps) => ( + + + +) + +const SvgDashedCircleIcon = ({ size = 'sm', ...props }: IconProps) => ( + +) + +export default SvgDashedCircleIcon diff --git a/src/icons/HomeIcon.tsx b/src/icons/HomeIcon.tsx new file mode 100644 index 000000000..a9726aff4 --- /dev/null +++ b/src/icons/HomeIcon.tsx @@ -0,0 +1,34 @@ +// Auto-generated file created by svgr-cli source /src/icons/template.js +// Run pnpm build:icons to update +import { SVGProps } from 'react' + +import { Box } from '~/components/Box' + +import { iconVariants } from './styles.css' +import { IconProps } from './types' + +const Svg = (props: SVGProps) => ( + + + +) + +const SvgHomeIcon = ({ size = 'sm', ...props }: IconProps) => ( + +) + +export default SvgHomeIcon diff --git a/src/icons/index.ts b/src/icons/index.ts index cab304580..1a4e8e502 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -15,6 +15,7 @@ export { default as ContextMenuIcon } from './ContextMenuIcon' export { default as ContractIcon } from './ContractIcon' export { default as CopyIcon } from './CopyIcon' export { default as CurrencyIcon } from './CurrencyIcon' +export { default as DashedCircleIcon } from './DashedCircleIcon' export { default as DeployIcon } from './DeployIcon' export { default as DeviceIcon } from './DeviceIcon' export { default as DiscordIcon } from './DiscordIcon' @@ -32,6 +33,7 @@ export { default as GoogleIcon } from './GoogleIcon' export { default as GridIcon } from './GridIcon' export { default as HelpIcon } from './HelpIcon' export { default as HiddenIcon } from './HiddenIcon' +export { default as HomeIcon } from './HomeIcon' export { default as IndexerIcon } from './IndexerIcon' export { default as KeyIcon } from './KeyIcon' export { default as LinkIcon } from './LinkIcon'