From a771a8edcbb6b2d4e3beeb35e20dfa6c361a8e54 Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Thu, 25 Jul 2024 09:10:06 -0600 Subject: [PATCH 1/2] feat: brain, slide in out icons --- src/icon/Icons.tsx | 107 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 105 insertions(+), 2 deletions(-) diff --git a/src/icon/Icons.tsx b/src/icon/Icons.tsx index 2cd89ace..23ecebbf 100644 --- a/src/icon/Icons.tsx +++ b/src/icon/Icons.tsx @@ -410,6 +410,31 @@ export const BookOutline = () => ( ); +export const Brain = () => ( + + + + +); + export const BrowserOutline = () => ( @@ -602,7 +627,6 @@ export const CubeOutline = () => { > { height="20" > ( ); +export const SlideOut = () => ( + + + + + + + + + +); + +export const SlideIn = () => ( + + + + + + + + + +); + export const SunOutline = () => ( From 6ceedb4cfff233478e56954deab25e440d7085b4 Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Thu, 25 Jul 2024 09:11:05 -0600 Subject: [PATCH 2/2] v1.6.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b37302d7..e070ff8a 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.5.1", + "version": "1.6.0", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts",