From adebb92bc575ff1da2118e6965938f18d31dab6e Mon Sep 17 00:00:00 2001 From: Corban Riley Date: Fri, 20 Dec 2024 11:32:46 -0500 Subject: [PATCH] Adding DotIcon and EllipsisIcon --- public/static/icons/DotIcon.svg | 7 +++++++ public/static/icons/EllipsisIcon.svg | 12 ++++++++++++ src/icons/EllipsisIcon.tsx | 2 -- src/icons/index.ts | 2 ++ 4 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 public/static/icons/DotIcon.svg create mode 100644 public/static/icons/EllipsisIcon.svg diff --git a/public/static/icons/DotIcon.svg b/public/static/icons/DotIcon.svg new file mode 100644 index 000000000..c83277b6b --- /dev/null +++ b/public/static/icons/DotIcon.svg @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/public/static/icons/EllipsisIcon.svg b/public/static/icons/EllipsisIcon.svg new file mode 100644 index 000000000..94f2fcbf6 --- /dev/null +++ b/public/static/icons/EllipsisIcon.svg @@ -0,0 +1,12 @@ + + + \ No newline at end of file diff --git a/src/icons/EllipsisIcon.tsx b/src/icons/EllipsisIcon.tsx index a887fdf1a..e822dd18a 100644 --- a/src/icons/EllipsisIcon.tsx +++ b/src/icons/EllipsisIcon.tsx @@ -16,9 +16,7 @@ const Svg = (props: SVGProps) => ( > ) diff --git a/src/icons/index.ts b/src/icons/index.ts index 382deeb32..57b718e89 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -21,9 +21,11 @@ export { default as DeployIcon } from './DeployIcon' export { default as DeviceIcon } from './DeviceIcon' export { default as DiscordIcon } from './DiscordIcon' export { default as DocsIcon } from './DocsIcon' +export { default as DotIcon } from './DotIcon' export { default as DownloadIcon } from './DownloadIcon' export { default as DragIcon } from './DragIcon' export { default as EditIcon } from './EditIcon' +export { default as EllipsisIcon } from './EllipsisIcon' export { default as EmailIcon } from './EmailIcon' export { default as ExpandIcon } from './ExpandIcon' export { default as ExternalLinkIcon } from './ExternalLinkIcon'