From 5426ba83e66b7a3d327b2cc958250619ddb11ae7 Mon Sep 17 00:00:00 2001 From: Anass Bouassaba Date: Fri, 8 Nov 2024 11:25:12 +0100 Subject: [PATCH 1/3] fix: icon name --- src/components/icons.tsx | 6 +++++- src/stories/components/icon.stories.tsx | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/icons.tsx b/src/components/icons.tsx index d38e652..bad9d1b 100644 --- a/src/components/icons.tsx +++ b/src/components/icons.tsx @@ -17,7 +17,11 @@ export const IconUpload = ({ className, filled, ...props }: IconProps) => ( ) -export const IconAdmin = ({ className, filled, ...props }: IconProps) => ( +export const IconAdminPanelSettings = ({ + className, + filled, + ...props +}: IconProps) => ( admin_panel_settings diff --git a/src/stories/components/icon.stories.tsx b/src/stories/components/icon.stories.tsx index 573cc85..1e811cb 100644 --- a/src/stories/components/icon.stories.tsx +++ b/src/stories/components/icon.stories.tsx @@ -1,6 +1,6 @@ import { IconAdd, - IconAdmin, + IconAdminPanelSettings, IconArrowDownward, IconArrowTopRight, IconArrowUpward, @@ -86,7 +86,7 @@ export const Default: Story = {
- + From 3a5556a3070b870012c5644c4ae60408c38ce236 Mon Sep 17 00:00:00 2001 From: Anass Bouassaba Date: Fri, 8 Nov 2024 17:27:29 +0100 Subject: [PATCH 2/3] fix: icon in layout story --- src/stories/common/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stories/common/layout.tsx b/src/stories/common/layout.tsx index 7e92335..0944d45 100644 --- a/src/stories/common/layout.tsx +++ b/src/stories/common/layout.tsx @@ -5,7 +5,7 @@ import { AppBar, AuxiliaryDrawer, IconAdd, - IconAdmin, + IconAdminPanelSettings, IconFlag, IconGroup, IconStacks, @@ -70,7 +70,7 @@ export const Layout = ({ children }: LayoutProps) => { New Workspace } + icon={} title="Open cloud console" aria-label="Open cloud console" /> From 59e645d88a28df8410de9e477192291002bc7ea8 Mon Sep 17 00:00:00 2001 From: Anass Bouassaba Date: Fri, 8 Nov 2024 17:30:48 +0100 Subject: [PATCH 3/3] chore: set version to 1.10.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4b8db36..80601c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@koupr/ui", - "version": "1.10.5", + "version": "1.10.6", "license": "MIT", "type": "module", "source": "src/index.ts",