From c3bcb96badeab0a3951cbb2572b5e94867088a00 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Wed, 11 Dec 2024 00:43:43 +0000 Subject: [PATCH] add icons --- .../public/icons/arrow-up-right.svg | 61 ++++++++++++++ explorer-nextjs/public/icons/copy-file.svg | 35 ++++++++ explorer-nextjs/public/icons/gateway.svg | 79 +++++++++++++++++++ .../src/components/icons/ArrowUpRight.tsx | 12 +++ .../src/components/icons/CopyFile.tsx | 13 +++ .../src/components/icons/Gateway.tsx | 9 +++ 6 files changed, 209 insertions(+) create mode 100644 explorer-nextjs/public/icons/arrow-up-right.svg create mode 100644 explorer-nextjs/public/icons/copy-file.svg create mode 100644 explorer-nextjs/public/icons/gateway.svg create mode 100644 explorer-nextjs/src/components/icons/ArrowUpRight.tsx create mode 100644 explorer-nextjs/src/components/icons/CopyFile.tsx create mode 100644 explorer-nextjs/src/components/icons/Gateway.tsx diff --git a/explorer-nextjs/public/icons/arrow-up-right.svg b/explorer-nextjs/public/icons/arrow-up-right.svg new file mode 100644 index 0000000000..85c8811910 --- /dev/null +++ b/explorer-nextjs/public/icons/arrow-up-right.svg @@ -0,0 +1,61 @@ + + + + + + + diff --git a/explorer-nextjs/public/icons/copy-file.svg b/explorer-nextjs/public/icons/copy-file.svg new file mode 100644 index 0000000000..ff12690bfb --- /dev/null +++ b/explorer-nextjs/public/icons/copy-file.svg @@ -0,0 +1,35 @@ + + + + + diff --git a/explorer-nextjs/public/icons/gateway.svg b/explorer-nextjs/public/icons/gateway.svg new file mode 100644 index 0000000000..50673da861 --- /dev/null +++ b/explorer-nextjs/public/icons/gateway.svg @@ -0,0 +1,79 @@ + + + + + + + + + diff --git a/explorer-nextjs/src/components/icons/ArrowUpRight.tsx b/explorer-nextjs/src/components/icons/ArrowUpRight.tsx new file mode 100644 index 0000000000..785c9c0175 --- /dev/null +++ b/explorer-nextjs/src/components/icons/ArrowUpRight.tsx @@ -0,0 +1,12 @@ +import Image from "next/image"; + +const ArrowUpRight = () => ( + Arrow Up Right +); + +export default ArrowUpRight; diff --git a/explorer-nextjs/src/components/icons/CopyFile.tsx b/explorer-nextjs/src/components/icons/CopyFile.tsx new file mode 100644 index 0000000000..497ea06128 --- /dev/null +++ b/explorer-nextjs/src/components/icons/CopyFile.tsx @@ -0,0 +1,13 @@ +import Image from "next/image"; + +const CopyFile = ({ className }: { className?: string }) => ( + Copyfile +); + +export default CopyFile; diff --git a/explorer-nextjs/src/components/icons/Gateway.tsx b/explorer-nextjs/src/components/icons/Gateway.tsx new file mode 100644 index 0000000000..87baa460fb --- /dev/null +++ b/explorer-nextjs/src/components/icons/Gateway.tsx @@ -0,0 +1,9 @@ +import Image from "next/image"; + +const Gateway = () => { + return ( + Chevron Menu + ); +}; + +export default Gateway;