From 8f81ef49ea614ac25226d5f7981a19110d7d1d15 Mon Sep 17 00:00:00 2001
From: Parker Stafford <52351508+Parker-Stafford@users.noreply.github.com>
Date: Wed, 20 Nov 2024 15:25:06 -0800
Subject: [PATCH] feat: add save outline and fill icons (#251)
* feat: add save outline and fill icons
* alphabetically order
* 1.8.11
---
package.json | 2 +-
src/icon/Icons.tsx | 110 ++++++++++++++++++++++++++++-----------------
2 files changed, 70 insertions(+), 42 deletions(-)
diff --git a/package.json b/package.json
index 466be8a..efc3625 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "version": "1.8.10",
+ "version": "1.8.11",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
diff --git a/src/icon/Icons.tsx b/src/icon/Icons.tsx
index a24660b..befb3d4 100644
--- a/src/icon/Icons.tsx
+++ b/src/icon/Icons.tsx
@@ -1572,6 +1572,31 @@ export const MaximizeOutline = () => (
);
+export const MessageSquareFilled = () => (
+
+);
+
+export const MessageSquareOutline = () => (
+
+);
+
export const MinimizeOutline = () => (
);
+
+export const MinusOutline = () => (
+
+);
+
export const MoonOutline = () => (
);
//S
+export const SaveFilled = () => {
+ return (
+
+ );
+};
+
+export const SaveOutline = () => {
+ return (
+
+ );
+};
+
export const Search = () => (
);
-
-export const MinusOutline = () => (
-
-);
-
-export const MessageSquareOutline = () => (
-
-);
-
-export const MessageSquareFilled = () => (
-
-);