From c397b1b66cb870bedd21cad02af6b3e5ca418c38 Mon Sep 17 00:00:00 2001 From: ivanosquis10 Date: Sun, 28 Jan 2024 12:53:51 -0400 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=93=A6Added=20SWR=20library=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 9 +++++++++ static/library/swr-dark.svg | 3 +++ static/library/swr-light.svg | 3 +++ 3 files changed, 15 insertions(+) create mode 100644 static/library/swr-dark.svg create mode 100644 static/library/swr-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index a91b1a1..0d5394c 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2401,5 +2401,14 @@ export const svgs: iSVG[] = [ dark: '/library/radix-ui_dark.svg' }, url: 'https://www.radix-ui.com/' + }, + { + title: 'SWR', + category: 'Library', + route: { + light: '/library/swr-light.svg', + dark: '/library/swr-dark.svg' + }, + url: 'https://swr.vercel.app/' } ]; diff --git a/static/library/swr-dark.svg b/static/library/swr-dark.svg new file mode 100644 index 0000000..23b064e --- /dev/null +++ b/static/library/swr-dark.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/static/library/swr-light.svg b/static/library/swr-light.svg new file mode 100644 index 0000000..09a7c02 --- /dev/null +++ b/static/library/swr-light.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file From 0ef365f64524cf84f5c87d4c50b985e7a8912168 Mon Sep 17 00:00:00 2001 From: ridemountainpig Date: Mon, 29 Jan 2024 09:35:10 +0800 Subject: [PATCH 2/5] fix: accept btn layout --- src/ui/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/styles.ts b/src/ui/styles.ts index 8b6bdbb..f14a1fb 100644 --- a/src/ui/styles.ts +++ b/src/ui/styles.ts @@ -1,5 +1,5 @@ export const buttonStyles = - 'flex items-center space-x-2 relative h-10 overflow-hidden rounded-md border border-neutral-200 dark:border-neutral-800 bg-transparent px-4 text-neutral-950 dark:text-white hover:bg-neutral-200/50 dark:hover:bg-neutral-800/50 focus:outline-none focus:ring-1 focus:ring-neutral-300 dark:focus:ring-neutral-700 transition-colors duration-100'; + 'flex items-center space-x-2 relative h-10 rounded-md border border-neutral-200 dark:border-neutral-800 bg-transparent px-4 text-neutral-950 dark:text-white hover:bg-neutral-200/50 dark:hover:bg-neutral-800/50 focus:outline-none focus:ring-1 focus:ring-neutral-300 dark:focus:ring-neutral-700 transition-colors duration-100'; export const inputStyles = 'w-full border-b border-neutral-300 bg-white p-3 px-11 placeholder-neutral-500 focus:outline-none focus:ring-1 focus:ring-neutral-300 dark:border-neutral-800 dark:bg-neutral-900 dark:focus:ring-neutral-700'; From 74e994e982d7a3e812398626ff60e2ca85ee5d53 Mon Sep 17 00:00:00 2001 From: necatiozmen Date: Mon, 29 Jan 2024 10:19:24 +0300 Subject: [PATCH 3/5] Add Refine logo svg --- src/data/svgs.ts | 11 ++++++++++- static/library/refine_dark.svg | 4 ++++ static/library/refine_light.svg | 4 ++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 static/library/refine_dark.svg create mode 100644 static/library/refine_light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 0d5394c..289ab79 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2410,5 +2410,14 @@ export const svgs: iSVG[] = [ dark: '/library/swr-dark.svg' }, url: 'https://swr.vercel.app/' - } + }, + { + title: 'Refine', + category: 'Framework', + route: { + light: '/library/refine_light.svg', + dark: '/library/refine_dark.svg' + }, + url: 'https://refine.dev/' + }, ]; diff --git a/static/library/refine_dark.svg b/static/library/refine_dark.svg new file mode 100644 index 0000000..70b0826 --- /dev/null +++ b/static/library/refine_dark.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/library/refine_light.svg b/static/library/refine_light.svg new file mode 100644 index 0000000..ae7e42f --- /dev/null +++ b/static/library/refine_light.svg @@ -0,0 +1,4 @@ + + + + From 91ba1eb106dc91d8dfcfe83946a24413d20cdaa9 Mon Sep 17 00:00:00 2001 From: Pablo Hdez <62877300+pheralb@users.noreply.github.com> Date: Mon, 29 Jan 2024 09:21:04 +0000 Subject: [PATCH 4/5] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20Fix=20Refine=20light/d?= =?UTF-8?q?ark=20route?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 289ab79..56123ad 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2415,8 +2415,8 @@ export const svgs: iSVG[] = [ title: 'Refine', category: 'Framework', route: { - light: '/library/refine_light.svg', - dark: '/library/refine_dark.svg' + light: '/library/refine_dark.svg', + dark: '/library/refine_light.svg' }, url: 'https://refine.dev/' }, From 8a614c179f23f0892791ba25541df51c21c69b0e Mon Sep 17 00:00:00 2001 From: Pablo Hdez <62877300+pheralb@users.noreply.github.com> Date: Mon, 29 Jan 2024 14:16:00 +0000 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=93=84Update=20README=20extensions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91aae0c..602b46c 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ A list of extensions that use the [svgl API](https://svgl.app/api), created by t | ---------------------------------------------------------------------------------------------- | ---------------- | -------------------------------------------------- | ----------------------------------------- | ------------------------------------------------------------------------------- | | | svgls | A CLI for easily adding SVG icons to your project. | [sujjeee](https://twitter.com/sujjeeee) | [Github Repository](https://github.com/sujjeee/svgls) | | | SVGL for Figma | Add svgs from svgl to your Figma project. | [quilljou](https://twitter.com/quillzhou) | [Figma Plugin](https://www.figma.com/community/plugin/1320306989350693206/svgl) | -| | SVGL for Raycast | Search SVG logos via svgl. | [1weiho](https://twitter.com/1weiho) | [Raycast Store](https://www.raycast.com/davidho0403/svgl) | +| | SVGL for Raycast | Search SVG logos via svgl. | [1weiho](https://twitter.com/1weiho) | [Raycast Store](https://www.raycast.com/1weiho/svgl) | ## ✌️ Contributing