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
diff --git a/src/data/svgs.ts b/src/data/svgs.ts
index 17fcc29..2df9616 100644
--- a/src/data/svgs.ts
+++ b/src/data/svgs.ts
@@ -2407,5 +2407,23 @@ export const svgs: iSVG[] = [
category: 'Education',
route: '/library/webdev.svg',
url: 'https://web.dev/'
- }
+ },
+ {
+ title: 'SWR',
+ category: 'Library',
+ route: {
+ light: '/library/swr-light.svg',
+ dark: '/library/swr-dark.svg'
+ },
+ url: 'https://swr.vercel.app/'
+ },
+ {
+ title: 'Refine',
+ category: 'Framework',
+ route: {
+ light: '/library/refine_dark.svg',
+ dark: '/library/refine_light.svg'
+ },
+ url: 'https://refine.dev/'
+ },
];
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';
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 @@
+
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