From fd32d928f081c0c2022de50d42fe19c0bd84624f Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Wed, 20 Nov 2024 14:38:24 +0900
Subject: [PATCH 1/8] feat(icon): image, play circle, pause circle
---
packages/constants/component/icon-name.ts | 3 +++
packages/icons/assets/image.svg | 1 +
packages/icons/assets/pause-circle.svg | 1 +
packages/icons/assets/play-circle.svg | 1 +
.../src/components/icons/image.vue | 20 +++++++++++++++++++
.../wiz-ui-next/src/components/icons/index.ts | 9 +++++++++
.../src/components/icons/pause-circle.vue | 20 +++++++++++++++++++
.../src/components/icons/play-circle.vue | 20 +++++++++++++++++++
.../src/components/icons/image.tsx | 18 +++++++++++++++++
.../src/components/icons/index.ts | 9 +++++++++
.../src/components/icons/pause-circle.tsx | 18 +++++++++++++++++
.../src/components/icons/play-circle.tsx | 18 +++++++++++++++++
12 files changed, 138 insertions(+)
create mode 100644 packages/icons/assets/image.svg
create mode 100644 packages/icons/assets/pause-circle.svg
create mode 100644 packages/icons/assets/play-circle.svg
create mode 100644 packages/wiz-ui-next/src/components/icons/image.vue
create mode 100644 packages/wiz-ui-next/src/components/icons/pause-circle.vue
create mode 100644 packages/wiz-ui-next/src/components/icons/play-circle.vue
create mode 100644 packages/wiz-ui-react/src/components/icons/image.tsx
create mode 100644 packages/wiz-ui-react/src/components/icons/pause-circle.tsx
create mode 100644 packages/wiz-ui-react/src/components/icons/play-circle.tsx
diff --git a/packages/constants/component/icon-name.ts b/packages/constants/component/icon-name.ts
index 3a29fa1e1..c0936454b 100644
--- a/packages/constants/component/icon-name.ts
+++ b/packages/constants/component/icon-name.ts
@@ -78,6 +78,7 @@ export const IconComponentName = {
IHistory: "WizIHistory",
IHome: "WizIHome",
IHourglassTop: "WizIHourglassTop",
+ IImage: "WizIImage",
IInboxCustomize: "WizIInboxCustomize",
IInfoBold: "WizIInfoBold",
IInfoFilled: "WizIInfoFilled",
@@ -95,9 +96,11 @@ export const IconComponentName = {
INoteAdd: "WizINoteAdd",
INotification: "WizINotification",
IOpenInNew: "WizIOpenInNew",
+ IPauseCircle: "WizIPauseCircle",
IPersonFilled: "WizIPersonFilled",
IPieChart: "WizIPieChart",
IPinDrop: "WizIPinDrop",
+ IPlayCircle: "WizIPlayCircle",
IPublic: "WizIPublic",
IRemoveBold: "WizIRemoveBold",
IRemove: "WizIRemove",
diff --git a/packages/icons/assets/image.svg b/packages/icons/assets/image.svg
new file mode 100644
index 000000000..34ace0436
--- /dev/null
+++ b/packages/icons/assets/image.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/icons/assets/pause-circle.svg b/packages/icons/assets/pause-circle.svg
new file mode 100644
index 000000000..003c7876c
--- /dev/null
+++ b/packages/icons/assets/pause-circle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/icons/assets/play-circle.svg b/packages/icons/assets/play-circle.svg
new file mode 100644
index 000000000..347ed3a75
--- /dev/null
+++ b/packages/icons/assets/play-circle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/wiz-ui-next/src/components/icons/image.vue b/packages/wiz-ui-next/src/components/icons/image.vue
new file mode 100644
index 000000000..1da61e554
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/image.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-next/src/components/icons/index.ts b/packages/wiz-ui-next/src/components/icons/index.ts
index 132946ac9..0715f8268 100644
--- a/packages/wiz-ui-next/src/components/icons/index.ts
+++ b/packages/wiz-ui-next/src/components/icons/index.ts
@@ -77,6 +77,7 @@ import { default as WizIHelp } from "./help.vue";
import { default as WizIHistory } from "./history.vue";
import { default as WizIHome } from "./home.vue";
import { default as WizIHourglassTop } from "./hourglass-top.vue";
+import { default as WizIImage } from "./image.vue";
import { default as WizIInboxCustomize } from "./inbox-customize.vue";
import { default as WizIInfoBold } from "./info-bold.vue";
import { default as WizIInfoFilled } from "./info-filled.vue";
@@ -94,9 +95,11 @@ import { default as WizIMoreVert } from "./more-vert.vue";
import { default as WizINoteAdd } from "./note-add.vue";
import { default as WizINotification } from "./notification.vue";
import { default as WizIOpenInNew } from "./open-in-new.vue";
+import { default as WizIPauseCircle } from "./pause-circle.vue";
import { default as WizIPersonFilled } from "./person-filled.vue";
import { default as WizIPieChart } from "./pie-chart.vue";
import { default as WizIPinDrop } from "./pin-drop.vue";
+import { default as WizIPlayCircle } from "./play-circle.vue";
import { default as WizIPublic } from "./public.vue";
import { default as WizIRemoveBold } from "./remove-bold.vue";
import { default as WizIRemove } from "./remove.vue";
@@ -197,6 +200,7 @@ export type TIcon =
| typeof WizIHistory
| typeof WizIHome
| typeof WizIHourglassTop
+ | typeof WizIImage
| typeof WizIInboxCustomize
| typeof WizIInfoBold
| typeof WizIInfoFilled
@@ -214,9 +218,11 @@ export type TIcon =
| typeof WizINoteAdd
| typeof WizINotification
| typeof WizIOpenInNew
+ | typeof WizIPauseCircle
| typeof WizIPersonFilled
| typeof WizIPieChart
| typeof WizIPinDrop
+ | typeof WizIPlayCircle
| typeof WizIPublic
| typeof WizIRemoveBold
| typeof WizIRemove
@@ -317,6 +323,7 @@ export {
WizIHistory,
WizIHome,
WizIHourglassTop,
+ WizIImage,
WizIInboxCustomize,
WizIInfoBold,
WizIInfoFilled,
@@ -334,9 +341,11 @@ export {
WizINoteAdd,
WizINotification,
WizIOpenInNew,
+ WizIPauseCircle,
WizIPersonFilled,
WizIPieChart,
WizIPinDrop,
+ WizIPlayCircle,
WizIPublic,
WizIRemoveBold,
WizIRemove,
diff --git a/packages/wiz-ui-next/src/components/icons/pause-circle.vue b/packages/wiz-ui-next/src/components/icons/pause-circle.vue
new file mode 100644
index 000000000..5e459e011
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/pause-circle.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-next/src/components/icons/play-circle.vue b/packages/wiz-ui-next/src/components/icons/play-circle.vue
new file mode 100644
index 000000000..8d78fdc28
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/play-circle.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-react/src/components/icons/image.tsx b/packages/wiz-ui-react/src/components/icons/image.tsx
new file mode 100644
index 000000000..50ce280b0
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/image.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIImage = ({ className, style }: Props) => (
+
+);
+WizIImage.displayName = "WizIImage";
diff --git a/packages/wiz-ui-react/src/components/icons/index.ts b/packages/wiz-ui-react/src/components/icons/index.ts
index 5fa38018a..ca067a7ec 100644
--- a/packages/wiz-ui-react/src/components/icons/index.ts
+++ b/packages/wiz-ui-react/src/components/icons/index.ts
@@ -77,6 +77,7 @@ import { WizIHelp } from "./help";
import { WizIHistory } from "./history";
import { WizIHome } from "./home";
import { WizIHourglassTop } from "./hourglass-top";
+import { WizIImage } from "./image";
import { WizIInboxCustomize } from "./inbox-customize";
import { WizIInfo } from "./info";
import { WizIInfoBold } from "./info-bold";
@@ -94,9 +95,11 @@ import { WizIMoreVert } from "./more-vert";
import { WizINoteAdd } from "./note-add";
import { WizINotification } from "./notification";
import { WizIOpenInNew } from "./open-in-new";
+import { WizIPauseCircle } from "./pause-circle";
import { WizIPersonFilled } from "./person-filled";
import { WizIPieChart } from "./pie-chart";
import { WizIPinDrop } from "./pin-drop";
+import { WizIPlayCircle } from "./play-circle";
import { WizIPublic } from "./public";
import { WizIRemove } from "./remove";
import { WizIRemoveBold } from "./remove-bold";
@@ -197,6 +200,7 @@ export type TIcon =
| typeof WizIHistory
| typeof WizIHome
| typeof WizIHourglassTop
+ | typeof WizIImage
| typeof WizIInboxCustomize
| typeof WizIInfoBold
| typeof WizIInfoFilled
@@ -214,9 +218,11 @@ export type TIcon =
| typeof WizINoteAdd
| typeof WizINotification
| typeof WizIOpenInNew
+ | typeof WizIPauseCircle
| typeof WizIPersonFilled
| typeof WizIPieChart
| typeof WizIPinDrop
+ | typeof WizIPlayCircle
| typeof WizIPublic
| typeof WizIRemoveBold
| typeof WizIRemove
@@ -317,6 +323,7 @@ export {
WizIHistory,
WizIHome,
WizIHourglassTop,
+ WizIImage,
WizIInboxCustomize,
WizIInfoBold,
WizIInfoFilled,
@@ -334,9 +341,11 @@ export {
WizINoteAdd,
WizINotification,
WizIOpenInNew,
+ WizIPauseCircle,
WizIPersonFilled,
WizIPieChart,
WizIPinDrop,
+ WizIPlayCircle,
WizIPublic,
WizIRemoveBold,
WizIRemove,
diff --git a/packages/wiz-ui-react/src/components/icons/pause-circle.tsx b/packages/wiz-ui-react/src/components/icons/pause-circle.tsx
new file mode 100644
index 000000000..2edfffb11
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/pause-circle.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIPauseCircle = ({ className, style }: Props) => (
+
+);
+WizIPauseCircle.displayName = "WizIPauseCircle";
diff --git a/packages/wiz-ui-react/src/components/icons/play-circle.tsx b/packages/wiz-ui-react/src/components/icons/play-circle.tsx
new file mode 100644
index 000000000..a3dedc354
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/play-circle.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIPlayCircle = ({ className, style }: Props) => (
+
+);
+WizIPlayCircle.displayName = "WizIPlayCircle";
From 275a8350462778446a1168a244afaa3895203c43 Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Wed, 20 Nov 2024 14:49:56 +0900
Subject: [PATCH 2/8] chore: add changeset
---
.changeset/serious-pears-film.md | 8 ++++++++
1 file changed, 8 insertions(+)
create mode 100644 .changeset/serious-pears-film.md
diff --git a/.changeset/serious-pears-film.md b/.changeset/serious-pears-film.md
new file mode 100644
index 000000000..1a474485d
--- /dev/null
+++ b/.changeset/serious-pears-film.md
@@ -0,0 +1,8 @@
+---
+"@wizleap-inc/wiz-ui-react": minor
+"@wizleap-inc/wiz-ui-next": minor
+"@wizleap-inc/wiz-ui-constants": minor
+"@wizleap-inc/wiz-ui-icons": minor
+---
+
+Feat(icon): add image, play_circle, pause_circle icons
From d6804e1bef338992c409652fbb289c225cdbc31f Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Wed, 20 Nov 2024 15:04:42 +0900
Subject: [PATCH 3/8] feat(icon): keep
---
.changeset/serious-pears-film.md | 2 +-
packages/constants/component/icon-name.ts | 1 +
packages/icons/assets/keep.svg | 1 +
.../wiz-ui-next/src/components/icons/index.ts | 3 +++
.../wiz-ui-next/src/components/icons/keep.vue | 20 +++++++++++++++++++
.../src/components/icons/index.ts | 3 +++
.../src/components/icons/keep.tsx | 18 +++++++++++++++++
7 files changed, 47 insertions(+), 1 deletion(-)
create mode 100644 packages/icons/assets/keep.svg
create mode 100644 packages/wiz-ui-next/src/components/icons/keep.vue
create mode 100644 packages/wiz-ui-react/src/components/icons/keep.tsx
diff --git a/.changeset/serious-pears-film.md b/.changeset/serious-pears-film.md
index 1a474485d..ca7f27b0d 100644
--- a/.changeset/serious-pears-film.md
+++ b/.changeset/serious-pears-film.md
@@ -5,4 +5,4 @@
"@wizleap-inc/wiz-ui-icons": minor
---
-Feat(icon): add image, play_circle, pause_circle icons
+Feat(icon): add image, play_circle, pause_circle icons, keep
diff --git a/packages/constants/component/icon-name.ts b/packages/constants/component/icon-name.ts
index c0936454b..e34bb0899 100644
--- a/packages/constants/component/icon-name.ts
+++ b/packages/constants/component/icon-name.ts
@@ -83,6 +83,7 @@ export const IconComponentName = {
IInfoBold: "WizIInfoBold",
IInfoFilled: "WizIInfoFilled",
IInfo: "WizIInfo",
+ IKeep: "WizIKeep",
ILinkOff: "WizILinkOff",
ILocationCity: "WizILocationCity",
ILocationOn: "WizILocationOn",
diff --git a/packages/icons/assets/keep.svg b/packages/icons/assets/keep.svg
new file mode 100644
index 000000000..143fc7d3d
--- /dev/null
+++ b/packages/icons/assets/keep.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/wiz-ui-next/src/components/icons/index.ts b/packages/wiz-ui-next/src/components/icons/index.ts
index 0715f8268..62a4d6461 100644
--- a/packages/wiz-ui-next/src/components/icons/index.ts
+++ b/packages/wiz-ui-next/src/components/icons/index.ts
@@ -82,6 +82,7 @@ import { default as WizIInboxCustomize } from "./inbox-customize.vue";
import { default as WizIInfoBold } from "./info-bold.vue";
import { default as WizIInfoFilled } from "./info-filled.vue";
import { default as WizIInfo } from "./info.vue";
+import { default as WizIKeep } from "./keep.vue";
import { default as WizILinkOff } from "./link-off.vue";
import { default as WizILocationCity } from "./location-city.vue";
import { default as WizILocationOn } from "./location-on.vue";
@@ -205,6 +206,7 @@ export type TIcon =
| typeof WizIInfoBold
| typeof WizIInfoFilled
| typeof WizIInfo
+ | typeof WizIKeep
| typeof WizILinkOff
| typeof WizILocationCity
| typeof WizILocationOn
@@ -328,6 +330,7 @@ export {
WizIInfoBold,
WizIInfoFilled,
WizIInfo,
+ WizIKeep,
WizILinkOff,
WizILocationCity,
WizILocationOn,
diff --git a/packages/wiz-ui-next/src/components/icons/keep.vue b/packages/wiz-ui-next/src/components/icons/keep.vue
new file mode 100644
index 000000000..a78c4c2ae
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/keep.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-react/src/components/icons/index.ts b/packages/wiz-ui-react/src/components/icons/index.ts
index ca067a7ec..fb1d884fb 100644
--- a/packages/wiz-ui-react/src/components/icons/index.ts
+++ b/packages/wiz-ui-react/src/components/icons/index.ts
@@ -82,6 +82,7 @@ import { WizIInboxCustomize } from "./inbox-customize";
import { WizIInfo } from "./info";
import { WizIInfoBold } from "./info-bold";
import { WizIInfoFilled } from "./info-filled";
+import { WizIKeep } from "./keep";
import { WizILinkOff } from "./link-off";
import { WizILocationCity } from "./location-city";
import { WizILocationOn } from "./location-on";
@@ -205,6 +206,7 @@ export type TIcon =
| typeof WizIInfoBold
| typeof WizIInfoFilled
| typeof WizIInfo
+ | typeof WizIKeep
| typeof WizILinkOff
| typeof WizILocationCity
| typeof WizILocationOn
@@ -328,6 +330,7 @@ export {
WizIInfoBold,
WizIInfoFilled,
WizIInfo,
+ WizIKeep,
WizILinkOff,
WizILocationCity,
WizILocationOn,
diff --git a/packages/wiz-ui-react/src/components/icons/keep.tsx b/packages/wiz-ui-react/src/components/icons/keep.tsx
new file mode 100644
index 000000000..2bfbcd383
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/keep.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIKeep = ({ className, style }: Props) => (
+
+);
+WizIKeep.displayName = "WizIKeep";
From acb19b2f6ae7d05e0f280ad5a07cf0c85ab2da03 Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Mon, 25 Nov 2024 01:32:24 +0900
Subject: [PATCH 4/8] Revert "feat(icon): image, play circle, pause circle"
This reverts commit fd32d928f081c0c2022de50d42fe19c0bd84624f.
---
packages/constants/component/icon-name.ts | 3 ---
packages/icons/assets/image.svg | 1 -
packages/icons/assets/pause-circle.svg | 1 -
packages/icons/assets/play-circle.svg | 1 -
.../src/components/icons/image.vue | 20 -------------------
.../wiz-ui-next/src/components/icons/index.ts | 9 ---------
.../src/components/icons/pause-circle.vue | 20 -------------------
.../src/components/icons/play-circle.vue | 20 -------------------
.../src/components/icons/image.tsx | 18 -----------------
.../src/components/icons/index.ts | 9 ---------
.../src/components/icons/pause-circle.tsx | 18 -----------------
.../src/components/icons/play-circle.tsx | 18 -----------------
12 files changed, 138 deletions(-)
delete mode 100644 packages/icons/assets/image.svg
delete mode 100644 packages/icons/assets/pause-circle.svg
delete mode 100644 packages/icons/assets/play-circle.svg
delete mode 100644 packages/wiz-ui-next/src/components/icons/image.vue
delete mode 100644 packages/wiz-ui-next/src/components/icons/pause-circle.vue
delete mode 100644 packages/wiz-ui-next/src/components/icons/play-circle.vue
delete mode 100644 packages/wiz-ui-react/src/components/icons/image.tsx
delete mode 100644 packages/wiz-ui-react/src/components/icons/pause-circle.tsx
delete mode 100644 packages/wiz-ui-react/src/components/icons/play-circle.tsx
diff --git a/packages/constants/component/icon-name.ts b/packages/constants/component/icon-name.ts
index e34bb0899..774504341 100644
--- a/packages/constants/component/icon-name.ts
+++ b/packages/constants/component/icon-name.ts
@@ -78,7 +78,6 @@ export const IconComponentName = {
IHistory: "WizIHistory",
IHome: "WizIHome",
IHourglassTop: "WizIHourglassTop",
- IImage: "WizIImage",
IInboxCustomize: "WizIInboxCustomize",
IInfoBold: "WizIInfoBold",
IInfoFilled: "WizIInfoFilled",
@@ -97,11 +96,9 @@ export const IconComponentName = {
INoteAdd: "WizINoteAdd",
INotification: "WizINotification",
IOpenInNew: "WizIOpenInNew",
- IPauseCircle: "WizIPauseCircle",
IPersonFilled: "WizIPersonFilled",
IPieChart: "WizIPieChart",
IPinDrop: "WizIPinDrop",
- IPlayCircle: "WizIPlayCircle",
IPublic: "WizIPublic",
IRemoveBold: "WizIRemoveBold",
IRemove: "WizIRemove",
diff --git a/packages/icons/assets/image.svg b/packages/icons/assets/image.svg
deleted file mode 100644
index 34ace0436..000000000
--- a/packages/icons/assets/image.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/icons/assets/pause-circle.svg b/packages/icons/assets/pause-circle.svg
deleted file mode 100644
index 003c7876c..000000000
--- a/packages/icons/assets/pause-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/icons/assets/play-circle.svg b/packages/icons/assets/play-circle.svg
deleted file mode 100644
index 347ed3a75..000000000
--- a/packages/icons/assets/play-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/wiz-ui-next/src/components/icons/image.vue b/packages/wiz-ui-next/src/components/icons/image.vue
deleted file mode 100644
index 1da61e554..000000000
--- a/packages/wiz-ui-next/src/components/icons/image.vue
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
diff --git a/packages/wiz-ui-next/src/components/icons/index.ts b/packages/wiz-ui-next/src/components/icons/index.ts
index 62a4d6461..9c64359f1 100644
--- a/packages/wiz-ui-next/src/components/icons/index.ts
+++ b/packages/wiz-ui-next/src/components/icons/index.ts
@@ -77,7 +77,6 @@ import { default as WizIHelp } from "./help.vue";
import { default as WizIHistory } from "./history.vue";
import { default as WizIHome } from "./home.vue";
import { default as WizIHourglassTop } from "./hourglass-top.vue";
-import { default as WizIImage } from "./image.vue";
import { default as WizIInboxCustomize } from "./inbox-customize.vue";
import { default as WizIInfoBold } from "./info-bold.vue";
import { default as WizIInfoFilled } from "./info-filled.vue";
@@ -96,11 +95,9 @@ import { default as WizIMoreVert } from "./more-vert.vue";
import { default as WizINoteAdd } from "./note-add.vue";
import { default as WizINotification } from "./notification.vue";
import { default as WizIOpenInNew } from "./open-in-new.vue";
-import { default as WizIPauseCircle } from "./pause-circle.vue";
import { default as WizIPersonFilled } from "./person-filled.vue";
import { default as WizIPieChart } from "./pie-chart.vue";
import { default as WizIPinDrop } from "./pin-drop.vue";
-import { default as WizIPlayCircle } from "./play-circle.vue";
import { default as WizIPublic } from "./public.vue";
import { default as WizIRemoveBold } from "./remove-bold.vue";
import { default as WizIRemove } from "./remove.vue";
@@ -201,7 +198,6 @@ export type TIcon =
| typeof WizIHistory
| typeof WizIHome
| typeof WizIHourglassTop
- | typeof WizIImage
| typeof WizIInboxCustomize
| typeof WizIInfoBold
| typeof WizIInfoFilled
@@ -220,11 +216,9 @@ export type TIcon =
| typeof WizINoteAdd
| typeof WizINotification
| typeof WizIOpenInNew
- | typeof WizIPauseCircle
| typeof WizIPersonFilled
| typeof WizIPieChart
| typeof WizIPinDrop
- | typeof WizIPlayCircle
| typeof WizIPublic
| typeof WizIRemoveBold
| typeof WizIRemove
@@ -325,7 +319,6 @@ export {
WizIHistory,
WizIHome,
WizIHourglassTop,
- WizIImage,
WizIInboxCustomize,
WizIInfoBold,
WizIInfoFilled,
@@ -344,11 +337,9 @@ export {
WizINoteAdd,
WizINotification,
WizIOpenInNew,
- WizIPauseCircle,
WizIPersonFilled,
WizIPieChart,
WizIPinDrop,
- WizIPlayCircle,
WizIPublic,
WizIRemoveBold,
WizIRemove,
diff --git a/packages/wiz-ui-next/src/components/icons/pause-circle.vue b/packages/wiz-ui-next/src/components/icons/pause-circle.vue
deleted file mode 100644
index 5e459e011..000000000
--- a/packages/wiz-ui-next/src/components/icons/pause-circle.vue
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
diff --git a/packages/wiz-ui-next/src/components/icons/play-circle.vue b/packages/wiz-ui-next/src/components/icons/play-circle.vue
deleted file mode 100644
index 8d78fdc28..000000000
--- a/packages/wiz-ui-next/src/components/icons/play-circle.vue
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
diff --git a/packages/wiz-ui-react/src/components/icons/image.tsx b/packages/wiz-ui-react/src/components/icons/image.tsx
deleted file mode 100644
index 50ce280b0..000000000
--- a/packages/wiz-ui-react/src/components/icons/image.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { CSSProperties } from "react";
-type Props = {
- className?: string;
- style?: CSSProperties;
-};
-export const WizIImage = ({ className, style }: Props) => (
-
-);
-WizIImage.displayName = "WizIImage";
diff --git a/packages/wiz-ui-react/src/components/icons/index.ts b/packages/wiz-ui-react/src/components/icons/index.ts
index fb1d884fb..a517e9240 100644
--- a/packages/wiz-ui-react/src/components/icons/index.ts
+++ b/packages/wiz-ui-react/src/components/icons/index.ts
@@ -77,7 +77,6 @@ import { WizIHelp } from "./help";
import { WizIHistory } from "./history";
import { WizIHome } from "./home";
import { WizIHourglassTop } from "./hourglass-top";
-import { WizIImage } from "./image";
import { WizIInboxCustomize } from "./inbox-customize";
import { WizIInfo } from "./info";
import { WizIInfoBold } from "./info-bold";
@@ -96,11 +95,9 @@ import { WizIMoreVert } from "./more-vert";
import { WizINoteAdd } from "./note-add";
import { WizINotification } from "./notification";
import { WizIOpenInNew } from "./open-in-new";
-import { WizIPauseCircle } from "./pause-circle";
import { WizIPersonFilled } from "./person-filled";
import { WizIPieChart } from "./pie-chart";
import { WizIPinDrop } from "./pin-drop";
-import { WizIPlayCircle } from "./play-circle";
import { WizIPublic } from "./public";
import { WizIRemove } from "./remove";
import { WizIRemoveBold } from "./remove-bold";
@@ -201,7 +198,6 @@ export type TIcon =
| typeof WizIHistory
| typeof WizIHome
| typeof WizIHourglassTop
- | typeof WizIImage
| typeof WizIInboxCustomize
| typeof WizIInfoBold
| typeof WizIInfoFilled
@@ -220,11 +216,9 @@ export type TIcon =
| typeof WizINoteAdd
| typeof WizINotification
| typeof WizIOpenInNew
- | typeof WizIPauseCircle
| typeof WizIPersonFilled
| typeof WizIPieChart
| typeof WizIPinDrop
- | typeof WizIPlayCircle
| typeof WizIPublic
| typeof WizIRemoveBold
| typeof WizIRemove
@@ -325,7 +319,6 @@ export {
WizIHistory,
WizIHome,
WizIHourglassTop,
- WizIImage,
WizIInboxCustomize,
WizIInfoBold,
WizIInfoFilled,
@@ -344,11 +337,9 @@ export {
WizINoteAdd,
WizINotification,
WizIOpenInNew,
- WizIPauseCircle,
WizIPersonFilled,
WizIPieChart,
WizIPinDrop,
- WizIPlayCircle,
WizIPublic,
WizIRemoveBold,
WizIRemove,
diff --git a/packages/wiz-ui-react/src/components/icons/pause-circle.tsx b/packages/wiz-ui-react/src/components/icons/pause-circle.tsx
deleted file mode 100644
index 2edfffb11..000000000
--- a/packages/wiz-ui-react/src/components/icons/pause-circle.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { CSSProperties } from "react";
-type Props = {
- className?: string;
- style?: CSSProperties;
-};
-export const WizIPauseCircle = ({ className, style }: Props) => (
-
-);
-WizIPauseCircle.displayName = "WizIPauseCircle";
diff --git a/packages/wiz-ui-react/src/components/icons/play-circle.tsx b/packages/wiz-ui-react/src/components/icons/play-circle.tsx
deleted file mode 100644
index a3dedc354..000000000
--- a/packages/wiz-ui-react/src/components/icons/play-circle.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { CSSProperties } from "react";
-type Props = {
- className?: string;
- style?: CSSProperties;
-};
-export const WizIPlayCircle = ({ className, style }: Props) => (
-
-);
-WizIPlayCircle.displayName = "WizIPlayCircle";
From 90fa9e44cdb5d87d55e6e774732a9c4512928834 Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Mon, 25 Nov 2024 01:41:21 +0900
Subject: [PATCH 5/8] feat(icons): image-bold, pause-circle-bold,
play-circle-bold
---
packages/constants/component/icon-name.ts | 3 +++
packages/icons/assets/image-bold.svg | 1 +
packages/icons/assets/pause-circle-bold.svg | 1 +
packages/icons/assets/play-circle-bold.svg | 1 +
.../src/components/icons/image-bold.vue | 20 +++++++++++++++++++
.../wiz-ui-next/src/components/icons/index.ts | 9 +++++++++
.../components/icons/pause-circle-bold.vue | 20 +++++++++++++++++++
.../src/components/icons/play-circle-bold.vue | 20 +++++++++++++++++++
.../src/components/icons/image-bold.tsx | 18 +++++++++++++++++
.../src/components/icons/index.ts | 9 +++++++++
.../components/icons/pause-circle-bold.tsx | 18 +++++++++++++++++
.../src/components/icons/play-circle-bold.tsx | 18 +++++++++++++++++
12 files changed, 138 insertions(+)
create mode 100644 packages/icons/assets/image-bold.svg
create mode 100644 packages/icons/assets/pause-circle-bold.svg
create mode 100644 packages/icons/assets/play-circle-bold.svg
create mode 100644 packages/wiz-ui-next/src/components/icons/image-bold.vue
create mode 100644 packages/wiz-ui-next/src/components/icons/pause-circle-bold.vue
create mode 100644 packages/wiz-ui-next/src/components/icons/play-circle-bold.vue
create mode 100644 packages/wiz-ui-react/src/components/icons/image-bold.tsx
create mode 100644 packages/wiz-ui-react/src/components/icons/pause-circle-bold.tsx
create mode 100644 packages/wiz-ui-react/src/components/icons/play-circle-bold.tsx
diff --git a/packages/constants/component/icon-name.ts b/packages/constants/component/icon-name.ts
index 774504341..a927eaffb 100644
--- a/packages/constants/component/icon-name.ts
+++ b/packages/constants/component/icon-name.ts
@@ -78,6 +78,7 @@ export const IconComponentName = {
IHistory: "WizIHistory",
IHome: "WizIHome",
IHourglassTop: "WizIHourglassTop",
+ IImageBold: "WizIImageBold",
IInboxCustomize: "WizIInboxCustomize",
IInfoBold: "WizIInfoBold",
IInfoFilled: "WizIInfoFilled",
@@ -96,9 +97,11 @@ export const IconComponentName = {
INoteAdd: "WizINoteAdd",
INotification: "WizINotification",
IOpenInNew: "WizIOpenInNew",
+ IPauseCircleBold: "WizIPauseCircleBold",
IPersonFilled: "WizIPersonFilled",
IPieChart: "WizIPieChart",
IPinDrop: "WizIPinDrop",
+ IPlayCircleBold: "WizIPlayCircleBold",
IPublic: "WizIPublic",
IRemoveBold: "WizIRemoveBold",
IRemove: "WizIRemove",
diff --git a/packages/icons/assets/image-bold.svg b/packages/icons/assets/image-bold.svg
new file mode 100644
index 000000000..bc18a98e0
--- /dev/null
+++ b/packages/icons/assets/image-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/icons/assets/pause-circle-bold.svg b/packages/icons/assets/pause-circle-bold.svg
new file mode 100644
index 000000000..826363e60
--- /dev/null
+++ b/packages/icons/assets/pause-circle-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/icons/assets/play-circle-bold.svg b/packages/icons/assets/play-circle-bold.svg
new file mode 100644
index 000000000..1d08a623f
--- /dev/null
+++ b/packages/icons/assets/play-circle-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/wiz-ui-next/src/components/icons/image-bold.vue b/packages/wiz-ui-next/src/components/icons/image-bold.vue
new file mode 100644
index 000000000..e220a99f8
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/image-bold.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-next/src/components/icons/index.ts b/packages/wiz-ui-next/src/components/icons/index.ts
index 9c64359f1..b404bd7d8 100644
--- a/packages/wiz-ui-next/src/components/icons/index.ts
+++ b/packages/wiz-ui-next/src/components/icons/index.ts
@@ -77,6 +77,7 @@ import { default as WizIHelp } from "./help.vue";
import { default as WizIHistory } from "./history.vue";
import { default as WizIHome } from "./home.vue";
import { default as WizIHourglassTop } from "./hourglass-top.vue";
+import { default as WizIImageBold } from "./image-bold.vue";
import { default as WizIInboxCustomize } from "./inbox-customize.vue";
import { default as WizIInfoBold } from "./info-bold.vue";
import { default as WizIInfoFilled } from "./info-filled.vue";
@@ -95,9 +96,11 @@ import { default as WizIMoreVert } from "./more-vert.vue";
import { default as WizINoteAdd } from "./note-add.vue";
import { default as WizINotification } from "./notification.vue";
import { default as WizIOpenInNew } from "./open-in-new.vue";
+import { default as WizIPauseCircleBold } from "./pause-circle-bold.vue";
import { default as WizIPersonFilled } from "./person-filled.vue";
import { default as WizIPieChart } from "./pie-chart.vue";
import { default as WizIPinDrop } from "./pin-drop.vue";
+import { default as WizIPlayCircleBold } from "./play-circle-bold.vue";
import { default as WizIPublic } from "./public.vue";
import { default as WizIRemoveBold } from "./remove-bold.vue";
import { default as WizIRemove } from "./remove.vue";
@@ -198,6 +201,7 @@ export type TIcon =
| typeof WizIHistory
| typeof WizIHome
| typeof WizIHourglassTop
+ | typeof WizIImageBold
| typeof WizIInboxCustomize
| typeof WizIInfoBold
| typeof WizIInfoFilled
@@ -216,9 +220,11 @@ export type TIcon =
| typeof WizINoteAdd
| typeof WizINotification
| typeof WizIOpenInNew
+ | typeof WizIPauseCircleBold
| typeof WizIPersonFilled
| typeof WizIPieChart
| typeof WizIPinDrop
+ | typeof WizIPlayCircleBold
| typeof WizIPublic
| typeof WizIRemoveBold
| typeof WizIRemove
@@ -319,6 +325,7 @@ export {
WizIHistory,
WizIHome,
WizIHourglassTop,
+ WizIImageBold,
WizIInboxCustomize,
WizIInfoBold,
WizIInfoFilled,
@@ -337,9 +344,11 @@ export {
WizINoteAdd,
WizINotification,
WizIOpenInNew,
+ WizIPauseCircleBold,
WizIPersonFilled,
WizIPieChart,
WizIPinDrop,
+ WizIPlayCircleBold,
WizIPublic,
WizIRemoveBold,
WizIRemove,
diff --git a/packages/wiz-ui-next/src/components/icons/pause-circle-bold.vue b/packages/wiz-ui-next/src/components/icons/pause-circle-bold.vue
new file mode 100644
index 000000000..9d2482f1b
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/pause-circle-bold.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-next/src/components/icons/play-circle-bold.vue b/packages/wiz-ui-next/src/components/icons/play-circle-bold.vue
new file mode 100644
index 000000000..d6c0240eb
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/play-circle-bold.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-react/src/components/icons/image-bold.tsx b/packages/wiz-ui-react/src/components/icons/image-bold.tsx
new file mode 100644
index 000000000..564ef4743
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/image-bold.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIImageBold = ({ className, style }: Props) => (
+
+);
+WizIImageBold.displayName = "WizIImageBold";
diff --git a/packages/wiz-ui-react/src/components/icons/index.ts b/packages/wiz-ui-react/src/components/icons/index.ts
index a517e9240..5cdb486a5 100644
--- a/packages/wiz-ui-react/src/components/icons/index.ts
+++ b/packages/wiz-ui-react/src/components/icons/index.ts
@@ -77,6 +77,7 @@ import { WizIHelp } from "./help";
import { WizIHistory } from "./history";
import { WizIHome } from "./home";
import { WizIHourglassTop } from "./hourglass-top";
+import { WizIImageBold } from "./image-bold";
import { WizIInboxCustomize } from "./inbox-customize";
import { WizIInfo } from "./info";
import { WizIInfoBold } from "./info-bold";
@@ -95,9 +96,11 @@ import { WizIMoreVert } from "./more-vert";
import { WizINoteAdd } from "./note-add";
import { WizINotification } from "./notification";
import { WizIOpenInNew } from "./open-in-new";
+import { WizIPauseCircleBold } from "./pause-circle-bold";
import { WizIPersonFilled } from "./person-filled";
import { WizIPieChart } from "./pie-chart";
import { WizIPinDrop } from "./pin-drop";
+import { WizIPlayCircleBold } from "./play-circle-bold";
import { WizIPublic } from "./public";
import { WizIRemove } from "./remove";
import { WizIRemoveBold } from "./remove-bold";
@@ -198,6 +201,7 @@ export type TIcon =
| typeof WizIHistory
| typeof WizIHome
| typeof WizIHourglassTop
+ | typeof WizIImageBold
| typeof WizIInboxCustomize
| typeof WizIInfoBold
| typeof WizIInfoFilled
@@ -216,9 +220,11 @@ export type TIcon =
| typeof WizINoteAdd
| typeof WizINotification
| typeof WizIOpenInNew
+ | typeof WizIPauseCircleBold
| typeof WizIPersonFilled
| typeof WizIPieChart
| typeof WizIPinDrop
+ | typeof WizIPlayCircleBold
| typeof WizIPublic
| typeof WizIRemoveBold
| typeof WizIRemove
@@ -319,6 +325,7 @@ export {
WizIHistory,
WizIHome,
WizIHourglassTop,
+ WizIImageBold,
WizIInboxCustomize,
WizIInfoBold,
WizIInfoFilled,
@@ -337,9 +344,11 @@ export {
WizINoteAdd,
WizINotification,
WizIOpenInNew,
+ WizIPauseCircleBold,
WizIPersonFilled,
WizIPieChart,
WizIPinDrop,
+ WizIPlayCircleBold,
WizIPublic,
WizIRemoveBold,
WizIRemove,
diff --git a/packages/wiz-ui-react/src/components/icons/pause-circle-bold.tsx b/packages/wiz-ui-react/src/components/icons/pause-circle-bold.tsx
new file mode 100644
index 000000000..b3e9d2421
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/pause-circle-bold.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIPauseCircleBold = ({ className, style }: Props) => (
+
+);
+WizIPauseCircleBold.displayName = "WizIPauseCircleBold";
diff --git a/packages/wiz-ui-react/src/components/icons/play-circle-bold.tsx b/packages/wiz-ui-react/src/components/icons/play-circle-bold.tsx
new file mode 100644
index 000000000..540332e12
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/play-circle-bold.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIPlayCircleBold = ({ className, style }: Props) => (
+
+);
+WizIPlayCircleBold.displayName = "WizIPlayCircleBold";
From e83b6cebc5c74b9d4a90e8d3bb27653bddb0a08c Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Mon, 25 Nov 2024 02:14:46 +0900
Subject: [PATCH 6/8] feat(icon): error
---
packages/constants/component/icon-name.ts | 1 +
packages/icons/assets/error-filled.svg | 1 +
.../src/components/icons/error-filled.vue | 20 +++++++++++++++++++
.../wiz-ui-next/src/components/icons/index.ts | 3 +++
.../src/components/icons/error-filled.tsx | 18 +++++++++++++++++
.../src/components/icons/index.ts | 3 +++
6 files changed, 46 insertions(+)
create mode 100644 packages/icons/assets/error-filled.svg
create mode 100644 packages/wiz-ui-next/src/components/icons/error-filled.vue
create mode 100644 packages/wiz-ui-react/src/components/icons/error-filled.tsx
diff --git a/packages/constants/component/icon-name.ts b/packages/constants/component/icon-name.ts
index a927eaffb..eadcffa64 100644
--- a/packages/constants/component/icon-name.ts
+++ b/packages/constants/component/icon-name.ts
@@ -66,6 +66,7 @@ export const IconComponentName = {
IDrafts: "WizIDrafts",
IEditNote: "WizIEditNote",
IEmergencyHome: "WizIEmergencyHome",
+ IErrorFilled: "WizIErrorFilled",
IExpandLess: "WizIExpandLess",
IExpandMoreBold: "WizIExpandMoreBold",
IExpandMore: "WizIExpandMore",
diff --git a/packages/icons/assets/error-filled.svg b/packages/icons/assets/error-filled.svg
new file mode 100644
index 000000000..89b3f087b
--- /dev/null
+++ b/packages/icons/assets/error-filled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/wiz-ui-next/src/components/icons/error-filled.vue b/packages/wiz-ui-next/src/components/icons/error-filled.vue
new file mode 100644
index 000000000..c156bea70
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/error-filled.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-next/src/components/icons/index.ts b/packages/wiz-ui-next/src/components/icons/index.ts
index b404bd7d8..e7c60852f 100644
--- a/packages/wiz-ui-next/src/components/icons/index.ts
+++ b/packages/wiz-ui-next/src/components/icons/index.ts
@@ -65,6 +65,7 @@ import { default as WizIDraft } from "./draft.vue";
import { default as WizIDrafts } from "./drafts.vue";
import { default as WizIEditNote } from "./edit-note.vue";
import { default as WizIEmergencyHome } from "./emergency-home.vue";
+import { default as WizIErrorFilled } from "./error-filled.vue";
import { default as WizIExpandLess } from "./expand-less.vue";
import { default as WizIExpandMoreBold } from "./expand-more-bold.vue";
import { default as WizIExpandMore } from "./expand-more.vue";
@@ -189,6 +190,7 @@ export type TIcon =
| typeof WizIDrafts
| typeof WizIEditNote
| typeof WizIEmergencyHome
+ | typeof WizIErrorFilled
| typeof WizIExpandLess
| typeof WizIExpandMoreBold
| typeof WizIExpandMore
@@ -313,6 +315,7 @@ export {
WizIDrafts,
WizIEditNote,
WizIEmergencyHome,
+ WizIErrorFilled,
WizIExpandLess,
WizIExpandMoreBold,
WizIExpandMore,
diff --git a/packages/wiz-ui-react/src/components/icons/error-filled.tsx b/packages/wiz-ui-react/src/components/icons/error-filled.tsx
new file mode 100644
index 000000000..272278697
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/error-filled.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIErrorFilled = ({ className, style }: Props) => (
+
+);
+WizIErrorFilled.displayName = "WizIErrorFilled";
diff --git a/packages/wiz-ui-react/src/components/icons/index.ts b/packages/wiz-ui-react/src/components/icons/index.ts
index 5cdb486a5..6f62b161b 100644
--- a/packages/wiz-ui-react/src/components/icons/index.ts
+++ b/packages/wiz-ui-react/src/components/icons/index.ts
@@ -65,6 +65,7 @@ import { WizIDraft } from "./draft";
import { WizIDrafts } from "./drafts";
import { WizIEditNote } from "./edit-note";
import { WizIEmergencyHome } from "./emergency-home";
+import { WizIErrorFilled } from "./error-filled";
import { WizIExpandLess } from "./expand-less";
import { WizIExpandMore } from "./expand-more";
import { WizIExpandMoreBold } from "./expand-more-bold";
@@ -189,6 +190,7 @@ export type TIcon =
| typeof WizIDrafts
| typeof WizIEditNote
| typeof WizIEmergencyHome
+ | typeof WizIErrorFilled
| typeof WizIExpandLess
| typeof WizIExpandMoreBold
| typeof WizIExpandMore
@@ -313,6 +315,7 @@ export {
WizIDrafts,
WizIEditNote,
WizIEmergencyHome,
+ WizIErrorFilled,
WizIExpandLess,
WizIExpandMoreBold,
WizIExpandMore,
From 311e74e5f880e1787ccd32bbad39b80fbeb854f9 Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Mon, 25 Nov 2024 02:15:01 +0900
Subject: [PATCH 7/8] chore: update changeset
---
.changeset/serious-pears-film.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.changeset/serious-pears-film.md b/.changeset/serious-pears-film.md
index ca7f27b0d..70e8ae0c2 100644
--- a/.changeset/serious-pears-film.md
+++ b/.changeset/serious-pears-film.md
@@ -5,4 +5,4 @@
"@wizleap-inc/wiz-ui-icons": minor
---
-Feat(icon): add image, play_circle, pause_circle icons, keep
+Feat(icon): add image, play_circle, pause_circle icons, keep, error
From 8bf794aa432ddd568ef81b4469deb1cef075efff Mon Sep 17 00:00:00 2001
From: RyushiAok <55625375+RyushiAok@users.noreply.github.com>
Date: Thu, 9 Jan 2025 20:01:45 +0900
Subject: [PATCH 8/8] fix(icon): WizIKeepBold
---
packages/constants/component/icon-name.ts | 2 +-
packages/icons/assets/keep-bold.svg | 1 +
packages/icons/assets/keep.svg | 1 -
.../wiz-ui-next/src/components/icons/index.ts | 48 ++++++++++---------
.../src/components/icons/keep-bold.vue | 20 ++++++++
.../wiz-ui-next/src/components/icons/keep.vue | 20 --------
.../src/components/icons/index.ts | 48 ++++++++++---------
.../src/components/icons/keep-bold.tsx | 18 +++++++
.../src/components/icons/keep.tsx | 18 -------
9 files changed, 90 insertions(+), 86 deletions(-)
create mode 100644 packages/icons/assets/keep-bold.svg
delete mode 100644 packages/icons/assets/keep.svg
create mode 100644 packages/wiz-ui-next/src/components/icons/keep-bold.vue
delete mode 100644 packages/wiz-ui-next/src/components/icons/keep.vue
create mode 100644 packages/wiz-ui-react/src/components/icons/keep-bold.tsx
delete mode 100644 packages/wiz-ui-react/src/components/icons/keep.tsx
diff --git a/packages/constants/component/icon-name.ts b/packages/constants/component/icon-name.ts
index eadcffa64..3d1e62c39 100644
--- a/packages/constants/component/icon-name.ts
+++ b/packages/constants/component/icon-name.ts
@@ -84,7 +84,7 @@ export const IconComponentName = {
IInfoBold: "WizIInfoBold",
IInfoFilled: "WizIInfoFilled",
IInfo: "WizIInfo",
- IKeep: "WizIKeep",
+ IKeepBold: "WizIKeepBold",
ILinkOff: "WizILinkOff",
ILocationCity: "WizILocationCity",
ILocationOn: "WizILocationOn",
diff --git a/packages/icons/assets/keep-bold.svg b/packages/icons/assets/keep-bold.svg
new file mode 100644
index 000000000..6567e072e
--- /dev/null
+++ b/packages/icons/assets/keep-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/icons/assets/keep.svg b/packages/icons/assets/keep.svg
deleted file mode 100644
index 143fc7d3d..000000000
--- a/packages/icons/assets/keep.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/wiz-ui-next/src/components/icons/index.ts b/packages/wiz-ui-next/src/components/icons/index.ts
index e7c60852f..9d098bf17 100644
--- a/packages/wiz-ui-next/src/components/icons/index.ts
+++ b/packages/wiz-ui-next/src/components/icons/index.ts
@@ -83,7 +83,7 @@ import { default as WizIInboxCustomize } from "./inbox-customize.vue";
import { default as WizIInfoBold } from "./info-bold.vue";
import { default as WizIInfoFilled } from "./info-filled.vue";
import { default as WizIInfo } from "./info.vue";
-import { default as WizIKeep } from "./keep.vue";
+import { default as WizIKeepBold } from "./keep-bold.vue";
import { default as WizILinkOff } from "./link-off.vue";
import { default as WizILocationCity } from "./location-city.vue";
import { default as WizILocationOn } from "./location-on.vue";
@@ -208,6 +208,7 @@ export type TIcon =
| typeof WizIInfoBold
| typeof WizIInfoFilled
| typeof WizIInfo
+ | typeof WizIKeepBold
| typeof WizIKeep
| typeof WizILinkOff
| typeof WizILocationCity
@@ -248,18 +249,18 @@ export type TIcon =
| typeof WizIWarning;
export {
- WizIAddCircle,
WizIAdd,
- WizIAdjustBold,
+ WizIAddCircle,
WizIAdjust,
+ WizIAdjustBold,
WizIApprovalFilled,
WizIArrowDownward,
WizIArrowDropDown,
WizIArrowDropUp,
WizIArrowRight,
WizIArrowUpward,
- WizIAssignmentAdd,
WizIAssignment,
+ WizIAssignmentAdd,
WizIAttachFile,
WizIAutoRenew,
WizIBarChart4Bars,
@@ -270,41 +271,41 @@ export {
WizICamera,
WizICancel,
WizIChangeHistory,
- WizIChatBubbleFilled,
WizIChat,
+ WizIChatBubbleFilled,
+ WizICheck,
WizICheckBold,
WizICheckCircleFilled,
- WizICheck,
- WizIChevronLeftBold,
WizIChevronLeft,
- WizIChevronRightBold,
+ WizIChevronLeftBold,
WizIChevronRight,
- WizICircleCheck,
+ WizIChevronRightBold,
WizICircle,
- WizICloseBold,
+ WizICircleCheck,
WizIClose,
+ WizICloseBold,
WizICloudUpload,
WizIContactPageFilled,
WizIContentCopy,
WizIContract,
- WizICounter1Filled,
WizICounter1,
- WizICounter2Filled,
+ WizICounter1Filled,
WizICounter2,
- WizICounter3Filled,
+ WizICounter2Filled,
WizICounter3,
- WizICounter4Filled,
+ WizICounter3Filled,
WizICounter4,
- WizICounter5Filled,
+ WizICounter4Filled,
WizICounter5,
- WizICounter6Filled,
+ WizICounter5Filled,
WizICounter6,
- WizICounter7Filled,
+ WizICounter6Filled,
WizICounter7,
- WizICounter8Filled,
+ WizICounter7Filled,
WizICounter8,
- WizICounter9Filled,
+ WizICounter8Filled,
WizICounter9,
+ WizICounter9Filled,
WizIDashboard,
WizIDelete,
WizIDemography,
@@ -317,8 +318,8 @@ export {
WizIEmergencyHome,
WizIErrorFilled,
WizIExpandLess,
- WizIExpandMoreBold,
WizIExpandMore,
+ WizIExpandMoreBold,
WizIEye,
WizIFamilyHome,
WizIFeedback,
@@ -330,18 +331,19 @@ export {
WizIHourglassTop,
WizIImageBold,
WizIInboxCustomize,
+ WizIInfo,
WizIInfoBold,
WizIInfoFilled,
- WizIInfo,
WizIKeep,
+ WizIKeepBold,
WizILinkOff,
WizILocationCity,
WizILocationOn,
WizILogin,
WizIMail,
WizIManageAccounts,
- WizIMenuOpen,
WizIMenu,
+ WizIMenuOpen,
WizIMonitoring,
WizIMoreVert,
WizINoteAdd,
@@ -353,8 +355,8 @@ export {
WizIPinDrop,
WizIPlayCircleBold,
WizIPublic,
- WizIRemoveBold,
WizIRemove,
+ WizIRemoveBold,
WizIReviews,
WizISchedule,
WizISearch,
diff --git a/packages/wiz-ui-next/src/components/icons/keep-bold.vue b/packages/wiz-ui-next/src/components/icons/keep-bold.vue
new file mode 100644
index 000000000..d9b58ac76
--- /dev/null
+++ b/packages/wiz-ui-next/src/components/icons/keep-bold.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/packages/wiz-ui-next/src/components/icons/keep.vue b/packages/wiz-ui-next/src/components/icons/keep.vue
deleted file mode 100644
index a78c4c2ae..000000000
--- a/packages/wiz-ui-next/src/components/icons/keep.vue
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
diff --git a/packages/wiz-ui-react/src/components/icons/index.ts b/packages/wiz-ui-react/src/components/icons/index.ts
index 6f62b161b..598d5f25d 100644
--- a/packages/wiz-ui-react/src/components/icons/index.ts
+++ b/packages/wiz-ui-react/src/components/icons/index.ts
@@ -83,7 +83,7 @@ import { WizIInboxCustomize } from "./inbox-customize";
import { WizIInfo } from "./info";
import { WizIInfoBold } from "./info-bold";
import { WizIInfoFilled } from "./info-filled";
-import { WizIKeep } from "./keep";
+import { WizIKeepBold } from "./keep-bold";
import { WizILinkOff } from "./link-off";
import { WizILocationCity } from "./location-city";
import { WizILocationOn } from "./location-on";
@@ -208,6 +208,7 @@ export type TIcon =
| typeof WizIInfoBold
| typeof WizIInfoFilled
| typeof WizIInfo
+ | typeof WizIKeepBold
| typeof WizIKeep
| typeof WizILinkOff
| typeof WizILocationCity
@@ -248,18 +249,18 @@ export type TIcon =
| typeof WizIWarning;
export {
- WizIAddCircle,
WizIAdd,
- WizIAdjustBold,
+ WizIAddCircle,
WizIAdjust,
+ WizIAdjustBold,
WizIApprovalFilled,
WizIArrowDownward,
WizIArrowDropDown,
WizIArrowDropUp,
WizIArrowRight,
WizIArrowUpward,
- WizIAssignmentAdd,
WizIAssignment,
+ WizIAssignmentAdd,
WizIAttachFile,
WizIAutoRenew,
WizIBarChart4Bars,
@@ -270,41 +271,41 @@ export {
WizICamera,
WizICancel,
WizIChangeHistory,
- WizIChatBubbleFilled,
WizIChat,
+ WizIChatBubbleFilled,
+ WizICheck,
WizICheckBold,
WizICheckCircleFilled,
- WizICheck,
- WizIChevronLeftBold,
WizIChevronLeft,
- WizIChevronRightBold,
+ WizIChevronLeftBold,
WizIChevronRight,
- WizICircleCheck,
+ WizIChevronRightBold,
WizICircle,
- WizICloseBold,
+ WizICircleCheck,
WizIClose,
+ WizICloseBold,
WizICloudUpload,
WizIContactPageFilled,
WizIContentCopy,
WizIContract,
- WizICounter1Filled,
WizICounter1,
- WizICounter2Filled,
+ WizICounter1Filled,
WizICounter2,
- WizICounter3Filled,
+ WizICounter2Filled,
WizICounter3,
- WizICounter4Filled,
+ WizICounter3Filled,
WizICounter4,
- WizICounter5Filled,
+ WizICounter4Filled,
WizICounter5,
- WizICounter6Filled,
+ WizICounter5Filled,
WizICounter6,
- WizICounter7Filled,
+ WizICounter6Filled,
WizICounter7,
- WizICounter8Filled,
+ WizICounter7Filled,
WizICounter8,
- WizICounter9Filled,
+ WizICounter8Filled,
WizICounter9,
+ WizICounter9Filled,
WizIDashboard,
WizIDelete,
WizIDemography,
@@ -317,8 +318,8 @@ export {
WizIEmergencyHome,
WizIErrorFilled,
WizIExpandLess,
- WizIExpandMoreBold,
WizIExpandMore,
+ WizIExpandMoreBold,
WizIEye,
WizIFamilyHome,
WizIFeedback,
@@ -330,18 +331,19 @@ export {
WizIHourglassTop,
WizIImageBold,
WizIInboxCustomize,
+ WizIInfo,
WizIInfoBold,
WizIInfoFilled,
- WizIInfo,
WizIKeep,
+ WizIKeepBold,
WizILinkOff,
WizILocationCity,
WizILocationOn,
WizILogin,
WizIMail,
WizIManageAccounts,
- WizIMenuOpen,
WizIMenu,
+ WizIMenuOpen,
WizIMonitoring,
WizIMoreVert,
WizINoteAdd,
@@ -353,8 +355,8 @@ export {
WizIPinDrop,
WizIPlayCircleBold,
WizIPublic,
- WizIRemoveBold,
WizIRemove,
+ WizIRemoveBold,
WizIReviews,
WizISchedule,
WizISearch,
diff --git a/packages/wiz-ui-react/src/components/icons/keep-bold.tsx b/packages/wiz-ui-react/src/components/icons/keep-bold.tsx
new file mode 100644
index 000000000..8e8f8250e
--- /dev/null
+++ b/packages/wiz-ui-react/src/components/icons/keep-bold.tsx
@@ -0,0 +1,18 @@
+import { CSSProperties } from "react";
+type Props = {
+ className?: string;
+ style?: CSSProperties;
+};
+export const WizIKeepBold = ({ className, style }: Props) => (
+
+);
+WizIKeepBold.displayName = "WizIKeepBold";
diff --git a/packages/wiz-ui-react/src/components/icons/keep.tsx b/packages/wiz-ui-react/src/components/icons/keep.tsx
deleted file mode 100644
index 2bfbcd383..000000000
--- a/packages/wiz-ui-react/src/components/icons/keep.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { CSSProperties } from "react";
-type Props = {
- className?: string;
- style?: CSSProperties;
-};
-export const WizIKeep = ({ className, style }: Props) => (
-
-);
-WizIKeep.displayName = "WizIKeep";