diff --git a/package.json b/package.json
index 44f5a237a..85c1d63af 100644
--- a/package.json
+++ b/package.json
@@ -63,7 +63,6 @@
"blurhash": "^2.0.5",
"canvas-confetti": "^1.9.3",
"chart.js": "^4.4.7",
- "cheerio": "^1.0.0",
"chroma-js": "^2.6.0",
"codemirror": "^6.0.1",
"codemirror-json-schema": "^0.7.9",
@@ -162,6 +161,7 @@
"@types/zen-observable": "^0.8.7",
"@vitejs/plugin-react": "^4.3.4",
"camelcase": "^8.0.0",
+ "cheerio": "^1.0.0",
"eventemitter3": "^5.0.1",
"typescript": "^5.7.3",
"vite": "^5.4.14",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3dd6ddf7c..a0b73104d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -144,9 +144,6 @@ importers:
chart.js:
specifier: ^4.4.7
version: 4.4.7
- cheerio:
- specifier: ^1.0.0
- version: 1.0.0
chroma-js:
specifier: ^2.6.0
version: 2.6.0
@@ -413,10 +410,10 @@ importers:
specifier: ^0.6.8
version: 0.6.8
'@types/react':
- specifier: ^18.3.18
+ specifier: ^18.2.22
version: 18.3.18
'@types/react-dom':
- specifier: ^18.3.5
+ specifier: ^18.2.7
version: 18.3.5(@types/react@18.3.18)
'@types/react-window':
specifier: ^1.8.8
@@ -436,6 +433,9 @@ importers:
camelcase:
specifier: ^8.0.0
version: 8.0.0
+ cheerio:
+ specifier: ^1.0.0
+ version: 1.0.0
eventemitter3:
specifier: ^5.0.1
version: 5.0.1
diff --git a/scripts/build-icons.mjs b/scripts/build-icons.mjs
index b314be92a..0b59c6514 100644
--- a/scripts/build-icons.mjs
+++ b/scripts/build-icons.mjs
@@ -1,8 +1,9 @@
-import cheerio from "cheerio";
+import * as cheerio from "cheerio";
import fs from "fs/promises";
import path from "path";
import camelcase from "camelcase";
import * as prettier from "prettier";
+import { nanoid } from "nanoid";
const prettierConfig = JSON.parse(await fs.readFile(".prettierrc", { encoding: "utf-8" }));
@@ -36,6 +37,9 @@ for (const filename of iconsList) {
path.attribs["fill"] = "currentColor";
} else path.attribs["fill"] = "none";
+ // add a "key" attribute to make react happy
+ path.attribs["key"] = nanoid(4);
+
paths.push($.html(path));
}
diff --git a/src/components/icons/activity-heart.tsx b/src/components/icons/activity-heart.tsx
index 6e13b9414..5943303bd 100644
--- a/src/components/icons/activity-heart.tsx
+++ b/src/components/icons/activity-heart.tsx
@@ -11,6 +11,7 @@ const ActivityHeart = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vzuI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/activity.tsx b/src/components/icons/activity.tsx
index 12970ad5e..1f2fb4e3d 100644
--- a/src/components/icons/activity.tsx
+++ b/src/components/icons/activity.tsx
@@ -11,6 +11,7 @@ const Activity = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qB4r"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/airplay.tsx b/src/components/icons/airplay.tsx
index 036bc675f..d1bc728bf 100644
--- a/src/components/icons/airplay.tsx
+++ b/src/components/icons/airplay.tsx
@@ -11,6 +11,7 @@ const Airplay = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Kic8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/airpods.tsx b/src/components/icons/airpods.tsx
index 0f5ae419b..ef445fd51 100644
--- a/src/components/icons/airpods.tsx
+++ b/src/components/icons/airpods.tsx
@@ -11,6 +11,7 @@ const Airpods = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pAoq"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alarm-clock-check.tsx b/src/components/icons/alarm-clock-check.tsx
index ff1954aed..ef3816e15 100644
--- a/src/components/icons/alarm-clock-check.tsx
+++ b/src/components/icons/alarm-clock-check.tsx
@@ -11,6 +11,7 @@ const AlarmClockCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DkUs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alarm-clock-minus.tsx b/src/components/icons/alarm-clock-minus.tsx
index be04bfc53..0bc872e60 100644
--- a/src/components/icons/alarm-clock-minus.tsx
+++ b/src/components/icons/alarm-clock-minus.tsx
@@ -11,6 +11,7 @@ const AlarmClockMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-hY4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alarm-clock-off.tsx b/src/components/icons/alarm-clock-off.tsx
index 96a2135a5..8dae15414 100644
--- a/src/components/icons/alarm-clock-off.tsx
+++ b/src/components/icons/alarm-clock-off.tsx
@@ -11,6 +11,7 @@ const AlarmClockOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MQfZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alarm-clock-plus.tsx b/src/components/icons/alarm-clock-plus.tsx
index ee072ca33..d0e924503 100644
--- a/src/components/icons/alarm-clock-plus.tsx
+++ b/src/components/icons/alarm-clock-plus.tsx
@@ -11,6 +11,7 @@ const AlarmClockPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="y9VM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alarm-clock.tsx b/src/components/icons/alarm-clock.tsx
index 3e59db13b..4492a37ed 100644
--- a/src/components/icons/alarm-clock.tsx
+++ b/src/components/icons/alarm-clock.tsx
@@ -11,6 +11,7 @@ const AlarmClock = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w-Tp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alert-circle.tsx b/src/components/icons/alert-circle.tsx
index d40dfee20..791136f29 100644
--- a/src/components/icons/alert-circle.tsx
+++ b/src/components/icons/alert-circle.tsx
@@ -11,6 +11,7 @@ const AlertCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ik-G"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alert-hexagon.tsx b/src/components/icons/alert-hexagon.tsx
index 727acd153..e56a025b8 100644
--- a/src/components/icons/alert-hexagon.tsx
+++ b/src/components/icons/alert-hexagon.tsx
@@ -11,6 +11,7 @@ const AlertHexagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fPPk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alert-octagon.tsx b/src/components/icons/alert-octagon.tsx
index af1f75326..39948d9ca 100644
--- a/src/components/icons/alert-octagon.tsx
+++ b/src/components/icons/alert-octagon.tsx
@@ -11,6 +11,7 @@ const AlertOctagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="q8Ia"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alert-square.tsx b/src/components/icons/alert-square.tsx
index aa3ca8aff..cd6592931 100644
--- a/src/components/icons/alert-square.tsx
+++ b/src/components/icons/alert-square.tsx
@@ -11,6 +11,7 @@ const AlertSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VBNi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/alert-triangle.tsx b/src/components/icons/alert-triangle.tsx
index 670d31c94..b367f1b31 100644
--- a/src/components/icons/alert-triangle.tsx
+++ b/src/components/icons/alert-triangle.tsx
@@ -11,6 +11,7 @@ const AlertTriangle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6ZeA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-bottom-01.tsx b/src/components/icons/align-bottom-01.tsx
index dbd82f87e..eaaf621fd 100644
--- a/src/components/icons/align-bottom-01.tsx
+++ b/src/components/icons/align-bottom-01.tsx
@@ -11,6 +11,7 @@ const AlignBottom01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9a8x"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-bottom-02.tsx b/src/components/icons/align-bottom-02.tsx
index 66e863665..a1e339901 100644
--- a/src/components/icons/align-bottom-02.tsx
+++ b/src/components/icons/align-bottom-02.tsx
@@ -11,6 +11,7 @@ const AlignBottom02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="39WB"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-center.tsx b/src/components/icons/align-center.tsx
index a116af89f..632079697 100644
--- a/src/components/icons/align-center.tsx
+++ b/src/components/icons/align-center.tsx
@@ -11,6 +11,7 @@ const AlignCenter = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eUhx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-horizontal-centre-01.tsx b/src/components/icons/align-horizontal-centre-01.tsx
index 52180ab29..52b7ac100 100644
--- a/src/components/icons/align-horizontal-centre-01.tsx
+++ b/src/components/icons/align-horizontal-centre-01.tsx
@@ -11,6 +11,7 @@ const AlignHorizontalCentre01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZOx4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-horizontal-centre-02.tsx b/src/components/icons/align-horizontal-centre-02.tsx
index 97ffa11d2..db05b6bfa 100644
--- a/src/components/icons/align-horizontal-centre-02.tsx
+++ b/src/components/icons/align-horizontal-centre-02.tsx
@@ -11,6 +11,7 @@ const AlignHorizontalCentre02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aKBI"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-justify.tsx b/src/components/icons/align-justify.tsx
index 4f5a63289..40ed52d25 100644
--- a/src/components/icons/align-justify.tsx
+++ b/src/components/icons/align-justify.tsx
@@ -11,6 +11,7 @@ const AlignJustify = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zI5_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-left-01.tsx b/src/components/icons/align-left-01.tsx
index e54045500..0442743bd 100644
--- a/src/components/icons/align-left-01.tsx
+++ b/src/components/icons/align-left-01.tsx
@@ -11,6 +11,7 @@ const AlignLeft01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8q8I"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-left-02.tsx b/src/components/icons/align-left-02.tsx
index b2631103f..62f99b4a3 100644
--- a/src/components/icons/align-left-02.tsx
+++ b/src/components/icons/align-left-02.tsx
@@ -11,6 +11,7 @@ const AlignLeft02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Tp9P"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-left.tsx b/src/components/icons/align-left.tsx
index 1404458ee..185df4676 100644
--- a/src/components/icons/align-left.tsx
+++ b/src/components/icons/align-left.tsx
@@ -11,6 +11,7 @@ const AlignLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2Lri"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-right-01.tsx b/src/components/icons/align-right-01.tsx
index 92247f6c2..8e1853205 100644
--- a/src/components/icons/align-right-01.tsx
+++ b/src/components/icons/align-right-01.tsx
@@ -11,6 +11,7 @@ const AlignRight01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-HDc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-right-02.tsx b/src/components/icons/align-right-02.tsx
index b452f377b..989d5ec03 100644
--- a/src/components/icons/align-right-02.tsx
+++ b/src/components/icons/align-right-02.tsx
@@ -11,6 +11,7 @@ const AlignRight02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PNi1"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-right.tsx b/src/components/icons/align-right.tsx
index 8c50d0e9d..9b6ae680c 100644
--- a/src/components/icons/align-right.tsx
+++ b/src/components/icons/align-right.tsx
@@ -11,6 +11,7 @@ const AlignRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="thMu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-top-01.tsx b/src/components/icons/align-top-01.tsx
index 3b2f5767c..f1652fb06 100644
--- a/src/components/icons/align-top-01.tsx
+++ b/src/components/icons/align-top-01.tsx
@@ -11,6 +11,7 @@ const AlignTop01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w9N9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-top-02.tsx b/src/components/icons/align-top-02.tsx
index f451eddd4..7c29f6a90 100644
--- a/src/components/icons/align-top-02.tsx
+++ b/src/components/icons/align-top-02.tsx
@@ -11,6 +11,7 @@ const AlignTop02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="W2Mh"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-vertical-center-01.tsx b/src/components/icons/align-vertical-center-01.tsx
index 9ffbbc621..a23f52217 100644
--- a/src/components/icons/align-vertical-center-01.tsx
+++ b/src/components/icons/align-vertical-center-01.tsx
@@ -11,6 +11,7 @@ const AlignVerticalCenter01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xRX8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/align-vertical-center-02.tsx b/src/components/icons/align-vertical-center-02.tsx
index 4f8224feb..4a27be32d 100644
--- a/src/components/icons/align-vertical-center-02.tsx
+++ b/src/components/icons/align-vertical-center-02.tsx
@@ -11,6 +11,7 @@ const AlignVerticalCenter02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SXkh"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/anchor.tsx b/src/components/icons/anchor.tsx
index 08c1d65de..e0a6a7765 100644
--- a/src/components/icons/anchor.tsx
+++ b/src/components/icons/anchor.tsx
@@ -11,6 +11,7 @@ const Anchor = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="a2dC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-alert.tsx b/src/components/icons/annotation-alert.tsx
index 324724425..1c5f58d82 100644
--- a/src/components/icons/annotation-alert.tsx
+++ b/src/components/icons/annotation-alert.tsx
@@ -11,6 +11,7 @@ const AnnotationAlert = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EOb0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-check.tsx b/src/components/icons/annotation-check.tsx
index 715165e55..02d551385 100644
--- a/src/components/icons/annotation-check.tsx
+++ b/src/components/icons/annotation-check.tsx
@@ -11,6 +11,7 @@ const AnnotationCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Y03f"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-dots.tsx b/src/components/icons/annotation-dots.tsx
index 76dfcad3f..d53b6ec2f 100644
--- a/src/components/icons/annotation-dots.tsx
+++ b/src/components/icons/annotation-dots.tsx
@@ -11,6 +11,7 @@ const AnnotationDots = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5Y0t"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-heart.tsx b/src/components/icons/annotation-heart.tsx
index faa608b47..a853fa6ae 100644
--- a/src/components/icons/annotation-heart.tsx
+++ b/src/components/icons/annotation-heart.tsx
@@ -11,6 +11,7 @@ const AnnotationHeart = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="crCp"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-info.tsx b/src/components/icons/annotation-info.tsx
index b501b35cb..4e6a17bfd 100644
--- a/src/components/icons/annotation-info.tsx
+++ b/src/components/icons/annotation-info.tsx
@@ -11,6 +11,7 @@ const AnnotationInfo = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xdA9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-plus.tsx b/src/components/icons/annotation-plus.tsx
index d1fc08291..1284cdacb 100644
--- a/src/components/icons/annotation-plus.tsx
+++ b/src/components/icons/annotation-plus.tsx
@@ -11,6 +11,7 @@ const AnnotationPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IZ5O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-question.tsx b/src/components/icons/annotation-question.tsx
index 34f2f1f69..9e280840c 100644
--- a/src/components/icons/annotation-question.tsx
+++ b/src/components/icons/annotation-question.tsx
@@ -11,6 +11,7 @@ const AnnotationQuestion = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WZZV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation-x.tsx b/src/components/icons/annotation-x.tsx
index 3a44b01b2..2d49ebb40 100644
--- a/src/components/icons/annotation-x.tsx
+++ b/src/components/icons/annotation-x.tsx
@@ -11,6 +11,7 @@ const AnnotationX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hyUo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/annotation.tsx b/src/components/icons/annotation.tsx
index 9078661fc..659eb94af 100644
--- a/src/components/icons/annotation.tsx
+++ b/src/components/icons/annotation.tsx
@@ -11,6 +11,7 @@ const Annotation = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="07M1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/announcement-01.tsx b/src/components/icons/announcement-01.tsx
index 0beb8d04c..b1a531d3e 100644
--- a/src/components/icons/announcement-01.tsx
+++ b/src/components/icons/announcement-01.tsx
@@ -11,6 +11,7 @@ const Announcement01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DRby"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/announcement-02.tsx b/src/components/icons/announcement-02.tsx
index acd41d8bc..65d4475b5 100644
--- a/src/components/icons/announcement-02.tsx
+++ b/src/components/icons/announcement-02.tsx
@@ -11,6 +11,7 @@ const Announcement02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KfdI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/announcement-03.tsx b/src/components/icons/announcement-03.tsx
index 9672b3a80..81f2b9957 100644
--- a/src/components/icons/announcement-03.tsx
+++ b/src/components/icons/announcement-03.tsx
@@ -11,6 +11,7 @@ const Announcement03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="nDU1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/archive.tsx b/src/components/icons/archive.tsx
index b6b39b798..8d6afa7d4 100644
--- a/src/components/icons/archive.tsx
+++ b/src/components/icons/archive.tsx
@@ -11,6 +11,7 @@ const Archive = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tbZB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-block-down.tsx b/src/components/icons/arrow-block-down.tsx
index cbfdc0204..2568edd52 100644
--- a/src/components/icons/arrow-block-down.tsx
+++ b/src/components/icons/arrow-block-down.tsx
@@ -11,6 +11,7 @@ const ArrowBlockDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UbI2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-block-left.tsx b/src/components/icons/arrow-block-left.tsx
index cbfd53661..3c26562b8 100644
--- a/src/components/icons/arrow-block-left.tsx
+++ b/src/components/icons/arrow-block-left.tsx
@@ -11,6 +11,7 @@ const ArrowBlockLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="L2Rg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-block-right.tsx b/src/components/icons/arrow-block-right.tsx
index 0794e2699..ca52be1ba 100644
--- a/src/components/icons/arrow-block-right.tsx
+++ b/src/components/icons/arrow-block-right.tsx
@@ -11,6 +11,7 @@ const ArrowBlockRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XXqb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-block-up.tsx b/src/components/icons/arrow-block-up.tsx
index 61ecbc61d..699dd241a 100644
--- a/src/components/icons/arrow-block-up.tsx
+++ b/src/components/icons/arrow-block-up.tsx
@@ -11,6 +11,7 @@ const ArrowBlockUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eDpR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-down-left.tsx b/src/components/icons/arrow-circle-broken-down-left.tsx
index a293a81d2..2af095bb9 100644
--- a/src/components/icons/arrow-circle-broken-down-left.tsx
+++ b/src/components/icons/arrow-circle-broken-down-left.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenDownLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="T4gs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-down-right.tsx b/src/components/icons/arrow-circle-broken-down-right.tsx
index 37cf76f37..d6fe49bfd 100644
--- a/src/components/icons/arrow-circle-broken-down-right.tsx
+++ b/src/components/icons/arrow-circle-broken-down-right.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenDownRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_HNC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-down.tsx b/src/components/icons/arrow-circle-broken-down.tsx
index 13c04e41a..9d66d8197 100644
--- a/src/components/icons/arrow-circle-broken-down.tsx
+++ b/src/components/icons/arrow-circle-broken-down.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iONi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-left.tsx b/src/components/icons/arrow-circle-broken-left.tsx
index 88623a588..b72942de5 100644
--- a/src/components/icons/arrow-circle-broken-left.tsx
+++ b/src/components/icons/arrow-circle-broken-left.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WGwk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-right.tsx b/src/components/icons/arrow-circle-broken-right.tsx
index d30efa780..4b5a92bb9 100644
--- a/src/components/icons/arrow-circle-broken-right.tsx
+++ b/src/components/icons/arrow-circle-broken-right.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lHz1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-up-left.tsx b/src/components/icons/arrow-circle-broken-up-left.tsx
index 9f52e7339..9d17765eb 100644
--- a/src/components/icons/arrow-circle-broken-up-left.tsx
+++ b/src/components/icons/arrow-circle-broken-up-left.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenUpLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YWoa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-up-right.tsx b/src/components/icons/arrow-circle-broken-up-right.tsx
index 32e37009f..de3f42e15 100644
--- a/src/components/icons/arrow-circle-broken-up-right.tsx
+++ b/src/components/icons/arrow-circle-broken-up-right.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenUpRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="khYE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-broken-up.tsx b/src/components/icons/arrow-circle-broken-up.tsx
index 3cf4ca068..24351501b 100644
--- a/src/components/icons/arrow-circle-broken-up.tsx
+++ b/src/components/icons/arrow-circle-broken-up.tsx
@@ -11,6 +11,7 @@ const ArrowCircleBrokenUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="g2_7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-down-left.tsx b/src/components/icons/arrow-circle-down-left.tsx
index 74d4a8efd..4c22659f4 100644
--- a/src/components/icons/arrow-circle-down-left.tsx
+++ b/src/components/icons/arrow-circle-down-left.tsx
@@ -11,6 +11,7 @@ const ArrowCircleDownLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PvsE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-down-right.tsx b/src/components/icons/arrow-circle-down-right.tsx
index ff9deb7b6..383ead261 100644
--- a/src/components/icons/arrow-circle-down-right.tsx
+++ b/src/components/icons/arrow-circle-down-right.tsx
@@ -11,6 +11,7 @@ const ArrowCircleDownRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="E1D4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-down.tsx b/src/components/icons/arrow-circle-down.tsx
index 83c464892..3733c76fb 100644
--- a/src/components/icons/arrow-circle-down.tsx
+++ b/src/components/icons/arrow-circle-down.tsx
@@ -11,6 +11,7 @@ const ArrowCircleDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ydc8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-left.tsx b/src/components/icons/arrow-circle-left.tsx
index cee4167f4..df0d9c433 100644
--- a/src/components/icons/arrow-circle-left.tsx
+++ b/src/components/icons/arrow-circle-left.tsx
@@ -11,6 +11,7 @@ const ArrowCircleLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3X39"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-right.tsx b/src/components/icons/arrow-circle-right.tsx
index c6ee59e89..ae4b7fb3d 100644
--- a/src/components/icons/arrow-circle-right.tsx
+++ b/src/components/icons/arrow-circle-right.tsx
@@ -11,6 +11,7 @@ const ArrowCircleRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="c-G_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-up-left.tsx b/src/components/icons/arrow-circle-up-left.tsx
index 9acbde10f..7dfc6f4fd 100644
--- a/src/components/icons/arrow-circle-up-left.tsx
+++ b/src/components/icons/arrow-circle-up-left.tsx
@@ -11,6 +11,7 @@ const ArrowCircleUpLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BjNS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-up-right.tsx b/src/components/icons/arrow-circle-up-right.tsx
index 81d7af26f..7aa1481e3 100644
--- a/src/components/icons/arrow-circle-up-right.tsx
+++ b/src/components/icons/arrow-circle-up-right.tsx
@@ -11,6 +11,7 @@ const ArrowCircleUpRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IxlZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-circle-up.tsx b/src/components/icons/arrow-circle-up.tsx
index e3d65df97..59a4ae9e7 100644
--- a/src/components/icons/arrow-circle-up.tsx
+++ b/src/components/icons/arrow-circle-up.tsx
@@ -11,6 +11,7 @@ const ArrowCircleUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3a7Y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-down-left.tsx b/src/components/icons/arrow-down-left.tsx
index 9b9d81a0e..485952cf9 100644
--- a/src/components/icons/arrow-down-left.tsx
+++ b/src/components/icons/arrow-down-left.tsx
@@ -11,6 +11,7 @@ const ArrowDownLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ov54"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-down-right.tsx b/src/components/icons/arrow-down-right.tsx
index fe79bda8a..f5a3870ed 100644
--- a/src/components/icons/arrow-down-right.tsx
+++ b/src/components/icons/arrow-down-right.tsx
@@ -11,6 +11,7 @@ const ArrowDownRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WEl7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-down.tsx b/src/components/icons/arrow-down.tsx
index e4177dd2c..0373f63bc 100644
--- a/src/components/icons/arrow-down.tsx
+++ b/src/components/icons/arrow-down.tsx
@@ -11,6 +11,7 @@ const ArrowDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GPB2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-left.tsx b/src/components/icons/arrow-left.tsx
index 3f3ef21b3..15015868d 100644
--- a/src/components/icons/arrow-left.tsx
+++ b/src/components/icons/arrow-left.tsx
@@ -11,6 +11,7 @@ const ArrowLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ci3U"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-down-left.tsx b/src/components/icons/arrow-narrow-down-left.tsx
index 6710d3eb0..87f6246d9 100644
--- a/src/components/icons/arrow-narrow-down-left.tsx
+++ b/src/components/icons/arrow-narrow-down-left.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowDownLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="G5KK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-down-right.tsx b/src/components/icons/arrow-narrow-down-right.tsx
index 2354395e0..ff8a97534 100644
--- a/src/components/icons/arrow-narrow-down-right.tsx
+++ b/src/components/icons/arrow-narrow-down-right.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowDownRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KLKz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-down.tsx b/src/components/icons/arrow-narrow-down.tsx
index 7b848edac..1248762a9 100644
--- a/src/components/icons/arrow-narrow-down.tsx
+++ b/src/components/icons/arrow-narrow-down.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4G3Y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-left.tsx b/src/components/icons/arrow-narrow-left.tsx
index c62a90761..3ec059693 100644
--- a/src/components/icons/arrow-narrow-left.tsx
+++ b/src/components/icons/arrow-narrow-left.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GeMK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-right.tsx b/src/components/icons/arrow-narrow-right.tsx
index 9f37cf47d..f454cd57f 100644
--- a/src/components/icons/arrow-narrow-right.tsx
+++ b/src/components/icons/arrow-narrow-right.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xJVx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-up-left.tsx b/src/components/icons/arrow-narrow-up-left.tsx
index 275f66444..18a7ad832 100644
--- a/src/components/icons/arrow-narrow-up-left.tsx
+++ b/src/components/icons/arrow-narrow-up-left.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowUpLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="S89v"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-up-right.tsx b/src/components/icons/arrow-narrow-up-right.tsx
index e885333d9..eacb19a77 100644
--- a/src/components/icons/arrow-narrow-up-right.tsx
+++ b/src/components/icons/arrow-narrow-up-right.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowUpRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="e3gy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-narrow-up.tsx b/src/components/icons/arrow-narrow-up.tsx
index 5aa90b163..201751ab3 100644
--- a/src/components/icons/arrow-narrow-up.tsx
+++ b/src/components/icons/arrow-narrow-up.tsx
@@ -11,6 +11,7 @@ const ArrowNarrowUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="daZm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-right.tsx b/src/components/icons/arrow-right.tsx
index a71dca87b..d37fd550c 100644
--- a/src/components/icons/arrow-right.tsx
+++ b/src/components/icons/arrow-right.tsx
@@ -11,6 +11,7 @@ const ArrowRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uSDv"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-down-left.tsx b/src/components/icons/arrow-square-down-left.tsx
index 4270dee80..eefac64cb 100644
--- a/src/components/icons/arrow-square-down-left.tsx
+++ b/src/components/icons/arrow-square-down-left.tsx
@@ -11,6 +11,7 @@ const ArrowSquareDownLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2-Wh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-down-right.tsx b/src/components/icons/arrow-square-down-right.tsx
index 82235d6e1..042d67b9c 100644
--- a/src/components/icons/arrow-square-down-right.tsx
+++ b/src/components/icons/arrow-square-down-right.tsx
@@ -11,6 +11,7 @@ const ArrowSquareDownRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZqNT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-down.tsx b/src/components/icons/arrow-square-down.tsx
index 3a37db928..e3dc1bddc 100644
--- a/src/components/icons/arrow-square-down.tsx
+++ b/src/components/icons/arrow-square-down.tsx
@@ -11,6 +11,7 @@ const ArrowSquareDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QzxU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-left.tsx b/src/components/icons/arrow-square-left.tsx
index d7d247314..941333e10 100644
--- a/src/components/icons/arrow-square-left.tsx
+++ b/src/components/icons/arrow-square-left.tsx
@@ -11,6 +11,7 @@ const ArrowSquareLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QyR0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-right.tsx b/src/components/icons/arrow-square-right.tsx
index 4fe316e44..e4fc5cd2a 100644
--- a/src/components/icons/arrow-square-right.tsx
+++ b/src/components/icons/arrow-square-right.tsx
@@ -11,6 +11,7 @@ const ArrowSquareRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Pw7l"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-up-left.tsx b/src/components/icons/arrow-square-up-left.tsx
index fa31d7ccd..3c9fddf2b 100644
--- a/src/components/icons/arrow-square-up-left.tsx
+++ b/src/components/icons/arrow-square-up-left.tsx
@@ -11,6 +11,7 @@ const ArrowSquareUpLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FEEA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-up-right.tsx b/src/components/icons/arrow-square-up-right.tsx
index 3353b4416..d01669a80 100644
--- a/src/components/icons/arrow-square-up-right.tsx
+++ b/src/components/icons/arrow-square-up-right.tsx
@@ -11,6 +11,7 @@ const ArrowSquareUpRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BZgi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-square-up.tsx b/src/components/icons/arrow-square-up.tsx
index 1c5aacfd4..312d040c4 100644
--- a/src/components/icons/arrow-square-up.tsx
+++ b/src/components/icons/arrow-square-up.tsx
@@ -11,6 +11,7 @@ const ArrowSquareUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PPiG"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-up-left.tsx b/src/components/icons/arrow-up-left.tsx
index cb8d56aaa..0a36f6688 100644
--- a/src/components/icons/arrow-up-left.tsx
+++ b/src/components/icons/arrow-up-left.tsx
@@ -11,6 +11,7 @@ const ArrowUpLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TUrQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-up-right.tsx b/src/components/icons/arrow-up-right.tsx
index e73b6b8ec..44cbea2e5 100644
--- a/src/components/icons/arrow-up-right.tsx
+++ b/src/components/icons/arrow-up-right.tsx
@@ -11,6 +11,7 @@ const ArrowUpRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="N__i"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrow-up.tsx b/src/components/icons/arrow-up.tsx
index fd0b4ec49..958dcf5f2 100644
--- a/src/components/icons/arrow-up.tsx
+++ b/src/components/icons/arrow-up.tsx
@@ -11,6 +11,7 @@ const ArrowUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Dcpt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrows-down.tsx b/src/components/icons/arrows-down.tsx
index 082b275f2..943ebfb26 100644
--- a/src/components/icons/arrows-down.tsx
+++ b/src/components/icons/arrows-down.tsx
@@ -11,6 +11,7 @@ const ArrowsDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hbFL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrows-left.tsx b/src/components/icons/arrows-left.tsx
index 802ff68a0..766ed58e4 100644
--- a/src/components/icons/arrows-left.tsx
+++ b/src/components/icons/arrows-left.tsx
@@ -11,6 +11,7 @@ const ArrowsLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PhfT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrows-right.tsx b/src/components/icons/arrows-right.tsx
index 6978addb7..10a91c069 100644
--- a/src/components/icons/arrows-right.tsx
+++ b/src/components/icons/arrows-right.tsx
@@ -11,6 +11,7 @@ const ArrowsRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vjOT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrows-triangle.tsx b/src/components/icons/arrows-triangle.tsx
index 9b39fdb0b..62b0e4f24 100644
--- a/src/components/icons/arrows-triangle.tsx
+++ b/src/components/icons/arrows-triangle.tsx
@@ -11,6 +11,7 @@ const ArrowsTriangle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9SxE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/arrows-up.tsx b/src/components/icons/arrows-up.tsx
index d7eb506f4..b9aecab2b 100644
--- a/src/components/icons/arrows-up.tsx
+++ b/src/components/icons/arrows-up.tsx
@@ -11,6 +11,7 @@ const ArrowsUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Icfi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/asterisk-01.tsx b/src/components/icons/asterisk-01.tsx
index 1890934f3..daa5a65a1 100644
--- a/src/components/icons/asterisk-01.tsx
+++ b/src/components/icons/asterisk-01.tsx
@@ -11,6 +11,7 @@ const Asterisk01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CeNX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/asterisk-02.tsx b/src/components/icons/asterisk-02.tsx
index 08fc6b5ea..d438f6642 100644
--- a/src/components/icons/asterisk-02.tsx
+++ b/src/components/icons/asterisk-02.tsx
@@ -11,6 +11,7 @@ const Asterisk02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yKaY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/at-sign.tsx b/src/components/icons/at-sign.tsx
index 633e2cd2e..d02238599 100644
--- a/src/components/icons/at-sign.tsx
+++ b/src/components/icons/at-sign.tsx
@@ -11,6 +11,7 @@ const AtSign = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XEEz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/atom-01.tsx b/src/components/icons/atom-01.tsx
index ee24ad284..02e87103a 100644
--- a/src/components/icons/atom-01.tsx
+++ b/src/components/icons/atom-01.tsx
@@ -11,6 +11,7 @@ const Atom01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ry29"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/atom-02.tsx b/src/components/icons/atom-02.tsx
index a341e0375..853b0c0f1 100644
--- a/src/components/icons/atom-02.tsx
+++ b/src/components/icons/atom-02.tsx
@@ -11,6 +11,7 @@ const Atom02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3XjX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/attachment-01.tsx b/src/components/icons/attachment-01.tsx
index 7319b5f05..478ff1eaf 100644
--- a/src/components/icons/attachment-01.tsx
+++ b/src/components/icons/attachment-01.tsx
@@ -11,6 +11,7 @@ const Attachment01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="haH6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/attachment-02.tsx b/src/components/icons/attachment-02.tsx
index 14aca3c3c..c69c20b9d 100644
--- a/src/components/icons/attachment-02.tsx
+++ b/src/components/icons/attachment-02.tsx
@@ -11,6 +11,7 @@ const Attachment02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YzvU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/award-01.tsx b/src/components/icons/award-01.tsx
index d810ac651..f68dcf69b 100644
--- a/src/components/icons/award-01.tsx
+++ b/src/components/icons/award-01.tsx
@@ -11,6 +11,7 @@ const Award01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="j4Wl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/award-02.tsx b/src/components/icons/award-02.tsx
index 6846f6534..7b23ae148 100644
--- a/src/components/icons/award-02.tsx
+++ b/src/components/icons/award-02.tsx
@@ -11,6 +11,7 @@ const Award02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GUn4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/award-03.tsx b/src/components/icons/award-03.tsx
index 5833b8f1f..e7881ba38 100644
--- a/src/components/icons/award-03.tsx
+++ b/src/components/icons/award-03.tsx
@@ -11,6 +11,7 @@ const Award03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="enwn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/award-04.tsx b/src/components/icons/award-04.tsx
index 037223d26..a7caed06a 100644
--- a/src/components/icons/award-04.tsx
+++ b/src/components/icons/award-04.tsx
@@ -11,6 +11,7 @@ const Award04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YowP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/award-05.tsx b/src/components/icons/award-05.tsx
index 146191f30..996bb0e56 100644
--- a/src/components/icons/award-05.tsx
+++ b/src/components/icons/award-05.tsx
@@ -11,6 +11,7 @@ const Award05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PvBY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/backpack.tsx b/src/components/icons/backpack.tsx
index 2f31596e9..8a2eaf4f8 100644
--- a/src/components/icons/backpack.tsx
+++ b/src/components/icons/backpack.tsx
@@ -11,6 +11,7 @@ const Backpack = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BX7z"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bank-note-01.tsx b/src/components/icons/bank-note-01.tsx
index 5a7651a87..7b475d076 100644
--- a/src/components/icons/bank-note-01.tsx
+++ b/src/components/icons/bank-note-01.tsx
@@ -11,6 +11,7 @@ const BankNote01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TPRh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bank-note-02.tsx b/src/components/icons/bank-note-02.tsx
index bce15295e..1aea42eb3 100644
--- a/src/components/icons/bank-note-02.tsx
+++ b/src/components/icons/bank-note-02.tsx
@@ -11,6 +11,7 @@ const BankNote02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VZa_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bank-note-03.tsx b/src/components/icons/bank-note-03.tsx
index ea5923cd1..741790e17 100644
--- a/src/components/icons/bank-note-03.tsx
+++ b/src/components/icons/bank-note-03.tsx
@@ -11,6 +11,7 @@ const BankNote03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zkO6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bank.tsx b/src/components/icons/bank.tsx
index 256d057db..976204e79 100644
--- a/src/components/icons/bank.tsx
+++ b/src/components/icons/bank.tsx
@@ -11,6 +11,7 @@ const Bank = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="44PN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-01.tsx b/src/components/icons/bar-chart-01.tsx
index 5e8b4ecd1..7441da7a3 100644
--- a/src/components/icons/bar-chart-01.tsx
+++ b/src/components/icons/bar-chart-01.tsx
@@ -11,6 +11,7 @@ const BarChart01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="N9MO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-02.tsx b/src/components/icons/bar-chart-02.tsx
index b4af274a0..b9be080ed 100644
--- a/src/components/icons/bar-chart-02.tsx
+++ b/src/components/icons/bar-chart-02.tsx
@@ -11,6 +11,7 @@ const BarChart02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Hoif"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-03.tsx b/src/components/icons/bar-chart-03.tsx
index 2d9e2467c..77e17e165 100644
--- a/src/components/icons/bar-chart-03.tsx
+++ b/src/components/icons/bar-chart-03.tsx
@@ -11,6 +11,7 @@ const BarChart03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Qb0m"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-04.tsx b/src/components/icons/bar-chart-04.tsx
index 4edb518ac..03170692a 100644
--- a/src/components/icons/bar-chart-04.tsx
+++ b/src/components/icons/bar-chart-04.tsx
@@ -11,6 +11,7 @@ const BarChart04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="c2U7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-05.tsx b/src/components/icons/bar-chart-05.tsx
index af0b57bbe..97530cbb2 100644
--- a/src/components/icons/bar-chart-05.tsx
+++ b/src/components/icons/bar-chart-05.tsx
@@ -11,6 +11,7 @@ const BarChart05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RXO4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-06.tsx b/src/components/icons/bar-chart-06.tsx
index 184c1c375..c709da063 100644
--- a/src/components/icons/bar-chart-06.tsx
+++ b/src/components/icons/bar-chart-06.tsx
@@ -11,6 +11,7 @@ const BarChart06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-L7X"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-07.tsx b/src/components/icons/bar-chart-07.tsx
index 1aacbb8de..35f3d6a15 100644
--- a/src/components/icons/bar-chart-07.tsx
+++ b/src/components/icons/bar-chart-07.tsx
@@ -11,6 +11,7 @@ const BarChart07 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QaF6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-08.tsx b/src/components/icons/bar-chart-08.tsx
index a26303dab..e4891e9df 100644
--- a/src/components/icons/bar-chart-08.tsx
+++ b/src/components/icons/bar-chart-08.tsx
@@ -11,6 +11,7 @@ const BarChart08 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="P6dT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-09.tsx b/src/components/icons/bar-chart-09.tsx
index ebe6a82be..116d53ae6 100644
--- a/src/components/icons/bar-chart-09.tsx
+++ b/src/components/icons/bar-chart-09.tsx
@@ -11,6 +11,7 @@ const BarChart09 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qLB0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-10.tsx b/src/components/icons/bar-chart-10.tsx
index 2bb2aae61..3633360f3 100644
--- a/src/components/icons/bar-chart-10.tsx
+++ b/src/components/icons/bar-chart-10.tsx
@@ -11,6 +11,7 @@ const BarChart10 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rxhE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-11.tsx b/src/components/icons/bar-chart-11.tsx
index f91e34d51..30d4ea597 100644
--- a/src/components/icons/bar-chart-11.tsx
+++ b/src/components/icons/bar-chart-11.tsx
@@ -11,6 +11,7 @@ const BarChart11 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Cnb9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-12.tsx b/src/components/icons/bar-chart-12.tsx
index a3541d999..8977aa377 100644
--- a/src/components/icons/bar-chart-12.tsx
+++ b/src/components/icons/bar-chart-12.tsx
@@ -11,6 +11,7 @@ const BarChart12 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aO4K"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-circle-01.tsx b/src/components/icons/bar-chart-circle-01.tsx
index 6e8584c00..ec7aea85f 100644
--- a/src/components/icons/bar-chart-circle-01.tsx
+++ b/src/components/icons/bar-chart-circle-01.tsx
@@ -11,6 +11,7 @@ const BarChartCircle01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gtP0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-circle-02.tsx b/src/components/icons/bar-chart-circle-02.tsx
index 13ebbb502..1e63edbfc 100644
--- a/src/components/icons/bar-chart-circle-02.tsx
+++ b/src/components/icons/bar-chart-circle-02.tsx
@@ -11,6 +11,7 @@ const BarChartCircle02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Mt5O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-circle-03.tsx b/src/components/icons/bar-chart-circle-03.tsx
index d469f48f6..b3fa78b9b 100644
--- a/src/components/icons/bar-chart-circle-03.tsx
+++ b/src/components/icons/bar-chart-circle-03.tsx
@@ -11,6 +11,7 @@ const BarChartCircle03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7Rrj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-square-01.tsx b/src/components/icons/bar-chart-square-01.tsx
index 861d35a81..185bf9a2f 100644
--- a/src/components/icons/bar-chart-square-01.tsx
+++ b/src/components/icons/bar-chart-square-01.tsx
@@ -11,6 +11,7 @@ const BarChartSquare01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ax2w"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-square-02.tsx b/src/components/icons/bar-chart-square-02.tsx
index be373c43a..1a6f2e144 100644
--- a/src/components/icons/bar-chart-square-02.tsx
+++ b/src/components/icons/bar-chart-square-02.tsx
@@ -11,6 +11,7 @@ const BarChartSquare02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EBu5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-square-03.tsx b/src/components/icons/bar-chart-square-03.tsx
index 234c0be93..563a5f108 100644
--- a/src/components/icons/bar-chart-square-03.tsx
+++ b/src/components/icons/bar-chart-square-03.tsx
@@ -11,6 +11,7 @@ const BarChartSquare03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="exEL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-square-down.tsx b/src/components/icons/bar-chart-square-down.tsx
index dcb0cc095..db3294aa2 100644
--- a/src/components/icons/bar-chart-square-down.tsx
+++ b/src/components/icons/bar-chart-square-down.tsx
@@ -11,6 +11,7 @@ const BarChartSquareDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="a91-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-square-minus.tsx b/src/components/icons/bar-chart-square-minus.tsx
index 1a12db077..acde9aeee 100644
--- a/src/components/icons/bar-chart-square-minus.tsx
+++ b/src/components/icons/bar-chart-square-minus.tsx
@@ -11,6 +11,7 @@ const BarChartSquareMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7Ypk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-square-plus.tsx b/src/components/icons/bar-chart-square-plus.tsx
index 1e5cd98de..6560d8a7a 100644
--- a/src/components/icons/bar-chart-square-plus.tsx
+++ b/src/components/icons/bar-chart-square-plus.tsx
@@ -11,6 +11,7 @@ const BarChartSquarePlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="p009"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-chart-square-up.tsx b/src/components/icons/bar-chart-square-up.tsx
index 6058e2f1d..a04295271 100644
--- a/src/components/icons/bar-chart-square-up.tsx
+++ b/src/components/icons/bar-chart-square-up.tsx
@@ -11,6 +11,7 @@ const BarChartSquareUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Gkm1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bar-line-chart.tsx b/src/components/icons/bar-line-chart.tsx
index 30a84738a..421f1d8d3 100644
--- a/src/components/icons/bar-line-chart.tsx
+++ b/src/components/icons/bar-line-chart.tsx
@@ -11,6 +11,7 @@ const BarLineChart = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1K7i"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/battery-charging-01.tsx b/src/components/icons/battery-charging-01.tsx
index 3a8b1c0d7..e5534706f 100644
--- a/src/components/icons/battery-charging-01.tsx
+++ b/src/components/icons/battery-charging-01.tsx
@@ -11,6 +11,7 @@ const BatteryCharging01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4vtu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/battery-charging-02.tsx b/src/components/icons/battery-charging-02.tsx
index fbd3d73d3..19a497c78 100644
--- a/src/components/icons/battery-charging-02.tsx
+++ b/src/components/icons/battery-charging-02.tsx
@@ -11,6 +11,7 @@ const BatteryCharging02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JlZ8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/battery-empty.tsx b/src/components/icons/battery-empty.tsx
index a52d53224..d626595f0 100644
--- a/src/components/icons/battery-empty.tsx
+++ b/src/components/icons/battery-empty.tsx
@@ -11,6 +11,7 @@ const BatteryEmpty = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="p2Cp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/battery-full.tsx b/src/components/icons/battery-full.tsx
index 19e401076..7c4d9e487 100644
--- a/src/components/icons/battery-full.tsx
+++ b/src/components/icons/battery-full.tsx
@@ -11,6 +11,7 @@ const BatteryFull = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rW72"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/battery-low.tsx b/src/components/icons/battery-low.tsx
index f4e6c9c9f..c8ec334ba 100644
--- a/src/components/icons/battery-low.tsx
+++ b/src/components/icons/battery-low.tsx
@@ -11,6 +11,7 @@ const BatteryLow = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VKnz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/battery-mid.tsx b/src/components/icons/battery-mid.tsx
index c2fd6f1fd..ebe511500 100644
--- a/src/components/icons/battery-mid.tsx
+++ b/src/components/icons/battery-mid.tsx
@@ -11,6 +11,7 @@ const BatteryMid = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mer3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/beaker-01.tsx b/src/components/icons/beaker-01.tsx
index a3787bd5f..f8a5f5622 100644
--- a/src/components/icons/beaker-01.tsx
+++ b/src/components/icons/beaker-01.tsx
@@ -11,6 +11,7 @@ const Beaker01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XLqs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/beaker-02.tsx b/src/components/icons/beaker-02.tsx
index 62f74d9c0..366ef7490 100644
--- a/src/components/icons/beaker-02.tsx
+++ b/src/components/icons/beaker-02.tsx
@@ -11,6 +11,7 @@ const Beaker02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="h6pM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-01.tsx b/src/components/icons/bell-01.tsx
index cfd9e5537..6557863c3 100644
--- a/src/components/icons/bell-01.tsx
+++ b/src/components/icons/bell-01.tsx
@@ -11,6 +11,7 @@ const Bell01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5xGA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-02.tsx b/src/components/icons/bell-02.tsx
index ff6543d01..b26b49e00 100644
--- a/src/components/icons/bell-02.tsx
+++ b/src/components/icons/bell-02.tsx
@@ -11,6 +11,7 @@ const Bell02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OzJ5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-03.tsx b/src/components/icons/bell-03.tsx
index b3fde4dca..0eca8f38b 100644
--- a/src/components/icons/bell-03.tsx
+++ b/src/components/icons/bell-03.tsx
@@ -11,6 +11,7 @@ const Bell03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bNws"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-04.tsx b/src/components/icons/bell-04.tsx
index 1f9d4fcc4..75afda5ab 100644
--- a/src/components/icons/bell-04.tsx
+++ b/src/components/icons/bell-04.tsx
@@ -11,6 +11,7 @@ const Bell04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OFRQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-minus.tsx b/src/components/icons/bell-minus.tsx
index eed571509..9912e7a5e 100644
--- a/src/components/icons/bell-minus.tsx
+++ b/src/components/icons/bell-minus.tsx
@@ -11,6 +11,7 @@ const BellMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qDIP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-off-01.tsx b/src/components/icons/bell-off-01.tsx
index 55b1836c5..38761be65 100644
--- a/src/components/icons/bell-off-01.tsx
+++ b/src/components/icons/bell-off-01.tsx
@@ -11,6 +11,7 @@ const BellOff01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ACFT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-off-02.tsx b/src/components/icons/bell-off-02.tsx
index 20939d063..914bce6ff 100644
--- a/src/components/icons/bell-off-02.tsx
+++ b/src/components/icons/bell-off-02.tsx
@@ -11,6 +11,7 @@ const BellOff02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cm3Y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-off-03.tsx b/src/components/icons/bell-off-03.tsx
index f77613879..7ffdc7c04 100644
--- a/src/components/icons/bell-off-03.tsx
+++ b/src/components/icons/bell-off-03.tsx
@@ -11,6 +11,7 @@ const BellOff03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0QUL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-plus.tsx b/src/components/icons/bell-plus.tsx
index ccd44d84f..5e29b0db7 100644
--- a/src/components/icons/bell-plus.tsx
+++ b/src/components/icons/bell-plus.tsx
@@ -11,6 +11,7 @@ const BellPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pmgd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-ringing-01.tsx b/src/components/icons/bell-ringing-01.tsx
index e2698030a..534c8fd11 100644
--- a/src/components/icons/bell-ringing-01.tsx
+++ b/src/components/icons/bell-ringing-01.tsx
@@ -11,6 +11,7 @@ const BellRinging01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="69Zq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-ringing-02.tsx b/src/components/icons/bell-ringing-02.tsx
index f925eabf0..26fe796d3 100644
--- a/src/components/icons/bell-ringing-02.tsx
+++ b/src/components/icons/bell-ringing-02.tsx
@@ -11,6 +11,7 @@ const BellRinging02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="nvZ9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-ringing-03.tsx b/src/components/icons/bell-ringing-03.tsx
index 0db346cb0..e36bf7858 100644
--- a/src/components/icons/bell-ringing-03.tsx
+++ b/src/components/icons/bell-ringing-03.tsx
@@ -11,6 +11,7 @@ const BellRinging03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TeDF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bell-ringing-04.tsx b/src/components/icons/bell-ringing-04.tsx
index c81ff5549..5aaed15d9 100644
--- a/src/components/icons/bell-ringing-04.tsx
+++ b/src/components/icons/bell-ringing-04.tsx
@@ -11,6 +11,7 @@ const BellRinging04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="z9Je"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bezier-curve-01.tsx b/src/components/icons/bezier-curve-01.tsx
index 43adc5eef..dfe952c95 100644
--- a/src/components/icons/bezier-curve-01.tsx
+++ b/src/components/icons/bezier-curve-01.tsx
@@ -11,6 +11,7 @@ const BezierCurve01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CNc0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bezier-curve-02.tsx b/src/components/icons/bezier-curve-02.tsx
index b99218ae0..9193be600 100644
--- a/src/components/icons/bezier-curve-02.tsx
+++ b/src/components/icons/bezier-curve-02.tsx
@@ -11,6 +11,7 @@ const BezierCurve02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f0Ip"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bezier-curve-03.tsx b/src/components/icons/bezier-curve-03.tsx
index 8ca20fa91..4786b353c 100644
--- a/src/components/icons/bezier-curve-03.tsx
+++ b/src/components/icons/bezier-curve-03.tsx
@@ -11,6 +11,7 @@ const BezierCurve03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8nc1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bluetooth-connect.tsx b/src/components/icons/bluetooth-connect.tsx
index a10c0dd3d..114b2bbba 100644
--- a/src/components/icons/bluetooth-connect.tsx
+++ b/src/components/icons/bluetooth-connect.tsx
@@ -11,6 +11,7 @@ const BluetoothConnect = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Bi_a"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bluetooth-off.tsx b/src/components/icons/bluetooth-off.tsx
index e4e10e8a2..45c413c50 100644
--- a/src/components/icons/bluetooth-off.tsx
+++ b/src/components/icons/bluetooth-off.tsx
@@ -11,6 +11,7 @@ const BluetoothOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="G410"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bluetooth-on.tsx b/src/components/icons/bluetooth-on.tsx
index 3ac123988..65a9655cc 100644
--- a/src/components/icons/bluetooth-on.tsx
+++ b/src/components/icons/bluetooth-on.tsx
@@ -11,6 +11,7 @@ const BluetoothOn = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OvhH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bluetooth-signal.tsx b/src/components/icons/bluetooth-signal.tsx
index 9e8857d14..e12ce295e 100644
--- a/src/components/icons/bluetooth-signal.tsx
+++ b/src/components/icons/bluetooth-signal.tsx
@@ -11,6 +11,7 @@ const BluetoothSignal = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="htFf"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bold-01.tsx b/src/components/icons/bold-01.tsx
index f4bd53079..9e751a4ac 100644
--- a/src/components/icons/bold-01.tsx
+++ b/src/components/icons/bold-01.tsx
@@ -11,6 +11,7 @@ const Bold01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7_kg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bold-02.tsx b/src/components/icons/bold-02.tsx
index dcd629420..b2f4729ef 100644
--- a/src/components/icons/bold-02.tsx
+++ b/src/components/icons/bold-02.tsx
@@ -11,6 +11,7 @@ const Bold02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7GPs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bold-square.tsx b/src/components/icons/bold-square.tsx
index b0dbaa73a..765b43318 100644
--- a/src/components/icons/bold-square.tsx
+++ b/src/components/icons/bold-square.tsx
@@ -11,6 +11,7 @@ const BoldSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JAgy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/book-closed.tsx b/src/components/icons/book-closed.tsx
index 442ff3e16..e3e64bad8 100644
--- a/src/components/icons/book-closed.tsx
+++ b/src/components/icons/book-closed.tsx
@@ -11,6 +11,7 @@ const BookClosed = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OhcJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/book-open-01.tsx b/src/components/icons/book-open-01.tsx
index ee6f709f7..94bd2d598 100644
--- a/src/components/icons/book-open-01.tsx
+++ b/src/components/icons/book-open-01.tsx
@@ -11,6 +11,7 @@ const BookOpen01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9Y8s"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/book-open-02.tsx b/src/components/icons/book-open-02.tsx
index 17e809690..24fbb1b0c 100644
--- a/src/components/icons/book-open-02.tsx
+++ b/src/components/icons/book-open-02.tsx
@@ -11,6 +11,7 @@ const BookOpen02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iG3Q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bookmark-add.tsx b/src/components/icons/bookmark-add.tsx
index ba3b2c094..f3e1c026f 100644
--- a/src/components/icons/bookmark-add.tsx
+++ b/src/components/icons/bookmark-add.tsx
@@ -11,6 +11,7 @@ const BookmarkAdd = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UNoF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bookmark-check.tsx b/src/components/icons/bookmark-check.tsx
index 40b77790e..d14c6c568 100644
--- a/src/components/icons/bookmark-check.tsx
+++ b/src/components/icons/bookmark-check.tsx
@@ -11,6 +11,7 @@ const BookmarkCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ceR5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bookmark-minus.tsx b/src/components/icons/bookmark-minus.tsx
index 1dbd7182b..e435ab33b 100644
--- a/src/components/icons/bookmark-minus.tsx
+++ b/src/components/icons/bookmark-minus.tsx
@@ -11,6 +11,7 @@ const BookmarkMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="HraY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bookmark-x.tsx b/src/components/icons/bookmark-x.tsx
index 8cfeb5d92..1f0c064b8 100644
--- a/src/components/icons/bookmark-x.tsx
+++ b/src/components/icons/bookmark-x.tsx
@@ -11,6 +11,7 @@ const BookmarkX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bDNp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bookmark.tsx b/src/components/icons/bookmark.tsx
index 802c332a8..5cb2f8f13 100644
--- a/src/components/icons/bookmark.tsx
+++ b/src/components/icons/bookmark.tsx
@@ -11,6 +11,7 @@ const Bookmark = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CHA-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/box.tsx b/src/components/icons/box.tsx
index a6028ef8d..e62279c97 100644
--- a/src/components/icons/box.tsx
+++ b/src/components/icons/box.tsx
@@ -11,6 +11,7 @@ const Box = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="sERy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brackets-check.tsx b/src/components/icons/brackets-check.tsx
index 16151f2db..bbfe52785 100644
--- a/src/components/icons/brackets-check.tsx
+++ b/src/components/icons/brackets-check.tsx
@@ -11,6 +11,7 @@ const BracketsCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QW5s"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brackets-ellipses.tsx b/src/components/icons/brackets-ellipses.tsx
index 43d7467f5..9295fadb9 100644
--- a/src/components/icons/brackets-ellipses.tsx
+++ b/src/components/icons/brackets-ellipses.tsx
@@ -11,6 +11,7 @@ const BracketsEllipses = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3H8c"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brackets-minus.tsx b/src/components/icons/brackets-minus.tsx
index 7e189410a..907162447 100644
--- a/src/components/icons/brackets-minus.tsx
+++ b/src/components/icons/brackets-minus.tsx
@@ -11,6 +11,7 @@ const BracketsMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vONx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brackets-plus.tsx b/src/components/icons/brackets-plus.tsx
index cdad39295..1dbcef85e 100644
--- a/src/components/icons/brackets-plus.tsx
+++ b/src/components/icons/brackets-plus.tsx
@@ -11,6 +11,7 @@ const BracketsPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wv3y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brackets-slash.tsx b/src/components/icons/brackets-slash.tsx
index ffbaf8015..db28a4466 100644
--- a/src/components/icons/brackets-slash.tsx
+++ b/src/components/icons/brackets-slash.tsx
@@ -11,6 +11,7 @@ const BracketsSlash = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SlZu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brackets-x.tsx b/src/components/icons/brackets-x.tsx
index 3ee9fc5b2..3d5a00faf 100644
--- a/src/components/icons/brackets-x.tsx
+++ b/src/components/icons/brackets-x.tsx
@@ -11,6 +11,7 @@ const BracketsX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="J4B7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brackets.tsx b/src/components/icons/brackets.tsx
index eb1d36aa4..6c2bc55be 100644
--- a/src/components/icons/brackets.tsx
+++ b/src/components/icons/brackets.tsx
@@ -11,6 +11,7 @@ const Brackets = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WAKG"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/briefcase-01.tsx b/src/components/icons/briefcase-01.tsx
index 6025b0197..ecafc6387 100644
--- a/src/components/icons/briefcase-01.tsx
+++ b/src/components/icons/briefcase-01.tsx
@@ -11,6 +11,7 @@ const Briefcase01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kdaI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/briefcase-02.tsx b/src/components/icons/briefcase-02.tsx
index 0803ae8db..036d045eb 100644
--- a/src/components/icons/briefcase-02.tsx
+++ b/src/components/icons/briefcase-02.tsx
@@ -11,6 +11,7 @@ const Briefcase02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4c4k"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/browser.tsx b/src/components/icons/browser.tsx
index 43363539c..4193ddbff 100644
--- a/src/components/icons/browser.tsx
+++ b/src/components/icons/browser.tsx
@@ -11,6 +11,7 @@ const Browser = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1b7T"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brush-01.tsx b/src/components/icons/brush-01.tsx
index 560494045..43a8bfc4d 100644
--- a/src/components/icons/brush-01.tsx
+++ b/src/components/icons/brush-01.tsx
@@ -11,6 +11,7 @@ const Brush01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="g-Zh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brush-02.tsx b/src/components/icons/brush-02.tsx
index 1ea99ba90..ecc8df211 100644
--- a/src/components/icons/brush-02.tsx
+++ b/src/components/icons/brush-02.tsx
@@ -11,6 +11,7 @@ const Brush02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Syeh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/brush-03.tsx b/src/components/icons/brush-03.tsx
index 1b2826bdc..95b8cafea 100644
--- a/src/components/icons/brush-03.tsx
+++ b/src/components/icons/brush-03.tsx
@@ -11,6 +11,7 @@ const Brush03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yOym"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-01.tsx b/src/components/icons/building-01.tsx
index 8a8745e4a..8d5fc24c1 100644
--- a/src/components/icons/building-01.tsx
+++ b/src/components/icons/building-01.tsx
@@ -11,6 +11,7 @@ const Building01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GyIm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-02.tsx b/src/components/icons/building-02.tsx
index 54c2d693e..bbaf5b529 100644
--- a/src/components/icons/building-02.tsx
+++ b/src/components/icons/building-02.tsx
@@ -11,6 +11,7 @@ const Building02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FGW9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-03.tsx b/src/components/icons/building-03.tsx
index 17b0f1be5..9c5048c03 100644
--- a/src/components/icons/building-03.tsx
+++ b/src/components/icons/building-03.tsx
@@ -11,6 +11,7 @@ const Building03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fyRq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-04.tsx b/src/components/icons/building-04.tsx
index b3e006b76..2bb5b74a7 100644
--- a/src/components/icons/building-04.tsx
+++ b/src/components/icons/building-04.tsx
@@ -11,6 +11,7 @@ const Building04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5qGB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-05.tsx b/src/components/icons/building-05.tsx
index 6429f24f7..6cbf9f212 100644
--- a/src/components/icons/building-05.tsx
+++ b/src/components/icons/building-05.tsx
@@ -11,6 +11,7 @@ const Building05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cvJP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-06.tsx b/src/components/icons/building-06.tsx
index 8ece511ca..69dbb8910 100644
--- a/src/components/icons/building-06.tsx
+++ b/src/components/icons/building-06.tsx
@@ -11,6 +11,7 @@ const Building06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rB2G"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-07.tsx b/src/components/icons/building-07.tsx
index e420c807a..2cd4229e2 100644
--- a/src/components/icons/building-07.tsx
+++ b/src/components/icons/building-07.tsx
@@ -11,6 +11,7 @@ const Building07 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yiAY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/building-08.tsx b/src/components/icons/building-08.tsx
index 9f179b695..63972f724 100644
--- a/src/components/icons/building-08.tsx
+++ b/src/components/icons/building-08.tsx
@@ -11,6 +11,7 @@ const Building08 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EAqI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/bus.tsx b/src/components/icons/bus.tsx
index 04c3de08e..be13f957c 100644
--- a/src/components/icons/bus.tsx
+++ b/src/components/icons/bus.tsx
@@ -11,6 +11,7 @@ const Bus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BgNi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calculator.tsx b/src/components/icons/calculator.tsx
index f8ade0a28..15db593b3 100644
--- a/src/components/icons/calculator.tsx
+++ b/src/components/icons/calculator.tsx
@@ -11,6 +11,7 @@ const Calculator = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LvVV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-check-01.tsx b/src/components/icons/calendar-check-01.tsx
index e571d6eb0..a9883a981 100644
--- a/src/components/icons/calendar-check-01.tsx
+++ b/src/components/icons/calendar-check-01.tsx
@@ -11,6 +11,7 @@ const CalendarCheck01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aw3I"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-check-02.tsx b/src/components/icons/calendar-check-02.tsx
index c946c3bef..e6ace1b64 100644
--- a/src/components/icons/calendar-check-02.tsx
+++ b/src/components/icons/calendar-check-02.tsx
@@ -11,6 +11,7 @@ const CalendarCheck02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xh2t"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-date.tsx b/src/components/icons/calendar-date.tsx
index c0d7af60f..493947919 100644
--- a/src/components/icons/calendar-date.tsx
+++ b/src/components/icons/calendar-date.tsx
@@ -11,6 +11,7 @@ const CalendarDate = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IHHw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-heart-01.tsx b/src/components/icons/calendar-heart-01.tsx
index a6b608000..389075645 100644
--- a/src/components/icons/calendar-heart-01.tsx
+++ b/src/components/icons/calendar-heart-01.tsx
@@ -11,6 +11,7 @@ const CalendarHeart01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="D4RL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-heart-02.tsx b/src/components/icons/calendar-heart-02.tsx
index b7763c4fe..7027ca9d8 100644
--- a/src/components/icons/calendar-heart-02.tsx
+++ b/src/components/icons/calendar-heart-02.tsx
@@ -11,6 +11,7 @@ const CalendarHeart02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3nC0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-minus-01.tsx b/src/components/icons/calendar-minus-01.tsx
index e55512dc8..c5d6cabcf 100644
--- a/src/components/icons/calendar-minus-01.tsx
+++ b/src/components/icons/calendar-minus-01.tsx
@@ -11,6 +11,7 @@ const CalendarMinus01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rOHe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-minus-02.tsx b/src/components/icons/calendar-minus-02.tsx
index 5a8e278e3..3539f502f 100644
--- a/src/components/icons/calendar-minus-02.tsx
+++ b/src/components/icons/calendar-minus-02.tsx
@@ -11,6 +11,7 @@ const CalendarMinus02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7Tx4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-plus-01.tsx b/src/components/icons/calendar-plus-01.tsx
index 34c767f5a..d8eeb8014 100644
--- a/src/components/icons/calendar-plus-01.tsx
+++ b/src/components/icons/calendar-plus-01.tsx
@@ -11,6 +11,7 @@ const CalendarPlus01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4z94"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar-plus-02.tsx b/src/components/icons/calendar-plus-02.tsx
index a83bd0a67..c01bed922 100644
--- a/src/components/icons/calendar-plus-02.tsx
+++ b/src/components/icons/calendar-plus-02.tsx
@@ -11,6 +11,7 @@ const CalendarPlus02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gS2r"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/calendar.tsx b/src/components/icons/calendar.tsx
index 56bd84909..f453d93a9 100644
--- a/src/components/icons/calendar.tsx
+++ b/src/components/icons/calendar.tsx
@@ -11,6 +11,7 @@ const Calendar = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_rDL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/camera-01.tsx b/src/components/icons/camera-01.tsx
index 58966663a..876813ef1 100644
--- a/src/components/icons/camera-01.tsx
+++ b/src/components/icons/camera-01.tsx
@@ -11,6 +11,7 @@ const Camera01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RhDF"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/camera-02.tsx b/src/components/icons/camera-02.tsx
index 4b0dd36b3..1424a1f7e 100644
--- a/src/components/icons/camera-02.tsx
+++ b/src/components/icons/camera-02.tsx
@@ -11,6 +11,7 @@ const Camera02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="AQuN"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/camera-03.tsx b/src/components/icons/camera-03.tsx
index ed3cae87e..b4ae77af1 100644
--- a/src/components/icons/camera-03.tsx
+++ b/src/components/icons/camera-03.tsx
@@ -11,6 +11,7 @@ const Camera03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0ccZ"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/camera-lens.tsx b/src/components/icons/camera-lens.tsx
index 744656c59..2ac12e678 100644
--- a/src/components/icons/camera-lens.tsx
+++ b/src/components/icons/camera-lens.tsx
@@ -11,6 +11,7 @@ const CameraLens = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="i5V8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/camera-off.tsx b/src/components/icons/camera-off.tsx
index 795c13cd8..0445622f7 100644
--- a/src/components/icons/camera-off.tsx
+++ b/src/components/icons/camera-off.tsx
@@ -11,6 +11,7 @@ const CameraOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PJM7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/camera-plus.tsx b/src/components/icons/camera-plus.tsx
index 419b1943c..a5e5ac872 100644
--- a/src/components/icons/camera-plus.tsx
+++ b/src/components/icons/camera-plus.tsx
@@ -11,6 +11,7 @@ const CameraPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Q67L"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/car-01.tsx b/src/components/icons/car-01.tsx
index 5dad0f39d..856f34ae0 100644
--- a/src/components/icons/car-01.tsx
+++ b/src/components/icons/car-01.tsx
@@ -11,6 +11,7 @@ const Car01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pI8z"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/car-02.tsx b/src/components/icons/car-02.tsx
index 118094a01..6ebc882a3 100644
--- a/src/components/icons/car-02.tsx
+++ b/src/components/icons/car-02.tsx
@@ -11,6 +11,7 @@ const Car02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="x6yb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/certificate-01.tsx b/src/components/icons/certificate-01.tsx
index 5a486319e..5321f02eb 100644
--- a/src/components/icons/certificate-01.tsx
+++ b/src/components/icons/certificate-01.tsx
@@ -11,6 +11,7 @@ const Certificate01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="H_OF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/certificate-02.tsx b/src/components/icons/certificate-02.tsx
index 89c319009..6e2715b81 100644
--- a/src/components/icons/certificate-02.tsx
+++ b/src/components/icons/certificate-02.tsx
@@ -11,6 +11,7 @@ const Certificate02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VmxF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chart-breakout-circle.tsx b/src/components/icons/chart-breakout-circle.tsx
index bfe50d342..8b980b8ca 100644
--- a/src/components/icons/chart-breakout-circle.tsx
+++ b/src/components/icons/chart-breakout-circle.tsx
@@ -11,6 +11,7 @@ const ChartBreakoutCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iPW8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chart-breakout-square.tsx b/src/components/icons/chart-breakout-square.tsx
index dc0288f2f..da01bf570 100644
--- a/src/components/icons/chart-breakout-square.tsx
+++ b/src/components/icons/chart-breakout-square.tsx
@@ -11,6 +11,7 @@ const ChartBreakoutSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_1Qn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-circle-broken.tsx b/src/components/icons/check-circle-broken.tsx
index 5fc7d7a72..0c39c9509 100644
--- a/src/components/icons/check-circle-broken.tsx
+++ b/src/components/icons/check-circle-broken.tsx
@@ -11,6 +11,7 @@ const CheckCircleBroken = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="sgxO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-circle.tsx b/src/components/icons/check-circle.tsx
index 8c1a714f3..df0743f57 100644
--- a/src/components/icons/check-circle.tsx
+++ b/src/components/icons/check-circle.tsx
@@ -11,6 +11,7 @@ const CheckCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bPJM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-done-01.tsx b/src/components/icons/check-done-01.tsx
index 801b4a8b1..2aa82a689 100644
--- a/src/components/icons/check-done-01.tsx
+++ b/src/components/icons/check-done-01.tsx
@@ -11,6 +11,7 @@ const CheckDone01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5qJh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-done-02.tsx b/src/components/icons/check-done-02.tsx
index 664940544..266991b7e 100644
--- a/src/components/icons/check-done-02.tsx
+++ b/src/components/icons/check-done-02.tsx
@@ -11,6 +11,7 @@ const CheckDone02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="HImF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-heart.tsx b/src/components/icons/check-heart.tsx
index 9bf262f0e..cbb49af65 100644
--- a/src/components/icons/check-heart.tsx
+++ b/src/components/icons/check-heart.tsx
@@ -11,6 +11,7 @@ const CheckHeart = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZwiE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-square-broken.tsx b/src/components/icons/check-square-broken.tsx
index 20f99651c..d96294485 100644
--- a/src/components/icons/check-square-broken.tsx
+++ b/src/components/icons/check-square-broken.tsx
@@ -11,6 +11,7 @@ const CheckSquareBroken = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="c1WP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-square.tsx b/src/components/icons/check-square.tsx
index 1e4d22f67..082bad531 100644
--- a/src/components/icons/check-square.tsx
+++ b/src/components/icons/check-square.tsx
@@ -11,6 +11,7 @@ const CheckSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qfRj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-verified-01.tsx b/src/components/icons/check-verified-01.tsx
index 4a22269f6..b66732e5a 100644
--- a/src/components/icons/check-verified-01.tsx
+++ b/src/components/icons/check-verified-01.tsx
@@ -11,6 +11,7 @@ const CheckVerified01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_B6Q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-verified-02.tsx b/src/components/icons/check-verified-02.tsx
index 6038fb969..bb1d7c2b8 100644
--- a/src/components/icons/check-verified-02.tsx
+++ b/src/components/icons/check-verified-02.tsx
@@ -11,6 +11,7 @@ const CheckVerified02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XtKE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check-verified-03.tsx b/src/components/icons/check-verified-03.tsx
index 4655872eb..e97411fe6 100644
--- a/src/components/icons/check-verified-03.tsx
+++ b/src/components/icons/check-verified-03.tsx
@@ -11,6 +11,7 @@ const CheckVerified03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6yIM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/check.tsx b/src/components/icons/check.tsx
index 115f15a29..1435ec4f6 100644
--- a/src/components/icons/check.tsx
+++ b/src/components/icons/check.tsx
@@ -11,6 +11,7 @@ const Check = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5WwR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-down-double.tsx b/src/components/icons/chevron-down-double.tsx
index 3e16c90c2..3b1329d0e 100644
--- a/src/components/icons/chevron-down-double.tsx
+++ b/src/components/icons/chevron-down-double.tsx
@@ -11,6 +11,7 @@ const ChevronDownDouble = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dQ36"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-down.tsx b/src/components/icons/chevron-down.tsx
index b093aac5a..c6f6d8c5c 100644
--- a/src/components/icons/chevron-down.tsx
+++ b/src/components/icons/chevron-down.tsx
@@ -11,6 +11,7 @@ const ChevronDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w3dr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-left-double.tsx b/src/components/icons/chevron-left-double.tsx
index 56a79f095..3ba74de1b 100644
--- a/src/components/icons/chevron-left-double.tsx
+++ b/src/components/icons/chevron-left-double.tsx
@@ -11,6 +11,7 @@ const ChevronLeftDouble = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hMSW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-left.tsx b/src/components/icons/chevron-left.tsx
index 1219e7101..b95491720 100644
--- a/src/components/icons/chevron-left.tsx
+++ b/src/components/icons/chevron-left.tsx
@@ -11,6 +11,7 @@ const ChevronLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zSe_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-right-double.tsx b/src/components/icons/chevron-right-double.tsx
index f5d06a238..76513463a 100644
--- a/src/components/icons/chevron-right-double.tsx
+++ b/src/components/icons/chevron-right-double.tsx
@@ -11,6 +11,7 @@ const ChevronRightDouble = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kspP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-right.tsx b/src/components/icons/chevron-right.tsx
index 90602def8..9b7ebe9b4 100644
--- a/src/components/icons/chevron-right.tsx
+++ b/src/components/icons/chevron-right.tsx
@@ -11,6 +11,7 @@ const ChevronRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3fu6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-selector-horizontal.tsx b/src/components/icons/chevron-selector-horizontal.tsx
index 38870eedd..7ce183d73 100644
--- a/src/components/icons/chevron-selector-horizontal.tsx
+++ b/src/components/icons/chevron-selector-horizontal.tsx
@@ -11,6 +11,7 @@ const ChevronSelectorHorizontal = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="649s"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-selector-vertical.tsx b/src/components/icons/chevron-selector-vertical.tsx
index b65f5c7b8..fb9b6cbb3 100644
--- a/src/components/icons/chevron-selector-vertical.tsx
+++ b/src/components/icons/chevron-selector-vertical.tsx
@@ -11,6 +11,7 @@ const ChevronSelectorVertical = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="c0qb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-up-double.tsx b/src/components/icons/chevron-up-double.tsx
index d7c5de044..4a21fb37c 100644
--- a/src/components/icons/chevron-up-double.tsx
+++ b/src/components/icons/chevron-up-double.tsx
@@ -11,6 +11,7 @@ const ChevronUpDouble = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_D3v"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chevron-up.tsx b/src/components/icons/chevron-up.tsx
index 2850b1b65..c2b7f9de3 100644
--- a/src/components/icons/chevron-up.tsx
+++ b/src/components/icons/chevron-up.tsx
@@ -11,6 +11,7 @@ const ChevronUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="c_jQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/chrome-cast.tsx b/src/components/icons/chrome-cast.tsx
index aefe24eb9..80b30c2fb 100644
--- a/src/components/icons/chrome-cast.tsx
+++ b/src/components/icons/chrome-cast.tsx
@@ -11,6 +11,7 @@ const ChromeCast = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Z3nR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/circle-cut.tsx b/src/components/icons/circle-cut.tsx
index 824a4306f..c9318ae88 100644
--- a/src/components/icons/circle-cut.tsx
+++ b/src/components/icons/circle-cut.tsx
@@ -11,6 +11,7 @@ const CircleCut = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BqrH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/circle.tsx b/src/components/icons/circle.tsx
index d2566d976..bb3a85825 100644
--- a/src/components/icons/circle.tsx
+++ b/src/components/icons/circle.tsx
@@ -11,6 +11,7 @@ const Circle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GJxI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clapperboard.tsx b/src/components/icons/clapperboard.tsx
index 0454cd715..03e73c128 100644
--- a/src/components/icons/clapperboard.tsx
+++ b/src/components/icons/clapperboard.tsx
@@ -11,6 +11,7 @@ const Clapperboard = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fYGZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clipboard-attachment.tsx b/src/components/icons/clipboard-attachment.tsx
index 84a9771f7..98f15b62b 100644
--- a/src/components/icons/clipboard-attachment.tsx
+++ b/src/components/icons/clipboard-attachment.tsx
@@ -11,6 +11,7 @@ const ClipboardAttachment = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="A-2w"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clipboard-check.tsx b/src/components/icons/clipboard-check.tsx
index 5f434a17d..a62d1bb3c 100644
--- a/src/components/icons/clipboard-check.tsx
+++ b/src/components/icons/clipboard-check.tsx
@@ -11,6 +11,7 @@ const ClipboardCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7Cu9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clipboard-download.tsx b/src/components/icons/clipboard-download.tsx
index c0f46d9c1..a7ee93c74 100644
--- a/src/components/icons/clipboard-download.tsx
+++ b/src/components/icons/clipboard-download.tsx
@@ -11,6 +11,7 @@ const ClipboardDownload = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="49Gk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clipboard-minus.tsx b/src/components/icons/clipboard-minus.tsx
index 5fc8b4870..e19cc7991 100644
--- a/src/components/icons/clipboard-minus.tsx
+++ b/src/components/icons/clipboard-minus.tsx
@@ -11,6 +11,7 @@ const ClipboardMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ULXH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clipboard-plus.tsx b/src/components/icons/clipboard-plus.tsx
index 551e12b58..7e0d2a1b1 100644
--- a/src/components/icons/clipboard-plus.tsx
+++ b/src/components/icons/clipboard-plus.tsx
@@ -11,6 +11,7 @@ const ClipboardPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tj69"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clipboard-x.tsx b/src/components/icons/clipboard-x.tsx
index 967e66b9f..6e98c98a8 100644
--- a/src/components/icons/clipboard-x.tsx
+++ b/src/components/icons/clipboard-x.tsx
@@ -11,6 +11,7 @@ const ClipboardX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7jnE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clipboard.tsx b/src/components/icons/clipboard.tsx
index 881955331..793405843 100644
--- a/src/components/icons/clipboard.tsx
+++ b/src/components/icons/clipboard.tsx
@@ -11,6 +11,7 @@ const Clipboard = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jx8k"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock-check.tsx b/src/components/icons/clock-check.tsx
index 0d1d4e0d7..103fcef57 100644
--- a/src/components/icons/clock-check.tsx
+++ b/src/components/icons/clock-check.tsx
@@ -11,6 +11,7 @@ const ClockCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="sPOn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock-fast-forward.tsx b/src/components/icons/clock-fast-forward.tsx
index 69b0b8d01..457736f62 100644
--- a/src/components/icons/clock-fast-forward.tsx
+++ b/src/components/icons/clock-fast-forward.tsx
@@ -11,6 +11,7 @@ const ClockFastForward = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="odHw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock-plus.tsx b/src/components/icons/clock-plus.tsx
index ed55f37e3..3c550fbcf 100644
--- a/src/components/icons/clock-plus.tsx
+++ b/src/components/icons/clock-plus.tsx
@@ -11,6 +11,7 @@ const ClockPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GJ1p"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock-refresh.tsx b/src/components/icons/clock-refresh.tsx
index 9badba548..7e486e1cb 100644
--- a/src/components/icons/clock-refresh.tsx
+++ b/src/components/icons/clock-refresh.tsx
@@ -11,6 +11,7 @@ const ClockRefresh = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mVPo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock-rewind.tsx b/src/components/icons/clock-rewind.tsx
index e7531eb5f..72e0fe67c 100644
--- a/src/components/icons/clock-rewind.tsx
+++ b/src/components/icons/clock-rewind.tsx
@@ -11,6 +11,7 @@ const ClockRewind = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f7ao"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock-snooze.tsx b/src/components/icons/clock-snooze.tsx
index 0615d0863..8be81d447 100644
--- a/src/components/icons/clock-snooze.tsx
+++ b/src/components/icons/clock-snooze.tsx
@@ -11,6 +11,7 @@ const ClockSnooze = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JvfT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock-stopwatch.tsx b/src/components/icons/clock-stopwatch.tsx
index 3dccbdb3b..9eb288e00 100644
--- a/src/components/icons/clock-stopwatch.tsx
+++ b/src/components/icons/clock-stopwatch.tsx
@@ -11,6 +11,7 @@ const ClockStopwatch = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CUiK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/clock.tsx b/src/components/icons/clock.tsx
index 8fdae3835..c761e0cab 100644
--- a/src/components/icons/clock.tsx
+++ b/src/components/icons/clock.tsx
@@ -11,6 +11,7 @@ const Clock = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Hwu2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-01.tsx b/src/components/icons/cloud-01.tsx
index 5ca2e2943..cb0f98e98 100644
--- a/src/components/icons/cloud-01.tsx
+++ b/src/components/icons/cloud-01.tsx
@@ -11,6 +11,7 @@ const Cloud01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WBsZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-02.tsx b/src/components/icons/cloud-02.tsx
index 531c9ff38..e62a96225 100644
--- a/src/components/icons/cloud-02.tsx
+++ b/src/components/icons/cloud-02.tsx
@@ -11,6 +11,7 @@ const Cloud02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LN_r"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-03.tsx b/src/components/icons/cloud-03.tsx
index 7eeac4a25..f7c0db1e9 100644
--- a/src/components/icons/cloud-03.tsx
+++ b/src/components/icons/cloud-03.tsx
@@ -11,6 +11,7 @@ const Cloud03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qPwR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-blank-01.tsx b/src/components/icons/cloud-blank-01.tsx
index 8cc4c8a62..2cbcabc5c 100644
--- a/src/components/icons/cloud-blank-01.tsx
+++ b/src/components/icons/cloud-blank-01.tsx
@@ -11,6 +11,7 @@ const CloudBlank01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yU7L"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-blank-02.tsx b/src/components/icons/cloud-blank-02.tsx
index 7ec6d5ac1..7e52eb02e 100644
--- a/src/components/icons/cloud-blank-02.tsx
+++ b/src/components/icons/cloud-blank-02.tsx
@@ -11,6 +11,7 @@ const CloudBlank02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZYTT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-lightning.tsx b/src/components/icons/cloud-lightning.tsx
index a6949ee76..ef1439938 100644
--- a/src/components/icons/cloud-lightning.tsx
+++ b/src/components/icons/cloud-lightning.tsx
@@ -11,6 +11,7 @@ const CloudLightning = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3QjE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-moon.tsx b/src/components/icons/cloud-moon.tsx
index cdb83125f..6a66fdad9 100644
--- a/src/components/icons/cloud-moon.tsx
+++ b/src/components/icons/cloud-moon.tsx
@@ -11,6 +11,7 @@ const CloudMoon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="usbm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-off.tsx b/src/components/icons/cloud-off.tsx
index f6a8b2a73..776ca39d6 100644
--- a/src/components/icons/cloud-off.tsx
+++ b/src/components/icons/cloud-off.tsx
@@ -11,6 +11,7 @@ const CloudOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JpDS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-raining-01.tsx b/src/components/icons/cloud-raining-01.tsx
index 3cc361b14..85ca3d6be 100644
--- a/src/components/icons/cloud-raining-01.tsx
+++ b/src/components/icons/cloud-raining-01.tsx
@@ -11,6 +11,7 @@ const CloudRaining01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="HUIk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-raining-02.tsx b/src/components/icons/cloud-raining-02.tsx
index 018c2c7bb..8a0ef3cc8 100644
--- a/src/components/icons/cloud-raining-02.tsx
+++ b/src/components/icons/cloud-raining-02.tsx
@@ -11,6 +11,7 @@ const CloudRaining02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YBKM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-raining-03.tsx b/src/components/icons/cloud-raining-03.tsx
index 60e41e7ab..3937354dc 100644
--- a/src/components/icons/cloud-raining-03.tsx
+++ b/src/components/icons/cloud-raining-03.tsx
@@ -11,6 +11,7 @@ const CloudRaining03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LzrP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-raining-04.tsx b/src/components/icons/cloud-raining-04.tsx
index a6be93219..4f4cb4647 100644
--- a/src/components/icons/cloud-raining-04.tsx
+++ b/src/components/icons/cloud-raining-04.tsx
@@ -11,6 +11,7 @@ const CloudRaining04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="R-Oc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-raining-05.tsx b/src/components/icons/cloud-raining-05.tsx
index f7aadfd1a..696d8bf80 100644
--- a/src/components/icons/cloud-raining-05.tsx
+++ b/src/components/icons/cloud-raining-05.tsx
@@ -11,6 +11,7 @@ const CloudRaining05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0IbA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-raining-06.tsx b/src/components/icons/cloud-raining-06.tsx
index cec454e78..a1ac694a6 100644
--- a/src/components/icons/cloud-raining-06.tsx
+++ b/src/components/icons/cloud-raining-06.tsx
@@ -11,6 +11,7 @@ const CloudRaining06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aeSa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-snowing-01.tsx b/src/components/icons/cloud-snowing-01.tsx
index 8e58bc6da..fec4cc70d 100644
--- a/src/components/icons/cloud-snowing-01.tsx
+++ b/src/components/icons/cloud-snowing-01.tsx
@@ -11,6 +11,7 @@ const CloudSnowing01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4SqY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-snowing-02.tsx b/src/components/icons/cloud-snowing-02.tsx
index ffb2895fd..2801e2729 100644
--- a/src/components/icons/cloud-snowing-02.tsx
+++ b/src/components/icons/cloud-snowing-02.tsx
@@ -11,6 +11,7 @@ const CloudSnowing02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JqYo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-sun-01.tsx b/src/components/icons/cloud-sun-01.tsx
index 8057849bc..bc9792081 100644
--- a/src/components/icons/cloud-sun-01.tsx
+++ b/src/components/icons/cloud-sun-01.tsx
@@ -11,6 +11,7 @@ const CloudSun01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8A_R"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-sun-02.tsx b/src/components/icons/cloud-sun-02.tsx
index d1a2ffd26..f8401e5a7 100644
--- a/src/components/icons/cloud-sun-02.tsx
+++ b/src/components/icons/cloud-sun-02.tsx
@@ -11,6 +11,7 @@ const CloudSun02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Pl9k"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cloud-sun-03.tsx b/src/components/icons/cloud-sun-03.tsx
index 805f63328..374572f51 100644
--- a/src/components/icons/cloud-sun-03.tsx
+++ b/src/components/icons/cloud-sun-03.tsx
@@ -11,6 +11,7 @@ const CloudSun03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="802I"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-01.tsx b/src/components/icons/code-01.tsx
index 26caad3de..633c833c0 100644
--- a/src/components/icons/code-01.tsx
+++ b/src/components/icons/code-01.tsx
@@ -11,6 +11,7 @@ const Code01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="t4o4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-02.tsx b/src/components/icons/code-02.tsx
index 9f54eec3c..21bc0a2a4 100644
--- a/src/components/icons/code-02.tsx
+++ b/src/components/icons/code-02.tsx
@@ -11,6 +11,7 @@ const Code02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="exde"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-browser.tsx b/src/components/icons/code-browser.tsx
index 5be0f6410..66edbebfa 100644
--- a/src/components/icons/code-browser.tsx
+++ b/src/components/icons/code-browser.tsx
@@ -11,6 +11,7 @@ const CodeBrowser = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2oP7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-circle-01.tsx b/src/components/icons/code-circle-01.tsx
index 6d0608f89..7fe0f2f9b 100644
--- a/src/components/icons/code-circle-01.tsx
+++ b/src/components/icons/code-circle-01.tsx
@@ -11,6 +11,7 @@ const CodeCircle01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Vdo-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-circle-02.tsx b/src/components/icons/code-circle-02.tsx
index ecc22d053..57092f0f1 100644
--- a/src/components/icons/code-circle-02.tsx
+++ b/src/components/icons/code-circle-02.tsx
@@ -11,6 +11,7 @@ const CodeCircle02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RgUi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-circle-03.tsx b/src/components/icons/code-circle-03.tsx
index f15419dce..0d5d76db5 100644
--- a/src/components/icons/code-circle-03.tsx
+++ b/src/components/icons/code-circle-03.tsx
@@ -11,6 +11,7 @@ const CodeCircle03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xV4j"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-snippet-01.tsx b/src/components/icons/code-snippet-01.tsx
index 2a1332010..df2637cb6 100644
--- a/src/components/icons/code-snippet-01.tsx
+++ b/src/components/icons/code-snippet-01.tsx
@@ -11,6 +11,7 @@ const CodeSnippet01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UEkD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-snippet-02.tsx b/src/components/icons/code-snippet-02.tsx
index d2cbb4d68..69a2b9f5c 100644
--- a/src/components/icons/code-snippet-02.tsx
+++ b/src/components/icons/code-snippet-02.tsx
@@ -11,6 +11,7 @@ const CodeSnippet02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SYwt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-square-01.tsx b/src/components/icons/code-square-01.tsx
index cae22ae77..bedfa86e2 100644
--- a/src/components/icons/code-square-01.tsx
+++ b/src/components/icons/code-square-01.tsx
@@ -11,6 +11,7 @@ const CodeSquare01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QMOr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/code-square-02.tsx b/src/components/icons/code-square-02.tsx
index 7bcf062d1..f7052f3f2 100644
--- a/src/components/icons/code-square-02.tsx
+++ b/src/components/icons/code-square-02.tsx
@@ -11,6 +11,7 @@ const CodeSquare02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TP54"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/codepen.tsx b/src/components/icons/codepen.tsx
index 227f47fdc..69e57169f 100644
--- a/src/components/icons/codepen.tsx
+++ b/src/components/icons/codepen.tsx
@@ -11,6 +11,7 @@ const Codepen = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SV8O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-01.tsx b/src/components/icons/coins-01.tsx
index b6b22a58a..1645cf350 100644
--- a/src/components/icons/coins-01.tsx
+++ b/src/components/icons/coins-01.tsx
@@ -11,6 +11,7 @@ const Coins01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="L2bu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-02.tsx b/src/components/icons/coins-02.tsx
index f0adc9e81..a0b72988e 100644
--- a/src/components/icons/coins-02.tsx
+++ b/src/components/icons/coins-02.tsx
@@ -11,6 +11,7 @@ const Coins02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="AUwM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-03.tsx b/src/components/icons/coins-03.tsx
index eb42c215d..3e3392b1a 100644
--- a/src/components/icons/coins-03.tsx
+++ b/src/components/icons/coins-03.tsx
@@ -11,6 +11,7 @@ const Coins03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OHjh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-04.tsx b/src/components/icons/coins-04.tsx
index fc30c275e..e03ebcf08 100644
--- a/src/components/icons/coins-04.tsx
+++ b/src/components/icons/coins-04.tsx
@@ -11,6 +11,7 @@ const Coins04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jYBD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-hand.tsx b/src/components/icons/coins-hand.tsx
index e98ed7752..3ab18dcea 100644
--- a/src/components/icons/coins-hand.tsx
+++ b/src/components/icons/coins-hand.tsx
@@ -11,6 +11,7 @@ const CoinsHand = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w25O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-stacked-01.tsx b/src/components/icons/coins-stacked-01.tsx
index 23b9d6eb3..218859268 100644
--- a/src/components/icons/coins-stacked-01.tsx
+++ b/src/components/icons/coins-stacked-01.tsx
@@ -11,6 +11,7 @@ const CoinsStacked01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Qvh8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-stacked-02.tsx b/src/components/icons/coins-stacked-02.tsx
index 8d3ec37fc..f5a53d8c7 100644
--- a/src/components/icons/coins-stacked-02.tsx
+++ b/src/components/icons/coins-stacked-02.tsx
@@ -11,6 +11,7 @@ const CoinsStacked02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4Qaf"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-stacked-03.tsx b/src/components/icons/coins-stacked-03.tsx
index 4074db79f..b80a0e14b 100644
--- a/src/components/icons/coins-stacked-03.tsx
+++ b/src/components/icons/coins-stacked-03.tsx
@@ -11,6 +11,7 @@ const CoinsStacked03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZzC2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-stacked-04.tsx b/src/components/icons/coins-stacked-04.tsx
index 43b36aedc..c177b9bb2 100644
--- a/src/components/icons/coins-stacked-04.tsx
+++ b/src/components/icons/coins-stacked-04.tsx
@@ -11,6 +11,7 @@ const CoinsStacked04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rB0L"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-swap-01.tsx b/src/components/icons/coins-swap-01.tsx
index 36b8d905b..8f7ac4c30 100644
--- a/src/components/icons/coins-swap-01.tsx
+++ b/src/components/icons/coins-swap-01.tsx
@@ -11,6 +11,7 @@ const CoinsSwap01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DQCg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/coins-swap-02.tsx b/src/components/icons/coins-swap-02.tsx
index 28f3d422e..87138576c 100644
--- a/src/components/icons/coins-swap-02.tsx
+++ b/src/components/icons/coins-swap-02.tsx
@@ -11,6 +11,7 @@ const CoinsSwap02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ahqJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/colors-1.tsx b/src/components/icons/colors-1.tsx
index 54dab5a06..8553650d7 100644
--- a/src/components/icons/colors-1.tsx
+++ b/src/components/icons/colors-1.tsx
@@ -11,6 +11,7 @@ const Colors1 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_XYV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/colors.tsx b/src/components/icons/colors.tsx
index 5d60e8fbc..034d5d66b 100644
--- a/src/components/icons/colors.tsx
+++ b/src/components/icons/colors.tsx
@@ -11,6 +11,7 @@ const Colors = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="e5Zv"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/columns-01.tsx b/src/components/icons/columns-01.tsx
index f981f743a..3044ae631 100644
--- a/src/components/icons/columns-01.tsx
+++ b/src/components/icons/columns-01.tsx
@@ -11,6 +11,7 @@ const Columns01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cKUE"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/columns-02.tsx b/src/components/icons/columns-02.tsx
index 624e0cd56..ba419fc43 100644
--- a/src/components/icons/columns-02.tsx
+++ b/src/components/icons/columns-02.tsx
@@ -11,6 +11,7 @@ const Columns02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qMjm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/columns-03.tsx b/src/components/icons/columns-03.tsx
index 0ef4df9af..466ec3547 100644
--- a/src/components/icons/columns-03.tsx
+++ b/src/components/icons/columns-03.tsx
@@ -11,6 +11,7 @@ const Columns03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5r9I"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/command.tsx b/src/components/icons/command.tsx
index 199f22142..e95f4f596 100644
--- a/src/components/icons/command.tsx
+++ b/src/components/icons/command.tsx
@@ -11,6 +11,7 @@ const Command = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1MrB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/compass-01.tsx b/src/components/icons/compass-01.tsx
index cf49082db..d00ebdda6 100644
--- a/src/components/icons/compass-01.tsx
+++ b/src/components/icons/compass-01.tsx
@@ -11,6 +11,7 @@ const Compass01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="azxo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/compass-02.tsx b/src/components/icons/compass-02.tsx
index 537c11f51..34b143690 100644
--- a/src/components/icons/compass-02.tsx
+++ b/src/components/icons/compass-02.tsx
@@ -11,6 +11,7 @@ const Compass02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="csvO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/compass-03.tsx b/src/components/icons/compass-03.tsx
index 3d677c3ad..735c2e83c 100644
--- a/src/components/icons/compass-03.tsx
+++ b/src/components/icons/compass-03.tsx
@@ -11,6 +11,7 @@ const Compass03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2fpB"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/compass.tsx b/src/components/icons/compass.tsx
index 823d1329d..2f753c236 100644
--- a/src/components/icons/compass.tsx
+++ b/src/components/icons/compass.tsx
@@ -11,6 +11,7 @@ const Compass = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RveT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/container.tsx b/src/components/icons/container.tsx
index 8a73eb97c..4ffa23c57 100644
--- a/src/components/icons/container.tsx
+++ b/src/components/icons/container.tsx
@@ -11,6 +11,7 @@ const Container = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zHSY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/contrast-01.tsx b/src/components/icons/contrast-01.tsx
index 73003065d..a15b63ddf 100644
--- a/src/components/icons/contrast-01.tsx
+++ b/src/components/icons/contrast-01.tsx
@@ -11,6 +11,7 @@ const Contrast01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dIxk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/contrast-02.tsx b/src/components/icons/contrast-02.tsx
index 94508a9e4..2a6dbd284 100644
--- a/src/components/icons/contrast-02.tsx
+++ b/src/components/icons/contrast-02.tsx
@@ -11,6 +11,7 @@ const Contrast02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pP4q"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/contrast-03.tsx b/src/components/icons/contrast-03.tsx
index c8b9df035..88a01cc32 100644
--- a/src/components/icons/contrast-03.tsx
+++ b/src/components/icons/contrast-03.tsx
@@ -11,6 +11,7 @@ const Contrast03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MJuG"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/copy-01.tsx b/src/components/icons/copy-01.tsx
index a074e865f..c414b5d30 100644
--- a/src/components/icons/copy-01.tsx
+++ b/src/components/icons/copy-01.tsx
@@ -11,6 +11,7 @@ const Copy01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NYKt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/copy-02.tsx b/src/components/icons/copy-02.tsx
index 0613cd782..89ea34310 100644
--- a/src/components/icons/copy-02.tsx
+++ b/src/components/icons/copy-02.tsx
@@ -11,6 +11,7 @@ const Copy02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WvIl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/copy-03.tsx b/src/components/icons/copy-03.tsx
index bb560592b..0a8e9d107 100644
--- a/src/components/icons/copy-03.tsx
+++ b/src/components/icons/copy-03.tsx
@@ -11,6 +11,7 @@ const Copy03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="K1mo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/copy-04.tsx b/src/components/icons/copy-04.tsx
index 30ee3486e..7cd76c754 100644
--- a/src/components/icons/copy-04.tsx
+++ b/src/components/icons/copy-04.tsx
@@ -11,6 +11,7 @@ const Copy04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KK8p"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/copy-05.tsx b/src/components/icons/copy-05.tsx
index 707d29662..070b4bd04 100644
--- a/src/components/icons/copy-05.tsx
+++ b/src/components/icons/copy-05.tsx
@@ -11,6 +11,7 @@ const Copy05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WqVh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/copy-06.tsx b/src/components/icons/copy-06.tsx
index a7de46036..2454a1e91 100644
--- a/src/components/icons/copy-06.tsx
+++ b/src/components/icons/copy-06.tsx
@@ -11,6 +11,7 @@ const Copy06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zUOD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/copy-07.tsx b/src/components/icons/copy-07.tsx
index f8c20aa8f..6adc60255 100644
--- a/src/components/icons/copy-07.tsx
+++ b/src/components/icons/copy-07.tsx
@@ -11,6 +11,7 @@ const Copy07 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="liL-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-down-left.tsx b/src/components/icons/corner-down-left.tsx
index 3273a1e59..a07985cb1 100644
--- a/src/components/icons/corner-down-left.tsx
+++ b/src/components/icons/corner-down-left.tsx
@@ -11,6 +11,7 @@ const CornerDownLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fKg4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-down-right.tsx b/src/components/icons/corner-down-right.tsx
index 41914ffff..c092db3a1 100644
--- a/src/components/icons/corner-down-right.tsx
+++ b/src/components/icons/corner-down-right.tsx
@@ -11,6 +11,7 @@ const CornerDownRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kU8E"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-left-down.tsx b/src/components/icons/corner-left-down.tsx
index e266b271c..3d2cd5d27 100644
--- a/src/components/icons/corner-left-down.tsx
+++ b/src/components/icons/corner-left-down.tsx
@@ -11,6 +11,7 @@ const CornerLeftDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dhvS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-left-up.tsx b/src/components/icons/corner-left-up.tsx
index e72eb4b68..1cc41b4ce 100644
--- a/src/components/icons/corner-left-up.tsx
+++ b/src/components/icons/corner-left-up.tsx
@@ -11,6 +11,7 @@ const CornerLeftUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="h_l7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-right-down.tsx b/src/components/icons/corner-right-down.tsx
index be9af2115..cf6b3d5c7 100644
--- a/src/components/icons/corner-right-down.tsx
+++ b/src/components/icons/corner-right-down.tsx
@@ -11,6 +11,7 @@ const CornerRightDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="d7ca"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-right-up.tsx b/src/components/icons/corner-right-up.tsx
index 2fb813878..b48548f26 100644
--- a/src/components/icons/corner-right-up.tsx
+++ b/src/components/icons/corner-right-up.tsx
@@ -11,6 +11,7 @@ const CornerRightUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Mg1u"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-up-left.tsx b/src/components/icons/corner-up-left.tsx
index acc0f6e67..82cf1b893 100644
--- a/src/components/icons/corner-up-left.tsx
+++ b/src/components/icons/corner-up-left.tsx
@@ -11,6 +11,7 @@ const CornerUpLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Mm3Z"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/corner-up-right.tsx b/src/components/icons/corner-up-right.tsx
index f95cc0d87..fc4294601 100644
--- a/src/components/icons/corner-up-right.tsx
+++ b/src/components/icons/corner-up-right.tsx
@@ -11,6 +11,7 @@ const CornerUpRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Tm7m"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cpu-chip-01.tsx b/src/components/icons/cpu-chip-01.tsx
index cab8595ac..0d07cb758 100644
--- a/src/components/icons/cpu-chip-01.tsx
+++ b/src/components/icons/cpu-chip-01.tsx
@@ -11,6 +11,7 @@ const CpuChip01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wTYq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cpu-chip-02.tsx b/src/components/icons/cpu-chip-02.tsx
index c93581239..f501efde2 100644
--- a/src/components/icons/cpu-chip-02.tsx
+++ b/src/components/icons/cpu-chip-02.tsx
@@ -11,6 +11,7 @@ const CpuChip02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PNyk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-01.tsx b/src/components/icons/credit-card-01.tsx
index ab82773a0..f88df40aa 100644
--- a/src/components/icons/credit-card-01.tsx
+++ b/src/components/icons/credit-card-01.tsx
@@ -11,6 +11,7 @@ const CreditCard01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-KEu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-02.tsx b/src/components/icons/credit-card-02.tsx
index 973b3b1fc..6cbd697cd 100644
--- a/src/components/icons/credit-card-02.tsx
+++ b/src/components/icons/credit-card-02.tsx
@@ -11,6 +11,7 @@ const CreditCard02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Pnmj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-check.tsx b/src/components/icons/credit-card-check.tsx
index 170a273b2..bc733c139 100644
--- a/src/components/icons/credit-card-check.tsx
+++ b/src/components/icons/credit-card-check.tsx
@@ -11,6 +11,7 @@ const CreditCardCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lZEc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-down.tsx b/src/components/icons/credit-card-down.tsx
index 74b12e7a1..13272d95a 100644
--- a/src/components/icons/credit-card-down.tsx
+++ b/src/components/icons/credit-card-down.tsx
@@ -11,6 +11,7 @@ const CreditCardDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Z-Du"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-download.tsx b/src/components/icons/credit-card-download.tsx
index 1e8a4f514..4df2a0ef4 100644
--- a/src/components/icons/credit-card-download.tsx
+++ b/src/components/icons/credit-card-download.tsx
@@ -11,6 +11,7 @@ const CreditCardDownload = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MCOy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-edit.tsx b/src/components/icons/credit-card-edit.tsx
index 4326b5596..209bdc865 100644
--- a/src/components/icons/credit-card-edit.tsx
+++ b/src/components/icons/credit-card-edit.tsx
@@ -11,6 +11,7 @@ const CreditCardEdit = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3cG0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-lock.tsx b/src/components/icons/credit-card-lock.tsx
index e3d4adf99..a14edd926 100644
--- a/src/components/icons/credit-card-lock.tsx
+++ b/src/components/icons/credit-card-lock.tsx
@@ -11,6 +11,7 @@ const CreditCardLock = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9Gel"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-minus.tsx b/src/components/icons/credit-card-minus.tsx
index 5f36e92d9..8f4717de2 100644
--- a/src/components/icons/credit-card-minus.tsx
+++ b/src/components/icons/credit-card-minus.tsx
@@ -11,6 +11,7 @@ const CreditCardMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mM7z"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-plus.tsx b/src/components/icons/credit-card-plus.tsx
index d7f29abb9..003fdf077 100644
--- a/src/components/icons/credit-card-plus.tsx
+++ b/src/components/icons/credit-card-plus.tsx
@@ -11,6 +11,7 @@ const CreditCardPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wekf"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-refresh.tsx b/src/components/icons/credit-card-refresh.tsx
index ddcb61e77..3e23c39a6 100644
--- a/src/components/icons/credit-card-refresh.tsx
+++ b/src/components/icons/credit-card-refresh.tsx
@@ -11,6 +11,7 @@ const CreditCardRefresh = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8kWa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-search.tsx b/src/components/icons/credit-card-search.tsx
index e99b472e6..ec0ad9cd7 100644
--- a/src/components/icons/credit-card-search.tsx
+++ b/src/components/icons/credit-card-search.tsx
@@ -11,6 +11,7 @@ const CreditCardSearch = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pXeB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-shield.tsx b/src/components/icons/credit-card-shield.tsx
index 85eddd780..0b871b45e 100644
--- a/src/components/icons/credit-card-shield.tsx
+++ b/src/components/icons/credit-card-shield.tsx
@@ -11,6 +11,7 @@ const CreditCardShield = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1vEr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-up.tsx b/src/components/icons/credit-card-up.tsx
index 1dbe03ca5..cdb43387e 100644
--- a/src/components/icons/credit-card-up.tsx
+++ b/src/components/icons/credit-card-up.tsx
@@ -11,6 +11,7 @@ const CreditCardUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Laqn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-upload.tsx b/src/components/icons/credit-card-upload.tsx
index 5d0676b96..72dfec3a0 100644
--- a/src/components/icons/credit-card-upload.tsx
+++ b/src/components/icons/credit-card-upload.tsx
@@ -11,6 +11,7 @@ const CreditCardUpload = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6opC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/credit-card-x.tsx b/src/components/icons/credit-card-x.tsx
index 4a17f0201..e28b67754 100644
--- a/src/components/icons/credit-card-x.tsx
+++ b/src/components/icons/credit-card-x.tsx
@@ -11,6 +11,7 @@ const CreditCardX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LUND"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/crop-01.tsx b/src/components/icons/crop-01.tsx
index c23c2bf7b..42e4f37c5 100644
--- a/src/components/icons/crop-01.tsx
+++ b/src/components/icons/crop-01.tsx
@@ -11,6 +11,7 @@ const Crop01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="b6Z-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/crop-02.tsx b/src/components/icons/crop-02.tsx
index 33f660fc1..4edbf1afe 100644
--- a/src/components/icons/crop-02.tsx
+++ b/src/components/icons/crop-02.tsx
@@ -11,6 +11,7 @@ const Crop02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="asLQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cryptocurrency-01.tsx b/src/components/icons/cryptocurrency-01.tsx
index 7936d1154..e0bc21f74 100644
--- a/src/components/icons/cryptocurrency-01.tsx
+++ b/src/components/icons/cryptocurrency-01.tsx
@@ -11,6 +11,7 @@ const Cryptocurrency01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8MOd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cryptocurrency-02.tsx b/src/components/icons/cryptocurrency-02.tsx
index c144484a6..826197b52 100644
--- a/src/components/icons/cryptocurrency-02.tsx
+++ b/src/components/icons/cryptocurrency-02.tsx
@@ -11,6 +11,7 @@ const Cryptocurrency02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KYJ0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cryptocurrency-03.tsx b/src/components/icons/cryptocurrency-03.tsx
index 34fb6edd5..20b68fa58 100644
--- a/src/components/icons/cryptocurrency-03.tsx
+++ b/src/components/icons/cryptocurrency-03.tsx
@@ -11,6 +11,7 @@ const Cryptocurrency03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KwLb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cryptocurrency-04.tsx b/src/components/icons/cryptocurrency-04.tsx
index 4ad3352ec..f3032cc9b 100644
--- a/src/components/icons/cryptocurrency-04.tsx
+++ b/src/components/icons/cryptocurrency-04.tsx
@@ -11,6 +11,7 @@ const Cryptocurrency04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UOpv"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cube-01.tsx b/src/components/icons/cube-01.tsx
index 54b049879..89732c27a 100644
--- a/src/components/icons/cube-01.tsx
+++ b/src/components/icons/cube-01.tsx
@@ -11,6 +11,7 @@ const Cube01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ypPR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cube-02.tsx b/src/components/icons/cube-02.tsx
index cce9329fc..913f1c5d7 100644
--- a/src/components/icons/cube-02.tsx
+++ b/src/components/icons/cube-02.tsx
@@ -11,6 +11,7 @@ const Cube02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jq-y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cube-03.tsx b/src/components/icons/cube-03.tsx
index 2dd005b57..7ccbb4049 100644
--- a/src/components/icons/cube-03.tsx
+++ b/src/components/icons/cube-03.tsx
@@ -11,6 +11,7 @@ const Cube03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zlvA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cube-04.tsx b/src/components/icons/cube-04.tsx
index fa171f6eb..d4078b528 100644
--- a/src/components/icons/cube-04.tsx
+++ b/src/components/icons/cube-04.tsx
@@ -11,6 +11,7 @@ const Cube04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Bn3D"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cube-outline.tsx b/src/components/icons/cube-outline.tsx
index bd6fa2a10..c1727d531 100644
--- a/src/components/icons/cube-outline.tsx
+++ b/src/components/icons/cube-outline.tsx
@@ -11,6 +11,7 @@ const CubeOutline = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dciy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-bitcoin-circle.tsx b/src/components/icons/currency-bitcoin-circle.tsx
index b336d0f08..020d12e36 100644
--- a/src/components/icons/currency-bitcoin-circle.tsx
+++ b/src/components/icons/currency-bitcoin-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyBitcoinCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uBDR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-bitcoin.tsx b/src/components/icons/currency-bitcoin.tsx
index 48fa829ef..b978f50d6 100644
--- a/src/components/icons/currency-bitcoin.tsx
+++ b/src/components/icons/currency-bitcoin.tsx
@@ -11,6 +11,7 @@ const CurrencyBitcoin = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ndtd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-dollar-circle.tsx b/src/components/icons/currency-dollar-circle.tsx
index 386ff592f..0ae031702 100644
--- a/src/components/icons/currency-dollar-circle.tsx
+++ b/src/components/icons/currency-dollar-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyDollarCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NMC0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-dollar.tsx b/src/components/icons/currency-dollar.tsx
index 8747aa2c1..2b6a79649 100644
--- a/src/components/icons/currency-dollar.tsx
+++ b/src/components/icons/currency-dollar.tsx
@@ -11,6 +11,7 @@ const CurrencyDollar = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Qi9c"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-ethereum-circle.tsx b/src/components/icons/currency-ethereum-circle.tsx
index 9c22a60fe..0f9302b12 100644
--- a/src/components/icons/currency-ethereum-circle.tsx
+++ b/src/components/icons/currency-ethereum-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyEthereumCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="D2nT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-ethereum.tsx b/src/components/icons/currency-ethereum.tsx
index abaa83e98..abcd93746 100644
--- a/src/components/icons/currency-ethereum.tsx
+++ b/src/components/icons/currency-ethereum.tsx
@@ -11,6 +11,7 @@ const CurrencyEthereum = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZIOq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-euro-circle.tsx b/src/components/icons/currency-euro-circle.tsx
index 9c4cff292..68a9c1354 100644
--- a/src/components/icons/currency-euro-circle.tsx
+++ b/src/components/icons/currency-euro-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyEuroCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Oimf"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-euro.tsx b/src/components/icons/currency-euro.tsx
index 8f9e30684..e548187cf 100644
--- a/src/components/icons/currency-euro.tsx
+++ b/src/components/icons/currency-euro.tsx
@@ -11,6 +11,7 @@ const CurrencyEuro = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JhoO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-pound-circle.tsx b/src/components/icons/currency-pound-circle.tsx
index e0c9bcd97..164073b59 100644
--- a/src/components/icons/currency-pound-circle.tsx
+++ b/src/components/icons/currency-pound-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyPoundCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Bixn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-pound.tsx b/src/components/icons/currency-pound.tsx
index 1967b136c..b5f853ed4 100644
--- a/src/components/icons/currency-pound.tsx
+++ b/src/components/icons/currency-pound.tsx
@@ -11,6 +11,7 @@ const CurrencyPound = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RqVa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-ruble-circle.tsx b/src/components/icons/currency-ruble-circle.tsx
index 32b473a63..0804c6aad 100644
--- a/src/components/icons/currency-ruble-circle.tsx
+++ b/src/components/icons/currency-ruble-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyRubleCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ohn2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-ruble.tsx b/src/components/icons/currency-ruble.tsx
index 375eb4206..b2d487f52 100644
--- a/src/components/icons/currency-ruble.tsx
+++ b/src/components/icons/currency-ruble.tsx
@@ -11,6 +11,7 @@ const CurrencyRuble = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wSw0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-rupee-circle.tsx b/src/components/icons/currency-rupee-circle.tsx
index ea0aa3222..d304fd9b6 100644
--- a/src/components/icons/currency-rupee-circle.tsx
+++ b/src/components/icons/currency-rupee-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyRupeeCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3ggF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-rupee.tsx b/src/components/icons/currency-rupee.tsx
index 86a56e304..aa538f71d 100644
--- a/src/components/icons/currency-rupee.tsx
+++ b/src/components/icons/currency-rupee.tsx
@@ -11,6 +11,7 @@ const CurrencyRupee = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gfxS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-yen-circle.tsx b/src/components/icons/currency-yen-circle.tsx
index 7d4991851..a5f90403f 100644
--- a/src/components/icons/currency-yen-circle.tsx
+++ b/src/components/icons/currency-yen-circle.tsx
@@ -11,6 +11,7 @@ const CurrencyYenCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xjqV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/currency-yen.tsx b/src/components/icons/currency-yen.tsx
index 6c0977ee7..fe8f6600a 100644
--- a/src/components/icons/currency-yen.tsx
+++ b/src/components/icons/currency-yen.tsx
@@ -11,6 +11,7 @@ const CurrencyYen = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qfxa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cursor-01.tsx b/src/components/icons/cursor-01.tsx
index 2dd86e3b0..c02296296 100644
--- a/src/components/icons/cursor-01.tsx
+++ b/src/components/icons/cursor-01.tsx
@@ -11,6 +11,7 @@ const Cursor01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="o3Gn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cursor-02.tsx b/src/components/icons/cursor-02.tsx
index a600a00fe..2032f03da 100644
--- a/src/components/icons/cursor-02.tsx
+++ b/src/components/icons/cursor-02.tsx
@@ -11,6 +11,7 @@ const Cursor02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vxTk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cursor-03.tsx b/src/components/icons/cursor-03.tsx
index 4214935cc..2a54b9952 100644
--- a/src/components/icons/cursor-03.tsx
+++ b/src/components/icons/cursor-03.tsx
@@ -11,6 +11,7 @@ const Cursor03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="u93q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cursor-04.tsx b/src/components/icons/cursor-04.tsx
index b2b31eaf0..95539ea48 100644
--- a/src/components/icons/cursor-04.tsx
+++ b/src/components/icons/cursor-04.tsx
@@ -11,6 +11,7 @@ const Cursor04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3gHD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cursor-box.tsx b/src/components/icons/cursor-box.tsx
index 89b714241..f9e0e6841 100644
--- a/src/components/icons/cursor-box.tsx
+++ b/src/components/icons/cursor-box.tsx
@@ -11,6 +11,7 @@ const CursorBox = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EIKl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cursor-click-01.tsx b/src/components/icons/cursor-click-01.tsx
index 7c288dadb..82dc62339 100644
--- a/src/components/icons/cursor-click-01.tsx
+++ b/src/components/icons/cursor-click-01.tsx
@@ -11,6 +11,7 @@ const CursorClick01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MSvD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/cursor-click-02.tsx b/src/components/icons/cursor-click-02.tsx
index 1ab0381a7..75e027167 100644
--- a/src/components/icons/cursor-click-02.tsx
+++ b/src/components/icons/cursor-click-02.tsx
@@ -11,6 +11,7 @@ const CursorClick02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="X3Mj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/data.tsx b/src/components/icons/data.tsx
index 4869b4add..703349eeb 100644
--- a/src/components/icons/data.tsx
+++ b/src/components/icons/data.tsx
@@ -11,6 +11,7 @@ const Data = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hQ57"
>,
,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/database-01.tsx b/src/components/icons/database-01.tsx
index 0848c145c..a7d56c67e 100644
--- a/src/components/icons/database-01.tsx
+++ b/src/components/icons/database-01.tsx
@@ -11,6 +11,7 @@ const Database01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NbQN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/database-02.tsx b/src/components/icons/database-02.tsx
index 2def052d2..ba824ea6b 100644
--- a/src/components/icons/database-02.tsx
+++ b/src/components/icons/database-02.tsx
@@ -11,6 +11,7 @@ const Database02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Gseb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/database-03.tsx b/src/components/icons/database-03.tsx
index 026cccacf..7806896ab 100644
--- a/src/components/icons/database-03.tsx
+++ b/src/components/icons/database-03.tsx
@@ -11,6 +11,7 @@ const Database03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="p43T"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dataflow-01.tsx b/src/components/icons/dataflow-01.tsx
index fe4fcb424..a4c8501a8 100644
--- a/src/components/icons/dataflow-01.tsx
+++ b/src/components/icons/dataflow-01.tsx
@@ -11,6 +11,7 @@ const Dataflow01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="s6r8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dataflow-02.tsx b/src/components/icons/dataflow-02.tsx
index d8fd7d96d..d895b77b5 100644
--- a/src/components/icons/dataflow-02.tsx
+++ b/src/components/icons/dataflow-02.tsx
@@ -11,6 +11,7 @@ const Dataflow02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="C3nC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dataflow-03.tsx b/src/components/icons/dataflow-03.tsx
index 143ff2a27..04dece13b 100644
--- a/src/components/icons/dataflow-03.tsx
+++ b/src/components/icons/dataflow-03.tsx
@@ -11,6 +11,7 @@ const Dataflow03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6Jso"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dataflow-04.tsx b/src/components/icons/dataflow-04.tsx
index 5e80ebe35..a61f4bf08 100644
--- a/src/components/icons/dataflow-04.tsx
+++ b/src/components/icons/dataflow-04.tsx
@@ -11,6 +11,7 @@ const Dataflow04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ljUg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/delete.tsx b/src/components/icons/delete.tsx
index a9c7a6667..46543b864 100644
--- a/src/components/icons/delete.tsx
+++ b/src/components/icons/delete.tsx
@@ -11,6 +11,7 @@ const Delete = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yOr1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/diamond-01.tsx b/src/components/icons/diamond-01.tsx
index aa44c5b35..0188f0829 100644
--- a/src/components/icons/diamond-01.tsx
+++ b/src/components/icons/diamond-01.tsx
@@ -11,6 +11,7 @@ const Diamond01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qUnJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/diamond-02.tsx b/src/components/icons/diamond-02.tsx
index faa463384..3ca33cd90 100644
--- a/src/components/icons/diamond-02.tsx
+++ b/src/components/icons/diamond-02.tsx
@@ -11,6 +11,7 @@ const Diamond02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PjqS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dice-1.tsx b/src/components/icons/dice-1.tsx
index 21382af44..45d624e76 100644
--- a/src/components/icons/dice-1.tsx
+++ b/src/components/icons/dice-1.tsx
@@ -11,6 +11,7 @@ const Dice1 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="e2Px"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dice-2.tsx b/src/components/icons/dice-2.tsx
index cb3262cb5..310f5aedc 100644
--- a/src/components/icons/dice-2.tsx
+++ b/src/components/icons/dice-2.tsx
@@ -11,6 +11,7 @@ const Dice2 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="txup"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dice-3.tsx b/src/components/icons/dice-3.tsx
index 88ade2a4b..70e28a9f1 100644
--- a/src/components/icons/dice-3.tsx
+++ b/src/components/icons/dice-3.tsx
@@ -11,6 +11,7 @@ const Dice3 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Qw4K"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dice-4.tsx b/src/components/icons/dice-4.tsx
index bab1ef336..214e1c6d9 100644
--- a/src/components/icons/dice-4.tsx
+++ b/src/components/icons/dice-4.tsx
@@ -11,6 +11,7 @@ const Dice4 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yv7p"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dice-5.tsx b/src/components/icons/dice-5.tsx
index f84df7be4..57394025f 100644
--- a/src/components/icons/dice-5.tsx
+++ b/src/components/icons/dice-5.tsx
@@ -11,6 +11,7 @@ const Dice5 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZH5s"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dice-6.tsx b/src/components/icons/dice-6.tsx
index 8e07fe744..42752045b 100644
--- a/src/components/icons/dice-6.tsx
+++ b/src/components/icons/dice-6.tsx
@@ -11,6 +11,7 @@ const Dice6 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cYjL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/disc-01.tsx b/src/components/icons/disc-01.tsx
index 1b52503a4..147d3d1ea 100644
--- a/src/components/icons/disc-01.tsx
+++ b/src/components/icons/disc-01.tsx
@@ -11,6 +11,7 @@ const Disc01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OZKM"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/disc-02.tsx b/src/components/icons/disc-02.tsx
index 2d4662e06..a671fd2ac 100644
--- a/src/components/icons/disc-02.tsx
+++ b/src/components/icons/disc-02.tsx
@@ -11,6 +11,7 @@ const Disc02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uGA2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/distribute-spacing-horizontal.tsx b/src/components/icons/distribute-spacing-horizontal.tsx
index 147ba52ac..f910720a3 100644
--- a/src/components/icons/distribute-spacing-horizontal.tsx
+++ b/src/components/icons/distribute-spacing-horizontal.tsx
@@ -11,6 +11,7 @@ const DistributeSpacingHorizontal = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WZAD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/distribute-spacing-vertical.tsx b/src/components/icons/distribute-spacing-vertical.tsx
index edaf90ccc..9710be395 100644
--- a/src/components/icons/distribute-spacing-vertical.tsx
+++ b/src/components/icons/distribute-spacing-vertical.tsx
@@ -11,6 +11,7 @@ const DistributeSpacingVertical = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0l1E"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/divide-01.tsx b/src/components/icons/divide-01.tsx
index f99881693..94031f32b 100644
--- a/src/components/icons/divide-01.tsx
+++ b/src/components/icons/divide-01.tsx
@@ -11,6 +11,7 @@ const Divide01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_-JK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/divide-02.tsx b/src/components/icons/divide-02.tsx
index 222ea5a30..816ffe710 100644
--- a/src/components/icons/divide-02.tsx
+++ b/src/components/icons/divide-02.tsx
@@ -11,6 +11,7 @@ const Divide02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QHvd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/divide-03.tsx b/src/components/icons/divide-03.tsx
index 8ad9dcf17..e6fd156d3 100644
--- a/src/components/icons/divide-03.tsx
+++ b/src/components/icons/divide-03.tsx
@@ -11,6 +11,7 @@ const Divide03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WL9U"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/divider.tsx b/src/components/icons/divider.tsx
index 3e5151b93..120649727 100644
--- a/src/components/icons/divider.tsx
+++ b/src/components/icons/divider.tsx
@@ -11,6 +11,7 @@ const Divider = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cnc7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dotpoints-01.tsx b/src/components/icons/dotpoints-01.tsx
index 596358841..12d429048 100644
--- a/src/components/icons/dotpoints-01.tsx
+++ b/src/components/icons/dotpoints-01.tsx
@@ -11,6 +11,7 @@ const Dotpoints01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QtU6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dotpoints-02.tsx b/src/components/icons/dotpoints-02.tsx
index 8fbe48e48..249acb802 100644
--- a/src/components/icons/dotpoints-02.tsx
+++ b/src/components/icons/dotpoints-02.tsx
@@ -11,6 +11,7 @@ const Dotpoints02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zVD6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dots-grid.tsx b/src/components/icons/dots-grid.tsx
index 28cd41e53..c8ec2c671 100644
--- a/src/components/icons/dots-grid.tsx
+++ b/src/components/icons/dots-grid.tsx
@@ -11,6 +11,7 @@ const DotsGrid = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cvBi"
>,
,
,
,
,
,
,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dots-horizontal.tsx b/src/components/icons/dots-horizontal.tsx
index 0446f930c..d72d6939f 100644
--- a/src/components/icons/dots-horizontal.tsx
+++ b/src/components/icons/dots-horizontal.tsx
@@ -11,6 +11,7 @@ const DotsHorizontal = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VE8M"
>,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dots-vertical.tsx b/src/components/icons/dots-vertical.tsx
index c2f0dbf8d..b66aa49fe 100644
--- a/src/components/icons/dots-vertical.tsx
+++ b/src/components/icons/dots-vertical.tsx
@@ -11,6 +11,7 @@ const DotsVertical = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="F0c6"
>,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/download-01.tsx b/src/components/icons/download-01.tsx
index 40bc12d81..183e388ba 100644
--- a/src/components/icons/download-01.tsx
+++ b/src/components/icons/download-01.tsx
@@ -11,6 +11,7 @@ const Download01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tos2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/download-02.tsx b/src/components/icons/download-02.tsx
index abfe4b663..17af586e3 100644
--- a/src/components/icons/download-02.tsx
+++ b/src/components/icons/download-02.tsx
@@ -11,6 +11,7 @@ const Download02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="U07h"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/download-03.tsx b/src/components/icons/download-03.tsx
index 2e1f58e0a..f6f8f923a 100644
--- a/src/components/icons/download-03.tsx
+++ b/src/components/icons/download-03.tsx
@@ -11,6 +11,7 @@ const Download03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cPqu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/download-04.tsx b/src/components/icons/download-04.tsx
index 4c85d6bab..c94f37fbb 100644
--- a/src/components/icons/download-04.tsx
+++ b/src/components/icons/download-04.tsx
@@ -11,6 +11,7 @@ const Download04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="odYC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/download-cloud-01.tsx b/src/components/icons/download-cloud-01.tsx
index 58d8efbcb..9a43e4ddd 100644
--- a/src/components/icons/download-cloud-01.tsx
+++ b/src/components/icons/download-cloud-01.tsx
@@ -11,6 +11,7 @@ const DownloadCloud01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fX9C"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/download-cloud-02.tsx b/src/components/icons/download-cloud-02.tsx
index 3bbf56792..8694b5279 100644
--- a/src/components/icons/download-cloud-02.tsx
+++ b/src/components/icons/download-cloud-02.tsx
@@ -11,6 +11,7 @@ const DownloadCloud02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UXgv"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/drop.tsx b/src/components/icons/drop.tsx
index 77af2ffc5..0ee157859 100644
--- a/src/components/icons/drop.tsx
+++ b/src/components/icons/drop.tsx
@@ -11,6 +11,7 @@ const Drop = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LTUO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/droplets-01.tsx b/src/components/icons/droplets-01.tsx
index 5d4c1e779..9318aa6ee 100644
--- a/src/components/icons/droplets-01.tsx
+++ b/src/components/icons/droplets-01.tsx
@@ -11,6 +11,7 @@ const Droplets01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-UvA"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/droplets-02.tsx b/src/components/icons/droplets-02.tsx
index 0bd6117f7..d6dc8232a 100644
--- a/src/components/icons/droplets-02.tsx
+++ b/src/components/icons/droplets-02.tsx
@@ -11,6 +11,7 @@ const Droplets02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FSbM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/droplets-03.tsx b/src/components/icons/droplets-03.tsx
index d5394910a..0a2911224 100644
--- a/src/components/icons/droplets-03.tsx
+++ b/src/components/icons/droplets-03.tsx
@@ -11,6 +11,7 @@ const Droplets03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fJov"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/dropper.tsx b/src/components/icons/dropper.tsx
index f24ce5e4d..1f7df44c0 100644
--- a/src/components/icons/dropper.tsx
+++ b/src/components/icons/dropper.tsx
@@ -11,6 +11,7 @@ const Dropper = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_UCD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/edit-01.tsx b/src/components/icons/edit-01.tsx
index 2aa781d3c..ff5dcf9d1 100644
--- a/src/components/icons/edit-01.tsx
+++ b/src/components/icons/edit-01.tsx
@@ -11,6 +11,7 @@ const Edit01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pGMt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/edit-02.tsx b/src/components/icons/edit-02.tsx
index 6d95a576c..cd1beacfe 100644
--- a/src/components/icons/edit-02.tsx
+++ b/src/components/icons/edit-02.tsx
@@ -11,6 +11,7 @@ const Edit02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="A8ht"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/edit-03.tsx b/src/components/icons/edit-03.tsx
index fd15c6150..4a2a29f75 100644
--- a/src/components/icons/edit-03.tsx
+++ b/src/components/icons/edit-03.tsx
@@ -11,6 +11,7 @@ const Edit03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xs3u"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/edit-04.tsx b/src/components/icons/edit-04.tsx
index 235ab50af..9b34a3315 100644
--- a/src/components/icons/edit-04.tsx
+++ b/src/components/icons/edit-04.tsx
@@ -11,6 +11,7 @@ const Edit04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BjPR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/edit-05.tsx b/src/components/icons/edit-05.tsx
index 6cd11ab02..f9aaf45b1 100644
--- a/src/components/icons/edit-05.tsx
+++ b/src/components/icons/edit-05.tsx
@@ -11,6 +11,7 @@ const Edit05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wxq7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/equal-not.tsx b/src/components/icons/equal-not.tsx
index c70aec4c6..60db15acd 100644
--- a/src/components/icons/equal-not.tsx
+++ b/src/components/icons/equal-not.tsx
@@ -11,6 +11,7 @@ const EqualNot = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="W7u_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/equal.tsx b/src/components/icons/equal.tsx
index 375094e0f..92fd7b38f 100644
--- a/src/components/icons/equal.tsx
+++ b/src/components/icons/equal.tsx
@@ -11,6 +11,7 @@ const Equal = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rqX5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/eraser.tsx b/src/components/icons/eraser.tsx
index fc5d6acfe..7f7dabf9e 100644
--- a/src/components/icons/eraser.tsx
+++ b/src/components/icons/eraser.tsx
@@ -11,6 +11,7 @@ const Eraser = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pFcO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/expand-01.tsx b/src/components/icons/expand-01.tsx
index 0166e6975..abc84c1c9 100644
--- a/src/components/icons/expand-01.tsx
+++ b/src/components/icons/expand-01.tsx
@@ -11,6 +11,7 @@ const Expand01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jtIn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/expand-02.tsx b/src/components/icons/expand-02.tsx
index 39884ed8d..587e7bf5f 100644
--- a/src/components/icons/expand-02.tsx
+++ b/src/components/icons/expand-02.tsx
@@ -11,6 +11,7 @@ const Expand02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="l8vE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/expand-03.tsx b/src/components/icons/expand-03.tsx
index 3640fd725..42f41831d 100644
--- a/src/components/icons/expand-03.tsx
+++ b/src/components/icons/expand-03.tsx
@@ -11,6 +11,7 @@ const Expand03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4PeD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/expand-04.tsx b/src/components/icons/expand-04.tsx
index 6693ed6f1..2f6825717 100644
--- a/src/components/icons/expand-04.tsx
+++ b/src/components/icons/expand-04.tsx
@@ -11,6 +11,7 @@ const Expand04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9V8N"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/expand-05.tsx b/src/components/icons/expand-05.tsx
index 410bb3270..9bac7fde5 100644
--- a/src/components/icons/expand-05.tsx
+++ b/src/components/icons/expand-05.tsx
@@ -11,6 +11,7 @@ const Expand05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cbZz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/expand-06.tsx b/src/components/icons/expand-06.tsx
index 9648d3162..806ff1498 100644
--- a/src/components/icons/expand-06.tsx
+++ b/src/components/icons/expand-06.tsx
@@ -11,6 +11,7 @@ const Expand06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JO-P"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/eye-off.tsx b/src/components/icons/eye-off.tsx
index 7dbe6c8cc..90d64ce46 100644
--- a/src/components/icons/eye-off.tsx
+++ b/src/components/icons/eye-off.tsx
@@ -11,6 +11,7 @@ const EyeOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tfh_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/eye.tsx b/src/components/icons/eye.tsx
index 45b626435..f9267e608 100644
--- a/src/components/icons/eye.tsx
+++ b/src/components/icons/eye.tsx
@@ -11,6 +11,7 @@ const Eye = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7i9A"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-content.tsx b/src/components/icons/face-content.tsx
index 2fd9c2bad..aa8fc5bc4 100644
--- a/src/components/icons/face-content.tsx
+++ b/src/components/icons/face-content.tsx
@@ -11,6 +11,7 @@ const FaceContent = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w2Dp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-frown.tsx b/src/components/icons/face-frown.tsx
index 4de07f952..b7a5917f8 100644
--- a/src/components/icons/face-frown.tsx
+++ b/src/components/icons/face-frown.tsx
@@ -11,6 +11,7 @@ const FaceFrown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OO8w"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-happy.tsx b/src/components/icons/face-happy.tsx
index c29c43986..347414f77 100644
--- a/src/components/icons/face-happy.tsx
+++ b/src/components/icons/face-happy.tsx
@@ -11,6 +11,7 @@ const FaceHappy = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EV1I"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-id-square.tsx b/src/components/icons/face-id-square.tsx
index 2c3852354..bcf8848af 100644
--- a/src/components/icons/face-id-square.tsx
+++ b/src/components/icons/face-id-square.tsx
@@ -11,6 +11,7 @@ const FaceIdSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0F-0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-id.tsx b/src/components/icons/face-id.tsx
index def724c10..560d5b117 100644
--- a/src/components/icons/face-id.tsx
+++ b/src/components/icons/face-id.tsx
@@ -11,6 +11,7 @@ const FaceId = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Atuw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-neutral.tsx b/src/components/icons/face-neutral.tsx
index a2487c253..bee28b6a3 100644
--- a/src/components/icons/face-neutral.tsx
+++ b/src/components/icons/face-neutral.tsx
@@ -11,6 +11,7 @@ const FaceNeutral = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dY82"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-sad.tsx b/src/components/icons/face-sad.tsx
index 72877ef39..8268f9f50 100644
--- a/src/components/icons/face-sad.tsx
+++ b/src/components/icons/face-sad.tsx
@@ -11,6 +11,7 @@ const FaceSad = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bM7R"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-smile.tsx b/src/components/icons/face-smile.tsx
index c5ad8f730..f16b3528a 100644
--- a/src/components/icons/face-smile.tsx
+++ b/src/components/icons/face-smile.tsx
@@ -11,6 +11,7 @@ const FaceSmile = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="d1dK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/face-wink.tsx b/src/components/icons/face-wink.tsx
index 72fcbd8fc..8bba09338 100644
--- a/src/components/icons/face-wink.tsx
+++ b/src/components/icons/face-wink.tsx
@@ -11,6 +11,7 @@ const FaceWink = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YOj1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/fast-backward.tsx b/src/components/icons/fast-backward.tsx
index e50107165..aec6ad33b 100644
--- a/src/components/icons/fast-backward.tsx
+++ b/src/components/icons/fast-backward.tsx
@@ -11,6 +11,7 @@ const FastBackward = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="z4-a"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/fast-forward.tsx b/src/components/icons/fast-forward.tsx
index a01276620..8e7b543f8 100644
--- a/src/components/icons/fast-forward.tsx
+++ b/src/components/icons/fast-forward.tsx
@@ -11,6 +11,7 @@ const FastForward = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OGGS"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/feather.tsx b/src/components/icons/feather.tsx
index e02ffb707..741bbee59 100644
--- a/src/components/icons/feather.tsx
+++ b/src/components/icons/feather.tsx
@@ -11,6 +11,7 @@ const Feather = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="q2Bf"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/figma.tsx b/src/components/icons/figma.tsx
index f69ba3535..256588d40 100644
--- a/src/components/icons/figma.tsx
+++ b/src/components/icons/figma.tsx
@@ -11,6 +11,7 @@ const Figma = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JQ9l"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-01.tsx b/src/components/icons/file-01.tsx
index 66107219e..f103a3a77 100644
--- a/src/components/icons/file-01.tsx
+++ b/src/components/icons/file-01.tsx
@@ -11,6 +11,7 @@ const File01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="miNZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-02.tsx b/src/components/icons/file-02.tsx
index 1e6ba75e3..b533dda6a 100644
--- a/src/components/icons/file-02.tsx
+++ b/src/components/icons/file-02.tsx
@@ -11,6 +11,7 @@ const File02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wSnN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-03.tsx b/src/components/icons/file-03.tsx
index 73b6e4c34..0a5225cef 100644
--- a/src/components/icons/file-03.tsx
+++ b/src/components/icons/file-03.tsx
@@ -11,6 +11,7 @@ const File03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RInY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-04.tsx b/src/components/icons/file-04.tsx
index 2c9c57237..3ab25319c 100644
--- a/src/components/icons/file-04.tsx
+++ b/src/components/icons/file-04.tsx
@@ -11,6 +11,7 @@ const File04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="I179"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-05.tsx b/src/components/icons/file-05.tsx
index afb2722f7..d78bbe62b 100644
--- a/src/components/icons/file-05.tsx
+++ b/src/components/icons/file-05.tsx
@@ -11,6 +11,7 @@ const File05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PFhm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-06.tsx b/src/components/icons/file-06.tsx
index 00027915e..e9bdf51ea 100644
--- a/src/components/icons/file-06.tsx
+++ b/src/components/icons/file-06.tsx
@@ -11,6 +11,7 @@ const File06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="totR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-07.tsx b/src/components/icons/file-07.tsx
index 0c1f6b931..1cf803387 100644
--- a/src/components/icons/file-07.tsx
+++ b/src/components/icons/file-07.tsx
@@ -11,6 +11,7 @@ const File07 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FQ-c"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-attachment-01.tsx b/src/components/icons/file-attachment-01.tsx
index dd94d9a6e..eb87094a3 100644
--- a/src/components/icons/file-attachment-01.tsx
+++ b/src/components/icons/file-attachment-01.tsx
@@ -11,6 +11,7 @@ const FileAttachment01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lybB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-attachment-02.tsx b/src/components/icons/file-attachment-02.tsx
index d9976f63a..0e62f179f 100644
--- a/src/components/icons/file-attachment-02.tsx
+++ b/src/components/icons/file-attachment-02.tsx
@@ -11,6 +11,7 @@ const FileAttachment02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="txc2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-attachment-03.tsx b/src/components/icons/file-attachment-03.tsx
index 823fe5901..63b2c762d 100644
--- a/src/components/icons/file-attachment-03.tsx
+++ b/src/components/icons/file-attachment-03.tsx
@@ -11,6 +11,7 @@ const FileAttachment03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="11Jh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-attachment-04.tsx b/src/components/icons/file-attachment-04.tsx
index 42d8ac5ad..2d1d391be 100644
--- a/src/components/icons/file-attachment-04.tsx
+++ b/src/components/icons/file-attachment-04.tsx
@@ -11,6 +11,7 @@ const FileAttachment04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aAsS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-attachment-05.tsx b/src/components/icons/file-attachment-05.tsx
index f50de3082..4a8bdbceb 100644
--- a/src/components/icons/file-attachment-05.tsx
+++ b/src/components/icons/file-attachment-05.tsx
@@ -11,6 +11,7 @@ const FileAttachment05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="n_-q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-check-01.tsx b/src/components/icons/file-check-01.tsx
index dee3ab81d..f5a5cbdb4 100644
--- a/src/components/icons/file-check-01.tsx
+++ b/src/components/icons/file-check-01.tsx
@@ -11,6 +11,7 @@ const FileCheck01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kirq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-check-02.tsx b/src/components/icons/file-check-02.tsx
index 1b4a0501e..9d6bc3e9d 100644
--- a/src/components/icons/file-check-02.tsx
+++ b/src/components/icons/file-check-02.tsx
@@ -11,6 +11,7 @@ const FileCheck02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jO08"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-check-03.tsx b/src/components/icons/file-check-03.tsx
index 7c4aa7804..5cc28b637 100644
--- a/src/components/icons/file-check-03.tsx
+++ b/src/components/icons/file-check-03.tsx
@@ -11,6 +11,7 @@ const FileCheck03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YENJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-code-01.tsx b/src/components/icons/file-code-01.tsx
index 67a5fb7a5..713c9cb4b 100644
--- a/src/components/icons/file-code-01.tsx
+++ b/src/components/icons/file-code-01.tsx
@@ -11,6 +11,7 @@ const FileCode01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Xtcg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-code-02.tsx b/src/components/icons/file-code-02.tsx
index de6c0ebd3..6852d6861 100644
--- a/src/components/icons/file-code-02.tsx
+++ b/src/components/icons/file-code-02.tsx
@@ -11,6 +11,7 @@ const FileCode02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aKY1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-download-01.tsx b/src/components/icons/file-download-01.tsx
index 3015b397a..be6fc9290 100644
--- a/src/components/icons/file-download-01.tsx
+++ b/src/components/icons/file-download-01.tsx
@@ -11,6 +11,7 @@ const FileDownload01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YIT2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-download-02.tsx b/src/components/icons/file-download-02.tsx
index db1dacde8..a8c58021a 100644
--- a/src/components/icons/file-download-02.tsx
+++ b/src/components/icons/file-download-02.tsx
@@ -11,6 +11,7 @@ const FileDownload02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yJNi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-download-03.tsx b/src/components/icons/file-download-03.tsx
index 490779632..508f5855d 100644
--- a/src/components/icons/file-download-03.tsx
+++ b/src/components/icons/file-download-03.tsx
@@ -11,6 +11,7 @@ const FileDownload03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8FuF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-heart-01.tsx b/src/components/icons/file-heart-01.tsx
index 2ddefc795..499e92f6a 100644
--- a/src/components/icons/file-heart-01.tsx
+++ b/src/components/icons/file-heart-01.tsx
@@ -11,6 +11,7 @@ const FileHeart01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ANyT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-heart-02.tsx b/src/components/icons/file-heart-02.tsx
index d49235c52..fcaa492c6 100644
--- a/src/components/icons/file-heart-02.tsx
+++ b/src/components/icons/file-heart-02.tsx
@@ -11,6 +11,7 @@ const FileHeart02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zyWH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-heart-03.tsx b/src/components/icons/file-heart-03.tsx
index 503469735..d54c80ce4 100644
--- a/src/components/icons/file-heart-03.tsx
+++ b/src/components/icons/file-heart-03.tsx
@@ -11,6 +11,7 @@ const FileHeart03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="deJK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-lock-01.tsx b/src/components/icons/file-lock-01.tsx
index 876e44a1c..0b4774a4a 100644
--- a/src/components/icons/file-lock-01.tsx
+++ b/src/components/icons/file-lock-01.tsx
@@ -11,6 +11,7 @@ const FileLock01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IwlC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-lock-02.tsx b/src/components/icons/file-lock-02.tsx
index f6e9c1dd7..978bf1dfe 100644
--- a/src/components/icons/file-lock-02.tsx
+++ b/src/components/icons/file-lock-02.tsx
@@ -11,6 +11,7 @@ const FileLock02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BB6K"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-lock-03.tsx b/src/components/icons/file-lock-03.tsx
index 4404682e7..962cb5e56 100644
--- a/src/components/icons/file-lock-03.tsx
+++ b/src/components/icons/file-lock-03.tsx
@@ -11,6 +11,7 @@ const FileLock03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6z8s"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-minus-01.tsx b/src/components/icons/file-minus-01.tsx
index c8c027c9b..914ea5152 100644
--- a/src/components/icons/file-minus-01.tsx
+++ b/src/components/icons/file-minus-01.tsx
@@ -11,6 +11,7 @@ const FileMinus01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="HBvo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-minus-02.tsx b/src/components/icons/file-minus-02.tsx
index 9f82e083e..5cc8039f6 100644
--- a/src/components/icons/file-minus-02.tsx
+++ b/src/components/icons/file-minus-02.tsx
@@ -11,6 +11,7 @@ const FileMinus02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ipXn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-minus-03.tsx b/src/components/icons/file-minus-03.tsx
index af9543b9e..a28f148f4 100644
--- a/src/components/icons/file-minus-03.tsx
+++ b/src/components/icons/file-minus-03.tsx
@@ -11,6 +11,7 @@ const FileMinus03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="L-OK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-plus-01.tsx b/src/components/icons/file-plus-01.tsx
index 18c9428be..1b474a573 100644
--- a/src/components/icons/file-plus-01.tsx
+++ b/src/components/icons/file-plus-01.tsx
@@ -11,6 +11,7 @@ const FilePlus01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UnPp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-plus-02.tsx b/src/components/icons/file-plus-02.tsx
index f72292577..ec3444d7c 100644
--- a/src/components/icons/file-plus-02.tsx
+++ b/src/components/icons/file-plus-02.tsx
@@ -11,6 +11,7 @@ const FilePlus02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ghnz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-plus-03.tsx b/src/components/icons/file-plus-03.tsx
index 5f8eedabd..0008198b1 100644
--- a/src/components/icons/file-plus-03.tsx
+++ b/src/components/icons/file-plus-03.tsx
@@ -11,6 +11,7 @@ const FilePlus03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VqOd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-question-01.tsx b/src/components/icons/file-question-01.tsx
index 30ea3fdab..9627aa540 100644
--- a/src/components/icons/file-question-01.tsx
+++ b/src/components/icons/file-question-01.tsx
@@ -11,6 +11,7 @@ const FileQuestion01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xp8U"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-question-02.tsx b/src/components/icons/file-question-02.tsx
index e57f17948..84ec8fbed 100644
--- a/src/components/icons/file-question-02.tsx
+++ b/src/components/icons/file-question-02.tsx
@@ -11,6 +11,7 @@ const FileQuestion02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qmUj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-question-03.tsx b/src/components/icons/file-question-03.tsx
index 84a9adaab..213d7407f 100644
--- a/src/components/icons/file-question-03.tsx
+++ b/src/components/icons/file-question-03.tsx
@@ -11,6 +11,7 @@ const FileQuestion03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="y37O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-search-01.tsx b/src/components/icons/file-search-01.tsx
index fbe8293b9..0649196df 100644
--- a/src/components/icons/file-search-01.tsx
+++ b/src/components/icons/file-search-01.tsx
@@ -11,6 +11,7 @@ const FileSearch01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YoCo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-search-02.tsx b/src/components/icons/file-search-02.tsx
index 862636d84..79f4043f1 100644
--- a/src/components/icons/file-search-02.tsx
+++ b/src/components/icons/file-search-02.tsx
@@ -11,6 +11,7 @@ const FileSearch02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jQMN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-search-03.tsx b/src/components/icons/file-search-03.tsx
index 6046d59cd..02a6391f2 100644
--- a/src/components/icons/file-search-03.tsx
+++ b/src/components/icons/file-search-03.tsx
@@ -11,6 +11,7 @@ const FileSearch03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6R52"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-shield-01.tsx b/src/components/icons/file-shield-01.tsx
index 6726772c7..2a620d134 100644
--- a/src/components/icons/file-shield-01.tsx
+++ b/src/components/icons/file-shield-01.tsx
@@ -11,6 +11,7 @@ const FileShield01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="U8a3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-shield-02.tsx b/src/components/icons/file-shield-02.tsx
index 266932e14..9e8bd8b98 100644
--- a/src/components/icons/file-shield-02.tsx
+++ b/src/components/icons/file-shield-02.tsx
@@ -11,6 +11,7 @@ const FileShield02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="G5cU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-shield-03.tsx b/src/components/icons/file-shield-03.tsx
index 1f0aeb48d..62d4e8925 100644
--- a/src/components/icons/file-shield-03.tsx
+++ b/src/components/icons/file-shield-03.tsx
@@ -11,6 +11,7 @@ const FileShield03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iSNC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-x-01.tsx b/src/components/icons/file-x-01.tsx
index 7edd38255..55e0dafbf 100644
--- a/src/components/icons/file-x-01.tsx
+++ b/src/components/icons/file-x-01.tsx
@@ -11,6 +11,7 @@ const FileX01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MFlM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-x-02.tsx b/src/components/icons/file-x-02.tsx
index 7fc9929a6..77f64fe49 100644
--- a/src/components/icons/file-x-02.tsx
+++ b/src/components/icons/file-x-02.tsx
@@ -11,6 +11,7 @@ const FileX02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Tn_O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/file-x-03.tsx b/src/components/icons/file-x-03.tsx
index 093d5fc19..d6808e83e 100644
--- a/src/components/icons/file-x-03.tsx
+++ b/src/components/icons/file-x-03.tsx
@@ -11,6 +11,7 @@ const FileX03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uSEB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/film-01.tsx b/src/components/icons/film-01.tsx
index 010e67c95..4df949066 100644
--- a/src/components/icons/film-01.tsx
+++ b/src/components/icons/film-01.tsx
@@ -11,6 +11,7 @@ const Film01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vNJV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/film-02.tsx b/src/components/icons/film-02.tsx
index 3594b5a97..07681eb45 100644
--- a/src/components/icons/film-02.tsx
+++ b/src/components/icons/film-02.tsx
@@ -11,6 +11,7 @@ const Film02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mK7k"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/film-03.tsx b/src/components/icons/film-03.tsx
index 6b7dd5ff2..3d652f062 100644
--- a/src/components/icons/film-03.tsx
+++ b/src/components/icons/film-03.tsx
@@ -11,6 +11,7 @@ const Film03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YQKM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/filter-funnel-01.tsx b/src/components/icons/filter-funnel-01.tsx
index 68137a162..cf966c8ac 100644
--- a/src/components/icons/filter-funnel-01.tsx
+++ b/src/components/icons/filter-funnel-01.tsx
@@ -11,6 +11,7 @@ const FilterFunnel01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eYtW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/filter-funnel-02.tsx b/src/components/icons/filter-funnel-02.tsx
index a114db39c..cce20fa6e 100644
--- a/src/components/icons/filter-funnel-02.tsx
+++ b/src/components/icons/filter-funnel-02.tsx
@@ -11,6 +11,7 @@ const FilterFunnel02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Qtnd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/filter-lines.tsx b/src/components/icons/filter-lines.tsx
index efbbeb3a2..f6d61af08 100644
--- a/src/components/icons/filter-lines.tsx
+++ b/src/components/icons/filter-lines.tsx
@@ -11,6 +11,7 @@ const FilterLines = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PGBd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/fingerprint-01.tsx b/src/components/icons/fingerprint-01.tsx
index 908634b1d..5e551ffce 100644
--- a/src/components/icons/fingerprint-01.tsx
+++ b/src/components/icons/fingerprint-01.tsx
@@ -11,6 +11,7 @@ const Fingerprint01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bX2X"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/fingerprint-02.tsx b/src/components/icons/fingerprint-02.tsx
index 256a7edc4..93a42b70d 100644
--- a/src/components/icons/fingerprint-02.tsx
+++ b/src/components/icons/fingerprint-02.tsx
@@ -11,6 +11,7 @@ const Fingerprint02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="do9l"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/fingerprint-03.tsx b/src/components/icons/fingerprint-03.tsx
index bf1dd82cd..d101d2015 100644
--- a/src/components/icons/fingerprint-03.tsx
+++ b/src/components/icons/fingerprint-03.tsx
@@ -11,6 +11,7 @@ const Fingerprint03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UyhF"
>,
,
,
,
,
,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/fingerprint-04.tsx b/src/components/icons/fingerprint-04.tsx
index ddc1b6385..7aa125478 100644
--- a/src/components/icons/fingerprint-04.tsx
+++ b/src/components/icons/fingerprint-04.tsx
@@ -11,6 +11,7 @@ const Fingerprint04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Lmc_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flag-01.tsx b/src/components/icons/flag-01.tsx
index 92c1a81bf..556cac7b1 100644
--- a/src/components/icons/flag-01.tsx
+++ b/src/components/icons/flag-01.tsx
@@ -11,6 +11,7 @@ const Flag01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ziES"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flag-02.tsx b/src/components/icons/flag-02.tsx
index c1c721536..0425836e5 100644
--- a/src/components/icons/flag-02.tsx
+++ b/src/components/icons/flag-02.tsx
@@ -11,6 +11,7 @@ const Flag02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7c3i"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flag-03.tsx b/src/components/icons/flag-03.tsx
index 1e1d24b62..b97b90bef 100644
--- a/src/components/icons/flag-03.tsx
+++ b/src/components/icons/flag-03.tsx
@@ -11,6 +11,7 @@ const Flag03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="23Jp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flag-04.tsx b/src/components/icons/flag-04.tsx
index 247c84d5f..6cbb8f6a4 100644
--- a/src/components/icons/flag-04.tsx
+++ b/src/components/icons/flag-04.tsx
@@ -11,6 +11,7 @@ const Flag04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CALs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flag-05.tsx b/src/components/icons/flag-05.tsx
index d77d2f6d2..9f54f9417 100644
--- a/src/components/icons/flag-05.tsx
+++ b/src/components/icons/flag-05.tsx
@@ -11,6 +11,7 @@ const Flag05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="peLB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flag-06.tsx b/src/components/icons/flag-06.tsx
index 3e9227305..494863432 100644
--- a/src/components/icons/flag-06.tsx
+++ b/src/components/icons/flag-06.tsx
@@ -11,6 +11,7 @@ const Flag06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="16Z1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flash-off.tsx b/src/components/icons/flash-off.tsx
index b0268abee..f4adaff65 100644
--- a/src/components/icons/flash-off.tsx
+++ b/src/components/icons/flash-off.tsx
@@ -11,6 +11,7 @@ const FlashOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FHl_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flash.tsx b/src/components/icons/flash.tsx
index cc4755162..d363d6070 100644
--- a/src/components/icons/flash.tsx
+++ b/src/components/icons/flash.tsx
@@ -11,6 +11,7 @@ const Flash = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Znkp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flex-align-bottom.tsx b/src/components/icons/flex-align-bottom.tsx
index c08d4e843..b12a7cc0b 100644
--- a/src/components/icons/flex-align-bottom.tsx
+++ b/src/components/icons/flex-align-bottom.tsx
@@ -11,6 +11,7 @@ const FlexAlignBottom = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ePy_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flex-align-left.tsx b/src/components/icons/flex-align-left.tsx
index 83c514c0c..8228f5e0a 100644
--- a/src/components/icons/flex-align-left.tsx
+++ b/src/components/icons/flex-align-left.tsx
@@ -11,6 +11,7 @@ const FlexAlignLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gMnt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flex-align-right.tsx b/src/components/icons/flex-align-right.tsx
index 6b6066512..aefd302a5 100644
--- a/src/components/icons/flex-align-right.tsx
+++ b/src/components/icons/flex-align-right.tsx
@@ -11,6 +11,7 @@ const FlexAlignRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="B1ef"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flex-align-top.tsx b/src/components/icons/flex-align-top.tsx
index 1f18b1958..3bef4f53a 100644
--- a/src/components/icons/flex-align-top.tsx
+++ b/src/components/icons/flex-align-top.tsx
@@ -11,6 +11,7 @@ const FlexAlignTop = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zi6E"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flip-backward.tsx b/src/components/icons/flip-backward.tsx
index a06fc193e..50def751a 100644
--- a/src/components/icons/flip-backward.tsx
+++ b/src/components/icons/flip-backward.tsx
@@ -11,6 +11,7 @@ const FlipBackward = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iiDF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/flip-forward.tsx b/src/components/icons/flip-forward.tsx
index c18d186e7..bb0f6c8a3 100644
--- a/src/components/icons/flip-forward.tsx
+++ b/src/components/icons/flip-forward.tsx
@@ -11,6 +11,7 @@ const FlipForward = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KiLp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-check.tsx b/src/components/icons/folder-check.tsx
index 9efb0b7fe..d183eb1ac 100644
--- a/src/components/icons/folder-check.tsx
+++ b/src/components/icons/folder-check.tsx
@@ -11,6 +11,7 @@ const FolderCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="x4UL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-closed.tsx b/src/components/icons/folder-closed.tsx
index d6dc286cc..e856e8f4e 100644
--- a/src/components/icons/folder-closed.tsx
+++ b/src/components/icons/folder-closed.tsx
@@ -11,6 +11,7 @@ const FolderClosed = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rFAD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-code.tsx b/src/components/icons/folder-code.tsx
index 0cfe71f6f..7b4df9263 100644
--- a/src/components/icons/folder-code.tsx
+++ b/src/components/icons/folder-code.tsx
@@ -11,6 +11,7 @@ const FolderCode = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="M2od"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-download.tsx b/src/components/icons/folder-download.tsx
index e6d0d943b..c4203f07d 100644
--- a/src/components/icons/folder-download.tsx
+++ b/src/components/icons/folder-download.tsx
@@ -11,6 +11,7 @@ const FolderDownload = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0KSm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-lock.tsx b/src/components/icons/folder-lock.tsx
index 250726834..29e214d17 100644
--- a/src/components/icons/folder-lock.tsx
+++ b/src/components/icons/folder-lock.tsx
@@ -11,6 +11,7 @@ const FolderLock = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zuT_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-minus.tsx b/src/components/icons/folder-minus.tsx
index 83fce419c..cf1f4420f 100644
--- a/src/components/icons/folder-minus.tsx
+++ b/src/components/icons/folder-minus.tsx
@@ -11,6 +11,7 @@ const FolderMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XPpK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-plus.tsx b/src/components/icons/folder-plus.tsx
index 012a0f15d..055925b1f 100644
--- a/src/components/icons/folder-plus.tsx
+++ b/src/components/icons/folder-plus.tsx
@@ -11,6 +11,7 @@ const FolderPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="D51g"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-question.tsx b/src/components/icons/folder-question.tsx
index 218d5eca4..b2122407d 100644
--- a/src/components/icons/folder-question.tsx
+++ b/src/components/icons/folder-question.tsx
@@ -11,6 +11,7 @@ const FolderQuestion = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="sTXz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-search.tsx b/src/components/icons/folder-search.tsx
index faa53842a..62d883288 100644
--- a/src/components/icons/folder-search.tsx
+++ b/src/components/icons/folder-search.tsx
@@ -11,6 +11,7 @@ const FolderSearch = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="S66z"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-shield.tsx b/src/components/icons/folder-shield.tsx
index de30a0782..70a8a61a1 100644
--- a/src/components/icons/folder-shield.tsx
+++ b/src/components/icons/folder-shield.tsx
@@ -11,6 +11,7 @@ const FolderShield = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gPG3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder-x.tsx b/src/components/icons/folder-x.tsx
index 1a11504f5..ceffa8149 100644
--- a/src/components/icons/folder-x.tsx
+++ b/src/components/icons/folder-x.tsx
@@ -11,6 +11,7 @@ const FolderX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jPoe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/folder.tsx b/src/components/icons/folder.tsx
index 38be3ee04..d35dd2677 100644
--- a/src/components/icons/folder.tsx
+++ b/src/components/icons/folder.tsx
@@ -11,6 +11,7 @@ const Folder = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="a4LV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/framer.tsx b/src/components/icons/framer.tsx
index 876b04a30..8a1f35e11 100644
--- a/src/components/icons/framer.tsx
+++ b/src/components/icons/framer.tsx
@@ -11,6 +11,7 @@ const Framer = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QLrk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/gaming-pad-01.tsx b/src/components/icons/gaming-pad-01.tsx
index f7876370d..4c6aeb8cd 100644
--- a/src/components/icons/gaming-pad-01.tsx
+++ b/src/components/icons/gaming-pad-01.tsx
@@ -11,6 +11,7 @@ const GamingPad01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MD_r"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/gaming-pad-02.tsx b/src/components/icons/gaming-pad-02.tsx
index 18500aac5..3067c5394 100644
--- a/src/components/icons/gaming-pad-02.tsx
+++ b/src/components/icons/gaming-pad-02.tsx
@@ -11,6 +11,7 @@ const GamingPad02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Q-YP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/gift-01.tsx b/src/components/icons/gift-01.tsx
index 7b4b88952..38532be7d 100644
--- a/src/components/icons/gift-01.tsx
+++ b/src/components/icons/gift-01.tsx
@@ -11,6 +11,7 @@ const Gift01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VzlO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/gift-02.tsx b/src/components/icons/gift-02.tsx
index e1a3d2f59..33dec4d0a 100644
--- a/src/components/icons/gift-02.tsx
+++ b/src/components/icons/gift-02.tsx
@@ -11,6 +11,7 @@ const Gift02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Vq6r"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/git-branch-01.tsx b/src/components/icons/git-branch-01.tsx
index b6357f968..e62ca4a00 100644
--- a/src/components/icons/git-branch-01.tsx
+++ b/src/components/icons/git-branch-01.tsx
@@ -11,6 +11,7 @@ const GitBranch01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="h3k7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/git-branch-02.tsx b/src/components/icons/git-branch-02.tsx
index 1e79746bb..41d5b4706 100644
--- a/src/components/icons/git-branch-02.tsx
+++ b/src/components/icons/git-branch-02.tsx
@@ -11,6 +11,7 @@ const GitBranch02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QtPY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/git-commit.tsx b/src/components/icons/git-commit.tsx
index 3b6992760..8f14bffa2 100644
--- a/src/components/icons/git-commit.tsx
+++ b/src/components/icons/git-commit.tsx
@@ -11,6 +11,7 @@ const GitCommit = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kJ5H"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/git-merge.tsx b/src/components/icons/git-merge.tsx
index d340a506a..6553aba07 100644
--- a/src/components/icons/git-merge.tsx
+++ b/src/components/icons/git-merge.tsx
@@ -11,6 +11,7 @@ const GitMerge = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Dl1R"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/git-pull-request.tsx b/src/components/icons/git-pull-request.tsx
index a01e9323c..92143db6f 100644
--- a/src/components/icons/git-pull-request.tsx
+++ b/src/components/icons/git-pull-request.tsx
@@ -11,6 +11,7 @@ const GitPullRequest = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="m87O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/glasses-01.tsx b/src/components/icons/glasses-01.tsx
index 7f7ecca10..090dcce1f 100644
--- a/src/components/icons/glasses-01.tsx
+++ b/src/components/icons/glasses-01.tsx
@@ -11,6 +11,7 @@ const Glasses01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-HKb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/glasses-02.tsx b/src/components/icons/glasses-02.tsx
index 734578d50..cd4efc165 100644
--- a/src/components/icons/glasses-02.tsx
+++ b/src/components/icons/glasses-02.tsx
@@ -11,6 +11,7 @@ const Glasses02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-Ckb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-01.tsx b/src/components/icons/globe-01.tsx
index 95ca09840..da5d9a08e 100644
--- a/src/components/icons/globe-01.tsx
+++ b/src/components/icons/globe-01.tsx
@@ -11,6 +11,7 @@ const Globe01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tSPW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-02.tsx b/src/components/icons/globe-02.tsx
index 5a64f63f3..94f0e25c9 100644
--- a/src/components/icons/globe-02.tsx
+++ b/src/components/icons/globe-02.tsx
@@ -11,6 +11,7 @@ const Globe02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-pBK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-03.tsx b/src/components/icons/globe-03.tsx
index 005a67c5a..4112da618 100644
--- a/src/components/icons/globe-03.tsx
+++ b/src/components/icons/globe-03.tsx
@@ -11,6 +11,7 @@ const Globe03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dUaP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-04.tsx b/src/components/icons/globe-04.tsx
index 4b847e64b..d5117d795 100644
--- a/src/components/icons/globe-04.tsx
+++ b/src/components/icons/globe-04.tsx
@@ -11,6 +11,7 @@ const Globe04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gMdB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-05.tsx b/src/components/icons/globe-05.tsx
index 6b9c635b3..b66d45549 100644
--- a/src/components/icons/globe-05.tsx
+++ b/src/components/icons/globe-05.tsx
@@ -11,6 +11,7 @@ const Globe05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bvdk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-06.tsx b/src/components/icons/globe-06.tsx
index 3089c9523..0bbc05bb7 100644
--- a/src/components/icons/globe-06.tsx
+++ b/src/components/icons/globe-06.tsx
@@ -11,6 +11,7 @@ const Globe06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Er5Z"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-slated-01.tsx b/src/components/icons/globe-slated-01.tsx
index 3e11dca65..151407c3f 100644
--- a/src/components/icons/globe-slated-01.tsx
+++ b/src/components/icons/globe-slated-01.tsx
@@ -11,6 +11,7 @@ const GlobeSlated01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BA6_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/globe-slated-02.tsx b/src/components/icons/globe-slated-02.tsx
index a7eea0922..0ef74a68a 100644
--- a/src/components/icons/globe-slated-02.tsx
+++ b/src/components/icons/globe-slated-02.tsx
@@ -11,6 +11,7 @@ const GlobeSlated02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1UWN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/google-chrome.tsx b/src/components/icons/google-chrome.tsx
index ef8198784..9bd1d24fc 100644
--- a/src/components/icons/google-chrome.tsx
+++ b/src/components/icons/google-chrome.tsx
@@ -11,6 +11,7 @@ const GoogleChrome = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3nws"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/graduation-hat-01.tsx b/src/components/icons/graduation-hat-01.tsx
index 833195b21..5ae4b4ab4 100644
--- a/src/components/icons/graduation-hat-01.tsx
+++ b/src/components/icons/graduation-hat-01.tsx
@@ -11,6 +11,7 @@ const GraduationHat01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SuNz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/graduation-hat-02.tsx b/src/components/icons/graduation-hat-02.tsx
index aed4dd064..018581d7c 100644
--- a/src/components/icons/graduation-hat-02.tsx
+++ b/src/components/icons/graduation-hat-02.tsx
@@ -11,6 +11,7 @@ const GraduationHat02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ky6h"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-01.tsx b/src/components/icons/grid-01.tsx
index 556c456d0..95855f02e 100644
--- a/src/components/icons/grid-01.tsx
+++ b/src/components/icons/grid-01.tsx
@@ -11,6 +11,7 @@ const Grid01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TBqJ"
>,
,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-02.tsx b/src/components/icons/grid-02.tsx
index 1722cac86..353d6ab53 100644
--- a/src/components/icons/grid-02.tsx
+++ b/src/components/icons/grid-02.tsx
@@ -11,6 +11,7 @@ const Grid02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fBwu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-03.tsx b/src/components/icons/grid-03.tsx
index 099ca9108..8930138f5 100644
--- a/src/components/icons/grid-03.tsx
+++ b/src/components/icons/grid-03.tsx
@@ -11,6 +11,7 @@ const Grid03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dkBO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-blank.tsx b/src/components/icons/grid-dots-blank.tsx
index 8b08cb367..68c7f1b3a 100644
--- a/src/components/icons/grid-dots-blank.tsx
+++ b/src/components/icons/grid-dots-blank.tsx
@@ -11,6 +11,7 @@ const GridDotsBlank = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ufwT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-bottom.tsx b/src/components/icons/grid-dots-bottom.tsx
index 56ffe2043..60d966457 100644
--- a/src/components/icons/grid-dots-bottom.tsx
+++ b/src/components/icons/grid-dots-bottom.tsx
@@ -11,6 +11,7 @@ const GridDotsBottom = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6p6f"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-horizontal-center.tsx b/src/components/icons/grid-dots-horizontal-center.tsx
index 4d90b1c0f..71d534f61 100644
--- a/src/components/icons/grid-dots-horizontal-center.tsx
+++ b/src/components/icons/grid-dots-horizontal-center.tsx
@@ -11,6 +11,7 @@ const GridDotsHorizontalCenter = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="J5LO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-left.tsx b/src/components/icons/grid-dots-left.tsx
index 8db4f96f1..c4c940bcb 100644
--- a/src/components/icons/grid-dots-left.tsx
+++ b/src/components/icons/grid-dots-left.tsx
@@ -11,6 +11,7 @@ const GridDotsLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VVq-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-outer.tsx b/src/components/icons/grid-dots-outer.tsx
index cffa78e8c..2c6759c17 100644
--- a/src/components/icons/grid-dots-outer.tsx
+++ b/src/components/icons/grid-dots-outer.tsx
@@ -11,6 +11,7 @@ const GridDotsOuter = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2d-3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-right.tsx b/src/components/icons/grid-dots-right.tsx
index 93c7b0a4c..3ddd0851f 100644
--- a/src/components/icons/grid-dots-right.tsx
+++ b/src/components/icons/grid-dots-right.tsx
@@ -11,6 +11,7 @@ const GridDotsRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="J8DL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-top.tsx b/src/components/icons/grid-dots-top.tsx
index 76f517069..bf2cc9832 100644
--- a/src/components/icons/grid-dots-top.tsx
+++ b/src/components/icons/grid-dots-top.tsx
@@ -11,6 +11,7 @@ const GridDotsTop = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tdiM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/grid-dots-vertical-center.tsx b/src/components/icons/grid-dots-vertical-center.tsx
index d91bb553c..a2e59ee97 100644
--- a/src/components/icons/grid-dots-vertical-center.tsx
+++ b/src/components/icons/grid-dots-vertical-center.tsx
@@ -11,6 +11,7 @@ const GridDotsVerticalCenter = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="C5j-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hand.tsx b/src/components/icons/hand.tsx
index 33ba9c240..72f4d227f 100644
--- a/src/components/icons/hand.tsx
+++ b/src/components/icons/hand.tsx
@@ -11,6 +11,7 @@ const Hand = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iE66"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hard-drive.tsx b/src/components/icons/hard-drive.tsx
index d900ee0ed..3c57fa873 100644
--- a/src/components/icons/hard-drive.tsx
+++ b/src/components/icons/hard-drive.tsx
@@ -11,6 +11,7 @@ const HardDrive = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="C7xM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hash-01.tsx b/src/components/icons/hash-01.tsx
index e5c3d9895..a96636057 100644
--- a/src/components/icons/hash-01.tsx
+++ b/src/components/icons/hash-01.tsx
@@ -11,6 +11,7 @@ const Hash01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="AL1J"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hash-02.tsx b/src/components/icons/hash-02.tsx
index b6a307cea..c955c924b 100644
--- a/src/components/icons/hash-02.tsx
+++ b/src/components/icons/hash-02.tsx
@@ -11,6 +11,7 @@ const Hash02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5zMG"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heading-01.tsx b/src/components/icons/heading-01.tsx
index fef04cddd..dc13451e9 100644
--- a/src/components/icons/heading-01.tsx
+++ b/src/components/icons/heading-01.tsx
@@ -11,6 +11,7 @@ const Heading01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yS29"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heading-02.tsx b/src/components/icons/heading-02.tsx
index 4b668a8e1..ba538821e 100644
--- a/src/components/icons/heading-02.tsx
+++ b/src/components/icons/heading-02.tsx
@@ -11,6 +11,7 @@ const Heading02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gGKK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heading-square.tsx b/src/components/icons/heading-square.tsx
index c8fb15b80..eaeafb8b2 100644
--- a/src/components/icons/heading-square.tsx
+++ b/src/components/icons/heading-square.tsx
@@ -11,6 +11,7 @@ const HeadingSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8r3Q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/headphones-01.tsx b/src/components/icons/headphones-01.tsx
index 45123b14b..ee7e34ebd 100644
--- a/src/components/icons/headphones-01.tsx
+++ b/src/components/icons/headphones-01.tsx
@@ -11,6 +11,7 @@ const Headphones01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Y9B1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/headphones-02.tsx b/src/components/icons/headphones-02.tsx
index eec12d04d..cde23a319 100644
--- a/src/components/icons/headphones-02.tsx
+++ b/src/components/icons/headphones-02.tsx
@@ -11,6 +11,7 @@ const Headphones02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZHHt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heart-circle.tsx b/src/components/icons/heart-circle.tsx
index 222cb6d89..30ba39013 100644
--- a/src/components/icons/heart-circle.tsx
+++ b/src/components/icons/heart-circle.tsx
@@ -11,6 +11,7 @@ const HeartCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="p8zm"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heart-hand.tsx b/src/components/icons/heart-hand.tsx
index 9eadc2b38..990016701 100644
--- a/src/components/icons/heart-hand.tsx
+++ b/src/components/icons/heart-hand.tsx
@@ -11,6 +11,7 @@ const HeartHand = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Oady"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heart-hexagon.tsx b/src/components/icons/heart-hexagon.tsx
index 9c473a557..75b22b414 100644
--- a/src/components/icons/heart-hexagon.tsx
+++ b/src/components/icons/heart-hexagon.tsx
@@ -11,6 +11,7 @@ const HeartHexagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FefP"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heart-octagon.tsx b/src/components/icons/heart-octagon.tsx
index 67cba2fce..8b3158b87 100644
--- a/src/components/icons/heart-octagon.tsx
+++ b/src/components/icons/heart-octagon.tsx
@@ -11,6 +11,7 @@ const HeartOctagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xVkV"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heart-rounded.tsx b/src/components/icons/heart-rounded.tsx
index fcccb3482..8dd9c53f3 100644
--- a/src/components/icons/heart-rounded.tsx
+++ b/src/components/icons/heart-rounded.tsx
@@ -11,6 +11,7 @@ const HeartRounded = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NoR9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heart-square.tsx b/src/components/icons/heart-square.tsx
index 35dc2df2e..4d09ac226 100644
--- a/src/components/icons/heart-square.tsx
+++ b/src/components/icons/heart-square.tsx
@@ -11,6 +11,7 @@ const HeartSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3PTb"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/heart.tsx b/src/components/icons/heart.tsx
index 88886a008..5e6a70deb 100644
--- a/src/components/icons/heart.tsx
+++ b/src/components/icons/heart.tsx
@@ -13,6 +13,7 @@ const Heart = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iTr2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hearts.tsx b/src/components/icons/hearts.tsx
index 87ddef4d0..f5ed12086 100644
--- a/src/components/icons/hearts.tsx
+++ b/src/components/icons/hearts.tsx
@@ -11,6 +11,7 @@ const Hearts = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XYyW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/help-circle.tsx b/src/components/icons/help-circle.tsx
index 6497dc43b..7eb07ecd0 100644
--- a/src/components/icons/help-circle.tsx
+++ b/src/components/icons/help-circle.tsx
@@ -11,6 +11,7 @@ const HelpCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4HEi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/help-hexagon.tsx b/src/components/icons/help-hexagon.tsx
index 4752dede5..bc18bbd0e 100644
--- a/src/components/icons/help-hexagon.tsx
+++ b/src/components/icons/help-hexagon.tsx
@@ -11,6 +11,7 @@ const HelpHexagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FrbB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/help-octagon.tsx b/src/components/icons/help-octagon.tsx
index 84d550c09..f04d9b700 100644
--- a/src/components/icons/help-octagon.tsx
+++ b/src/components/icons/help-octagon.tsx
@@ -11,6 +11,7 @@ const HelpOctagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zp2D"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/help-square.tsx b/src/components/icons/help-square.tsx
index ceb9dc266..34c931ba9 100644
--- a/src/components/icons/help-square.tsx
+++ b/src/components/icons/help-square.tsx
@@ -11,6 +11,7 @@ const HelpSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qNy1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hexagon-01.tsx b/src/components/icons/hexagon-01.tsx
index 64d332f1e..6e82137b0 100644
--- a/src/components/icons/hexagon-01.tsx
+++ b/src/components/icons/hexagon-01.tsx
@@ -11,6 +11,7 @@ const Hexagon01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8XMR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hexagon-02.tsx b/src/components/icons/hexagon-02.tsx
index 182e7362c..69c03fa68 100644
--- a/src/components/icons/hexagon-02.tsx
+++ b/src/components/icons/hexagon-02.tsx
@@ -11,6 +11,7 @@ const Hexagon02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uZqc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/home-01.tsx b/src/components/icons/home-01.tsx
index 0238da666..4209c99b2 100644
--- a/src/components/icons/home-01.tsx
+++ b/src/components/icons/home-01.tsx
@@ -11,6 +11,7 @@ const Home01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CFjp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/home-02.tsx b/src/components/icons/home-02.tsx
index 8283b085b..c01e91145 100644
--- a/src/components/icons/home-02.tsx
+++ b/src/components/icons/home-02.tsx
@@ -11,6 +11,7 @@ const Home02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Tz4s"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/home-03.tsx b/src/components/icons/home-03.tsx
index a8734eb68..ec930effa 100644
--- a/src/components/icons/home-03.tsx
+++ b/src/components/icons/home-03.tsx
@@ -11,6 +11,7 @@ const Home03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Zeab"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/home-04.tsx b/src/components/icons/home-04.tsx
index 929c3945c..6fe170fc0 100644
--- a/src/components/icons/home-04.tsx
+++ b/src/components/icons/home-04.tsx
@@ -11,6 +11,7 @@ const Home04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_-QL"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/home-05.tsx b/src/components/icons/home-05.tsx
index a4c4ebe25..bd84acf4f 100644
--- a/src/components/icons/home-05.tsx
+++ b/src/components/icons/home-05.tsx
@@ -11,6 +11,7 @@ const Home05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ABgy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/home-line.tsx b/src/components/icons/home-line.tsx
index b73cb04fb..599ea6d84 100644
--- a/src/components/icons/home-line.tsx
+++ b/src/components/icons/home-line.tsx
@@ -11,6 +11,7 @@ const HomeLine = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ooj3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/home-smile.tsx b/src/components/icons/home-smile.tsx
index 320381c65..f6f1f70e7 100644
--- a/src/components/icons/home-smile.tsx
+++ b/src/components/icons/home-smile.tsx
@@ -11,6 +11,7 @@ const HomeSmile = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="33TU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/horizontal-bar-chart-01.tsx b/src/components/icons/horizontal-bar-chart-01.tsx
index 0cdd2e5e0..559841b86 100644
--- a/src/components/icons/horizontal-bar-chart-01.tsx
+++ b/src/components/icons/horizontal-bar-chart-01.tsx
@@ -11,6 +11,7 @@ const HorizontalBarChart01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pJ7b"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/horizontal-bar-chart-02.tsx b/src/components/icons/horizontal-bar-chart-02.tsx
index 7f0e688bb..b4533ebf2 100644
--- a/src/components/icons/horizontal-bar-chart-02.tsx
+++ b/src/components/icons/horizontal-bar-chart-02.tsx
@@ -11,6 +11,7 @@ const HorizontalBarChart02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YW8J"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/horizontal-bar-chart-03.tsx b/src/components/icons/horizontal-bar-chart-03.tsx
index 8883521fa..eefe8fe35 100644
--- a/src/components/icons/horizontal-bar-chart-03.tsx
+++ b/src/components/icons/horizontal-bar-chart-03.tsx
@@ -11,6 +11,7 @@ const HorizontalBarChart03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wDKr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hourglass-01.tsx b/src/components/icons/hourglass-01.tsx
index a799a844a..b37ff57f3 100644
--- a/src/components/icons/hourglass-01.tsx
+++ b/src/components/icons/hourglass-01.tsx
@@ -11,6 +11,7 @@ const Hourglass01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="q8o4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hourglass-02.tsx b/src/components/icons/hourglass-02.tsx
index d54ef1bbe..15fe19124 100644
--- a/src/components/icons/hourglass-02.tsx
+++ b/src/components/icons/hourglass-02.tsx
@@ -11,6 +11,7 @@ const Hourglass02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9yyK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hourglass-03.tsx b/src/components/icons/hourglass-03.tsx
index 25e2f7b2e..7b18d4b90 100644
--- a/src/components/icons/hourglass-03.tsx
+++ b/src/components/icons/hourglass-03.tsx
@@ -11,6 +11,7 @@ const Hourglass03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kf1y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hurricane-01.tsx b/src/components/icons/hurricane-01.tsx
index 91da0d933..44ff0b1f1 100644
--- a/src/components/icons/hurricane-01.tsx
+++ b/src/components/icons/hurricane-01.tsx
@@ -11,6 +11,7 @@ const Hurricane01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kiKk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hurricane-02.tsx b/src/components/icons/hurricane-02.tsx
index 16e8ad880..545c5573c 100644
--- a/src/components/icons/hurricane-02.tsx
+++ b/src/components/icons/hurricane-02.tsx
@@ -11,6 +11,7 @@ const Hurricane02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="D2Hy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/hurricane-03.tsx b/src/components/icons/hurricane-03.tsx
index 2c3dc070e..a00ab3f77 100644
--- a/src/components/icons/hurricane-03.tsx
+++ b/src/components/icons/hurricane-03.tsx
@@ -11,6 +11,7 @@ const Hurricane03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mzl0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-01.tsx b/src/components/icons/image-01.tsx
index 565f501a1..62ccf1be9 100644
--- a/src/components/icons/image-01.tsx
+++ b/src/components/icons/image-01.tsx
@@ -11,6 +11,7 @@ const Image01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="toXM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-02.tsx b/src/components/icons/image-02.tsx
index 606ce634d..8a2412bec 100644
--- a/src/components/icons/image-02.tsx
+++ b/src/components/icons/image-02.tsx
@@ -11,6 +11,7 @@ const Image02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1LOl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-03.tsx b/src/components/icons/image-03.tsx
index 7d911607d..66bdcd13e 100644
--- a/src/components/icons/image-03.tsx
+++ b/src/components/icons/image-03.tsx
@@ -11,6 +11,7 @@ const Image03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MnFZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-04.tsx b/src/components/icons/image-04.tsx
index 23a7e7337..879c11415 100644
--- a/src/components/icons/image-04.tsx
+++ b/src/components/icons/image-04.tsx
@@ -11,6 +11,7 @@ const Image04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gRJ-"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-05.tsx b/src/components/icons/image-05.tsx
index e472d601d..9321a8440 100644
--- a/src/components/icons/image-05.tsx
+++ b/src/components/icons/image-05.tsx
@@ -11,6 +11,7 @@ const Image05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dNqv"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-check.tsx b/src/components/icons/image-check.tsx
index 2101ce2e3..cd212055a 100644
--- a/src/components/icons/image-check.tsx
+++ b/src/components/icons/image-check.tsx
@@ -11,6 +11,7 @@ const ImageCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0w7N"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-down.tsx b/src/components/icons/image-down.tsx
index d6dfa9bb1..f7d2b0b4b 100644
--- a/src/components/icons/image-down.tsx
+++ b/src/components/icons/image-down.tsx
@@ -11,6 +11,7 @@ const ImageDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Bv9i"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-indent-left.tsx b/src/components/icons/image-indent-left.tsx
index fb5ca2c46..31a8e252d 100644
--- a/src/components/icons/image-indent-left.tsx
+++ b/src/components/icons/image-indent-left.tsx
@@ -11,6 +11,7 @@ const ImageIndentLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Pp_H"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-indent-right.tsx b/src/components/icons/image-indent-right.tsx
index 4cfcd805d..eb55bc9af 100644
--- a/src/components/icons/image-indent-right.tsx
+++ b/src/components/icons/image-indent-right.tsx
@@ -11,6 +11,7 @@ const ImageIndentRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QxIM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-left.tsx b/src/components/icons/image-left.tsx
index d8a0e0193..8f1a3b17a 100644
--- a/src/components/icons/image-left.tsx
+++ b/src/components/icons/image-left.tsx
@@ -11,6 +11,7 @@ const ImageLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="u1bJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-plus.tsx b/src/components/icons/image-plus.tsx
index da8e66765..77ec03e1b 100644
--- a/src/components/icons/image-plus.tsx
+++ b/src/components/icons/image-plus.tsx
@@ -11,6 +11,7 @@ const ImagePlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9Xyx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-right.tsx b/src/components/icons/image-right.tsx
index 490abc471..1b3dedbc3 100644
--- a/src/components/icons/image-right.tsx
+++ b/src/components/icons/image-right.tsx
@@ -11,6 +11,7 @@ const ImageRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="oIpA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-up.tsx b/src/components/icons/image-up.tsx
index ab0ec2b31..29dc7c3ac 100644
--- a/src/components/icons/image-up.tsx
+++ b/src/components/icons/image-up.tsx
@@ -11,6 +11,7 @@ const ImageUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LoJV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user-check.tsx b/src/components/icons/image-user-check.tsx
index 6bf312373..d04141d4d 100644
--- a/src/components/icons/image-user-check.tsx
+++ b/src/components/icons/image-user-check.tsx
@@ -11,6 +11,7 @@ const ImageUserCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="unfx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user-down.tsx b/src/components/icons/image-user-down.tsx
index 2b91908ca..a91ecd806 100644
--- a/src/components/icons/image-user-down.tsx
+++ b/src/components/icons/image-user-down.tsx
@@ -11,6 +11,7 @@ const ImageUserDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XYLq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user-left.tsx b/src/components/icons/image-user-left.tsx
index 37b678ba4..b32d52d5c 100644
--- a/src/components/icons/image-user-left.tsx
+++ b/src/components/icons/image-user-left.tsx
@@ -11,6 +11,7 @@ const ImageUserLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wps_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user-plus.tsx b/src/components/icons/image-user-plus.tsx
index fb22cc87b..d47a173e7 100644
--- a/src/components/icons/image-user-plus.tsx
+++ b/src/components/icons/image-user-plus.tsx
@@ -11,6 +11,7 @@ const ImageUserPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="THcA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user-right.tsx b/src/components/icons/image-user-right.tsx
index 9f3939a9d..4ca566302 100644
--- a/src/components/icons/image-user-right.tsx
+++ b/src/components/icons/image-user-right.tsx
@@ -11,6 +11,7 @@ const ImageUserRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PiW3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user-up.tsx b/src/components/icons/image-user-up.tsx
index 3f0211def..cdc0660e3 100644
--- a/src/components/icons/image-user-up.tsx
+++ b/src/components/icons/image-user-up.tsx
@@ -11,6 +11,7 @@ const ImageUserUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3be3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user-x.tsx b/src/components/icons/image-user-x.tsx
index a8d2058ef..3be862bbd 100644
--- a/src/components/icons/image-user-x.tsx
+++ b/src/components/icons/image-user-x.tsx
@@ -11,6 +11,7 @@ const ImageUserX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zIzj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-user.tsx b/src/components/icons/image-user.tsx
index 75f3444c4..7a710615a 100644
--- a/src/components/icons/image-user.tsx
+++ b/src/components/icons/image-user.tsx
@@ -11,6 +11,7 @@ const ImageUser = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="waxL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/image-x.tsx b/src/components/icons/image-x.tsx
index 6ddcac720..c33c7302a 100644
--- a/src/components/icons/image-x.tsx
+++ b/src/components/icons/image-x.tsx
@@ -11,6 +11,7 @@ const ImageX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lCgq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/inbox-01.tsx b/src/components/icons/inbox-01.tsx
index 0f600d054..6c0643995 100644
--- a/src/components/icons/inbox-01.tsx
+++ b/src/components/icons/inbox-01.tsx
@@ -11,6 +11,7 @@ const Inbox01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7Bro"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/inbox-02.tsx b/src/components/icons/inbox-02.tsx
index 3850342c1..58f6aa45f 100644
--- a/src/components/icons/inbox-02.tsx
+++ b/src/components/icons/inbox-02.tsx
@@ -11,6 +11,7 @@ const Inbox02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dSU2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/infinity.tsx b/src/components/icons/infinity.tsx
index fc32df66b..6d9befa99 100644
--- a/src/components/icons/infinity.tsx
+++ b/src/components/icons/infinity.tsx
@@ -11,6 +11,7 @@ const Infinity = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vmrl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/info-circle.tsx b/src/components/icons/info-circle.tsx
index 019f2b79c..c1f4c6c52 100644
--- a/src/components/icons/info-circle.tsx
+++ b/src/components/icons/info-circle.tsx
@@ -11,6 +11,7 @@ const InfoCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7m3D"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/info-hexagon.tsx b/src/components/icons/info-hexagon.tsx
index 2a0eed803..376b74e9a 100644
--- a/src/components/icons/info-hexagon.tsx
+++ b/src/components/icons/info-hexagon.tsx
@@ -11,6 +11,7 @@ const InfoHexagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-oGj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/info-octagon.tsx b/src/components/icons/info-octagon.tsx
index f556bc41b..8aae9931a 100644
--- a/src/components/icons/info-octagon.tsx
+++ b/src/components/icons/info-octagon.tsx
@@ -11,6 +11,7 @@ const InfoOctagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="u1CW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/info-square.tsx b/src/components/icons/info-square.tsx
index d4c2c6cd1..e88beaf69 100644
--- a/src/components/icons/info-square.tsx
+++ b/src/components/icons/info-square.tsx
@@ -11,6 +11,7 @@ const InfoSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JCXj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/intersect-circle.tsx b/src/components/icons/intersect-circle.tsx
index 5536585d0..ce7a0f66a 100644
--- a/src/components/icons/intersect-circle.tsx
+++ b/src/components/icons/intersect-circle.tsx
@@ -11,6 +11,7 @@ const IntersectCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wyrz"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/intersect-square.tsx b/src/components/icons/intersect-square.tsx
index 3230935f9..5447e11d0 100644
--- a/src/components/icons/intersect-square.tsx
+++ b/src/components/icons/intersect-square.tsx
@@ -11,6 +11,7 @@ const IntersectSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kDIN"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/italic-01.tsx b/src/components/icons/italic-01.tsx
index 26ea057ac..7760c464c 100644
--- a/src/components/icons/italic-01.tsx
+++ b/src/components/icons/italic-01.tsx
@@ -11,6 +11,7 @@ const Italic01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NS_Q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/italic-02.tsx b/src/components/icons/italic-02.tsx
index 8932af4aa..582e71314 100644
--- a/src/components/icons/italic-02.tsx
+++ b/src/components/icons/italic-02.tsx
@@ -11,6 +11,7 @@ const Italic02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VqeA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/italic-square.tsx b/src/components/icons/italic-square.tsx
index 3b099df51..b2a9a99cd 100644
--- a/src/components/icons/italic-square.tsx
+++ b/src/components/icons/italic-square.tsx
@@ -11,6 +11,7 @@ const ItalicSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Uzls"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/key-01.tsx b/src/components/icons/key-01.tsx
index 9b6ced508..96f25b683 100644
--- a/src/components/icons/key-01.tsx
+++ b/src/components/icons/key-01.tsx
@@ -11,6 +11,7 @@ const Key01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9geR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/key-02.tsx b/src/components/icons/key-02.tsx
index e2ce65ba5..40f503f77 100644
--- a/src/components/icons/key-02.tsx
+++ b/src/components/icons/key-02.tsx
@@ -11,6 +11,7 @@ const Key02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="o-kn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/keyboard-01.tsx b/src/components/icons/keyboard-01.tsx
index c22f9e7c2..a20e526c2 100644
--- a/src/components/icons/keyboard-01.tsx
+++ b/src/components/icons/keyboard-01.tsx
@@ -11,6 +11,7 @@ const Keyboard01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="srWf"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/keyboard-02.tsx b/src/components/icons/keyboard-02.tsx
index d4c9c6c45..219836694 100644
--- a/src/components/icons/keyboard-02.tsx
+++ b/src/components/icons/keyboard-02.tsx
@@ -11,6 +11,7 @@ const Keyboard02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_DJd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/laptop-01.tsx b/src/components/icons/laptop-01.tsx
index 30d102e8a..e69bbcea0 100644
--- a/src/components/icons/laptop-01.tsx
+++ b/src/components/icons/laptop-01.tsx
@@ -11,6 +11,7 @@ const Laptop01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JHJw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/laptop-02.tsx b/src/components/icons/laptop-02.tsx
index f6ad88ba1..b7b7b32f6 100644
--- a/src/components/icons/laptop-02.tsx
+++ b/src/components/icons/laptop-02.tsx
@@ -11,6 +11,7 @@ const Laptop02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TSHT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layer-single.tsx b/src/components/icons/layer-single.tsx
index 57358b93a..a97677479 100644
--- a/src/components/icons/layer-single.tsx
+++ b/src/components/icons/layer-single.tsx
@@ -11,6 +11,7 @@ const LayerSingle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Fpg8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layers-three-01.tsx b/src/components/icons/layers-three-01.tsx
index 3e0bc254f..3797b2101 100644
--- a/src/components/icons/layers-three-01.tsx
+++ b/src/components/icons/layers-three-01.tsx
@@ -11,6 +11,7 @@ const LayersThree01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0gM6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layers-three-02.tsx b/src/components/icons/layers-three-02.tsx
index 1b51381bb..554abcdf3 100644
--- a/src/components/icons/layers-three-02.tsx
+++ b/src/components/icons/layers-three-02.tsx
@@ -11,6 +11,7 @@ const LayersThree02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WQpt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layers-two-01.tsx b/src/components/icons/layers-two-01.tsx
index cdb809331..ca4f86549 100644
--- a/src/components/icons/layers-two-01.tsx
+++ b/src/components/icons/layers-two-01.tsx
@@ -11,6 +11,7 @@ const LayersTwo01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8qQg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layers-two-02.tsx b/src/components/icons/layers-two-02.tsx
index 37116628f..1813a8f7f 100644
--- a/src/components/icons/layers-two-02.tsx
+++ b/src/components/icons/layers-two-02.tsx
@@ -11,6 +11,7 @@ const LayersTwo02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ApmK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-alt-01.tsx b/src/components/icons/layout-alt-01.tsx
index 2c6486331..548f047d8 100644
--- a/src/components/icons/layout-alt-01.tsx
+++ b/src/components/icons/layout-alt-01.tsx
@@ -11,6 +11,7 @@ const LayoutAlt01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DbPR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-alt-02.tsx b/src/components/icons/layout-alt-02.tsx
index cbb628a15..90bcfca5d 100644
--- a/src/components/icons/layout-alt-02.tsx
+++ b/src/components/icons/layout-alt-02.tsx
@@ -11,6 +11,7 @@ const LayoutAlt02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FwKQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-alt-03.tsx b/src/components/icons/layout-alt-03.tsx
index bce1c9c8a..9b9ecb8b0 100644
--- a/src/components/icons/layout-alt-03.tsx
+++ b/src/components/icons/layout-alt-03.tsx
@@ -11,6 +11,7 @@ const LayoutAlt03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="h_3g"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-alt-04.tsx b/src/components/icons/layout-alt-04.tsx
index 2ab31868a..e5fc09b65 100644
--- a/src/components/icons/layout-alt-04.tsx
+++ b/src/components/icons/layout-alt-04.tsx
@@ -11,6 +11,7 @@ const LayoutAlt04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SJSl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-bottom.tsx b/src/components/icons/layout-bottom.tsx
index a93ea3397..32ca3c3d2 100644
--- a/src/components/icons/layout-bottom.tsx
+++ b/src/components/icons/layout-bottom.tsx
@@ -11,6 +11,7 @@ const LayoutBottom = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZuDH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-grid-01.tsx b/src/components/icons/layout-grid-01.tsx
index 5b2152721..f91e03036 100644
--- a/src/components/icons/layout-grid-01.tsx
+++ b/src/components/icons/layout-grid-01.tsx
@@ -11,6 +11,7 @@ const LayoutGrid01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uk-q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-grid-02.tsx b/src/components/icons/layout-grid-02.tsx
index f0594e84e..476ff4c8d 100644
--- a/src/components/icons/layout-grid-02.tsx
+++ b/src/components/icons/layout-grid-02.tsx
@@ -11,6 +11,7 @@ const LayoutGrid02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bmcT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-left.tsx b/src/components/icons/layout-left.tsx
index 8c6148849..99fd36c83 100644
--- a/src/components/icons/layout-left.tsx
+++ b/src/components/icons/layout-left.tsx
@@ -11,6 +11,7 @@ const LayoutLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="nz2-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-right.tsx b/src/components/icons/layout-right.tsx
index be8d099a2..7f1e86682 100644
--- a/src/components/icons/layout-right.tsx
+++ b/src/components/icons/layout-right.tsx
@@ -11,6 +11,7 @@ const LayoutRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9KwN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/layout-top.tsx b/src/components/icons/layout-top.tsx
index 9cb3be515..577086c2a 100644
--- a/src/components/icons/layout-top.tsx
+++ b/src/components/icons/layout-top.tsx
@@ -11,6 +11,7 @@ const LayoutTop = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qMjl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/left-indent-01.tsx b/src/components/icons/left-indent-01.tsx
index 77e6cf933..e5aa934ec 100644
--- a/src/components/icons/left-indent-01.tsx
+++ b/src/components/icons/left-indent-01.tsx
@@ -11,6 +11,7 @@ const LeftIndent01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GUFm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/left-indent-02.tsx b/src/components/icons/left-indent-02.tsx
index a062a2009..3943254bc 100644
--- a/src/components/icons/left-indent-02.tsx
+++ b/src/components/icons/left-indent-02.tsx
@@ -11,6 +11,7 @@ const LeftIndent02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qHTb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/letter-spacing-01.tsx b/src/components/icons/letter-spacing-01.tsx
index 934774def..4778ec400 100644
--- a/src/components/icons/letter-spacing-01.tsx
+++ b/src/components/icons/letter-spacing-01.tsx
@@ -11,6 +11,7 @@ const LetterSpacing01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SbVU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/letter-spacing-02.tsx b/src/components/icons/letter-spacing-02.tsx
index 1343adcf4..3c6ea738a 100644
--- a/src/components/icons/letter-spacing-02.tsx
+++ b/src/components/icons/letter-spacing-02.tsx
@@ -11,6 +11,7 @@ const LetterSpacing02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gaQa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/life-buoy-01.tsx b/src/components/icons/life-buoy-01.tsx
index c7afd8cc1..ec1401930 100644
--- a/src/components/icons/life-buoy-01.tsx
+++ b/src/components/icons/life-buoy-01.tsx
@@ -11,6 +11,7 @@ const LifeBuoy01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5zil"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/life-buoy-02.tsx b/src/components/icons/life-buoy-02.tsx
index 56356b2eb..209a10499 100644
--- a/src/components/icons/life-buoy-02.tsx
+++ b/src/components/icons/life-buoy-02.tsx
@@ -11,6 +11,7 @@ const LifeBuoy02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cO0D"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lightbulb-01.tsx b/src/components/icons/lightbulb-01.tsx
index 1d4e2f008..5a3c36307 100644
--- a/src/components/icons/lightbulb-01.tsx
+++ b/src/components/icons/lightbulb-01.tsx
@@ -11,6 +11,7 @@ const Lightbulb01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BjOb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lightbulb-02.tsx b/src/components/icons/lightbulb-02.tsx
index 805fec644..eb8a3764e 100644
--- a/src/components/icons/lightbulb-02.tsx
+++ b/src/components/icons/lightbulb-02.tsx
@@ -11,6 +11,7 @@ const Lightbulb02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Zgsh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lightbulb-03.tsx b/src/components/icons/lightbulb-03.tsx
index 72fa7b450..43785530c 100644
--- a/src/components/icons/lightbulb-03.tsx
+++ b/src/components/icons/lightbulb-03.tsx
@@ -11,6 +11,7 @@ const Lightbulb03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vKn9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lightbulb-04.tsx b/src/components/icons/lightbulb-04.tsx
index 6b481a137..a6ecb7a33 100644
--- a/src/components/icons/lightbulb-04.tsx
+++ b/src/components/icons/lightbulb-04.tsx
@@ -11,6 +11,7 @@ const Lightbulb04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3FzO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lightbulb-05.tsx b/src/components/icons/lightbulb-05.tsx
index 1c2a0c3ea..c05032900 100644
--- a/src/components/icons/lightbulb-05.tsx
+++ b/src/components/icons/lightbulb-05.tsx
@@ -11,6 +11,7 @@ const Lightbulb05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1vo9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lightning-01.tsx b/src/components/icons/lightning-01.tsx
index c7721af63..3a49cd4bd 100644
--- a/src/components/icons/lightning-01.tsx
+++ b/src/components/icons/lightning-01.tsx
@@ -11,6 +11,7 @@ const Lightning01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LHL6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lightning-02.tsx b/src/components/icons/lightning-02.tsx
index cc48e89b6..b480f2ea3 100644
--- a/src/components/icons/lightning-02.tsx
+++ b/src/components/icons/lightning-02.tsx
@@ -11,6 +11,7 @@ const Lightning02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-3qJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-down-01.tsx b/src/components/icons/line-chart-down-01.tsx
index a03811ca8..2e923f884 100644
--- a/src/components/icons/line-chart-down-01.tsx
+++ b/src/components/icons/line-chart-down-01.tsx
@@ -11,6 +11,7 @@ const LineChartDown01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KGMe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-down-02.tsx b/src/components/icons/line-chart-down-02.tsx
index 85df4f54e..e25b652c5 100644
--- a/src/components/icons/line-chart-down-02.tsx
+++ b/src/components/icons/line-chart-down-02.tsx
@@ -11,6 +11,7 @@ const LineChartDown02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xAAw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-down-03.tsx b/src/components/icons/line-chart-down-03.tsx
index de0dbfb73..b8328647b 100644
--- a/src/components/icons/line-chart-down-03.tsx
+++ b/src/components/icons/line-chart-down-03.tsx
@@ -11,6 +11,7 @@ const LineChartDown03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FXch"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-down-04.tsx b/src/components/icons/line-chart-down-04.tsx
index b4d095338..55e391905 100644
--- a/src/components/icons/line-chart-down-04.tsx
+++ b/src/components/icons/line-chart-down-04.tsx
@@ -11,6 +11,7 @@ const LineChartDown04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w1Bz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-down-05.tsx b/src/components/icons/line-chart-down-05.tsx
index cabe8a80f..fbb4563eb 100644
--- a/src/components/icons/line-chart-down-05.tsx
+++ b/src/components/icons/line-chart-down-05.tsx
@@ -11,6 +11,7 @@ const LineChartDown05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_bf7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-up-01.tsx b/src/components/icons/line-chart-up-01.tsx
index 4ebc45ddd..96d406f2c 100644
--- a/src/components/icons/line-chart-up-01.tsx
+++ b/src/components/icons/line-chart-up-01.tsx
@@ -11,6 +11,7 @@ const LineChartUp01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Yoxs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-up-02.tsx b/src/components/icons/line-chart-up-02.tsx
index 3940ea5ed..07c137352 100644
--- a/src/components/icons/line-chart-up-02.tsx
+++ b/src/components/icons/line-chart-up-02.tsx
@@ -11,6 +11,7 @@ const LineChartUp02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="D5he"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-up-03.tsx b/src/components/icons/line-chart-up-03.tsx
index 38babeda6..0b2afcc7c 100644
--- a/src/components/icons/line-chart-up-03.tsx
+++ b/src/components/icons/line-chart-up-03.tsx
@@ -11,6 +11,7 @@ const LineChartUp03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7zz_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-up-04.tsx b/src/components/icons/line-chart-up-04.tsx
index 305587f49..4d580b2c1 100644
--- a/src/components/icons/line-chart-up-04.tsx
+++ b/src/components/icons/line-chart-up-04.tsx
@@ -11,6 +11,7 @@ const LineChartUp04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GFdi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-chart-up-05.tsx b/src/components/icons/line-chart-up-05.tsx
index 4bc75b210..5582f61ef 100644
--- a/src/components/icons/line-chart-up-05.tsx
+++ b/src/components/icons/line-chart-up-05.tsx
@@ -11,6 +11,7 @@ const LineChartUp05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="V2jx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/line-height.tsx b/src/components/icons/line-height.tsx
index 349f34490..823fcb096 100644
--- a/src/components/icons/line-height.tsx
+++ b/src/components/icons/line-height.tsx
@@ -11,6 +11,7 @@ const LineHeight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_5oB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-01.tsx b/src/components/icons/link-01.tsx
index f7dbaf37a..709f33546 100644
--- a/src/components/icons/link-01.tsx
+++ b/src/components/icons/link-01.tsx
@@ -11,6 +11,7 @@ const Link01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PetW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-02.tsx b/src/components/icons/link-02.tsx
index 19d5a557b..d9a1954d9 100644
--- a/src/components/icons/link-02.tsx
+++ b/src/components/icons/link-02.tsx
@@ -11,6 +11,7 @@ const Link02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bPRV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-03.tsx b/src/components/icons/link-03.tsx
index 034eedfe7..f55ec238b 100644
--- a/src/components/icons/link-03.tsx
+++ b/src/components/icons/link-03.tsx
@@ -11,6 +11,7 @@ const Link03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WkhJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-04.tsx b/src/components/icons/link-04.tsx
index ef34d6956..b9f14f212 100644
--- a/src/components/icons/link-04.tsx
+++ b/src/components/icons/link-04.tsx
@@ -11,6 +11,7 @@ const Link04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4BbM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-05.tsx b/src/components/icons/link-05.tsx
index 4b14b8742..5af114a3b 100644
--- a/src/components/icons/link-05.tsx
+++ b/src/components/icons/link-05.tsx
@@ -11,6 +11,7 @@ const Link05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="j5DU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-broken-01.tsx b/src/components/icons/link-broken-01.tsx
index ea96a40cc..f4ae4b1b1 100644
--- a/src/components/icons/link-broken-01.tsx
+++ b/src/components/icons/link-broken-01.tsx
@@ -11,6 +11,7 @@ const LinkBroken01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-Der"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-broken-02.tsx b/src/components/icons/link-broken-02.tsx
index b6a7cb16b..c38c2731e 100644
--- a/src/components/icons/link-broken-02.tsx
+++ b/src/components/icons/link-broken-02.tsx
@@ -11,6 +11,7 @@ const LinkBroken02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CKL4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-external-01.tsx b/src/components/icons/link-external-01.tsx
index 0829f4f0b..2c8ce83d9 100644
--- a/src/components/icons/link-external-01.tsx
+++ b/src/components/icons/link-external-01.tsx
@@ -11,6 +11,7 @@ const LinkExternal01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="h4tT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/link-external-02.tsx b/src/components/icons/link-external-02.tsx
index 6b3b517da..64bde129c 100644
--- a/src/components/icons/link-external-02.tsx
+++ b/src/components/icons/link-external-02.tsx
@@ -11,6 +11,7 @@ const LinkExternal02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="alRh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/list.tsx b/src/components/icons/list.tsx
index 8a926ee30..5fb18eda1 100644
--- a/src/components/icons/list.tsx
+++ b/src/components/icons/list.tsx
@@ -11,6 +11,7 @@ const List = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PBNn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/loading-01.tsx b/src/components/icons/loading-01.tsx
index 2f2ca9a6a..5e19d284d 100644
--- a/src/components/icons/loading-01.tsx
+++ b/src/components/icons/loading-01.tsx
@@ -11,6 +11,7 @@ const Loading01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Zt0K"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/loading-02.tsx b/src/components/icons/loading-02.tsx
index a0f80be9a..1d84484bb 100644
--- a/src/components/icons/loading-02.tsx
+++ b/src/components/icons/loading-02.tsx
@@ -11,6 +11,7 @@ const Loading02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="34Fd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/loading-03.tsx b/src/components/icons/loading-03.tsx
index 3393de153..139560460 100644
--- a/src/components/icons/loading-03.tsx
+++ b/src/components/icons/loading-03.tsx
@@ -11,6 +11,7 @@ const Loading03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xLP3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-01.tsx b/src/components/icons/lock-01.tsx
index 7f35faf0b..5fdf1879f 100644
--- a/src/components/icons/lock-01.tsx
+++ b/src/components/icons/lock-01.tsx
@@ -11,6 +11,7 @@ const Lock01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2EEe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-02.tsx b/src/components/icons/lock-02.tsx
index 2202948d4..737746c5c 100644
--- a/src/components/icons/lock-02.tsx
+++ b/src/components/icons/lock-02.tsx
@@ -11,6 +11,7 @@ const Lock02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="q3N1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-03.tsx b/src/components/icons/lock-03.tsx
index 574d2b9eb..49dd06d3b 100644
--- a/src/components/icons/lock-03.tsx
+++ b/src/components/icons/lock-03.tsx
@@ -11,6 +11,7 @@ const Lock03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="229D"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-04.tsx b/src/components/icons/lock-04.tsx
index 78add5a0d..2aea681ed 100644
--- a/src/components/icons/lock-04.tsx
+++ b/src/components/icons/lock-04.tsx
@@ -11,6 +11,7 @@ const Lock04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WSI2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-keyhole-circle.tsx b/src/components/icons/lock-keyhole-circle.tsx
index 0f105f1a9..8545156b0 100644
--- a/src/components/icons/lock-keyhole-circle.tsx
+++ b/src/components/icons/lock-keyhole-circle.tsx
@@ -11,6 +11,7 @@ const LockKeyholeCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7ym8"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-keyhole-square.tsx b/src/components/icons/lock-keyhole-square.tsx
index 2bb39e684..3fe1305e2 100644
--- a/src/components/icons/lock-keyhole-square.tsx
+++ b/src/components/icons/lock-keyhole-square.tsx
@@ -11,6 +11,7 @@ const LockKeyholeSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-8uI"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-unlocked-01.tsx b/src/components/icons/lock-unlocked-01.tsx
index 954500d6c..19029d74b 100644
--- a/src/components/icons/lock-unlocked-01.tsx
+++ b/src/components/icons/lock-unlocked-01.tsx
@@ -11,6 +11,7 @@ const LockUnlocked01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IDi-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-unlocked-02.tsx b/src/components/icons/lock-unlocked-02.tsx
index d8d3091b0..1aee2d25d 100644
--- a/src/components/icons/lock-unlocked-02.tsx
+++ b/src/components/icons/lock-unlocked-02.tsx
@@ -11,6 +11,7 @@ const LockUnlocked02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BUSP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-unlocked-03.tsx b/src/components/icons/lock-unlocked-03.tsx
index a0c27d450..40ed2221b 100644
--- a/src/components/icons/lock-unlocked-03.tsx
+++ b/src/components/icons/lock-unlocked-03.tsx
@@ -11,6 +11,7 @@ const LockUnlocked03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="k4kc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/lock-unlocked-04.tsx b/src/components/icons/lock-unlocked-04.tsx
index 13fb7441c..24981aae8 100644
--- a/src/components/icons/lock-unlocked-04.tsx
+++ b/src/components/icons/lock-unlocked-04.tsx
@@ -11,6 +11,7 @@ const LockUnlocked04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DljC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-in-01.tsx b/src/components/icons/log-in-01.tsx
index dceab47d3..5de9ebd1d 100644
--- a/src/components/icons/log-in-01.tsx
+++ b/src/components/icons/log-in-01.tsx
@@ -11,6 +11,7 @@ const LogIn01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xd5M"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-in-02.tsx b/src/components/icons/log-in-02.tsx
index af1755ae5..f1a8d0df7 100644
--- a/src/components/icons/log-in-02.tsx
+++ b/src/components/icons/log-in-02.tsx
@@ -11,6 +11,7 @@ const LogIn02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vVE_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-in-03.tsx b/src/components/icons/log-in-03.tsx
index 804a74274..790252149 100644
--- a/src/components/icons/log-in-03.tsx
+++ b/src/components/icons/log-in-03.tsx
@@ -11,6 +11,7 @@ const LogIn03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xIbE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-in-04.tsx b/src/components/icons/log-in-04.tsx
index 544a0c089..e783da557 100644
--- a/src/components/icons/log-in-04.tsx
+++ b/src/components/icons/log-in-04.tsx
@@ -11,6 +11,7 @@ const LogIn04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xEj4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-out-01.tsx b/src/components/icons/log-out-01.tsx
index c96280936..d6a75494d 100644
--- a/src/components/icons/log-out-01.tsx
+++ b/src/components/icons/log-out-01.tsx
@@ -11,6 +11,7 @@ const LogOut01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Yru7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-out-02.tsx b/src/components/icons/log-out-02.tsx
index 3d0e8eece..470543999 100644
--- a/src/components/icons/log-out-02.tsx
+++ b/src/components/icons/log-out-02.tsx
@@ -11,6 +11,7 @@ const LogOut02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Gf5t"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-out-03.tsx b/src/components/icons/log-out-03.tsx
index 0eafe05e4..299195769 100644
--- a/src/components/icons/log-out-03.tsx
+++ b/src/components/icons/log-out-03.tsx
@@ -11,6 +11,7 @@ const LogOut03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-Aix"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/log-out-04.tsx b/src/components/icons/log-out-04.tsx
index 0ed7f0ba4..7da082916 100644
--- a/src/components/icons/log-out-04.tsx
+++ b/src/components/icons/log-out-04.tsx
@@ -11,6 +11,7 @@ const LogOut04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Drq0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/luggage-01.tsx b/src/components/icons/luggage-01.tsx
index 3b79aa3cd..16d9c5f93 100644
--- a/src/components/icons/luggage-01.tsx
+++ b/src/components/icons/luggage-01.tsx
@@ -11,6 +11,7 @@ const Luggage01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f5q6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/luggage-02.tsx b/src/components/icons/luggage-02.tsx
index eba664cbf..8627ce5d3 100644
--- a/src/components/icons/luggage-02.tsx
+++ b/src/components/icons/luggage-02.tsx
@@ -11,6 +11,7 @@ const Luggage02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GRW4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/luggage-03.tsx b/src/components/icons/luggage-03.tsx
index b12f732f2..80bd2551f 100644
--- a/src/components/icons/luggage-03.tsx
+++ b/src/components/icons/luggage-03.tsx
@@ -11,6 +11,7 @@ const Luggage03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5MD8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/magic-wand-01.tsx b/src/components/icons/magic-wand-01.tsx
index 463e5d5a2..9e235b5ac 100644
--- a/src/components/icons/magic-wand-01.tsx
+++ b/src/components/icons/magic-wand-01.tsx
@@ -11,6 +11,7 @@ const MagicWand01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bVxP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/magic-wand-02.tsx b/src/components/icons/magic-wand-02.tsx
index a905c24f6..e3c3649d0 100644
--- a/src/components/icons/magic-wand-02.tsx
+++ b/src/components/icons/magic-wand-02.tsx
@@ -11,6 +11,7 @@ const MagicWand02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="k1k9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/magnet.tsx b/src/components/icons/magnet.tsx
index 4cfe3f6d2..c63070bdb 100644
--- a/src/components/icons/magnet.tsx
+++ b/src/components/icons/magnet.tsx
@@ -10,6 +10,7 @@ const Magnet = createIcon({
stroke="currentColor"
fill="currentColor"
strokeWidth="0.332843"
+ key="JbUZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/mail-01.tsx b/src/components/icons/mail-01.tsx
index 8d812f396..f3bbc10e0 100644
--- a/src/components/icons/mail-01.tsx
+++ b/src/components/icons/mail-01.tsx
@@ -11,6 +11,7 @@ const Mail01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QDaw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/mail-02.tsx b/src/components/icons/mail-02.tsx
index f6dbe3c7c..63af6bc97 100644
--- a/src/components/icons/mail-02.tsx
+++ b/src/components/icons/mail-02.tsx
@@ -11,6 +11,7 @@ const Mail02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0lQL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/mail-03.tsx b/src/components/icons/mail-03.tsx
index a40eb568e..f8faa8430 100644
--- a/src/components/icons/mail-03.tsx
+++ b/src/components/icons/mail-03.tsx
@@ -11,6 +11,7 @@ const Mail03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="O-w_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/mail-04.tsx b/src/components/icons/mail-04.tsx
index 6502db297..103afd9aa 100644
--- a/src/components/icons/mail-04.tsx
+++ b/src/components/icons/mail-04.tsx
@@ -11,6 +11,7 @@ const Mail04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lUtf"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/mail-05.tsx b/src/components/icons/mail-05.tsx
index 61705e5da..ae6e7bbd6 100644
--- a/src/components/icons/mail-05.tsx
+++ b/src/components/icons/mail-05.tsx
@@ -11,6 +11,7 @@ const Mail05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jmo6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/map-01.tsx b/src/components/icons/map-01.tsx
index 5ed513794..71b1afabb 100644
--- a/src/components/icons/map-01.tsx
+++ b/src/components/icons/map-01.tsx
@@ -11,6 +11,7 @@ const Map01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Nnml"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/map-02.tsx b/src/components/icons/map-02.tsx
index 355c4948b..0e092df48 100644
--- a/src/components/icons/map-02.tsx
+++ b/src/components/icons/map-02.tsx
@@ -11,6 +11,7 @@ const Map02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="T6m0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/mark.tsx b/src/components/icons/mark.tsx
index 6973e19fb..77506d595 100644
--- a/src/components/icons/mark.tsx
+++ b/src/components/icons/mark.tsx
@@ -11,6 +11,7 @@ const Mark = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QOVP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/marker-pin-01.tsx b/src/components/icons/marker-pin-01.tsx
index b0d98cd21..5d184b5e3 100644
--- a/src/components/icons/marker-pin-01.tsx
+++ b/src/components/icons/marker-pin-01.tsx
@@ -11,6 +11,7 @@ const MarkerPin01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2YXB"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/marker-pin-02.tsx b/src/components/icons/marker-pin-02.tsx
index e0e334cb0..7d38714bc 100644
--- a/src/components/icons/marker-pin-02.tsx
+++ b/src/components/icons/marker-pin-02.tsx
@@ -11,6 +11,7 @@ const MarkerPin02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="A4Ez"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/marker-pin-03.tsx b/src/components/icons/marker-pin-03.tsx
index f6a0446c1..d4b09f2a6 100644
--- a/src/components/icons/marker-pin-03.tsx
+++ b/src/components/icons/marker-pin-03.tsx
@@ -11,6 +11,7 @@ const MarkerPin03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="R8FR"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/marker-pin-04.tsx b/src/components/icons/marker-pin-04.tsx
index cbeba1e62..384061fad 100644
--- a/src/components/icons/marker-pin-04.tsx
+++ b/src/components/icons/marker-pin-04.tsx
@@ -11,6 +11,7 @@ const MarkerPin04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pWcd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/marker-pin-05.tsx b/src/components/icons/marker-pin-05.tsx
index 8f73e35e8..8c3dd4399 100644
--- a/src/components/icons/marker-pin-05.tsx
+++ b/src/components/icons/marker-pin-05.tsx
@@ -11,6 +11,7 @@ const MarkerPin05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CEsu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/marker-pin-06.tsx b/src/components/icons/marker-pin-06.tsx
index 68f5e1cec..366df082b 100644
--- a/src/components/icons/marker-pin-06.tsx
+++ b/src/components/icons/marker-pin-06.tsx
@@ -11,6 +11,7 @@ const MarkerPin06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xhdd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/maximize-01.tsx b/src/components/icons/maximize-01.tsx
index 40f1f74fa..5e201f5f3 100644
--- a/src/components/icons/maximize-01.tsx
+++ b/src/components/icons/maximize-01.tsx
@@ -11,6 +11,7 @@ const Maximize01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="K1oP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/maximize-02.tsx b/src/components/icons/maximize-02.tsx
index 6f2870161..0ee299e88 100644
--- a/src/components/icons/maximize-02.tsx
+++ b/src/components/icons/maximize-02.tsx
@@ -11,6 +11,7 @@ const Maximize02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YJxK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/medical-circle.tsx b/src/components/icons/medical-circle.tsx
index 773bf9175..527fad6ca 100644
--- a/src/components/icons/medical-circle.tsx
+++ b/src/components/icons/medical-circle.tsx
@@ -11,6 +11,7 @@ const MedicalCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8lCP"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/medical-cross.tsx b/src/components/icons/medical-cross.tsx
index 46749b42f..fd5a3897a 100644
--- a/src/components/icons/medical-cross.tsx
+++ b/src/components/icons/medical-cross.tsx
@@ -11,6 +11,7 @@ const MedicalCross = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="nn1y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/medical-square.tsx b/src/components/icons/medical-square.tsx
index f1b874ced..3ff57a84c 100644
--- a/src/components/icons/medical-square.tsx
+++ b/src/components/icons/medical-square.tsx
@@ -11,6 +11,7 @@ const MedicalSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="usa8"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/menu-01.tsx b/src/components/icons/menu-01.tsx
index ff3cb59bb..9f0d5b13e 100644
--- a/src/components/icons/menu-01.tsx
+++ b/src/components/icons/menu-01.tsx
@@ -11,6 +11,7 @@ const Menu01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dYB4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/menu-02.tsx b/src/components/icons/menu-02.tsx
index a822ac018..b623279e7 100644
--- a/src/components/icons/menu-02.tsx
+++ b/src/components/icons/menu-02.tsx
@@ -11,6 +11,7 @@ const Menu02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="x6H4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/menu-03.tsx b/src/components/icons/menu-03.tsx
index 8bd6d4f5f..1c1cfc549 100644
--- a/src/components/icons/menu-03.tsx
+++ b/src/components/icons/menu-03.tsx
@@ -11,6 +11,7 @@ const Menu03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="K5zj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/menu-04.tsx b/src/components/icons/menu-04.tsx
index c24975e76..5733dd720 100644
--- a/src/components/icons/menu-04.tsx
+++ b/src/components/icons/menu-04.tsx
@@ -11,6 +11,7 @@ const Menu04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="O5Fh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/menu-05.tsx b/src/components/icons/menu-05.tsx
index 9ac3a4085..c613a271a 100644
--- a/src/components/icons/menu-05.tsx
+++ b/src/components/icons/menu-05.tsx
@@ -11,6 +11,7 @@ const Menu05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jsAi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-alert-circle.tsx b/src/components/icons/message-alert-circle.tsx
index 94336588c..7eb5904e7 100644
--- a/src/components/icons/message-alert-circle.tsx
+++ b/src/components/icons/message-alert-circle.tsx
@@ -11,6 +11,7 @@ const MessageAlertCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vT73"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-alert-square.tsx b/src/components/icons/message-alert-square.tsx
index dfb8e5f04..904b5c7af 100644
--- a/src/components/icons/message-alert-square.tsx
+++ b/src/components/icons/message-alert-square.tsx
@@ -11,6 +11,7 @@ const MessageAlertSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lbUX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-chat-circle.tsx b/src/components/icons/message-chat-circle.tsx
index ecb5614dc..0a39b0301 100644
--- a/src/components/icons/message-chat-circle.tsx
+++ b/src/components/icons/message-chat-circle.tsx
@@ -11,6 +11,7 @@ const MessageChatCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JxiZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-chat-square.tsx b/src/components/icons/message-chat-square.tsx
index 5e799e817..020c5b439 100644
--- a/src/components/icons/message-chat-square.tsx
+++ b/src/components/icons/message-chat-square.tsx
@@ -11,6 +11,7 @@ const MessageChatSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aAVg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-check-circle.tsx b/src/components/icons/message-check-circle.tsx
index cc0e91808..c3bddbf60 100644
--- a/src/components/icons/message-check-circle.tsx
+++ b/src/components/icons/message-check-circle.tsx
@@ -11,6 +11,7 @@ const MessageCheckCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cNbn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-check-square.tsx b/src/components/icons/message-check-square.tsx
index 3227a2057..964e0cd07 100644
--- a/src/components/icons/message-check-square.tsx
+++ b/src/components/icons/message-check-square.tsx
@@ -11,6 +11,7 @@ const MessageCheckSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Louq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-circle-01.tsx b/src/components/icons/message-circle-01.tsx
index edb3eca2d..e193215c4 100644
--- a/src/components/icons/message-circle-01.tsx
+++ b/src/components/icons/message-circle-01.tsx
@@ -11,6 +11,7 @@ const MessageCircle01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0JZg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-circle-02.tsx b/src/components/icons/message-circle-02.tsx
index 80c589ce8..c0e19f628 100644
--- a/src/components/icons/message-circle-02.tsx
+++ b/src/components/icons/message-circle-02.tsx
@@ -11,6 +11,7 @@ const MessageCircle02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Az_C"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-dots-circle.tsx b/src/components/icons/message-dots-circle.tsx
index c874f565c..dcbbcd1bf 100644
--- a/src/components/icons/message-dots-circle.tsx
+++ b/src/components/icons/message-dots-circle.tsx
@@ -11,6 +11,7 @@ const MessageDotsCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pBHZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-dots-square.tsx b/src/components/icons/message-dots-square.tsx
index ebebc378d..68d9b4939 100644
--- a/src/components/icons/message-dots-square.tsx
+++ b/src/components/icons/message-dots-square.tsx
@@ -11,6 +11,7 @@ const MessageDotsSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RZ2g"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-heart-circle.tsx b/src/components/icons/message-heart-circle.tsx
index 4e9d4f3fc..8d2ee8fa3 100644
--- a/src/components/icons/message-heart-circle.tsx
+++ b/src/components/icons/message-heart-circle.tsx
@@ -11,6 +11,7 @@ const MessageHeartCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0H2P"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-heart-square.tsx b/src/components/icons/message-heart-square.tsx
index d2314042a..87a31eaf6 100644
--- a/src/components/icons/message-heart-square.tsx
+++ b/src/components/icons/message-heart-square.tsx
@@ -11,6 +11,7 @@ const MessageHeartSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iiDn"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-notification-circle.tsx b/src/components/icons/message-notification-circle.tsx
index 853583f7a..b16a096c9 100644
--- a/src/components/icons/message-notification-circle.tsx
+++ b/src/components/icons/message-notification-circle.tsx
@@ -11,6 +11,7 @@ const MessageNotificationCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f4pZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-notification-square.tsx b/src/components/icons/message-notification-square.tsx
index 4dbe1d9f7..f0d8cd0f0 100644
--- a/src/components/icons/message-notification-square.tsx
+++ b/src/components/icons/message-notification-square.tsx
@@ -11,6 +11,7 @@ const MessageNotificationSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Wa6F"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-plus-circle.tsx b/src/components/icons/message-plus-circle.tsx
index c0c60f954..72f558c06 100644
--- a/src/components/icons/message-plus-circle.tsx
+++ b/src/components/icons/message-plus-circle.tsx
@@ -11,6 +11,7 @@ const MessagePlusCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7l7H"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-plus-square.tsx b/src/components/icons/message-plus-square.tsx
index 62c7ade41..436f672b9 100644
--- a/src/components/icons/message-plus-square.tsx
+++ b/src/components/icons/message-plus-square.tsx
@@ -11,6 +11,7 @@ const MessagePlusSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="AgjK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-question-circle.tsx b/src/components/icons/message-question-circle.tsx
index 6ec69c5a9..71650e321 100644
--- a/src/components/icons/message-question-circle.tsx
+++ b/src/components/icons/message-question-circle.tsx
@@ -11,6 +11,7 @@ const MessageQuestionCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Z-Bl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-question-square.tsx b/src/components/icons/message-question-square.tsx
index 6ecb03f6f..606b38a84 100644
--- a/src/components/icons/message-question-square.tsx
+++ b/src/components/icons/message-question-square.tsx
@@ -11,6 +11,7 @@ const MessageQuestionSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5o5w"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-smile-circle.tsx b/src/components/icons/message-smile-circle.tsx
index ba6a8ae3e..515483b2b 100644
--- a/src/components/icons/message-smile-circle.tsx
+++ b/src/components/icons/message-smile-circle.tsx
@@ -11,6 +11,7 @@ const MessageSmileCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZXLa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-smile-square.tsx b/src/components/icons/message-smile-square.tsx
index 74bef3d00..87d439e79 100644
--- a/src/components/icons/message-smile-square.tsx
+++ b/src/components/icons/message-smile-square.tsx
@@ -11,6 +11,7 @@ const MessageSmileSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RY2a"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-square-01.tsx b/src/components/icons/message-square-01.tsx
index 92a6493f7..e2868cb31 100644
--- a/src/components/icons/message-square-01.tsx
+++ b/src/components/icons/message-square-01.tsx
@@ -11,6 +11,7 @@ const MessageSquare01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jC0t"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-square-02.tsx b/src/components/icons/message-square-02.tsx
index 300a8f702..a210e7e16 100644
--- a/src/components/icons/message-square-02.tsx
+++ b/src/components/icons/message-square-02.tsx
@@ -11,6 +11,7 @@ const MessageSquare02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="q5gh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-text-circle-01.tsx b/src/components/icons/message-text-circle-01.tsx
index 328ddac2a..896c39b2f 100644
--- a/src/components/icons/message-text-circle-01.tsx
+++ b/src/components/icons/message-text-circle-01.tsx
@@ -11,6 +11,7 @@ const MessageTextCircle01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_3ZL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-text-circle-02.tsx b/src/components/icons/message-text-circle-02.tsx
index 14ff6aabc..a5fc3d898 100644
--- a/src/components/icons/message-text-circle-02.tsx
+++ b/src/components/icons/message-text-circle-02.tsx
@@ -11,6 +11,7 @@ const MessageTextCircle02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QdJV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-text-square-01.tsx b/src/components/icons/message-text-square-01.tsx
index 4c8b0fa1c..e00cff005 100644
--- a/src/components/icons/message-text-square-01.tsx
+++ b/src/components/icons/message-text-square-01.tsx
@@ -11,6 +11,7 @@ const MessageTextSquare01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pUAD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-text-square-02.tsx b/src/components/icons/message-text-square-02.tsx
index 3b68c3191..ec79fe165 100644
--- a/src/components/icons/message-text-square-02.tsx
+++ b/src/components/icons/message-text-square-02.tsx
@@ -11,6 +11,7 @@ const MessageTextSquare02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lker"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-x-circle.tsx b/src/components/icons/message-x-circle.tsx
index 7732fb78a..3ab6d6fac 100644
--- a/src/components/icons/message-x-circle.tsx
+++ b/src/components/icons/message-x-circle.tsx
@@ -11,6 +11,7 @@ const MessageXCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="sZDc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/message-x-square.tsx b/src/components/icons/message-x-square.tsx
index 061ab15ee..85b2c713d 100644
--- a/src/components/icons/message-x-square.tsx
+++ b/src/components/icons/message-x-square.tsx
@@ -11,6 +11,7 @@ const MessageXSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MXet"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/microphone-01.tsx b/src/components/icons/microphone-01.tsx
index 301bafd13..151ebfd52 100644
--- a/src/components/icons/microphone-01.tsx
+++ b/src/components/icons/microphone-01.tsx
@@ -11,6 +11,7 @@ const Microphone01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GBFJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/microphone-02.tsx b/src/components/icons/microphone-02.tsx
index 9b5b30053..2a71357c2 100644
--- a/src/components/icons/microphone-02.tsx
+++ b/src/components/icons/microphone-02.tsx
@@ -11,6 +11,7 @@ const Microphone02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mOOu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/microphone-off-01.tsx b/src/components/icons/microphone-off-01.tsx
index f03683d7f..b61f41efa 100644
--- a/src/components/icons/microphone-off-01.tsx
+++ b/src/components/icons/microphone-off-01.tsx
@@ -11,6 +11,7 @@ const MicrophoneOff01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pv3l"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/microphone-off-02.tsx b/src/components/icons/microphone-off-02.tsx
index ac05493d9..065864a57 100644
--- a/src/components/icons/microphone-off-02.tsx
+++ b/src/components/icons/microphone-off-02.tsx
@@ -11,6 +11,7 @@ const MicrophoneOff02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CdD4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/microscope.tsx b/src/components/icons/microscope.tsx
index 28f8db0c1..2dfcba07a 100644
--- a/src/components/icons/microscope.tsx
+++ b/src/components/icons/microscope.tsx
@@ -11,6 +11,7 @@ const Microscope = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MNHc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/minimize-01.tsx b/src/components/icons/minimize-01.tsx
index 6c0c120d7..2307d4ab8 100644
--- a/src/components/icons/minimize-01.tsx
+++ b/src/components/icons/minimize-01.tsx
@@ -11,6 +11,7 @@ const Minimize01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DO6U"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/minimize-02.tsx b/src/components/icons/minimize-02.tsx
index 4f0051330..587cfbb89 100644
--- a/src/components/icons/minimize-02.tsx
+++ b/src/components/icons/minimize-02.tsx
@@ -11,6 +11,7 @@ const Minimize02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="l5LK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/minus-circle.tsx b/src/components/icons/minus-circle.tsx
index 456864c90..2bf01aaf5 100644
--- a/src/components/icons/minus-circle.tsx
+++ b/src/components/icons/minus-circle.tsx
@@ -11,6 +11,7 @@ const MinusCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gT9l"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/minus-square.tsx b/src/components/icons/minus-square.tsx
index b8e4da917..a06c1da94 100644
--- a/src/components/icons/minus-square.tsx
+++ b/src/components/icons/minus-square.tsx
@@ -11,6 +11,7 @@ const MinusSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="AWRC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/minus.tsx b/src/components/icons/minus.tsx
index 80e054f98..4f60f4f55 100644
--- a/src/components/icons/minus.tsx
+++ b/src/components/icons/minus.tsx
@@ -11,6 +11,7 @@ const Minus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QJgy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/modem-01.tsx b/src/components/icons/modem-01.tsx
index 606e73f80..a912a3704 100644
--- a/src/components/icons/modem-01.tsx
+++ b/src/components/icons/modem-01.tsx
@@ -11,6 +11,7 @@ const Modem01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NgGP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/modem-02.tsx b/src/components/icons/modem-02.tsx
index 78572e551..6f88da58a 100644
--- a/src/components/icons/modem-02.tsx
+++ b/src/components/icons/modem-02.tsx
@@ -11,6 +11,7 @@ const Modem02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ChWg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/monitor-01.tsx b/src/components/icons/monitor-01.tsx
index ed5f54289..9cef6a672 100644
--- a/src/components/icons/monitor-01.tsx
+++ b/src/components/icons/monitor-01.tsx
@@ -11,6 +11,7 @@ const Monitor01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rmDZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/monitor-02.tsx b/src/components/icons/monitor-02.tsx
index b8dc10222..7eee8a9fc 100644
--- a/src/components/icons/monitor-02.tsx
+++ b/src/components/icons/monitor-02.tsx
@@ -11,6 +11,7 @@ const Monitor02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KbyE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/monitor-03.tsx b/src/components/icons/monitor-03.tsx
index e6b565eab..2747d3b2b 100644
--- a/src/components/icons/monitor-03.tsx
+++ b/src/components/icons/monitor-03.tsx
@@ -11,6 +11,7 @@ const Monitor03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Aido"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/monitor-04.tsx b/src/components/icons/monitor-04.tsx
index ed0bad18d..12fd7d337 100644
--- a/src/components/icons/monitor-04.tsx
+++ b/src/components/icons/monitor-04.tsx
@@ -11,6 +11,7 @@ const Monitor04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="86hh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/monitor-05.tsx b/src/components/icons/monitor-05.tsx
index 99da8b528..5902b6ef7 100644
--- a/src/components/icons/monitor-05.tsx
+++ b/src/components/icons/monitor-05.tsx
@@ -11,6 +11,7 @@ const Monitor05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0uwC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/moon-01.tsx b/src/components/icons/moon-01.tsx
index c15cc3187..f0cf5c97a 100644
--- a/src/components/icons/moon-01.tsx
+++ b/src/components/icons/moon-01.tsx
@@ -11,6 +11,7 @@ const Moon01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GJcI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/moon-02.tsx b/src/components/icons/moon-02.tsx
index 339e431a7..47d6f356b 100644
--- a/src/components/icons/moon-02.tsx
+++ b/src/components/icons/moon-02.tsx
@@ -11,6 +11,7 @@ const Moon02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="27x2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/moon-eclipse.tsx b/src/components/icons/moon-eclipse.tsx
index 07d89dce8..33616d6c3 100644
--- a/src/components/icons/moon-eclipse.tsx
+++ b/src/components/icons/moon-eclipse.tsx
@@ -11,6 +11,7 @@ const MoonEclipse = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xY5g"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/moon-star.tsx b/src/components/icons/moon-star.tsx
index c91fb5db8..42b40b31f 100644
--- a/src/components/icons/moon-star.tsx
+++ b/src/components/icons/moon-star.tsx
@@ -11,6 +11,7 @@ const MoonStar = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="nR2_"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/mouse.tsx b/src/components/icons/mouse.tsx
index 95bfc1fde..54a36e02c 100644
--- a/src/components/icons/mouse.tsx
+++ b/src/components/icons/mouse.tsx
@@ -11,6 +11,7 @@ const Mouse = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FCkM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/move.tsx b/src/components/icons/move.tsx
index 72ae15930..53a1e1028 100644
--- a/src/components/icons/move.tsx
+++ b/src/components/icons/move.tsx
@@ -11,6 +11,7 @@ const Move = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vMsC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/music-note-01.tsx b/src/components/icons/music-note-01.tsx
index b2e6d8f87..cb1c08e72 100644
--- a/src/components/icons/music-note-01.tsx
+++ b/src/components/icons/music-note-01.tsx
@@ -11,6 +11,7 @@ const MusicNote01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="W_eu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/music-note-02.tsx b/src/components/icons/music-note-02.tsx
index 54d7615dd..8c895eb1e 100644
--- a/src/components/icons/music-note-02.tsx
+++ b/src/components/icons/music-note-02.tsx
@@ -11,6 +11,7 @@ const MusicNote02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="q47a"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/music-note-plus.tsx b/src/components/icons/music-note-plus.tsx
index 053190abc..fdc675ffe 100644
--- a/src/components/icons/music-note-plus.tsx
+++ b/src/components/icons/music-note-plus.tsx
@@ -11,6 +11,7 @@ const MusicNotePlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WFPB"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/navigation-pointer-01.tsx b/src/components/icons/navigation-pointer-01.tsx
index 427989374..fc80cfe78 100644
--- a/src/components/icons/navigation-pointer-01.tsx
+++ b/src/components/icons/navigation-pointer-01.tsx
@@ -11,6 +11,7 @@ const NavigationPointer01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ry3O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/navigation-pointer-02.tsx b/src/components/icons/navigation-pointer-02.tsx
index d16e609d1..26ed7e358 100644
--- a/src/components/icons/navigation-pointer-02.tsx
+++ b/src/components/icons/navigation-pointer-02.tsx
@@ -11,6 +11,7 @@ const NavigationPointer02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vY9h"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/navigation-pointer-off-01.tsx b/src/components/icons/navigation-pointer-off-01.tsx
index 043af7727..5209d77ab 100644
--- a/src/components/icons/navigation-pointer-off-01.tsx
+++ b/src/components/icons/navigation-pointer-off-01.tsx
@@ -11,6 +11,7 @@ const NavigationPointerOff01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bNrq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/navigation-pointer-off-02.tsx b/src/components/icons/navigation-pointer-off-02.tsx
index 21b52b251..f605613f9 100644
--- a/src/components/icons/navigation-pointer-off-02.tsx
+++ b/src/components/icons/navigation-pointer-off-02.tsx
@@ -11,6 +11,7 @@ const NavigationPointerOff02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DxrI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/notification-box.tsx b/src/components/icons/notification-box.tsx
index 0a5917356..fb09baff6 100644
--- a/src/components/icons/notification-box.tsx
+++ b/src/components/icons/notification-box.tsx
@@ -11,6 +11,7 @@ const NotificationBox = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Mdq2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/notification-message.tsx b/src/components/icons/notification-message.tsx
index e7c7cf67f..adc91a0c6 100644
--- a/src/components/icons/notification-message.tsx
+++ b/src/components/icons/notification-message.tsx
@@ -11,6 +11,7 @@ const NotificationMessage = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aqts"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/notification-text.tsx b/src/components/icons/notification-text.tsx
index 23359a16b..57825fbf9 100644
--- a/src/components/icons/notification-text.tsx
+++ b/src/components/icons/notification-text.tsx
@@ -11,6 +11,7 @@ const NotificationText = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mBbe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/octagon.tsx b/src/components/icons/octagon.tsx
index 38b69af44..489a93d5a 100644
--- a/src/components/icons/octagon.tsx
+++ b/src/components/icons/octagon.tsx
@@ -11,6 +11,7 @@ const Octagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Uyi4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/package-check.tsx b/src/components/icons/package-check.tsx
index 67e85bd2a..c9f4ecb79 100644
--- a/src/components/icons/package-check.tsx
+++ b/src/components/icons/package-check.tsx
@@ -11,6 +11,7 @@ const PackageCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UuVR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/package-minus.tsx b/src/components/icons/package-minus.tsx
index bf386920a..5e1828c52 100644
--- a/src/components/icons/package-minus.tsx
+++ b/src/components/icons/package-minus.tsx
@@ -11,6 +11,7 @@ const PackageMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="taBP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/package-plus.tsx b/src/components/icons/package-plus.tsx
index 6f2508302..af5536645 100644
--- a/src/components/icons/package-plus.tsx
+++ b/src/components/icons/package-plus.tsx
@@ -11,6 +11,7 @@ const PackagePlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wZ20"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/package-search.tsx b/src/components/icons/package-search.tsx
index 6ad1608a5..ea23d6db0 100644
--- a/src/components/icons/package-search.tsx
+++ b/src/components/icons/package-search.tsx
@@ -11,6 +11,7 @@ const PackageSearch = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pu2h"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/package-x.tsx b/src/components/icons/package-x.tsx
index 6c494c549..6f3927f02 100644
--- a/src/components/icons/package-x.tsx
+++ b/src/components/icons/package-x.tsx
@@ -11,6 +11,7 @@ const PackageX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YWzo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/package.tsx b/src/components/icons/package.tsx
index d1ee0960c..f0b422dc0 100644
--- a/src/components/icons/package.tsx
+++ b/src/components/icons/package.tsx
@@ -11,6 +11,7 @@ const Package = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="t8AO"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/paint-pour.tsx b/src/components/icons/paint-pour.tsx
index c7e3ff866..e456f0c9d 100644
--- a/src/components/icons/paint-pour.tsx
+++ b/src/components/icons/paint-pour.tsx
@@ -11,6 +11,7 @@ const PaintPour = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2w8Y"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/paint.tsx b/src/components/icons/paint.tsx
index 8c898f052..15337b41a 100644
--- a/src/components/icons/paint.tsx
+++ b/src/components/icons/paint.tsx
@@ -11,6 +11,7 @@ const Paint = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f0pe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/palette.tsx b/src/components/icons/palette.tsx
index 1b53fd076..00d4f15d3 100644
--- a/src/components/icons/palette.tsx
+++ b/src/components/icons/palette.tsx
@@ -11,6 +11,7 @@ const Palette = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JVVK"
>,
,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/paperclip.tsx b/src/components/icons/paperclip.tsx
index 84b18f8b0..898062af5 100644
--- a/src/components/icons/paperclip.tsx
+++ b/src/components/icons/paperclip.tsx
@@ -11,6 +11,7 @@ const Paperclip = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="aPAZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/paragraph-spacing.tsx b/src/components/icons/paragraph-spacing.tsx
index 49ac7e318..61f7e1075 100644
--- a/src/components/icons/paragraph-spacing.tsx
+++ b/src/components/icons/paragraph-spacing.tsx
@@ -11,6 +11,7 @@ const ParagraphSpacing = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xyQH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/paragraph-wrap.tsx b/src/components/icons/paragraph-wrap.tsx
index e7dfa8637..250b4490b 100644
--- a/src/components/icons/paragraph-wrap.tsx
+++ b/src/components/icons/paragraph-wrap.tsx
@@ -11,6 +11,7 @@ const ParagraphWrap = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="znyj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/passcode-lock.tsx b/src/components/icons/passcode-lock.tsx
index 94afb1a73..48d20c7bc 100644
--- a/src/components/icons/passcode-lock.tsx
+++ b/src/components/icons/passcode-lock.tsx
@@ -11,6 +11,7 @@ const PasscodeLock = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="syWw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/passcode.tsx b/src/components/icons/passcode.tsx
index 1956bc4b4..57c6ab6b2 100644
--- a/src/components/icons/passcode.tsx
+++ b/src/components/icons/passcode.tsx
@@ -11,6 +11,7 @@ const Passcode = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3LEK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/passport.tsx b/src/components/icons/passport.tsx
index ff8509206..3b79a038f 100644
--- a/src/components/icons/passport.tsx
+++ b/src/components/icons/passport.tsx
@@ -11,6 +11,7 @@ const Passport = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MYVM"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pause-circle.tsx b/src/components/icons/pause-circle.tsx
index 093305b60..aedb8ebce 100644
--- a/src/components/icons/pause-circle.tsx
+++ b/src/components/icons/pause-circle.tsx
@@ -11,6 +11,7 @@ const PauseCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Wc0d"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pause-square.tsx b/src/components/icons/pause-square.tsx
index ef9340e50..61ecaf0e3 100644
--- a/src/components/icons/pause-square.tsx
+++ b/src/components/icons/pause-square.tsx
@@ -11,6 +11,7 @@ const PauseSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7VpJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pen-tool-01.tsx b/src/components/icons/pen-tool-01.tsx
index 963829f73..d598feb02 100644
--- a/src/components/icons/pen-tool-01.tsx
+++ b/src/components/icons/pen-tool-01.tsx
@@ -11,6 +11,7 @@ const PenTool01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w4lX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pen-tool-02.tsx b/src/components/icons/pen-tool-02.tsx
index ee297a3f0..c27989fdb 100644
--- a/src/components/icons/pen-tool-02.tsx
+++ b/src/components/icons/pen-tool-02.tsx
@@ -11,6 +11,7 @@ const PenTool02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Bequ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pen-tool-minus.tsx b/src/components/icons/pen-tool-minus.tsx
index a781b84c7..515704846 100644
--- a/src/components/icons/pen-tool-minus.tsx
+++ b/src/components/icons/pen-tool-minus.tsx
@@ -11,6 +11,7 @@ const PenToolMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ILJe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pen-tool-plus.tsx b/src/components/icons/pen-tool-plus.tsx
index ea8b19496..cecc16329 100644
--- a/src/components/icons/pen-tool-plus.tsx
+++ b/src/components/icons/pen-tool-plus.tsx
@@ -11,6 +11,7 @@ const PenToolPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3-By"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pencil-01.tsx b/src/components/icons/pencil-01.tsx
index 0743a737f..52ad621fc 100644
--- a/src/components/icons/pencil-01.tsx
+++ b/src/components/icons/pencil-01.tsx
@@ -11,6 +11,7 @@ const Pencil01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YDsb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pencil-02.tsx b/src/components/icons/pencil-02.tsx
index 6baca18a1..064218521 100644
--- a/src/components/icons/pencil-02.tsx
+++ b/src/components/icons/pencil-02.tsx
@@ -11,6 +11,7 @@ const Pencil02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BNMe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pencil-line.tsx b/src/components/icons/pencil-line.tsx
index 58b35d3b0..d26613789 100644
--- a/src/components/icons/pencil-line.tsx
+++ b/src/components/icons/pencil-line.tsx
@@ -11,6 +11,7 @@ const PencilLine = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1lbH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pentagon.tsx b/src/components/icons/pentagon.tsx
index 0a76fc76e..0f2975865 100644
--- a/src/components/icons/pentagon.tsx
+++ b/src/components/icons/pentagon.tsx
@@ -11,6 +11,7 @@ const Pentagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="MMgc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/percent-01.tsx b/src/components/icons/percent-01.tsx
index ff762de5e..dd6bd297b 100644
--- a/src/components/icons/percent-01.tsx
+++ b/src/components/icons/percent-01.tsx
@@ -11,6 +11,7 @@ const Percent01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8GZG"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/percent-02.tsx b/src/components/icons/percent-02.tsx
index 127b633c8..90a413fbb 100644
--- a/src/components/icons/percent-02.tsx
+++ b/src/components/icons/percent-02.tsx
@@ -11,6 +11,7 @@ const Percent02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fJh-"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/percent-03.tsx b/src/components/icons/percent-03.tsx
index d1f07fa64..0aaa941d6 100644
--- a/src/components/icons/percent-03.tsx
+++ b/src/components/icons/percent-03.tsx
@@ -11,6 +11,7 @@ const Percent03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Y1u8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/perspective-01.tsx b/src/components/icons/perspective-01.tsx
index aacf8dba8..c5e199efc 100644
--- a/src/components/icons/perspective-01.tsx
+++ b/src/components/icons/perspective-01.tsx
@@ -11,6 +11,7 @@ const Perspective01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EUb1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/perspective-02.tsx b/src/components/icons/perspective-02.tsx
index 464f3cf18..6ed2e7db0 100644
--- a/src/components/icons/perspective-02.tsx
+++ b/src/components/icons/perspective-02.tsx
@@ -11,6 +11,7 @@ const Perspective02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="y-3T"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-01.tsx b/src/components/icons/phone-01.tsx
index 4665871c8..30c0cd0b9 100644
--- a/src/components/icons/phone-01.tsx
+++ b/src/components/icons/phone-01.tsx
@@ -11,6 +11,7 @@ const Phone01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eomE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-02.tsx b/src/components/icons/phone-02.tsx
index fef4cda82..d1d921701 100644
--- a/src/components/icons/phone-02.tsx
+++ b/src/components/icons/phone-02.tsx
@@ -11,6 +11,7 @@ const Phone02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yaUj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-call-01.tsx b/src/components/icons/phone-call-01.tsx
index 1a7ea1675..389c41852 100644
--- a/src/components/icons/phone-call-01.tsx
+++ b/src/components/icons/phone-call-01.tsx
@@ -11,6 +11,7 @@ const PhoneCall01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0sMU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-call-02.tsx b/src/components/icons/phone-call-02.tsx
index 72252805d..eb47eca77 100644
--- a/src/components/icons/phone-call-02.tsx
+++ b/src/components/icons/phone-call-02.tsx
@@ -11,6 +11,7 @@ const PhoneCall02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gb7R"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-hang-up.tsx b/src/components/icons/phone-hang-up.tsx
index 773921fa9..13266e06d 100644
--- a/src/components/icons/phone-hang-up.tsx
+++ b/src/components/icons/phone-hang-up.tsx
@@ -11,6 +11,7 @@ const PhoneHangUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pPy0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-incoming-01.tsx b/src/components/icons/phone-incoming-01.tsx
index d7c7cc261..910a4fb5e 100644
--- a/src/components/icons/phone-incoming-01.tsx
+++ b/src/components/icons/phone-incoming-01.tsx
@@ -11,6 +11,7 @@ const PhoneIncoming01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tIG4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-incoming-02.tsx b/src/components/icons/phone-incoming-02.tsx
index f2f5ffa1a..c21e8f162 100644
--- a/src/components/icons/phone-incoming-02.tsx
+++ b/src/components/icons/phone-incoming-02.tsx
@@ -11,6 +11,7 @@ const PhoneIncoming02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Z9ja"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-outgoing-01.tsx b/src/components/icons/phone-outgoing-01.tsx
index bdbb739fe..af90ccc54 100644
--- a/src/components/icons/phone-outgoing-01.tsx
+++ b/src/components/icons/phone-outgoing-01.tsx
@@ -11,6 +11,7 @@ const PhoneOutgoing01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KSKS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-outgoing-02.tsx b/src/components/icons/phone-outgoing-02.tsx
index 7dc82818c..e188f8171 100644
--- a/src/components/icons/phone-outgoing-02.tsx
+++ b/src/components/icons/phone-outgoing-02.tsx
@@ -11,6 +11,7 @@ const PhoneOutgoing02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="V29N"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-pause.tsx b/src/components/icons/phone-pause.tsx
index bea297ad6..df47eb23b 100644
--- a/src/components/icons/phone-pause.tsx
+++ b/src/components/icons/phone-pause.tsx
@@ -11,6 +11,7 @@ const PhonePause = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f2tr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-plus.tsx b/src/components/icons/phone-plus.tsx
index 3cf76121e..fb2ce3a69 100644
--- a/src/components/icons/phone-plus.tsx
+++ b/src/components/icons/phone-plus.tsx
@@ -11,6 +11,7 @@ const PhonePlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LHWz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone-x.tsx b/src/components/icons/phone-x.tsx
index 751f5d937..39f4e879e 100644
--- a/src/components/icons/phone-x.tsx
+++ b/src/components/icons/phone-x.tsx
@@ -11,6 +11,7 @@ const PhoneX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="khv7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/phone.tsx b/src/components/icons/phone.tsx
index 007a1b5d2..70e7f01dd 100644
--- a/src/components/icons/phone.tsx
+++ b/src/components/icons/phone.tsx
@@ -11,6 +11,7 @@ const Phone = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EBJT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pie-chart-01.tsx b/src/components/icons/pie-chart-01.tsx
index d8d5034a4..0afd0ac52 100644
--- a/src/components/icons/pie-chart-01.tsx
+++ b/src/components/icons/pie-chart-01.tsx
@@ -11,6 +11,7 @@ const PieChart01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fJ-o"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pie-chart-02.tsx b/src/components/icons/pie-chart-02.tsx
index f6f0c447d..78436032b 100644
--- a/src/components/icons/pie-chart-02.tsx
+++ b/src/components/icons/pie-chart-02.tsx
@@ -11,6 +11,7 @@ const PieChart02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="g-7V"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pie-chart-03.tsx b/src/components/icons/pie-chart-03.tsx
index b4d4b9454..7233fba99 100644
--- a/src/components/icons/pie-chart-03.tsx
+++ b/src/components/icons/pie-chart-03.tsx
@@ -11,6 +11,7 @@ const PieChart03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wxEV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pie-chart-04.tsx b/src/components/icons/pie-chart-04.tsx
index 8f5eecbe1..c1da87fef 100644
--- a/src/components/icons/pie-chart-04.tsx
+++ b/src/components/icons/pie-chart-04.tsx
@@ -11,6 +11,7 @@ const PieChart04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uGYi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/piggy-bank-01.tsx b/src/components/icons/piggy-bank-01.tsx
index 8c092bc1d..2132269b7 100644
--- a/src/components/icons/piggy-bank-01.tsx
+++ b/src/components/icons/piggy-bank-01.tsx
@@ -11,6 +11,7 @@ const PiggyBank01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="z3LZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/piggy-bank-02.tsx b/src/components/icons/piggy-bank-02.tsx
index f61ba564f..7840914ab 100644
--- a/src/components/icons/piggy-bank-02.tsx
+++ b/src/components/icons/piggy-bank-02.tsx
@@ -11,6 +11,7 @@ const PiggyBank02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5XEF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pilcrow-01.tsx b/src/components/icons/pilcrow-01.tsx
index 28a479434..d3b55c1f5 100644
--- a/src/components/icons/pilcrow-01.tsx
+++ b/src/components/icons/pilcrow-01.tsx
@@ -11,6 +11,7 @@ const Pilcrow01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="q0MX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pilcrow-02.tsx b/src/components/icons/pilcrow-02.tsx
index 1527eba15..7646c2f1a 100644
--- a/src/components/icons/pilcrow-02.tsx
+++ b/src/components/icons/pilcrow-02.tsx
@@ -11,6 +11,7 @@ const Pilcrow02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ngsS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pilcrow-square.tsx b/src/components/icons/pilcrow-square.tsx
index 6a7534110..70159bf33 100644
--- a/src/components/icons/pilcrow-square.tsx
+++ b/src/components/icons/pilcrow-square.tsx
@@ -11,6 +11,7 @@ const PilcrowSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lCqW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pin-01.tsx b/src/components/icons/pin-01.tsx
index 85e07f839..01faf1ca2 100644
--- a/src/components/icons/pin-01.tsx
+++ b/src/components/icons/pin-01.tsx
@@ -11,6 +11,7 @@ const Pin01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EOiN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/pin-02.tsx b/src/components/icons/pin-02.tsx
index 4fee43a8a..5e5a66c5d 100644
--- a/src/components/icons/pin-02.tsx
+++ b/src/components/icons/pin-02.tsx
@@ -11,6 +11,7 @@ const Pin02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ondm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/placeholder.tsx b/src/components/icons/placeholder.tsx
index 98bd8e358..97b450133 100644
--- a/src/components/icons/placeholder.tsx
+++ b/src/components/icons/placeholder.tsx
@@ -11,6 +11,7 @@ const Placeholder = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="F4XR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/plane.tsx b/src/components/icons/plane.tsx
index 79c9b0358..edee33144 100644
--- a/src/components/icons/plane.tsx
+++ b/src/components/icons/plane.tsx
@@ -11,6 +11,7 @@ const Plane = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dORg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/play-circle.tsx b/src/components/icons/play-circle.tsx
index 3d7f8ca7b..d769abf65 100644
--- a/src/components/icons/play-circle.tsx
+++ b/src/components/icons/play-circle.tsx
@@ -11,6 +11,7 @@ const PlayCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IE3F"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/play-square.tsx b/src/components/icons/play-square.tsx
index 2b902bd4e..85c646eac 100644
--- a/src/components/icons/play-square.tsx
+++ b/src/components/icons/play-square.tsx
@@ -11,6 +11,7 @@ const PlaySquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6T_u"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/play.tsx b/src/components/icons/play.tsx
index a3c9f6a9d..bc62b7633 100644
--- a/src/components/icons/play.tsx
+++ b/src/components/icons/play.tsx
@@ -11,6 +11,7 @@ const Play = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xOaF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/plus-circle.tsx b/src/components/icons/plus-circle.tsx
index c6c4e9503..3e1d00412 100644
--- a/src/components/icons/plus-circle.tsx
+++ b/src/components/icons/plus-circle.tsx
@@ -11,6 +11,7 @@ const PlusCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0Ctp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/plus-square.tsx b/src/components/icons/plus-square.tsx
index aa6d63bf0..d5c96fcea 100644
--- a/src/components/icons/plus-square.tsx
+++ b/src/components/icons/plus-square.tsx
@@ -11,6 +11,7 @@ const PlusSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yq3U"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/plus.tsx b/src/components/icons/plus.tsx
index d2bfb73a7..204689161 100644
--- a/src/components/icons/plus.tsx
+++ b/src/components/icons/plus.tsx
@@ -11,6 +11,7 @@ const Plus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NEd3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/podcast.tsx b/src/components/icons/podcast.tsx
index 2effbc679..53dbcd47c 100644
--- a/src/components/icons/podcast.tsx
+++ b/src/components/icons/podcast.tsx
@@ -11,6 +11,7 @@ const Podcast = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="y3gw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/power-01.tsx b/src/components/icons/power-01.tsx
index ef6dc6ebf..e62c9042a 100644
--- a/src/components/icons/power-01.tsx
+++ b/src/components/icons/power-01.tsx
@@ -11,6 +11,7 @@ const Power01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UkCn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/power-02.tsx b/src/components/icons/power-02.tsx
index 268e00da8..d2b7c0e9e 100644
--- a/src/components/icons/power-02.tsx
+++ b/src/components/icons/power-02.tsx
@@ -11,6 +11,7 @@ const Power02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pnt7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/power-03.tsx b/src/components/icons/power-03.tsx
index 20d22fb13..66a6b7868 100644
--- a/src/components/icons/power-03.tsx
+++ b/src/components/icons/power-03.tsx
@@ -11,6 +11,7 @@ const Power03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Xosh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/presentation-chart-01.tsx b/src/components/icons/presentation-chart-01.tsx
index c45dd3405..df55f0e6e 100644
--- a/src/components/icons/presentation-chart-01.tsx
+++ b/src/components/icons/presentation-chart-01.tsx
@@ -11,6 +11,7 @@ const PresentationChart01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zOlZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/presentation-chart-02.tsx b/src/components/icons/presentation-chart-02.tsx
index 4a5065977..630d622fe 100644
--- a/src/components/icons/presentation-chart-02.tsx
+++ b/src/components/icons/presentation-chart-02.tsx
@@ -11,6 +11,7 @@ const PresentationChart02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UAk3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/presentation-chart-03.tsx b/src/components/icons/presentation-chart-03.tsx
index e08fa3a65..21e943fe8 100644
--- a/src/components/icons/presentation-chart-03.tsx
+++ b/src/components/icons/presentation-chart-03.tsx
@@ -11,6 +11,7 @@ const PresentationChart03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BiqO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/printer.tsx b/src/components/icons/printer.tsx
index a072361e2..54d05ba1d 100644
--- a/src/components/icons/printer.tsx
+++ b/src/components/icons/printer.tsx
@@ -11,6 +11,7 @@ const Printer = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Oq0H"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/puzzle-piece-01.tsx b/src/components/icons/puzzle-piece-01.tsx
index 03f334fab..f34c87109 100644
--- a/src/components/icons/puzzle-piece-01.tsx
+++ b/src/components/icons/puzzle-piece-01.tsx
@@ -11,6 +11,7 @@ const PuzzlePiece01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Hb0E"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/puzzle-piece-02.tsx b/src/components/icons/puzzle-piece-02.tsx
index d30bf56b1..3c4e1da31 100644
--- a/src/components/icons/puzzle-piece-02.tsx
+++ b/src/components/icons/puzzle-piece-02.tsx
@@ -11,6 +11,7 @@ const PuzzlePiece02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tAQ_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/qr-code-01.tsx b/src/components/icons/qr-code-01.tsx
index 477b2cb1e..b40efde5a 100644
--- a/src/components/icons/qr-code-01.tsx
+++ b/src/components/icons/qr-code-01.tsx
@@ -11,6 +11,7 @@ const QrCode01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6u4B"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/qr-code-02.tsx b/src/components/icons/qr-code-02.tsx
index 51925a820..c20e0a950 100644
--- a/src/components/icons/qr-code-02.tsx
+++ b/src/components/icons/qr-code-02.tsx
@@ -11,6 +11,7 @@ const QrCode02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="E9Ta"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/receipt-check.tsx b/src/components/icons/receipt-check.tsx
index 04684e14f..80e241d3e 100644
--- a/src/components/icons/receipt-check.tsx
+++ b/src/components/icons/receipt-check.tsx
@@ -11,6 +11,7 @@ const ReceiptCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JWqe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/receipt.tsx b/src/components/icons/receipt.tsx
index 491ea67d6..24a3d7087 100644
--- a/src/components/icons/receipt.tsx
+++ b/src/components/icons/receipt.tsx
@@ -11,6 +11,7 @@ const Receipt = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eN7O"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/recording-01.tsx b/src/components/icons/recording-01.tsx
index ea224ea26..064882082 100644
--- a/src/components/icons/recording-01.tsx
+++ b/src/components/icons/recording-01.tsx
@@ -11,6 +11,7 @@ const Recording01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yTnD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/recording-02.tsx b/src/components/icons/recording-02.tsx
index 4ec63db0d..0fffd05be 100644
--- a/src/components/icons/recording-02.tsx
+++ b/src/components/icons/recording-02.tsx
@@ -11,6 +11,7 @@ const Recording02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ndbb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/recording-03.tsx b/src/components/icons/recording-03.tsx
index f8b756d1c..4444fc213 100644
--- a/src/components/icons/recording-03.tsx
+++ b/src/components/icons/recording-03.tsx
@@ -11,6 +11,7 @@ const Recording03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VwgA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/reflect-01.tsx b/src/components/icons/reflect-01.tsx
index f9525c7f4..5fa1100b5 100644
--- a/src/components/icons/reflect-01.tsx
+++ b/src/components/icons/reflect-01.tsx
@@ -11,6 +11,7 @@ const Reflect01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Uawg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/reflect-02.tsx b/src/components/icons/reflect-02.tsx
index 0812094e0..05b329d1f 100644
--- a/src/components/icons/reflect-02.tsx
+++ b/src/components/icons/reflect-02.tsx
@@ -11,6 +11,7 @@ const Reflect02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PuBT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-ccw-01.tsx b/src/components/icons/refresh-ccw-01.tsx
index b5833827d..56339425e 100644
--- a/src/components/icons/refresh-ccw-01.tsx
+++ b/src/components/icons/refresh-ccw-01.tsx
@@ -11,6 +11,7 @@ const RefreshCcw01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gwnp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-ccw-02.tsx b/src/components/icons/refresh-ccw-02.tsx
index aa3b5c4fc..6c1654a48 100644
--- a/src/components/icons/refresh-ccw-02.tsx
+++ b/src/components/icons/refresh-ccw-02.tsx
@@ -11,6 +11,7 @@ const RefreshCcw02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lZdF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-ccw-03.tsx b/src/components/icons/refresh-ccw-03.tsx
index f7b1dc980..3db27f11b 100644
--- a/src/components/icons/refresh-ccw-03.tsx
+++ b/src/components/icons/refresh-ccw-03.tsx
@@ -11,6 +11,7 @@ const RefreshCcw03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KLYi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-ccw-04.tsx b/src/components/icons/refresh-ccw-04.tsx
index 2478c7a5c..b334aaacc 100644
--- a/src/components/icons/refresh-ccw-04.tsx
+++ b/src/components/icons/refresh-ccw-04.tsx
@@ -11,6 +11,7 @@ const RefreshCcw04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Sa9B"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-ccw-05.tsx b/src/components/icons/refresh-ccw-05.tsx
index c78766709..963c585f5 100644
--- a/src/components/icons/refresh-ccw-05.tsx
+++ b/src/components/icons/refresh-ccw-05.tsx
@@ -11,6 +11,7 @@ const RefreshCcw05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8s7d"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-cw-01.tsx b/src/components/icons/refresh-cw-01.tsx
index b1850e092..9e84fa2c0 100644
--- a/src/components/icons/refresh-cw-01.tsx
+++ b/src/components/icons/refresh-cw-01.tsx
@@ -11,6 +11,7 @@ const RefreshCw01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7hpI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-cw-02.tsx b/src/components/icons/refresh-cw-02.tsx
index a0052888b..a632b2dba 100644
--- a/src/components/icons/refresh-cw-02.tsx
+++ b/src/components/icons/refresh-cw-02.tsx
@@ -11,6 +11,7 @@ const RefreshCw02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3sdA"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-cw-03.tsx b/src/components/icons/refresh-cw-03.tsx
index a6168be3b..d72a2f212 100644
--- a/src/components/icons/refresh-cw-03.tsx
+++ b/src/components/icons/refresh-cw-03.tsx
@@ -11,6 +11,7 @@ const RefreshCw03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WdAP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-cw-04.tsx b/src/components/icons/refresh-cw-04.tsx
index c6a5000ff..3d9a11f3d 100644
--- a/src/components/icons/refresh-cw-04.tsx
+++ b/src/components/icons/refresh-cw-04.tsx
@@ -11,6 +11,7 @@ const RefreshCw04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9wbP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/refresh-cw-05.tsx b/src/components/icons/refresh-cw-05.tsx
index 9bc5af8e7..eb79cde20 100644
--- a/src/components/icons/refresh-cw-05.tsx
+++ b/src/components/icons/refresh-cw-05.tsx
@@ -11,6 +11,7 @@ const RefreshCw05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_pzt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/repeat-01.tsx b/src/components/icons/repeat-01.tsx
index 1dd25bdf9..aab7cbcc3 100644
--- a/src/components/icons/repeat-01.tsx
+++ b/src/components/icons/repeat-01.tsx
@@ -11,6 +11,7 @@ const Repeat01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QkWz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/repeat-02.tsx b/src/components/icons/repeat-02.tsx
index 0bfe51869..f6a892111 100644
--- a/src/components/icons/repeat-02.tsx
+++ b/src/components/icons/repeat-02.tsx
@@ -11,6 +11,7 @@ const Repeat02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hJKr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/repeat-03.tsx b/src/components/icons/repeat-03.tsx
index d96910d53..6b4d03c3b 100644
--- a/src/components/icons/repeat-03.tsx
+++ b/src/components/icons/repeat-03.tsx
@@ -11,6 +11,7 @@ const Repeat03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Lnf0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/repeat-04.tsx b/src/components/icons/repeat-04.tsx
index 72552c1c7..5cf861b02 100644
--- a/src/components/icons/repeat-04.tsx
+++ b/src/components/icons/repeat-04.tsx
@@ -11,6 +11,7 @@ const Repeat04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5GY2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/reverse-left.tsx b/src/components/icons/reverse-left.tsx
index 7d5cea332..d62580423 100644
--- a/src/components/icons/reverse-left.tsx
+++ b/src/components/icons/reverse-left.tsx
@@ -11,6 +11,7 @@ const ReverseLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="AbHi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/reverse-right.tsx b/src/components/icons/reverse-right.tsx
index 19be09825..00244e01f 100644
--- a/src/components/icons/reverse-right.tsx
+++ b/src/components/icons/reverse-right.tsx
@@ -11,6 +11,7 @@ const ReverseRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Vpjj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/right-indent-01.tsx b/src/components/icons/right-indent-01.tsx
index 409437f66..fb26ac94f 100644
--- a/src/components/icons/right-indent-01.tsx
+++ b/src/components/icons/right-indent-01.tsx
@@ -11,6 +11,7 @@ const RightIndent01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Dmuz"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/right-indent-02.tsx b/src/components/icons/right-indent-02.tsx
index a2ed621cb..c3e265212 100644
--- a/src/components/icons/right-indent-02.tsx
+++ b/src/components/icons/right-indent-02.tsx
@@ -11,6 +11,7 @@ const RightIndent02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lrqW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/rocket-01.tsx b/src/components/icons/rocket-01.tsx
index 692fe58cd..4950ee2cb 100644
--- a/src/components/icons/rocket-01.tsx
+++ b/src/components/icons/rocket-01.tsx
@@ -11,6 +11,7 @@ const Rocket01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NP3p"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/rocket-02.tsx b/src/components/icons/rocket-02.tsx
index 75cab5974..cfc6ee455 100644
--- a/src/components/icons/rocket-02.tsx
+++ b/src/components/icons/rocket-02.tsx
@@ -11,6 +11,7 @@ const Rocket02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="rNh1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/roller-brush.tsx b/src/components/icons/roller-brush.tsx
index 02f49bd8b..3c8390b31 100644
--- a/src/components/icons/roller-brush.tsx
+++ b/src/components/icons/roller-brush.tsx
@@ -11,6 +11,7 @@ const RollerBrush = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="H2te"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/route.tsx b/src/components/icons/route.tsx
index 8ea5fd332..de5a761b7 100644
--- a/src/components/icons/route.tsx
+++ b/src/components/icons/route.tsx
@@ -11,6 +11,7 @@ const Route = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="g68z"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/rows-01.tsx b/src/components/icons/rows-01.tsx
index efc878e41..7da3bcd30 100644
--- a/src/components/icons/rows-01.tsx
+++ b/src/components/icons/rows-01.tsx
@@ -11,6 +11,7 @@ const Rows01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wo2e"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/rows-02.tsx b/src/components/icons/rows-02.tsx
index c9ee2c25b..18d64fd08 100644
--- a/src/components/icons/rows-02.tsx
+++ b/src/components/icons/rows-02.tsx
@@ -11,6 +11,7 @@ const Rows02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3aTF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/rows-03.tsx b/src/components/icons/rows-03.tsx
index 757becd57..1a16adff2 100644
--- a/src/components/icons/rows-03.tsx
+++ b/src/components/icons/rows-03.tsx
@@ -11,6 +11,7 @@ const Rows03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tRC5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/rss-01.tsx b/src/components/icons/rss-01.tsx
index 1217d56c6..ae1871273 100644
--- a/src/components/icons/rss-01.tsx
+++ b/src/components/icons/rss-01.tsx
@@ -11,6 +11,7 @@ const Rss01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="piq4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/rss-02.tsx b/src/components/icons/rss-02.tsx
index 73b834632..6bd7a64c4 100644
--- a/src/components/icons/rss-02.tsx
+++ b/src/components/icons/rss-02.tsx
@@ -11,6 +11,7 @@ const Rss02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="J9uQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/ruler.tsx b/src/components/icons/ruler.tsx
index 8d2e4637d..81d83d68a 100644
--- a/src/components/icons/ruler.tsx
+++ b/src/components/icons/ruler.tsx
@@ -11,6 +11,7 @@ const Ruler = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tCF5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/safe.tsx b/src/components/icons/safe.tsx
index 2bbb6a4bc..e9b00a8fc 100644
--- a/src/components/icons/safe.tsx
+++ b/src/components/icons/safe.tsx
@@ -11,6 +11,7 @@ const Safe = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BqKI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sale-01.tsx b/src/components/icons/sale-01.tsx
index 26eedefd1..4ca36c4ca 100644
--- a/src/components/icons/sale-01.tsx
+++ b/src/components/icons/sale-01.tsx
@@ -11,6 +11,7 @@ const Sale01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zbWh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sale-02.tsx b/src/components/icons/sale-02.tsx
index 20d6f38f4..f96d089bb 100644
--- a/src/components/icons/sale-02.tsx
+++ b/src/components/icons/sale-02.tsx
@@ -11,6 +11,7 @@ const Sale02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GQSq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sale-03.tsx b/src/components/icons/sale-03.tsx
index c73071f86..0d486cb54 100644
--- a/src/components/icons/sale-03.tsx
+++ b/src/components/icons/sale-03.tsx
@@ -11,6 +11,7 @@ const Sale03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7I8W"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sale-04.tsx b/src/components/icons/sale-04.tsx
index 8fdadc952..f534b39cc 100644
--- a/src/components/icons/sale-04.tsx
+++ b/src/components/icons/sale-04.tsx
@@ -11,6 +11,7 @@ const Sale04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PzqK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/save-01.tsx b/src/components/icons/save-01.tsx
index 4c3de94d9..41ac9e701 100644
--- a/src/components/icons/save-01.tsx
+++ b/src/components/icons/save-01.tsx
@@ -11,6 +11,7 @@ const Save01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="jjG7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/save-02.tsx b/src/components/icons/save-02.tsx
index ec1fbe4ff..d2f33357e 100644
--- a/src/components/icons/save-02.tsx
+++ b/src/components/icons/save-02.tsx
@@ -11,6 +11,7 @@ const Save02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0-t0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/save-03.tsx b/src/components/icons/save-03.tsx
index 396aa1543..4b7e31a28 100644
--- a/src/components/icons/save-03.tsx
+++ b/src/components/icons/save-03.tsx
@@ -11,6 +11,7 @@ const Save03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7N5n"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scale-01.tsx b/src/components/icons/scale-01.tsx
index 0599205d2..d90249fe9 100644
--- a/src/components/icons/scale-01.tsx
+++ b/src/components/icons/scale-01.tsx
@@ -11,6 +11,7 @@ const Scale01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OOk0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scale-02.tsx b/src/components/icons/scale-02.tsx
index 4566ab71c..703175944 100644
--- a/src/components/icons/scale-02.tsx
+++ b/src/components/icons/scale-02.tsx
@@ -11,6 +11,7 @@ const Scale02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NtZC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scale-03.tsx b/src/components/icons/scale-03.tsx
index a06a81bcf..5fc4502b0 100644
--- a/src/components/icons/scale-03.tsx
+++ b/src/components/icons/scale-03.tsx
@@ -11,6 +11,7 @@ const Scale03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="C3qE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scales-01.tsx b/src/components/icons/scales-01.tsx
index 90e961f88..d4432c1ad 100644
--- a/src/components/icons/scales-01.tsx
+++ b/src/components/icons/scales-01.tsx
@@ -11,6 +11,7 @@ const Scales01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1MoD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scales-02.tsx b/src/components/icons/scales-02.tsx
index 1abac4462..e9305ae60 100644
--- a/src/components/icons/scales-02.tsx
+++ b/src/components/icons/scales-02.tsx
@@ -11,6 +11,7 @@ const Scales02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="cYDQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scan.tsx b/src/components/icons/scan.tsx
index c2ffa5f25..857169aac 100644
--- a/src/components/icons/scan.tsx
+++ b/src/components/icons/scan.tsx
@@ -11,6 +11,7 @@ const Scan = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7gOe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scissors-01.tsx b/src/components/icons/scissors-01.tsx
index 01b9b432f..82836edec 100644
--- a/src/components/icons/scissors-01.tsx
+++ b/src/components/icons/scissors-01.tsx
@@ -11,6 +11,7 @@ const Scissors01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="AqlW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scissors-02.tsx b/src/components/icons/scissors-02.tsx
index 4fac47eeb..8739179b7 100644
--- a/src/components/icons/scissors-02.tsx
+++ b/src/components/icons/scissors-02.tsx
@@ -11,6 +11,7 @@ const Scissors02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="oUi0"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scissors-cut-01.tsx b/src/components/icons/scissors-cut-01.tsx
index cc4349d96..7f96da2be 100644
--- a/src/components/icons/scissors-cut-01.tsx
+++ b/src/components/icons/scissors-cut-01.tsx
@@ -11,6 +11,7 @@ const ScissorsCut01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Cw2B"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/scissors-cut-02.tsx b/src/components/icons/scissors-cut-02.tsx
index e39d89db7..f64437cf0 100644
--- a/src/components/icons/scissors-cut-02.tsx
+++ b/src/components/icons/scissors-cut-02.tsx
@@ -11,6 +11,7 @@ const ScissorsCut02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VA85"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/search-lg.tsx b/src/components/icons/search-lg.tsx
index b916db890..6deeddeb3 100644
--- a/src/components/icons/search-lg.tsx
+++ b/src/components/icons/search-lg.tsx
@@ -11,6 +11,7 @@ const SearchLg = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LgdW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/search-md.tsx b/src/components/icons/search-md.tsx
index eacd0f98b..dbc22a78f 100644
--- a/src/components/icons/search-md.tsx
+++ b/src/components/icons/search-md.tsx
@@ -11,6 +11,7 @@ const SearchMd = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QdNN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/search-refraction.tsx b/src/components/icons/search-refraction.tsx
index 81d185380..94adf201b 100644
--- a/src/components/icons/search-refraction.tsx
+++ b/src/components/icons/search-refraction.tsx
@@ -11,6 +11,7 @@ const SearchRefraction = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="iR3J"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/search-sm.tsx b/src/components/icons/search-sm.tsx
index 9924bcb71..2b16e5d26 100644
--- a/src/components/icons/search-sm.tsx
+++ b/src/components/icons/search-sm.tsx
@@ -11,6 +11,7 @@ const SearchSm = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="k30F"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/send-01.tsx b/src/components/icons/send-01.tsx
index 12da48541..5af2eecfd 100644
--- a/src/components/icons/send-01.tsx
+++ b/src/components/icons/send-01.tsx
@@ -11,6 +11,7 @@ const Send01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_Y7i"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/send-02.tsx b/src/components/icons/send-02.tsx
index 6d08c4de4..2dd95aa99 100644
--- a/src/components/icons/send-02.tsx
+++ b/src/components/icons/send-02.tsx
@@ -11,6 +11,7 @@ const Send02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="R0la"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/send-03.tsx b/src/components/icons/send-03.tsx
index 76396115d..96fcdfb34 100644
--- a/src/components/icons/send-03.tsx
+++ b/src/components/icons/send-03.tsx
@@ -11,6 +11,7 @@ const Send03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_NWp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/server-01.tsx b/src/components/icons/server-01.tsx
index c9c4fc995..bed3e716f 100644
--- a/src/components/icons/server-01.tsx
+++ b/src/components/icons/server-01.tsx
@@ -11,6 +11,7 @@ const Server01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="du4p"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/server-02.tsx b/src/components/icons/server-02.tsx
index 9bf265dc6..de00faf07 100644
--- a/src/components/icons/server-02.tsx
+++ b/src/components/icons/server-02.tsx
@@ -11,6 +11,7 @@ const Server02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BnCx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/server-03.tsx b/src/components/icons/server-03.tsx
index 143d799a8..ae62d6f29 100644
--- a/src/components/icons/server-03.tsx
+++ b/src/components/icons/server-03.tsx
@@ -11,6 +11,7 @@ const Server03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VE-d"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/server-04.tsx b/src/components/icons/server-04.tsx
index b9eca11bf..0bfd08c94 100644
--- a/src/components/icons/server-04.tsx
+++ b/src/components/icons/server-04.tsx
@@ -11,6 +11,7 @@ const Server04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Tr-S"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/server-05.tsx b/src/components/icons/server-05.tsx
index 27bd1a1ff..61fdb6dff 100644
--- a/src/components/icons/server-05.tsx
+++ b/src/components/icons/server-05.tsx
@@ -11,6 +11,7 @@ const Server05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="23Xe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/server-06.tsx b/src/components/icons/server-06.tsx
index 2cfed634b..e492d91d5 100644
--- a/src/components/icons/server-06.tsx
+++ b/src/components/icons/server-06.tsx
@@ -11,6 +11,7 @@ const Server06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vYy1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/settings-01.tsx b/src/components/icons/settings-01.tsx
index 24cdd5143..b620513e4 100644
--- a/src/components/icons/settings-01.tsx
+++ b/src/components/icons/settings-01.tsx
@@ -11,6 +11,7 @@ const Settings01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xVJm"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/settings-02.tsx b/src/components/icons/settings-02.tsx
index 81e00e9ec..80bbf200c 100644
--- a/src/components/icons/settings-02.tsx
+++ b/src/components/icons/settings-02.tsx
@@ -11,6 +11,7 @@ const Settings02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="p1IO"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/settings-03.tsx b/src/components/icons/settings-03.tsx
index 7ad062f79..53e75d902 100644
--- a/src/components/icons/settings-03.tsx
+++ b/src/components/icons/settings-03.tsx
@@ -11,6 +11,7 @@ const Settings03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QDTI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/settings-04.tsx b/src/components/icons/settings-04.tsx
index 591018aab..4a3429af7 100644
--- a/src/components/icons/settings-04.tsx
+++ b/src/components/icons/settings-04.tsx
@@ -11,6 +11,7 @@ const Settings04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KWB6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/share-01.tsx b/src/components/icons/share-01.tsx
index a0b7dc4c6..6c3d050e1 100644
--- a/src/components/icons/share-01.tsx
+++ b/src/components/icons/share-01.tsx
@@ -11,6 +11,7 @@ const Share01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TEyI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/share-02.tsx b/src/components/icons/share-02.tsx
index 4311d460d..020dbbbee 100644
--- a/src/components/icons/share-02.tsx
+++ b/src/components/icons/share-02.tsx
@@ -11,6 +11,7 @@ const Share02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KtKw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/share-03.tsx b/src/components/icons/share-03.tsx
index e3e39c816..6b6331238 100644
--- a/src/components/icons/share-03.tsx
+++ b/src/components/icons/share-03.tsx
@@ -11,6 +11,7 @@ const Share03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RatF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/share-04.tsx b/src/components/icons/share-04.tsx
index 73a61ca42..c56f7488e 100644
--- a/src/components/icons/share-04.tsx
+++ b/src/components/icons/share-04.tsx
@@ -11,6 +11,7 @@ const Share04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ApCm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/share-05.tsx b/src/components/icons/share-05.tsx
index 64e67ebcc..475ce1e44 100644
--- a/src/components/icons/share-05.tsx
+++ b/src/components/icons/share-05.tsx
@@ -11,6 +11,7 @@ const Share05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VBOd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/share-06.tsx b/src/components/icons/share-06.tsx
index 3b13446b1..9b57c649d 100644
--- a/src/components/icons/share-06.tsx
+++ b/src/components/icons/share-06.tsx
@@ -11,6 +11,7 @@ const Share06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="b3N5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/share-07.tsx b/src/components/icons/share-07.tsx
index feab26e78..b98b4eb31 100644
--- a/src/components/icons/share-07.tsx
+++ b/src/components/icons/share-07.tsx
@@ -11,6 +11,7 @@ const Share07 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bM1k"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-01.tsx b/src/components/icons/shield-01.tsx
index 7469c8878..f824c907f 100644
--- a/src/components/icons/shield-01.tsx
+++ b/src/components/icons/shield-01.tsx
@@ -11,6 +11,7 @@ const Shield01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_IU8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-02.tsx b/src/components/icons/shield-02.tsx
index 7cdff47f8..c86bf4aed 100644
--- a/src/components/icons/shield-02.tsx
+++ b/src/components/icons/shield-02.tsx
@@ -11,6 +11,7 @@ const Shield02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="VXsh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-03.tsx b/src/components/icons/shield-03.tsx
index 1f2dfac79..147b72805 100644
--- a/src/components/icons/shield-03.tsx
+++ b/src/components/icons/shield-03.tsx
@@ -11,6 +11,7 @@ const Shield03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Yim3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-dollar.tsx b/src/components/icons/shield-dollar.tsx
index b872356c9..7784c3ce2 100644
--- a/src/components/icons/shield-dollar.tsx
+++ b/src/components/icons/shield-dollar.tsx
@@ -11,6 +11,7 @@ const ShieldDollar = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="USVp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-off.tsx b/src/components/icons/shield-off.tsx
index 7c3bb9572..cb4052654 100644
--- a/src/components/icons/shield-off.tsx
+++ b/src/components/icons/shield-off.tsx
@@ -11,6 +11,7 @@ const ShieldOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-fp8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-plus.tsx b/src/components/icons/shield-plus.tsx
index 987803146..8e33595f4 100644
--- a/src/components/icons/shield-plus.tsx
+++ b/src/components/icons/shield-plus.tsx
@@ -11,6 +11,7 @@ const ShieldPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Eo-P"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-tick.tsx b/src/components/icons/shield-tick.tsx
index d1fb1f924..496a06992 100644
--- a/src/components/icons/shield-tick.tsx
+++ b/src/components/icons/shield-tick.tsx
@@ -11,6 +11,7 @@ const ShieldTick = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w7Cw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shield-zap.tsx b/src/components/icons/shield-zap.tsx
index be7feae12..1baf218ba 100644
--- a/src/components/icons/shield-zap.tsx
+++ b/src/components/icons/shield-zap.tsx
@@ -11,6 +11,7 @@ const ShieldZap = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="r8KG"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shopping-bag-01.tsx b/src/components/icons/shopping-bag-01.tsx
index 04ca1597a..e714945b5 100644
--- a/src/components/icons/shopping-bag-01.tsx
+++ b/src/components/icons/shopping-bag-01.tsx
@@ -11,6 +11,7 @@ const ShoppingBag01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1Tlx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shopping-bag-02.tsx b/src/components/icons/shopping-bag-02.tsx
index 856947780..badc83200 100644
--- a/src/components/icons/shopping-bag-02.tsx
+++ b/src/components/icons/shopping-bag-02.tsx
@@ -11,6 +11,7 @@ const ShoppingBag02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6683"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shopping-bag-03.tsx b/src/components/icons/shopping-bag-03.tsx
index 0c9e35b7c..dfd3dc311 100644
--- a/src/components/icons/shopping-bag-03.tsx
+++ b/src/components/icons/shopping-bag-03.tsx
@@ -11,6 +11,7 @@ const ShoppingBag03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kJLh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shopping-cart-01.tsx b/src/components/icons/shopping-cart-01.tsx
index f8d7337a5..8e50c6fbe 100644
--- a/src/components/icons/shopping-cart-01.tsx
+++ b/src/components/icons/shopping-cart-01.tsx
@@ -11,6 +11,7 @@ const ShoppingCart01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6C6a"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shopping-cart-02.tsx b/src/components/icons/shopping-cart-02.tsx
index bdbf20623..1c3bef50d 100644
--- a/src/components/icons/shopping-cart-02.tsx
+++ b/src/components/icons/shopping-cart-02.tsx
@@ -11,6 +11,7 @@ const ShoppingCart02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ubQQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shopping-cart-03.tsx b/src/components/icons/shopping-cart-03.tsx
index 10298b681..21f50052b 100644
--- a/src/components/icons/shopping-cart-03.tsx
+++ b/src/components/icons/shopping-cart-03.tsx
@@ -11,6 +11,7 @@ const ShoppingCart03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Eo-5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shuffle-01.tsx b/src/components/icons/shuffle-01.tsx
index 84d852855..8033af76b 100644
--- a/src/components/icons/shuffle-01.tsx
+++ b/src/components/icons/shuffle-01.tsx
@@ -11,6 +11,7 @@ const Shuffle01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CO5p"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/shuffle-02.tsx b/src/components/icons/shuffle-02.tsx
index 50d178719..2e9a67dc7 100644
--- a/src/components/icons/shuffle-02.tsx
+++ b/src/components/icons/shuffle-02.tsx
@@ -11,6 +11,7 @@ const Shuffle02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="x5X4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/signal-01.tsx b/src/components/icons/signal-01.tsx
index cf656d19f..79b431c54 100644
--- a/src/components/icons/signal-01.tsx
+++ b/src/components/icons/signal-01.tsx
@@ -11,6 +11,7 @@ const Signal01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="SSeJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/signal-02.tsx b/src/components/icons/signal-02.tsx
index 6df01ab1d..93ed301fc 100644
--- a/src/components/icons/signal-02.tsx
+++ b/src/components/icons/signal-02.tsx
@@ -11,6 +11,7 @@ const Signal02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CmvQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/signal-03.tsx b/src/components/icons/signal-03.tsx
index ac6f9a293..69a73ca1b 100644
--- a/src/components/icons/signal-03.tsx
+++ b/src/components/icons/signal-03.tsx
@@ -11,6 +11,7 @@ const Signal03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="C-Ty"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/simcard.tsx b/src/components/icons/simcard.tsx
index 49824ec86..d33286c87 100644
--- a/src/components/icons/simcard.tsx
+++ b/src/components/icons/simcard.tsx
@@ -11,6 +11,7 @@ const Simcard = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3FzS"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/skew.tsx b/src/components/icons/skew.tsx
index 453d3e09a..e52efed32 100644
--- a/src/components/icons/skew.tsx
+++ b/src/components/icons/skew.tsx
@@ -11,6 +11,7 @@ const Skew = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5E6n"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/skip-back.tsx b/src/components/icons/skip-back.tsx
index c618c6259..59f61584b 100644
--- a/src/components/icons/skip-back.tsx
+++ b/src/components/icons/skip-back.tsx
@@ -11,6 +11,7 @@ const SkipBack = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="YddV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/skip-forward.tsx b/src/components/icons/skip-forward.tsx
index 53bad260d..3cc2d8fc1 100644
--- a/src/components/icons/skip-forward.tsx
+++ b/src/components/icons/skip-forward.tsx
@@ -11,6 +11,7 @@ const SkipForward = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="d61T"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/slash-circle-01.tsx b/src/components/icons/slash-circle-01.tsx
index bf190b50e..69706f44f 100644
--- a/src/components/icons/slash-circle-01.tsx
+++ b/src/components/icons/slash-circle-01.tsx
@@ -11,6 +11,7 @@ const SlashCircle01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eslm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/slash-circle-02.tsx b/src/components/icons/slash-circle-02.tsx
index 4e12edcd2..7dcd09e0c 100644
--- a/src/components/icons/slash-circle-02.tsx
+++ b/src/components/icons/slash-circle-02.tsx
@@ -11,6 +11,7 @@ const SlashCircle02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="r1W_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/slash-divider.tsx b/src/components/icons/slash-divider.tsx
index a961b839f..fa028b60d 100644
--- a/src/components/icons/slash-divider.tsx
+++ b/src/components/icons/slash-divider.tsx
@@ -11,6 +11,7 @@ const SlashDivider = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dN92"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/slash-octagon.tsx b/src/components/icons/slash-octagon.tsx
index 222fda500..1f7a776f4 100644
--- a/src/components/icons/slash-octagon.tsx
+++ b/src/components/icons/slash-octagon.tsx
@@ -11,6 +11,7 @@ const SlashOctagon = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KmrU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sliders-01.tsx b/src/components/icons/sliders-01.tsx
index 386dd629c..a3c8ea2c1 100644
--- a/src/components/icons/sliders-01.tsx
+++ b/src/components/icons/sliders-01.tsx
@@ -11,6 +11,7 @@ const Sliders01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IVlw"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sliders-02.tsx b/src/components/icons/sliders-02.tsx
index 05e330bfc..5846e7012 100644
--- a/src/components/icons/sliders-02.tsx
+++ b/src/components/icons/sliders-02.tsx
@@ -11,6 +11,7 @@ const Sliders02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WpGa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sliders-03.tsx b/src/components/icons/sliders-03.tsx
index a41b097a8..a7df2e768 100644
--- a/src/components/icons/sliders-03.tsx
+++ b/src/components/icons/sliders-03.tsx
@@ -11,6 +11,7 @@ const Sliders03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="mn2u"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sliders-04.tsx b/src/components/icons/sliders-04.tsx
index 6b3e549ce..5ddd94d7e 100644
--- a/src/components/icons/sliders-04.tsx
+++ b/src/components/icons/sliders-04.tsx
@@ -11,6 +11,7 @@ const Sliders04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4RnN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/snowflake-01.tsx b/src/components/icons/snowflake-01.tsx
index 5dd984493..d8f0e2e1b 100644
--- a/src/components/icons/snowflake-01.tsx
+++ b/src/components/icons/snowflake-01.tsx
@@ -11,6 +11,7 @@ const Snowflake01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UAlb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/snowflake-02.tsx b/src/components/icons/snowflake-02.tsx
index 633171644..4ceaf00c2 100644
--- a/src/components/icons/snowflake-02.tsx
+++ b/src/components/icons/snowflake-02.tsx
@@ -11,6 +11,7 @@ const Snowflake02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0r6w"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/spacing-height-01.tsx b/src/components/icons/spacing-height-01.tsx
index 07dd897e7..8c6ca5a26 100644
--- a/src/components/icons/spacing-height-01.tsx
+++ b/src/components/icons/spacing-height-01.tsx
@@ -11,6 +11,7 @@ const SpacingHeight01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="G7Cm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/spacing-height-02.tsx b/src/components/icons/spacing-height-02.tsx
index caa24fed3..6e6f4c9aa 100644
--- a/src/components/icons/spacing-height-02.tsx
+++ b/src/components/icons/spacing-height-02.tsx
@@ -11,6 +11,7 @@ const SpacingHeight02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wvVO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/spacing-width-01.tsx b/src/components/icons/spacing-width-01.tsx
index 582c1dcf1..3c5c26f42 100644
--- a/src/components/icons/spacing-width-01.tsx
+++ b/src/components/icons/spacing-width-01.tsx
@@ -11,6 +11,7 @@ const SpacingWidth01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lJLU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/spacing-width-02.tsx b/src/components/icons/spacing-width-02.tsx
index d21b42ba8..616a9bc11 100644
--- a/src/components/icons/spacing-width-02.tsx
+++ b/src/components/icons/spacing-width-02.tsx
@@ -11,6 +11,7 @@ const SpacingWidth02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KyPg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/speaker-01.tsx b/src/components/icons/speaker-01.tsx
index 54145c050..44cd2bf1d 100644
--- a/src/components/icons/speaker-01.tsx
+++ b/src/components/icons/speaker-01.tsx
@@ -11,6 +11,7 @@ const Speaker01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="vURN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/speaker-02.tsx b/src/components/icons/speaker-02.tsx
index c61dcf17b..4a88ef882 100644
--- a/src/components/icons/speaker-02.tsx
+++ b/src/components/icons/speaker-02.tsx
@@ -11,6 +11,7 @@ const Speaker02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="4bRV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/speaker-03.tsx b/src/components/icons/speaker-03.tsx
index 570e824ca..6f071e92c 100644
--- a/src/components/icons/speaker-03.tsx
+++ b/src/components/icons/speaker-03.tsx
@@ -11,6 +11,7 @@ const Speaker03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ys01"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/speedometer-01.tsx b/src/components/icons/speedometer-01.tsx
index 9ca5d6e09..58a470ce4 100644
--- a/src/components/icons/speedometer-01.tsx
+++ b/src/components/icons/speedometer-01.tsx
@@ -11,6 +11,7 @@ const Speedometer01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0sOq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/speedometer-02.tsx b/src/components/icons/speedometer-02.tsx
index 3a1bd6e1a..c2afa4d10 100644
--- a/src/components/icons/speedometer-02.tsx
+++ b/src/components/icons/speedometer-02.tsx
@@ -11,6 +11,7 @@ const Speedometer02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LTm6"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/speedometer-03.tsx b/src/components/icons/speedometer-03.tsx
index ca11fa131..270d32015 100644
--- a/src/components/icons/speedometer-03.tsx
+++ b/src/components/icons/speedometer-03.tsx
@@ -11,6 +11,7 @@ const Speedometer03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UBfU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/speedometer-04.tsx b/src/components/icons/speedometer-04.tsx
index 767a7314e..4638bd192 100644
--- a/src/components/icons/speedometer-04.tsx
+++ b/src/components/icons/speedometer-04.tsx
@@ -11,6 +11,7 @@ const Speedometer04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="txsx"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/square.tsx b/src/components/icons/square.tsx
index 6bb8474e8..69b18951b 100644
--- a/src/components/icons/square.tsx
+++ b/src/components/icons/square.tsx
@@ -11,6 +11,7 @@ const Square = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fCLU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/stand.tsx b/src/components/icons/stand.tsx
index 59306b1f8..0c73ce005 100644
--- a/src/components/icons/stand.tsx
+++ b/src/components/icons/stand.tsx
@@ -11,6 +11,7 @@ const Stand = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kPlh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/star-01.tsx b/src/components/icons/star-01.tsx
index abe4085c3..4af82d38d 100644
--- a/src/components/icons/star-01.tsx
+++ b/src/components/icons/star-01.tsx
@@ -11,6 +11,7 @@ const Star01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uyf7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/star-02.tsx b/src/components/icons/star-02.tsx
index 029f8c0b1..b61a19cb6 100644
--- a/src/components/icons/star-02.tsx
+++ b/src/components/icons/star-02.tsx
@@ -11,6 +11,7 @@ const Star02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3LY_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/star-03.tsx b/src/components/icons/star-03.tsx
index 850621a52..0863bfa3d 100644
--- a/src/components/icons/star-03.tsx
+++ b/src/components/icons/star-03.tsx
@@ -11,6 +11,7 @@ const Star03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f1D5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/star-04.tsx b/src/components/icons/star-04.tsx
index b1aace080..c477d0cdb 100644
--- a/src/components/icons/star-04.tsx
+++ b/src/components/icons/star-04.tsx
@@ -11,6 +11,7 @@ const Star04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="evmq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/star-05.tsx b/src/components/icons/star-05.tsx
index e9fcfb494..bae587303 100644
--- a/src/components/icons/star-05.tsx
+++ b/src/components/icons/star-05.tsx
@@ -11,6 +11,7 @@ const Star05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RgAg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/star-06.tsx b/src/components/icons/star-06.tsx
index 9d0816985..f4f9a288b 100644
--- a/src/components/icons/star-06.tsx
+++ b/src/components/icons/star-06.tsx
@@ -11,6 +11,7 @@ const Star06 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QOg7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/star-07.tsx b/src/components/icons/star-07.tsx
index cd278a2d6..4bdfbeeeb 100644
--- a/src/components/icons/star-07.tsx
+++ b/src/components/icons/star-07.tsx
@@ -11,6 +11,7 @@ const Star07 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="fjSY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/stars-01.tsx b/src/components/icons/stars-01.tsx
index 021aadb42..5bbce620c 100644
--- a/src/components/icons/stars-01.tsx
+++ b/src/components/icons/stars-01.tsx
@@ -11,6 +11,7 @@ const Stars01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-8Jc"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/stars-02.tsx b/src/components/icons/stars-02.tsx
index b3cd567b1..4739721fe 100644
--- a/src/components/icons/stars-02.tsx
+++ b/src/components/icons/stars-02.tsx
@@ -11,6 +11,7 @@ const Stars02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QOWm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/stars-03.tsx b/src/components/icons/stars-03.tsx
index 67c13f4e5..462b0721a 100644
--- a/src/components/icons/stars-03.tsx
+++ b/src/components/icons/stars-03.tsx
@@ -11,6 +11,7 @@ const Stars03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gQ79"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sticker-circle.tsx b/src/components/icons/sticker-circle.tsx
index 8ba3a8f12..e1c290252 100644
--- a/src/components/icons/sticker-circle.tsx
+++ b/src/components/icons/sticker-circle.tsx
@@ -11,6 +11,7 @@ const StickerCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-LRe"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sticker-square.tsx b/src/components/icons/sticker-square.tsx
index c5b9a8273..8e4a95e2b 100644
--- a/src/components/icons/sticker-square.tsx
+++ b/src/components/icons/sticker-square.tsx
@@ -11,6 +11,7 @@ const StickerSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-dXI"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/stop-circle.tsx b/src/components/icons/stop-circle.tsx
index 617cb06cc..00e314413 100644
--- a/src/components/icons/stop-circle.tsx
+++ b/src/components/icons/stop-circle.tsx
@@ -11,6 +11,7 @@ const StopCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zMtk"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/stop-square.tsx b/src/components/icons/stop-square.tsx
index 69fd12866..cd5dd63df 100644
--- a/src/components/icons/stop-square.tsx
+++ b/src/components/icons/stop-square.tsx
@@ -11,6 +11,7 @@ const StopSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="stoz"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/stop.tsx b/src/components/icons/stop.tsx
index cf8c17ace..8198b14b4 100644
--- a/src/components/icons/stop.tsx
+++ b/src/components/icons/stop.tsx
@@ -11,6 +11,7 @@ const Stop = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Rr76"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/strikethrough-01.tsx b/src/components/icons/strikethrough-01.tsx
index 4259253b0..bbb09e6e7 100644
--- a/src/components/icons/strikethrough-01.tsx
+++ b/src/components/icons/strikethrough-01.tsx
@@ -11,6 +11,7 @@ const Strikethrough01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Prbt"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/strikethrough-02.tsx b/src/components/icons/strikethrough-02.tsx
index 898874851..938b1c9e9 100644
--- a/src/components/icons/strikethrough-02.tsx
+++ b/src/components/icons/strikethrough-02.tsx
@@ -11,6 +11,7 @@ const Strikethrough02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="dQ0q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/strikethrough-square.tsx b/src/components/icons/strikethrough-square.tsx
index 1b96bba3d..68f46d86d 100644
--- a/src/components/icons/strikethrough-square.tsx
+++ b/src/components/icons/strikethrough-square.tsx
@@ -11,6 +11,7 @@ const StrikethroughSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CREa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/subscript.tsx b/src/components/icons/subscript.tsx
index 3e916c158..209e75d4c 100644
--- a/src/components/icons/subscript.tsx
+++ b/src/components/icons/subscript.tsx
@@ -11,6 +11,7 @@ const Subscript = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="865T"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sun-setting-01.tsx b/src/components/icons/sun-setting-01.tsx
index 7c2014f79..81d325e78 100644
--- a/src/components/icons/sun-setting-01.tsx
+++ b/src/components/icons/sun-setting-01.tsx
@@ -11,6 +11,7 @@ const SunSetting01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="0EUd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sun-setting-02.tsx b/src/components/icons/sun-setting-02.tsx
index 322d27995..2f000415d 100644
--- a/src/components/icons/sun-setting-02.tsx
+++ b/src/components/icons/sun-setting-02.tsx
@@ -11,6 +11,7 @@ const SunSetting02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="L5bl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sun-setting-03.tsx b/src/components/icons/sun-setting-03.tsx
index 7df60aba5..515bc9e7f 100644
--- a/src/components/icons/sun-setting-03.tsx
+++ b/src/components/icons/sun-setting-03.tsx
@@ -11,6 +11,7 @@ const SunSetting03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2ZMb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sun.tsx b/src/components/icons/sun.tsx
index f7b2f71d1..fce9ae081 100644
--- a/src/components/icons/sun.tsx
+++ b/src/components/icons/sun.tsx
@@ -11,6 +11,7 @@ const Sun = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wehd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sunrise.tsx b/src/components/icons/sunrise.tsx
index 2a7a2b31b..8a5a37256 100644
--- a/src/components/icons/sunrise.tsx
+++ b/src/components/icons/sunrise.tsx
@@ -11,6 +11,7 @@ const Sunrise = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="OMsF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/sunset.tsx b/src/components/icons/sunset.tsx
index 9f8a87c0b..65bcfeee0 100644
--- a/src/components/icons/sunset.tsx
+++ b/src/components/icons/sunset.tsx
@@ -11,6 +11,7 @@ const Sunset = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1QS7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/switch-horizontal-01.tsx b/src/components/icons/switch-horizontal-01.tsx
index 9917cfb7e..970e1a9bb 100644
--- a/src/components/icons/switch-horizontal-01.tsx
+++ b/src/components/icons/switch-horizontal-01.tsx
@@ -11,6 +11,7 @@ const SwitchHorizontal01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="P9M_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/switch-horizontal-02.tsx b/src/components/icons/switch-horizontal-02.tsx
index 6bfa5126f..b7188337e 100644
--- a/src/components/icons/switch-horizontal-02.tsx
+++ b/src/components/icons/switch-horizontal-02.tsx
@@ -11,6 +11,7 @@ const SwitchHorizontal02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="U7dS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/switch-vertical-01.tsx b/src/components/icons/switch-vertical-01.tsx
index 467f752b7..a6ad9fdc3 100644
--- a/src/components/icons/switch-vertical-01.tsx
+++ b/src/components/icons/switch-vertical-01.tsx
@@ -11,6 +11,7 @@ const SwitchVertical01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="lfXd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/switch-vertical-02.tsx b/src/components/icons/switch-vertical-02.tsx
index eae445ee3..15d8dd9b0 100644
--- a/src/components/icons/switch-vertical-02.tsx
+++ b/src/components/icons/switch-vertical-02.tsx
@@ -11,6 +11,7 @@ const SwitchVertical02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UGgd"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/table.tsx b/src/components/icons/table.tsx
index 4a2aaec25..60c7e0e25 100644
--- a/src/components/icons/table.tsx
+++ b/src/components/icons/table.tsx
@@ -11,6 +11,7 @@ const Table = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="v92V"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tablet-01.tsx b/src/components/icons/tablet-01.tsx
index a97955e4a..9ea866328 100644
--- a/src/components/icons/tablet-01.tsx
+++ b/src/components/icons/tablet-01.tsx
@@ -11,6 +11,7 @@ const Tablet01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Zpgh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tablet-02.tsx b/src/components/icons/tablet-02.tsx
index 958756d81..dfeca4a1e 100644
--- a/src/components/icons/tablet-02.tsx
+++ b/src/components/icons/tablet-02.tsx
@@ -11,6 +11,7 @@ const Tablet02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XYYZ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tag-01.tsx b/src/components/icons/tag-01.tsx
index 9af24a331..21d683116 100644
--- a/src/components/icons/tag-01.tsx
+++ b/src/components/icons/tag-01.tsx
@@ -11,6 +11,7 @@ const Tag01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="w8SV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tag-02.tsx b/src/components/icons/tag-02.tsx
index 5ee951e7b..52f69a98e 100644
--- a/src/components/icons/tag-02.tsx
+++ b/src/components/icons/tag-02.tsx
@@ -11,6 +11,7 @@ const Tag02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hrdc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tag-03.tsx b/src/components/icons/tag-03.tsx
index 849738ddf..e35e6bc4a 100644
--- a/src/components/icons/tag-03.tsx
+++ b/src/components/icons/tag-03.tsx
@@ -11,6 +11,7 @@ const Tag03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EADs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/target-01.tsx b/src/components/icons/target-01.tsx
index 46bc8bd62..323d08632 100644
--- a/src/components/icons/target-01.tsx
+++ b/src/components/icons/target-01.tsx
@@ -11,6 +11,7 @@ const Target01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="b3mF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/target-02.tsx b/src/components/icons/target-02.tsx
index 9f5f5ea07..8a41d8b6d 100644
--- a/src/components/icons/target-02.tsx
+++ b/src/components/icons/target-02.tsx
@@ -11,6 +11,7 @@ const Target02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_zaS"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/target-03.tsx b/src/components/icons/target-03.tsx
index 20290ea1b..a07fe2977 100644
--- a/src/components/icons/target-03.tsx
+++ b/src/components/icons/target-03.tsx
@@ -11,6 +11,7 @@ const Target03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ttix"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/target-04.tsx b/src/components/icons/target-04.tsx
index f9763e4e8..61c6c0b6d 100644
--- a/src/components/icons/target-04.tsx
+++ b/src/components/icons/target-04.tsx
@@ -11,6 +11,7 @@ const Target04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="nhq4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/target-05.tsx b/src/components/icons/target-05.tsx
index 662301af7..5e2e03bd2 100644
--- a/src/components/icons/target-05.tsx
+++ b/src/components/icons/target-05.tsx
@@ -11,6 +11,7 @@ const Target05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DjB9"
>,
,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/telescope.tsx b/src/components/icons/telescope.tsx
index 12d473768..cfa4e3ea7 100644
--- a/src/components/icons/telescope.tsx
+++ b/src/components/icons/telescope.tsx
@@ -11,6 +11,7 @@ const Telescope = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-eks"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/terminal-browser.tsx b/src/components/icons/terminal-browser.tsx
index 381a73446..bc6b2c330 100644
--- a/src/components/icons/terminal-browser.tsx
+++ b/src/components/icons/terminal-browser.tsx
@@ -11,6 +11,7 @@ const TerminalBrowser = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RDEj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/terminal-circle.tsx b/src/components/icons/terminal-circle.tsx
index c4ea91de3..cc6989beb 100644
--- a/src/components/icons/terminal-circle.tsx
+++ b/src/components/icons/terminal-circle.tsx
@@ -11,6 +11,7 @@ const TerminalCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RQ4q"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/terminal-square.tsx b/src/components/icons/terminal-square.tsx
index dd5fe0100..c0ba9f5d8 100644
--- a/src/components/icons/terminal-square.tsx
+++ b/src/components/icons/terminal-square.tsx
@@ -11,6 +11,7 @@ const TerminalSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pRLY"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/terminal.tsx b/src/components/icons/terminal.tsx
index f7919d8ba..12a07ae1b 100644
--- a/src/components/icons/terminal.tsx
+++ b/src/components/icons/terminal.tsx
@@ -11,6 +11,7 @@ const Terminal = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3I0k"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/text-input.tsx b/src/components/icons/text-input.tsx
index 182fab0d6..e4aae879b 100644
--- a/src/components/icons/text-input.tsx
+++ b/src/components/icons/text-input.tsx
@@ -11,6 +11,7 @@ const TextInput = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="x6h9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/thermometer-01.tsx b/src/components/icons/thermometer-01.tsx
index 1691a404b..a07d23b39 100644
--- a/src/components/icons/thermometer-01.tsx
+++ b/src/components/icons/thermometer-01.tsx
@@ -11,6 +11,7 @@ const Thermometer01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5xCe"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/thermometer-02.tsx b/src/components/icons/thermometer-02.tsx
index 23b911f01..05da4ede5 100644
--- a/src/components/icons/thermometer-02.tsx
+++ b/src/components/icons/thermometer-02.tsx
@@ -11,6 +11,7 @@ const Thermometer02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pq8b"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/thermometer-03.tsx b/src/components/icons/thermometer-03.tsx
index c4a786619..dd6ac50e4 100644
--- a/src/components/icons/thermometer-03.tsx
+++ b/src/components/icons/thermometer-03.tsx
@@ -11,6 +11,7 @@ const Thermometer03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Yq3h"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/thermometer-cold.tsx b/src/components/icons/thermometer-cold.tsx
index ba8b75e6f..7620a787b 100644
--- a/src/components/icons/thermometer-cold.tsx
+++ b/src/components/icons/thermometer-cold.tsx
@@ -11,6 +11,7 @@ const ThermometerCold = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="c90g"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/thermometer-warm.tsx b/src/components/icons/thermometer-warm.tsx
index ac6a5bb07..a13300855 100644
--- a/src/components/icons/thermometer-warm.tsx
+++ b/src/components/icons/thermometer-warm.tsx
@@ -11,6 +11,7 @@ const ThermometerWarm = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QPOD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/thumbs-down.tsx b/src/components/icons/thumbs-down.tsx
index 167c68e40..7dee91a50 100644
--- a/src/components/icons/thumbs-down.tsx
+++ b/src/components/icons/thumbs-down.tsx
@@ -11,6 +11,7 @@ const ThumbsDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qigs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/thumbs-up.tsx b/src/components/icons/thumbs-up.tsx
index 33b167a72..5ff7d6c74 100644
--- a/src/components/icons/thumbs-up.tsx
+++ b/src/components/icons/thumbs-up.tsx
@@ -11,6 +11,7 @@ const ThumbsUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8cIH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/ticket-01.tsx b/src/components/icons/ticket-01.tsx
index 4fe94f576..5a6725dc9 100644
--- a/src/components/icons/ticket-01.tsx
+++ b/src/components/icons/ticket-01.tsx
@@ -11,6 +11,7 @@ const Ticket01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3Guc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/ticket-02.tsx b/src/components/icons/ticket-02.tsx
index 5fb630c19..5845b62f4 100644
--- a/src/components/icons/ticket-02.tsx
+++ b/src/components/icons/ticket-02.tsx
@@ -11,6 +11,7 @@ const Ticket02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hRUq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/toggle-01-left.tsx b/src/components/icons/toggle-01-left.tsx
index 7149ebe7b..848fe522d 100644
--- a/src/components/icons/toggle-01-left.tsx
+++ b/src/components/icons/toggle-01-left.tsx
@@ -11,6 +11,7 @@ const Toggle01Left = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="O6rO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/toggle-01-right.tsx b/src/components/icons/toggle-01-right.tsx
index 6759a36e2..90e60a38a 100644
--- a/src/components/icons/toggle-01-right.tsx
+++ b/src/components/icons/toggle-01-right.tsx
@@ -11,6 +11,7 @@ const Toggle01Right = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XRLJ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/toggle-02-left.tsx b/src/components/icons/toggle-02-left.tsx
index cadbbed25..54b987d42 100644
--- a/src/components/icons/toggle-02-left.tsx
+++ b/src/components/icons/toggle-02-left.tsx
@@ -11,6 +11,7 @@ const Toggle02Left = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JAP4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/toggle-02-right.tsx b/src/components/icons/toggle-02-right.tsx
index 8436e844f..2b9bef270 100644
--- a/src/components/icons/toggle-02-right.tsx
+++ b/src/components/icons/toggle-02-right.tsx
@@ -11,6 +11,7 @@ const Toggle02Right = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Uqrk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/toggle-03-left.tsx b/src/components/icons/toggle-03-left.tsx
index 3036caec6..79e83e980 100644
--- a/src/components/icons/toggle-03-left.tsx
+++ b/src/components/icons/toggle-03-left.tsx
@@ -11,6 +11,7 @@ const Toggle03Left = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="izmu"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/toggle-03-right.tsx b/src/components/icons/toggle-03-right.tsx
index 8e4960dff..d57deb1a7 100644
--- a/src/components/icons/toggle-03-right.tsx
+++ b/src/components/icons/toggle-03-right.tsx
@@ -11,6 +11,7 @@ const Toggle03Right = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="HUj1"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tool-01.tsx b/src/components/icons/tool-01.tsx
index 91c57e4ae..a2a5a226b 100644
--- a/src/components/icons/tool-01.tsx
+++ b/src/components/icons/tool-01.tsx
@@ -11,6 +11,7 @@ const Tool01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="oKLo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tool-02.tsx b/src/components/icons/tool-02.tsx
index 6233de9cf..2785368b8 100644
--- a/src/components/icons/tool-02.tsx
+++ b/src/components/icons/tool-02.tsx
@@ -11,6 +11,7 @@ const Tool02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yG54"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/train.tsx b/src/components/icons/train.tsx
index 154eeba27..2799552d1 100644
--- a/src/components/icons/train.tsx
+++ b/src/components/icons/train.tsx
@@ -11,6 +11,7 @@ const Train = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="GxZq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tram.tsx b/src/components/icons/tram.tsx
index 0dcd3ca1e..0a7fb556b 100644
--- a/src/components/icons/tram.tsx
+++ b/src/components/icons/tram.tsx
@@ -11,6 +11,7 @@ const Tram = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Hfaq"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/transform.tsx b/src/components/icons/transform.tsx
index 83947d281..ea5ab0ea0 100644
--- a/src/components/icons/transform.tsx
+++ b/src/components/icons/transform.tsx
@@ -11,6 +11,7 @@ const Transform = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eFnK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/translate-01.tsx b/src/components/icons/translate-01.tsx
index 2f18c2ea8..7acd11ca1 100644
--- a/src/components/icons/translate-01.tsx
+++ b/src/components/icons/translate-01.tsx
@@ -11,6 +11,7 @@ const Translate01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="oUgH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/translate-02.tsx b/src/components/icons/translate-02.tsx
index 215fb1508..decb7f005 100644
--- a/src/components/icons/translate-02.tsx
+++ b/src/components/icons/translate-02.tsx
@@ -11,6 +11,7 @@ const Translate02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Yydp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trash-01.tsx b/src/components/icons/trash-01.tsx
index cf6f96bf4..98b62cf1a 100644
--- a/src/components/icons/trash-01.tsx
+++ b/src/components/icons/trash-01.tsx
@@ -11,6 +11,7 @@ const Trash01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Az3x"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trash-02.tsx b/src/components/icons/trash-02.tsx
index 528cbbcef..be77b136b 100644
--- a/src/components/icons/trash-02.tsx
+++ b/src/components/icons/trash-02.tsx
@@ -11,6 +11,7 @@ const Trash02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FPyN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trash-03.tsx b/src/components/icons/trash-03.tsx
index e9a2c3cc5..ecf0e8e2f 100644
--- a/src/components/icons/trash-03.tsx
+++ b/src/components/icons/trash-03.tsx
@@ -11,6 +11,7 @@ const Trash03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ryOo"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trash-04.tsx b/src/components/icons/trash-04.tsx
index c24b4fc80..a8373d11f 100644
--- a/src/components/icons/trash-04.tsx
+++ b/src/components/icons/trash-04.tsx
@@ -11,6 +11,7 @@ const Trash04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="J7Jl"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trend-down-01.tsx b/src/components/icons/trend-down-01.tsx
index d735aa172..09a273a71 100644
--- a/src/components/icons/trend-down-01.tsx
+++ b/src/components/icons/trend-down-01.tsx
@@ -11,6 +11,7 @@ const TrendDown01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="oXfV"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trend-down-02.tsx b/src/components/icons/trend-down-02.tsx
index cda867d55..ab1480e0f 100644
--- a/src/components/icons/trend-down-02.tsx
+++ b/src/components/icons/trend-down-02.tsx
@@ -11,6 +11,7 @@ const TrendDown02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="WbXa"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trend-up-01.tsx b/src/components/icons/trend-up-01.tsx
index b5943baf7..03769c5b2 100644
--- a/src/components/icons/trend-up-01.tsx
+++ b/src/components/icons/trend-up-01.tsx
@@ -11,6 +11,7 @@ const TrendUp01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wK8X"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trend-up-02.tsx b/src/components/icons/trend-up-02.tsx
index 58e751828..337a0ba4b 100644
--- a/src/components/icons/trend-up-02.tsx
+++ b/src/components/icons/trend-up-02.tsx
@@ -11,6 +11,7 @@ const TrendUp02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2i6R"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/triangle.tsx b/src/components/icons/triangle.tsx
index b5823d655..aee481be3 100644
--- a/src/components/icons/triangle.tsx
+++ b/src/components/icons/triangle.tsx
@@ -11,6 +11,7 @@ const Triangle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7om9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trophy-01.tsx b/src/components/icons/trophy-01.tsx
index 6e68f9113..49d720464 100644
--- a/src/components/icons/trophy-01.tsx
+++ b/src/components/icons/trophy-01.tsx
@@ -11,6 +11,7 @@ const Trophy01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RRk2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/trophy-02.tsx b/src/components/icons/trophy-02.tsx
index de8896f41..8adcd6978 100644
--- a/src/components/icons/trophy-02.tsx
+++ b/src/components/icons/trophy-02.tsx
@@ -11,6 +11,7 @@ const Trophy02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9kBX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/truck-01.tsx b/src/components/icons/truck-01.tsx
index 78a45e5bb..bba2132e7 100644
--- a/src/components/icons/truck-01.tsx
+++ b/src/components/icons/truck-01.tsx
@@ -11,6 +11,7 @@ const Truck01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QOtU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/truck-02.tsx b/src/components/icons/truck-02.tsx
index 7a973dea4..369eeacb7 100644
--- a/src/components/icons/truck-02.tsx
+++ b/src/components/icons/truck-02.tsx
@@ -11,6 +11,7 @@ const Truck02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="IMg8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tv-01.tsx b/src/components/icons/tv-01.tsx
index ad030c660..c0f8412a7 100644
--- a/src/components/icons/tv-01.tsx
+++ b/src/components/icons/tv-01.tsx
@@ -11,6 +11,7 @@ const Tv01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="NiHX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tv-02.tsx b/src/components/icons/tv-02.tsx
index ec804bccd..3cff0331b 100644
--- a/src/components/icons/tv-02.tsx
+++ b/src/components/icons/tv-02.tsx
@@ -11,6 +11,7 @@ const Tv02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zb-G"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/tv-03.tsx b/src/components/icons/tv-03.tsx
index 3432ee94a..2410c101a 100644
--- a/src/components/icons/tv-03.tsx
+++ b/src/components/icons/tv-03.tsx
@@ -11,6 +11,7 @@ const Tv03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Ygb_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/type-01.tsx b/src/components/icons/type-01.tsx
index 38eaa01f5..16c810cad 100644
--- a/src/components/icons/type-01.tsx
+++ b/src/components/icons/type-01.tsx
@@ -11,6 +11,7 @@ const Type01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="m1X2"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/type-02.tsx b/src/components/icons/type-02.tsx
index da2ce6486..3dcbac25b 100644
--- a/src/components/icons/type-02.tsx
+++ b/src/components/icons/type-02.tsx
@@ -11,6 +11,7 @@ const Type02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="eUqE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/type-square.tsx b/src/components/icons/type-square.tsx
index 60378a13b..11d7646ae 100644
--- a/src/components/icons/type-square.tsx
+++ b/src/components/icons/type-square.tsx
@@ -11,6 +11,7 @@ const TypeSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FSf9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/type-strikethrough-01.tsx b/src/components/icons/type-strikethrough-01.tsx
index 7683d9b9b..e394b3dfb 100644
--- a/src/components/icons/type-strikethrough-01.tsx
+++ b/src/components/icons/type-strikethrough-01.tsx
@@ -11,6 +11,7 @@ const TypeStrikethrough01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="sYuD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/type-strikethrough-02.tsx b/src/components/icons/type-strikethrough-02.tsx
index b205a6df9..7b2836f8e 100644
--- a/src/components/icons/type-strikethrough-02.tsx
+++ b/src/components/icons/type-strikethrough-02.tsx
@@ -11,6 +11,7 @@ const TypeStrikethrough02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TAH8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/umbrella-01.tsx b/src/components/icons/umbrella-01.tsx
index 1f7b9a329..895f6bec5 100644
--- a/src/components/icons/umbrella-01.tsx
+++ b/src/components/icons/umbrella-01.tsx
@@ -11,6 +11,7 @@ const Umbrella01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XcSs"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/umbrella-02.tsx b/src/components/icons/umbrella-02.tsx
index 6e92e0a72..22756ae04 100644
--- a/src/components/icons/umbrella-02.tsx
+++ b/src/components/icons/umbrella-02.tsx
@@ -11,6 +11,7 @@ const Umbrella02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="7bfT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/umbrella-03.tsx b/src/components/icons/umbrella-03.tsx
index 3fd95a50e..c4dadccf2 100644
--- a/src/components/icons/umbrella-03.tsx
+++ b/src/components/icons/umbrella-03.tsx
@@ -11,6 +11,7 @@ const Umbrella03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3uPh"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/underline-01.tsx b/src/components/icons/underline-01.tsx
index fb514571f..98731fc9e 100644
--- a/src/components/icons/underline-01.tsx
+++ b/src/components/icons/underline-01.tsx
@@ -11,6 +11,7 @@ const Underline01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XLST"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/underline-02.tsx b/src/components/icons/underline-02.tsx
index b4111fcd8..212c7692a 100644
--- a/src/components/icons/underline-02.tsx
+++ b/src/components/icons/underline-02.tsx
@@ -11,6 +11,7 @@ const Underline02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="B7qj"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/underline-square.tsx b/src/components/icons/underline-square.tsx
index 5da6b1f1b..92cc25610 100644
--- a/src/components/icons/underline-square.tsx
+++ b/src/components/icons/underline-square.tsx
@@ -11,6 +11,7 @@ const UnderlineSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JQ-7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/upload-01.tsx b/src/components/icons/upload-01.tsx
index 9db08b37b..8ff5644c6 100644
--- a/src/components/icons/upload-01.tsx
+++ b/src/components/icons/upload-01.tsx
@@ -11,6 +11,7 @@ const Upload01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="DYi3"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/upload-02.tsx b/src/components/icons/upload-02.tsx
index 600956a36..aa24b78bb 100644
--- a/src/components/icons/upload-02.tsx
+++ b/src/components/icons/upload-02.tsx
@@ -11,6 +11,7 @@ const Upload02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="W6KW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/upload-03.tsx b/src/components/icons/upload-03.tsx
index 1512b8ad8..20d20de16 100644
--- a/src/components/icons/upload-03.tsx
+++ b/src/components/icons/upload-03.tsx
@@ -11,6 +11,7 @@ const Upload03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hIir"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/upload-04.tsx b/src/components/icons/upload-04.tsx
index 6e22ce825..8a22d10f8 100644
--- a/src/components/icons/upload-04.tsx
+++ b/src/components/icons/upload-04.tsx
@@ -11,6 +11,7 @@ const Upload04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="z09J"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/upload-cloud-01.tsx b/src/components/icons/upload-cloud-01.tsx
index 91280a7d6..c3c77fbc4 100644
--- a/src/components/icons/upload-cloud-01.tsx
+++ b/src/components/icons/upload-cloud-01.tsx
@@ -11,6 +11,7 @@ const UploadCloud01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="moyK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/upload-cloud-02.tsx b/src/components/icons/upload-cloud-02.tsx
index d059ca8dc..86fbf3029 100644
--- a/src/components/icons/upload-cloud-02.tsx
+++ b/src/components/icons/upload-cloud-02.tsx
@@ -11,6 +11,7 @@ const UploadCloud02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="RUVn"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/usb-flash-drive.tsx b/src/components/icons/usb-flash-drive.tsx
index 60dd31e8d..9b8dc08cc 100644
--- a/src/components/icons/usb-flash-drive.tsx
+++ b/src/components/icons/usb-flash-drive.tsx
@@ -11,6 +11,7 @@ const UsbFlashDrive = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Zl4o"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-01.tsx b/src/components/icons/user-01.tsx
index a42e43d6e..e9d3674da 100644
--- a/src/components/icons/user-01.tsx
+++ b/src/components/icons/user-01.tsx
@@ -11,6 +11,7 @@ const User01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5Oop"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-02.tsx b/src/components/icons/user-02.tsx
index 89cf04d15..42f371d0f 100644
--- a/src/components/icons/user-02.tsx
+++ b/src/components/icons/user-02.tsx
@@ -11,6 +11,7 @@ const User02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="r2G-"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-03.tsx b/src/components/icons/user-03.tsx
index 7282ff5dd..5d7db8fb0 100644
--- a/src/components/icons/user-03.tsx
+++ b/src/components/icons/user-03.tsx
@@ -11,6 +11,7 @@ const User03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ftKF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-check-01.tsx b/src/components/icons/user-check-01.tsx
index 50539e019..d58e4be89 100644
--- a/src/components/icons/user-check-01.tsx
+++ b/src/components/icons/user-check-01.tsx
@@ -11,6 +11,7 @@ const UserCheck01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6aXR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-check-02.tsx b/src/components/icons/user-check-02.tsx
index 6e9c2b694..7eaae4a7d 100644
--- a/src/components/icons/user-check-02.tsx
+++ b/src/components/icons/user-check-02.tsx
@@ -11,6 +11,7 @@ const UserCheck02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Y83D"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-circle.tsx b/src/components/icons/user-circle.tsx
index 81172b266..dccba2f99 100644
--- a/src/components/icons/user-circle.tsx
+++ b/src/components/icons/user-circle.tsx
@@ -11,6 +11,7 @@ const UserCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZLGL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-down-01.tsx b/src/components/icons/user-down-01.tsx
index e757deac4..1015acef1 100644
--- a/src/components/icons/user-down-01.tsx
+++ b/src/components/icons/user-down-01.tsx
@@ -11,6 +11,7 @@ const UserDown01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="XjQD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-down-02.tsx b/src/components/icons/user-down-02.tsx
index 937dcfa9b..2b643a861 100644
--- a/src/components/icons/user-down-02.tsx
+++ b/src/components/icons/user-down-02.tsx
@@ -11,6 +11,7 @@ const UserDown02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6EIr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-edit.tsx b/src/components/icons/user-edit.tsx
index 7a60fdac2..2132ca871 100644
--- a/src/components/icons/user-edit.tsx
+++ b/src/components/icons/user-edit.tsx
@@ -11,6 +11,7 @@ const UserEdit = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="zxV_"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-left-01.tsx b/src/components/icons/user-left-01.tsx
index 68e761a5b..643a0b2c6 100644
--- a/src/components/icons/user-left-01.tsx
+++ b/src/components/icons/user-left-01.tsx
@@ -11,6 +11,7 @@ const UserLeft01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="9s2u"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-left-02.tsx b/src/components/icons/user-left-02.tsx
index db8d17a21..5553dc333 100644
--- a/src/components/icons/user-left-02.tsx
+++ b/src/components/icons/user-left-02.tsx
@@ -11,6 +11,7 @@ const UserLeft02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="_ze7"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-minus-01.tsx b/src/components/icons/user-minus-01.tsx
index 602e18dc4..1e86d863d 100644
--- a/src/components/icons/user-minus-01.tsx
+++ b/src/components/icons/user-minus-01.tsx
@@ -11,6 +11,7 @@ const UserMinus01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="KkzW"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-minus-02.tsx b/src/components/icons/user-minus-02.tsx
index 20a6e63fd..a7b170be6 100644
--- a/src/components/icons/user-minus-02.tsx
+++ b/src/components/icons/user-minus-02.tsx
@@ -11,6 +11,7 @@ const UserMinus02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="UJpm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-plus-01.tsx b/src/components/icons/user-plus-01.tsx
index e106ecc84..2f1dd0aa4 100644
--- a/src/components/icons/user-plus-01.tsx
+++ b/src/components/icons/user-plus-01.tsx
@@ -11,6 +11,7 @@ const UserPlus01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="5Kff"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-plus-02.tsx b/src/components/icons/user-plus-02.tsx
index 0224559c6..bfff3717a 100644
--- a/src/components/icons/user-plus-02.tsx
+++ b/src/components/icons/user-plus-02.tsx
@@ -11,6 +11,7 @@ const UserPlus02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tOuR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-right-01.tsx b/src/components/icons/user-right-01.tsx
index 6c95e015b..0b544a35b 100644
--- a/src/components/icons/user-right-01.tsx
+++ b/src/components/icons/user-right-01.tsx
@@ -11,6 +11,7 @@ const UserRight01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Wk59"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-right-02.tsx b/src/components/icons/user-right-02.tsx
index 584160408..3e8a55d28 100644
--- a/src/components/icons/user-right-02.tsx
+++ b/src/components/icons/user-right-02.tsx
@@ -11,6 +11,7 @@ const UserRight02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="HBfk"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-square.tsx b/src/components/icons/user-square.tsx
index 1024b17c6..648a20204 100644
--- a/src/components/icons/user-square.tsx
+++ b/src/components/icons/user-square.tsx
@@ -11,6 +11,7 @@ const UserSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="f_Vg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-up-01.tsx b/src/components/icons/user-up-01.tsx
index c1388c2cf..ef5febc56 100644
--- a/src/components/icons/user-up-01.tsx
+++ b/src/components/icons/user-up-01.tsx
@@ -11,6 +11,7 @@ const UserUp01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="6hxr"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-up-02.tsx b/src/components/icons/user-up-02.tsx
index 5f0f21333..a4a9df3eb 100644
--- a/src/components/icons/user-up-02.tsx
+++ b/src/components/icons/user-up-02.tsx
@@ -11,6 +11,7 @@ const UserUp02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="kTSG"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-x-01.tsx b/src/components/icons/user-x-01.tsx
index 8bbe70fc9..abbb774d0 100644
--- a/src/components/icons/user-x-01.tsx
+++ b/src/components/icons/user-x-01.tsx
@@ -11,6 +11,7 @@ const UserX01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="evk1"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/user-x-02.tsx b/src/components/icons/user-x-02.tsx
index 26daafcbd..19a547861 100644
--- a/src/components/icons/user-x-02.tsx
+++ b/src/components/icons/user-x-02.tsx
@@ -11,6 +11,7 @@ const UserX02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="93bD"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-01.tsx b/src/components/icons/users-01.tsx
index d1ecf96f6..eed0cae92 100644
--- a/src/components/icons/users-01.tsx
+++ b/src/components/icons/users-01.tsx
@@ -11,6 +11,7 @@ const Users01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="R_yN"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-02.tsx b/src/components/icons/users-02.tsx
index a02a7c0b9..e72aff080 100644
--- a/src/components/icons/users-02.tsx
+++ b/src/components/icons/users-02.tsx
@@ -11,6 +11,7 @@ const Users02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TSsP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-03.tsx b/src/components/icons/users-03.tsx
index 7d1534855..47e663813 100644
--- a/src/components/icons/users-03.tsx
+++ b/src/components/icons/users-03.tsx
@@ -11,6 +11,7 @@ const Users03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="oL_F"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-check.tsx b/src/components/icons/users-check.tsx
index 1dd0094f4..be8edf953 100644
--- a/src/components/icons/users-check.tsx
+++ b/src/components/icons/users-check.tsx
@@ -11,6 +11,7 @@ const UsersCheck = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FplH"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-down.tsx b/src/components/icons/users-down.tsx
index 45fea6abc..745ff105a 100644
--- a/src/components/icons/users-down.tsx
+++ b/src/components/icons/users-down.tsx
@@ -11,6 +11,7 @@ const UsersDown = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QhuX"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-edit.tsx b/src/components/icons/users-edit.tsx
index b769c618e..995493b74 100644
--- a/src/components/icons/users-edit.tsx
+++ b/src/components/icons/users-edit.tsx
@@ -11,6 +11,7 @@ const UsersEdit = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="CwgQ"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-left.tsx b/src/components/icons/users-left.tsx
index b6dcccce5..90d3affd0 100644
--- a/src/components/icons/users-left.tsx
+++ b/src/components/icons/users-left.tsx
@@ -11,6 +11,7 @@ const UsersLeft = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="bII9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-minus.tsx b/src/components/icons/users-minus.tsx
index 43e2eaf47..ed0597fdc 100644
--- a/src/components/icons/users-minus.tsx
+++ b/src/components/icons/users-minus.tsx
@@ -11,6 +11,7 @@ const UsersMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="Gkyu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-plus.tsx b/src/components/icons/users-plus.tsx
index 1a7f1e8f6..a4c8c6df3 100644
--- a/src/components/icons/users-plus.tsx
+++ b/src/components/icons/users-plus.tsx
@@ -11,6 +11,7 @@ const UsersPlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tWwT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-right.tsx b/src/components/icons/users-right.tsx
index fee8aaf78..b73def3be 100644
--- a/src/components/icons/users-right.tsx
+++ b/src/components/icons/users-right.tsx
@@ -11,6 +11,7 @@ const UsersRight = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wDlP"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-up.tsx b/src/components/icons/users-up.tsx
index f2970cd00..acc4a193f 100644
--- a/src/components/icons/users-up.tsx
+++ b/src/components/icons/users-up.tsx
@@ -11,6 +11,7 @@ const UsersUp = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-o23"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/users-x.tsx b/src/components/icons/users-x.tsx
index fff67ea50..8e2290fde 100644
--- a/src/components/icons/users-x.tsx
+++ b/src/components/icons/users-x.tsx
@@ -11,6 +11,7 @@ const UsersX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="TJW5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/variable.tsx b/src/components/icons/variable.tsx
index fd7c262ba..53a173582 100644
--- a/src/components/icons/variable.tsx
+++ b/src/components/icons/variable.tsx
@@ -11,6 +11,7 @@ const Variable = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="1r1n"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/video-recorder-off.tsx b/src/components/icons/video-recorder-off.tsx
index 12d82850d..53078db40 100644
--- a/src/components/icons/video-recorder-off.tsx
+++ b/src/components/icons/video-recorder-off.tsx
@@ -11,6 +11,7 @@ const VideoRecorderOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qeNi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/video-recorder.tsx b/src/components/icons/video-recorder.tsx
index bad539ab9..156538b05 100644
--- a/src/components/icons/video-recorder.tsx
+++ b/src/components/icons/video-recorder.tsx
@@ -11,6 +11,7 @@ const VideoRecorder = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pGrl"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/virus.tsx b/src/components/icons/virus.tsx
index 56308c0b7..bd9013b80 100644
--- a/src/components/icons/virus.tsx
+++ b/src/components/icons/virus.tsx
@@ -11,6 +11,7 @@ const Virus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="drd9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/voicemail.tsx b/src/components/icons/voicemail.tsx
index 19da695c3..3e9a7f80b 100644
--- a/src/components/icons/voicemail.tsx
+++ b/src/components/icons/voicemail.tsx
@@ -11,6 +11,7 @@ const Voicemail = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="C3r4"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/volume-max.tsx b/src/components/icons/volume-max.tsx
index 2d494306b..f4579970c 100644
--- a/src/components/icons/volume-max.tsx
+++ b/src/components/icons/volume-max.tsx
@@ -11,6 +11,7 @@ const VolumeMax = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="h9cG"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/volume-min.tsx b/src/components/icons/volume-min.tsx
index ab4660f0a..d87e791c2 100644
--- a/src/components/icons/volume-min.tsx
+++ b/src/components/icons/volume-min.tsx
@@ -11,6 +11,7 @@ const VolumeMin = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EbbT"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/volume-minus.tsx b/src/components/icons/volume-minus.tsx
index 7f2fe1fec..d3b60fe56 100644
--- a/src/components/icons/volume-minus.tsx
+++ b/src/components/icons/volume-minus.tsx
@@ -11,6 +11,7 @@ const VolumeMinus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="T-nE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/volume-plus.tsx b/src/components/icons/volume-plus.tsx
index a63280bfb..15e0ad321 100644
--- a/src/components/icons/volume-plus.tsx
+++ b/src/components/icons/volume-plus.tsx
@@ -11,6 +11,7 @@ const VolumePlus = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="hug8"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/volume-x.tsx b/src/components/icons/volume-x.tsx
index bbe7252f7..51a6dab4f 100644
--- a/src/components/icons/volume-x.tsx
+++ b/src/components/icons/volume-x.tsx
@@ -11,6 +11,7 @@ const VolumeX = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pzBR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wallet-01.tsx b/src/components/icons/wallet-01.tsx
index 211bbe0f7..968b3019d 100644
--- a/src/components/icons/wallet-01.tsx
+++ b/src/components/icons/wallet-01.tsx
@@ -11,6 +11,7 @@ const Wallet01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="yzyu"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wallet-02.tsx b/src/components/icons/wallet-02.tsx
index f63cd2903..01c3b374f 100644
--- a/src/components/icons/wallet-02.tsx
+++ b/src/components/icons/wallet-02.tsx
@@ -11,6 +11,7 @@ const Wallet02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="pL80"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wallet-03.tsx b/src/components/icons/wallet-03.tsx
index 56e293070..130053f4b 100644
--- a/src/components/icons/wallet-03.tsx
+++ b/src/components/icons/wallet-03.tsx
@@ -11,6 +11,7 @@ const Wallet03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EMuL"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wallet-04.tsx b/src/components/icons/wallet-04.tsx
index f2a549c91..46da795b4 100644
--- a/src/components/icons/wallet-04.tsx
+++ b/src/components/icons/wallet-04.tsx
@@ -11,6 +11,7 @@ const Wallet04 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="QvNp"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wallet-05.tsx b/src/components/icons/wallet-05.tsx
index 432a241e8..2d26eba9c 100644
--- a/src/components/icons/wallet-05.tsx
+++ b/src/components/icons/wallet-05.tsx
@@ -11,6 +11,7 @@ const Wallet05 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="gF8P"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/watch-circle.tsx b/src/components/icons/watch-circle.tsx
index 463185f72..52e9a99df 100644
--- a/src/components/icons/watch-circle.tsx
+++ b/src/components/icons/watch-circle.tsx
@@ -11,6 +11,7 @@ const WatchCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="2AQO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/watch-square.tsx b/src/components/icons/watch-square.tsx
index 8ba1cc03b..c65a91a38 100644
--- a/src/components/icons/watch-square.tsx
+++ b/src/components/icons/watch-square.tsx
@@ -11,6 +11,7 @@ const WatchSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3oqO"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/waves.tsx b/src/components/icons/waves.tsx
index 71b4a6286..ffc38c5e2 100644
--- a/src/components/icons/waves.tsx
+++ b/src/components/icons/waves.tsx
@@ -11,6 +11,7 @@ const Waves = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LlQR"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/webcam-01.tsx b/src/components/icons/webcam-01.tsx
index facbe9127..ef5677fb2 100644
--- a/src/components/icons/webcam-01.tsx
+++ b/src/components/icons/webcam-01.tsx
@@ -11,6 +11,7 @@ const Webcam01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="JVgU"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/webcam-02.tsx b/src/components/icons/webcam-02.tsx
index a03f2a596..bb95c8847 100644
--- a/src/components/icons/webcam-02.tsx
+++ b/src/components/icons/webcam-02.tsx
@@ -11,6 +11,7 @@ const Webcam02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="k9Jc"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wifi-off.tsx b/src/components/icons/wifi-off.tsx
index 66e0336c2..e3b701194 100644
--- a/src/components/icons/wifi-off.tsx
+++ b/src/components/icons/wifi-off.tsx
@@ -11,6 +11,7 @@ const WifiOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="ZyL5"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wifi.tsx b/src/components/icons/wifi.tsx
index 75008fc0d..3ce41f4ee 100644
--- a/src/components/icons/wifi.tsx
+++ b/src/components/icons/wifi.tsx
@@ -11,6 +11,7 @@ const Wifi = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="FvZC"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wind-01.tsx b/src/components/icons/wind-01.tsx
index fde5354f0..3a8fbcac8 100644
--- a/src/components/icons/wind-01.tsx
+++ b/src/components/icons/wind-01.tsx
@@ -11,6 +11,7 @@ const Wind01 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="qtjy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wind-02.tsx b/src/components/icons/wind-02.tsx
index 6a04004a6..e52544926 100644
--- a/src/components/icons/wind-02.tsx
+++ b/src/components/icons/wind-02.tsx
@@ -11,6 +11,7 @@ const Wind02 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="nnmF"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/wind-03.tsx b/src/components/icons/wind-03.tsx
index 1d60e3b57..e83039d69 100644
--- a/src/components/icons/wind-03.tsx
+++ b/src/components/icons/wind-03.tsx
@@ -11,6 +11,7 @@ const Wind03 = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="BZvE"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/x-circle.tsx b/src/components/icons/x-circle.tsx
index 29480d90b..92dbfe8e4 100644
--- a/src/components/icons/x-circle.tsx
+++ b/src/components/icons/x-circle.tsx
@@ -11,6 +11,7 @@ const XCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="sTve"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/x-close.tsx b/src/components/icons/x-close.tsx
index 2df40b42e..3f4c67c02 100644
--- a/src/components/icons/x-close.tsx
+++ b/src/components/icons/x-close.tsx
@@ -11,6 +11,7 @@ const XClose = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="3wFm"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/x-square.tsx b/src/components/icons/x-square.tsx
index 877e21f52..2518b04e2 100644
--- a/src/components/icons/x-square.tsx
+++ b/src/components/icons/x-square.tsx
@@ -11,6 +11,7 @@ const XSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="wG7j"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/x.tsx b/src/components/icons/x.tsx
index 2fb2647db..99768bfc4 100644
--- a/src/components/icons/x.tsx
+++ b/src/components/icons/x.tsx
@@ -11,6 +11,7 @@ const X = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="tCmi"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/youtube.tsx b/src/components/icons/youtube.tsx
index d18f5d0e2..36f73b1ab 100644
--- a/src/components/icons/youtube.tsx
+++ b/src/components/icons/youtube.tsx
@@ -11,6 +11,7 @@ const Youtube = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="i9wd"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/zap-circle.tsx b/src/components/icons/zap-circle.tsx
index 38aaa2c96..3f57eb7af 100644
--- a/src/components/icons/zap-circle.tsx
+++ b/src/components/icons/zap-circle.tsx
@@ -11,6 +11,7 @@ const ZapCircle = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="-dfa"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/zap-fast.tsx b/src/components/icons/zap-fast.tsx
index 2df009a18..ed9b44af2 100644
--- a/src/components/icons/zap-fast.tsx
+++ b/src/components/icons/zap-fast.tsx
@@ -11,6 +11,7 @@ const ZapFast = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="LMA9"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/zap-off.tsx b/src/components/icons/zap-off.tsx
index ed5ad95b8..00a22ac97 100644
--- a/src/components/icons/zap-off.tsx
+++ b/src/components/icons/zap-off.tsx
@@ -11,6 +11,7 @@ const ZapOff = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="8jJy"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/zap-square.tsx b/src/components/icons/zap-square.tsx
index 5cb4d2157..41416688b 100644
--- a/src/components/icons/zap-square.tsx
+++ b/src/components/icons/zap-square.tsx
@@ -11,6 +11,7 @@ const ZapSquare = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="uExF"
>,
,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/zap.tsx b/src/components/icons/zap.tsx
index 45aa2d821..f47feeca0 100644
--- a/src/components/icons/zap.tsx
+++ b/src/components/icons/zap.tsx
@@ -11,6 +11,7 @@ const Zap = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="PqIb"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/zoom-in.tsx b/src/components/icons/zoom-in.tsx
index 17945a219..3fcd2b3cb 100644
--- a/src/components/icons/zoom-in.tsx
+++ b/src/components/icons/zoom-in.tsx
@@ -11,6 +11,7 @@ const ZoomIn = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="EYRg"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/components/icons/zoom-out.tsx b/src/components/icons/zoom-out.tsx
index d080be903..3137f6097 100644
--- a/src/components/icons/zoom-out.tsx
+++ b/src/components/icons/zoom-out.tsx
@@ -11,6 +11,7 @@ const ZoomOut = createIcon({
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
+ key="xqjK"
>,
],
defaultProps: { boxSize: 4 },
diff --git a/src/views/new/index.tsx b/src/views/new/index.tsx
index 2faf9d442..5f209144c 100644
--- a/src/views/new/index.tsx
+++ b/src/views/new/index.tsx
@@ -1,7 +1,6 @@
import { Card, CardBody, ComponentWithAs, Flex, Heading, IconProps, LinkBox, SimpleGrid, Text } from "@chakra-ui/react";
import { Link as RouterLink } from "react-router-dom";
-import VerticalPageLayout from "../../components/vertical-page-layout";
import { MediaIcon, NotesIcon } from "../../components/icons";
import HoverLinkOverlay from "../../components/hover-link-overlay";
import SimpleView from "../../components/layout/presets/simple-view";
@@ -16,7 +15,7 @@ export default function NewView() {
{NEW_TYPES.map(({ title, path, icon: Icon, summary }) => (
-
+