diff --git a/src/components/Icon/IconCommon.tsx b/src/components/Icon/IconCommon.tsx index e3222ed2..423e3c00 100644 --- a/src/components/Icon/IconCommon.tsx +++ b/src/components/Icon/IconCommon.tsx @@ -59,6 +59,7 @@ import Fire from "@/components/icons/Fire"; import FolderOpen from "@/components/icons/FolderOpen"; import FolderClosed from "@/components/icons/FolderClosed"; import Gift from "@/components/icons/Gift"; +import Globe from "@/components/icons/Globe"; import Home from "@/components/icons/Home"; import HorizontalLoading from "@/components/icons/HorizontalLoading"; import Http from "@/components/icons/Http"; @@ -91,6 +92,7 @@ import SlideOut from "@/components/icons/SlideOut"; import Sparkle from "@/components/icons/Sparkle"; import Speaker from "@/components/icons/Speaker"; import Speed from "@/components/icons/Speed"; +import Square from "@/components/icons/Square"; import Star from "@/components/icons/Star"; import Stop from "@/components/icons/Stop"; import Support from "@/components/icons/Support"; @@ -206,6 +208,7 @@ export const ICONS_MAP = { "folder-open": FolderOpen, gear: Gear, gift: Gift, + globe: Globe, "git-merge": GitMerge, history: HistoryIcon, home: Home, @@ -259,6 +262,7 @@ export const ICONS_MAP = { sparkle: Sparkle, speaker: Speaker, speed: Speed, + square: Square, star: Star, stop: Stop, support: Support, diff --git a/src/components/Icon/types.ts b/src/components/Icon/types.ts index 90549c52..7d8a25d2 100644 --- a/src/components/Icon/types.ts +++ b/src/components/Icon/types.ts @@ -79,6 +79,7 @@ export const ICON_NAMES = [ "gear", "gift", "git-merge", + "globe", "history", "horizontal-loading", "home", @@ -131,6 +132,7 @@ export const ICON_NAMES = [ "sparkle", "speaker", "speed", + "square", "star", "stop", "support", diff --git a/src/components/icons/Globe.tsx b/src/components/icons/Globe.tsx new file mode 100644 index 00000000..e59c8844 --- /dev/null +++ b/src/components/icons/Globe.tsx @@ -0,0 +1,22 @@ +import { SVGAttributes } from "react"; + +const Globe = (props: SVGAttributes) => ( + + + +); + +export default Globe; diff --git a/src/components/icons/Square.tsx b/src/components/icons/Square.tsx new file mode 100644 index 00000000..f24708be --- /dev/null +++ b/src/components/icons/Square.tsx @@ -0,0 +1,24 @@ +import { SVGAttributes } from "react"; + +const Square = (props: SVGAttributes) => ( + + + +); + +export default Square; diff --git a/src/components/icons/Stop.tsx b/src/components/icons/Stop.tsx index 4e681d4f..876a90b6 100644 --- a/src/components/icons/Stop.tsx +++ b/src/components/icons/Stop.tsx @@ -2,21 +2,44 @@ import { SVGAttributes } from "react"; const Stop = (props: SVGAttributes) => ( + + + + );