diff --git a/scripts/build-icons.mjs b/scripts/build-icons.mjs index f42f63af7..b314be92a 100644 --- a/scripts/build-icons.mjs +++ b/scripts/build-icons.mjs @@ -20,6 +20,15 @@ for (const filename of iconsList) { const pathElements = $("path"); const paths = []; for (const path of pathElements) { + // convert all attributes to camelcase + for (const [key, value] of Object.entries(path.attribs)) { + const ccKey = camelcase(key); + if (ccKey !== key) { + delete path.attribs[key]; + path.attribs[ccKey] = value; + } + } + if (path.attribs["stroke"]) { path.attribs["stroke"] = "currentColor"; } diff --git a/src/components/icons.tsx b/src/components/icons.tsx index bc94cbfad..53537bb4b 100644 --- a/src/components/icons.tsx +++ b/src/components/icons.tsx @@ -225,4 +225,4 @@ export const GhostIcon = createIcon({ }); export const ECashIcon = BankNote01; -export const WalletIcon = Wallet02 +export const WalletIcon = Wallet02; diff --git a/src/components/icons/activity-heart.tsx b/src/components/icons/activity-heart.tsx index 9edeae875..6e13b9414 100644 --- a/src/components/icons/activity-heart.tsx +++ b/src/components/icons/activity-heart.tsx @@ -7,9 +7,9 @@ const ActivityHeart = createIcon({ , ], diff --git a/src/components/icons/activity.tsx b/src/components/icons/activity.tsx index 04d6b5780..12970ad5e 100644 --- a/src/components/icons/activity.tsx +++ b/src/components/icons/activity.tsx @@ -7,9 +7,9 @@ const Activity = createIcon({ , ], diff --git a/src/components/icons/airplay.tsx b/src/components/icons/airplay.tsx index 7c6e298a5..036bc675f 100644 --- a/src/components/icons/airplay.tsx +++ b/src/components/icons/airplay.tsx @@ -7,9 +7,9 @@ const Airplay = createIcon({ , ], diff --git a/src/components/icons/airpods.tsx b/src/components/icons/airpods.tsx index e45877e7f..0f5ae419b 100644 --- a/src/components/icons/airpods.tsx +++ b/src/components/icons/airpods.tsx @@ -7,17 +7,17 @@ const Airpods = createIcon({ , , ], diff --git a/src/components/icons/alarm-clock-check.tsx b/src/components/icons/alarm-clock-check.tsx index 788977553..ff1954aed 100644 --- a/src/components/icons/alarm-clock-check.tsx +++ b/src/components/icons/alarm-clock-check.tsx @@ -7,9 +7,9 @@ const AlarmClockCheck = createIcon({ , ], diff --git a/src/components/icons/alarm-clock-minus.tsx b/src/components/icons/alarm-clock-minus.tsx index 3dde4ee5e..be04bfc53 100644 --- a/src/components/icons/alarm-clock-minus.tsx +++ b/src/components/icons/alarm-clock-minus.tsx @@ -7,9 +7,9 @@ const AlarmClockMinus = createIcon({ , ], diff --git a/src/components/icons/alarm-clock-off.tsx b/src/components/icons/alarm-clock-off.tsx index 4e19e6287..96a2135a5 100644 --- a/src/components/icons/alarm-clock-off.tsx +++ b/src/components/icons/alarm-clock-off.tsx @@ -7,9 +7,9 @@ const AlarmClockOff = createIcon({ , ], diff --git a/src/components/icons/alarm-clock-plus.tsx b/src/components/icons/alarm-clock-plus.tsx index 62ed44dc7..ee072ca33 100644 --- a/src/components/icons/alarm-clock-plus.tsx +++ b/src/components/icons/alarm-clock-plus.tsx @@ -7,9 +7,9 @@ const AlarmClockPlus = createIcon({ , ], diff --git a/src/components/icons/alarm-clock.tsx b/src/components/icons/alarm-clock.tsx index 5d5b4371c..3e59db13b 100644 --- a/src/components/icons/alarm-clock.tsx +++ b/src/components/icons/alarm-clock.tsx @@ -7,9 +7,9 @@ const AlarmClock = createIcon({ , ], diff --git a/src/components/icons/alert-circle.tsx b/src/components/icons/alert-circle.tsx index 4560d785c..d40dfee20 100644 --- a/src/components/icons/alert-circle.tsx +++ b/src/components/icons/alert-circle.tsx @@ -7,9 +7,9 @@ const AlertCircle = createIcon({ , ], diff --git a/src/components/icons/alert-hexagon.tsx b/src/components/icons/alert-hexagon.tsx index b1426cb48..727acd153 100644 --- a/src/components/icons/alert-hexagon.tsx +++ b/src/components/icons/alert-hexagon.tsx @@ -7,9 +7,9 @@ const AlertHexagon = createIcon({ , ], diff --git a/src/components/icons/alert-octagon.tsx b/src/components/icons/alert-octagon.tsx index fc58e8f1f..af1f75326 100644 --- a/src/components/icons/alert-octagon.tsx +++ b/src/components/icons/alert-octagon.tsx @@ -7,9 +7,9 @@ const AlertOctagon = createIcon({ , ], diff --git a/src/components/icons/alert-square.tsx b/src/components/icons/alert-square.tsx index e8440d4ed..aa3ca8aff 100644 --- a/src/components/icons/alert-square.tsx +++ b/src/components/icons/alert-square.tsx @@ -7,9 +7,9 @@ const AlertSquare = createIcon({ , ], diff --git a/src/components/icons/alert-triangle.tsx b/src/components/icons/alert-triangle.tsx index 752e85de5..670d31c94 100644 --- a/src/components/icons/alert-triangle.tsx +++ b/src/components/icons/alert-triangle.tsx @@ -7,9 +7,9 @@ const AlertTriangle = createIcon({ , ], diff --git a/src/components/icons/align-bottom-01.tsx b/src/components/icons/align-bottom-01.tsx index 56e2c8399..dbd82f87e 100644 --- a/src/components/icons/align-bottom-01.tsx +++ b/src/components/icons/align-bottom-01.tsx @@ -7,9 +7,9 @@ const AlignBottom01 = createIcon({ , ], diff --git a/src/components/icons/align-bottom-02.tsx b/src/components/icons/align-bottom-02.tsx index 1fa8b8be8..66e863665 100644 --- a/src/components/icons/align-bottom-02.tsx +++ b/src/components/icons/align-bottom-02.tsx @@ -7,17 +7,17 @@ const AlignBottom02 = createIcon({ , , ], diff --git a/src/components/icons/align-center.tsx b/src/components/icons/align-center.tsx index fc08b6356..a116af89f 100644 --- a/src/components/icons/align-center.tsx +++ b/src/components/icons/align-center.tsx @@ -7,9 +7,9 @@ const AlignCenter = createIcon({ , ], diff --git a/src/components/icons/align-horizontal-centre-01.tsx b/src/components/icons/align-horizontal-centre-01.tsx index 013982640..52180ab29 100644 --- a/src/components/icons/align-horizontal-centre-01.tsx +++ b/src/components/icons/align-horizontal-centre-01.tsx @@ -7,9 +7,9 @@ const AlignHorizontalCentre01 = createIcon({ , ], diff --git a/src/components/icons/align-horizontal-centre-02.tsx b/src/components/icons/align-horizontal-centre-02.tsx index 9c043bafd..97ffa11d2 100644 --- a/src/components/icons/align-horizontal-centre-02.tsx +++ b/src/components/icons/align-horizontal-centre-02.tsx @@ -7,17 +7,17 @@ const AlignHorizontalCentre02 = createIcon({ , , ], diff --git a/src/components/icons/align-justify.tsx b/src/components/icons/align-justify.tsx index 72f3879b1..4f5a63289 100644 --- a/src/components/icons/align-justify.tsx +++ b/src/components/icons/align-justify.tsx @@ -7,9 +7,9 @@ const AlignJustify = createIcon({ , ], diff --git a/src/components/icons/align-left-01.tsx b/src/components/icons/align-left-01.tsx index 5d5ebcd50..e54045500 100644 --- a/src/components/icons/align-left-01.tsx +++ b/src/components/icons/align-left-01.tsx @@ -7,9 +7,9 @@ const AlignLeft01 = createIcon({ , ], diff --git a/src/components/icons/align-left-02.tsx b/src/components/icons/align-left-02.tsx index fbc65eed5..b2631103f 100644 --- a/src/components/icons/align-left-02.tsx +++ b/src/components/icons/align-left-02.tsx @@ -7,17 +7,17 @@ const AlignLeft02 = createIcon({ , , ], diff --git a/src/components/icons/align-left.tsx b/src/components/icons/align-left.tsx index c20ca7300..1404458ee 100644 --- a/src/components/icons/align-left.tsx +++ b/src/components/icons/align-left.tsx @@ -7,9 +7,9 @@ const AlignLeft = createIcon({ , ], diff --git a/src/components/icons/align-right-01.tsx b/src/components/icons/align-right-01.tsx index c0fe46658..92247f6c2 100644 --- a/src/components/icons/align-right-01.tsx +++ b/src/components/icons/align-right-01.tsx @@ -7,9 +7,9 @@ const AlignRight01 = createIcon({ , ], diff --git a/src/components/icons/align-right-02.tsx b/src/components/icons/align-right-02.tsx index a55721a3e..b452f377b 100644 --- a/src/components/icons/align-right-02.tsx +++ b/src/components/icons/align-right-02.tsx @@ -7,17 +7,17 @@ const AlignRight02 = createIcon({ , , ], diff --git a/src/components/icons/align-right.tsx b/src/components/icons/align-right.tsx index e263a1a8c..8c50d0e9d 100644 --- a/src/components/icons/align-right.tsx +++ b/src/components/icons/align-right.tsx @@ -7,9 +7,9 @@ const AlignRight = createIcon({ , ], diff --git a/src/components/icons/align-top-01.tsx b/src/components/icons/align-top-01.tsx index caa9eae8c..3b2f5767c 100644 --- a/src/components/icons/align-top-01.tsx +++ b/src/components/icons/align-top-01.tsx @@ -7,9 +7,9 @@ const AlignTop01 = createIcon({ , ], diff --git a/src/components/icons/align-top-02.tsx b/src/components/icons/align-top-02.tsx index b5bd5f2b2..f451eddd4 100644 --- a/src/components/icons/align-top-02.tsx +++ b/src/components/icons/align-top-02.tsx @@ -7,17 +7,17 @@ const AlignTop02 = createIcon({ , , ], diff --git a/src/components/icons/align-vertical-center-01.tsx b/src/components/icons/align-vertical-center-01.tsx index 676c8a40d..9ffbbc621 100644 --- a/src/components/icons/align-vertical-center-01.tsx +++ b/src/components/icons/align-vertical-center-01.tsx @@ -7,9 +7,9 @@ const AlignVerticalCenter01 = createIcon({ , ], diff --git a/src/components/icons/align-vertical-center-02.tsx b/src/components/icons/align-vertical-center-02.tsx index 50d866644..4f8224feb 100644 --- a/src/components/icons/align-vertical-center-02.tsx +++ b/src/components/icons/align-vertical-center-02.tsx @@ -7,17 +7,17 @@ const AlignVerticalCenter02 = createIcon({ , , ], diff --git a/src/components/icons/anchor.tsx b/src/components/icons/anchor.tsx index e744e641d..08c1d65de 100644 --- a/src/components/icons/anchor.tsx +++ b/src/components/icons/anchor.tsx @@ -7,9 +7,9 @@ const Anchor = createIcon({ , ], diff --git a/src/components/icons/annotation-alert.tsx b/src/components/icons/annotation-alert.tsx index d4c24ddce..324724425 100644 --- a/src/components/icons/annotation-alert.tsx +++ b/src/components/icons/annotation-alert.tsx @@ -7,9 +7,9 @@ const AnnotationAlert = createIcon({ , ], diff --git a/src/components/icons/annotation-check.tsx b/src/components/icons/annotation-check.tsx index 3f81dab8e..715165e55 100644 --- a/src/components/icons/annotation-check.tsx +++ b/src/components/icons/annotation-check.tsx @@ -7,9 +7,9 @@ const AnnotationCheck = createIcon({ , ], diff --git a/src/components/icons/annotation-dots.tsx b/src/components/icons/annotation-dots.tsx index be9610b55..76dfcad3f 100644 --- a/src/components/icons/annotation-dots.tsx +++ b/src/components/icons/annotation-dots.tsx @@ -7,9 +7,9 @@ const AnnotationDots = createIcon({ , ], diff --git a/src/components/icons/annotation-heart.tsx b/src/components/icons/annotation-heart.tsx index 0bb926112..faa608b47 100644 --- a/src/components/icons/annotation-heart.tsx +++ b/src/components/icons/annotation-heart.tsx @@ -7,19 +7,19 @@ const AnnotationHeart = createIcon({ , , ], diff --git a/src/components/icons/annotation-info.tsx b/src/components/icons/annotation-info.tsx index ec624f1fb..b501b35cb 100644 --- a/src/components/icons/annotation-info.tsx +++ b/src/components/icons/annotation-info.tsx @@ -7,9 +7,9 @@ const AnnotationInfo = createIcon({ , ], diff --git a/src/components/icons/annotation-plus.tsx b/src/components/icons/annotation-plus.tsx index 685fc1d76..d1fc08291 100644 --- a/src/components/icons/annotation-plus.tsx +++ b/src/components/icons/annotation-plus.tsx @@ -7,9 +7,9 @@ const AnnotationPlus = createIcon({ , ], diff --git a/src/components/icons/annotation-question.tsx b/src/components/icons/annotation-question.tsx index 818b0904b..34f2f1f69 100644 --- a/src/components/icons/annotation-question.tsx +++ b/src/components/icons/annotation-question.tsx @@ -7,9 +7,9 @@ const AnnotationQuestion = createIcon({ , ], diff --git a/src/components/icons/annotation-x.tsx b/src/components/icons/annotation-x.tsx index bff4f9a1a..3a44b01b2 100644 --- a/src/components/icons/annotation-x.tsx +++ b/src/components/icons/annotation-x.tsx @@ -7,9 +7,9 @@ const AnnotationX = createIcon({ , ], diff --git a/src/components/icons/annotation.tsx b/src/components/icons/annotation.tsx index fba68c340..9078661fc 100644 --- a/src/components/icons/annotation.tsx +++ b/src/components/icons/annotation.tsx @@ -7,9 +7,9 @@ const Annotation = createIcon({ , ], diff --git a/src/components/icons/announcement-01.tsx b/src/components/icons/announcement-01.tsx index 8b3f07987..0beb8d04c 100644 --- a/src/components/icons/announcement-01.tsx +++ b/src/components/icons/announcement-01.tsx @@ -7,9 +7,9 @@ const Announcement01 = createIcon({ , ], diff --git a/src/components/icons/announcement-02.tsx b/src/components/icons/announcement-02.tsx index a2dec5c40..acd41d8bc 100644 --- a/src/components/icons/announcement-02.tsx +++ b/src/components/icons/announcement-02.tsx @@ -7,9 +7,9 @@ const Announcement02 = createIcon({ , ], diff --git a/src/components/icons/announcement-03.tsx b/src/components/icons/announcement-03.tsx index 21a2d98e6..9672b3a80 100644 --- a/src/components/icons/announcement-03.tsx +++ b/src/components/icons/announcement-03.tsx @@ -7,9 +7,9 @@ const Announcement03 = createIcon({ , ], diff --git a/src/components/icons/archive.tsx b/src/components/icons/archive.tsx index 5362b9f87..b6b39b798 100644 --- a/src/components/icons/archive.tsx +++ b/src/components/icons/archive.tsx @@ -7,9 +7,9 @@ const Archive = createIcon({ , ], diff --git a/src/components/icons/arrow-block-down.tsx b/src/components/icons/arrow-block-down.tsx index 9ed765bb6..cbfdc0204 100644 --- a/src/components/icons/arrow-block-down.tsx +++ b/src/components/icons/arrow-block-down.tsx @@ -7,9 +7,9 @@ const ArrowBlockDown = createIcon({ , ], diff --git a/src/components/icons/arrow-block-left.tsx b/src/components/icons/arrow-block-left.tsx index 1fb7b0fdb..cbfd53661 100644 --- a/src/components/icons/arrow-block-left.tsx +++ b/src/components/icons/arrow-block-left.tsx @@ -7,9 +7,9 @@ const ArrowBlockLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-block-right.tsx b/src/components/icons/arrow-block-right.tsx index d049a433d..0794e2699 100644 --- a/src/components/icons/arrow-block-right.tsx +++ b/src/components/icons/arrow-block-right.tsx @@ -7,9 +7,9 @@ const ArrowBlockRight = createIcon({ , ], diff --git a/src/components/icons/arrow-block-up.tsx b/src/components/icons/arrow-block-up.tsx index 0cd1630f9..61ecbc61d 100644 --- a/src/components/icons/arrow-block-up.tsx +++ b/src/components/icons/arrow-block-up.tsx @@ -7,9 +7,9 @@ const ArrowBlockUp = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-down-left.tsx b/src/components/icons/arrow-circle-broken-down-left.tsx index ca5bb4cc3..a293a81d2 100644 --- a/src/components/icons/arrow-circle-broken-down-left.tsx +++ b/src/components/icons/arrow-circle-broken-down-left.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenDownLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-down-right.tsx b/src/components/icons/arrow-circle-broken-down-right.tsx index a9de9d009..37cf76f37 100644 --- a/src/components/icons/arrow-circle-broken-down-right.tsx +++ b/src/components/icons/arrow-circle-broken-down-right.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenDownRight = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-down.tsx b/src/components/icons/arrow-circle-broken-down.tsx index c97fb47ef..13c04e41a 100644 --- a/src/components/icons/arrow-circle-broken-down.tsx +++ b/src/components/icons/arrow-circle-broken-down.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenDown = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-left.tsx b/src/components/icons/arrow-circle-broken-left.tsx index d9bf856b5..88623a588 100644 --- a/src/components/icons/arrow-circle-broken-left.tsx +++ b/src/components/icons/arrow-circle-broken-left.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-right.tsx b/src/components/icons/arrow-circle-broken-right.tsx index 7c45ca3e2..d30efa780 100644 --- a/src/components/icons/arrow-circle-broken-right.tsx +++ b/src/components/icons/arrow-circle-broken-right.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenRight = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-up-left.tsx b/src/components/icons/arrow-circle-broken-up-left.tsx index 63702c63f..9f52e7339 100644 --- a/src/components/icons/arrow-circle-broken-up-left.tsx +++ b/src/components/icons/arrow-circle-broken-up-left.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenUpLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-up-right.tsx b/src/components/icons/arrow-circle-broken-up-right.tsx index 41af1b5d1..32e37009f 100644 --- a/src/components/icons/arrow-circle-broken-up-right.tsx +++ b/src/components/icons/arrow-circle-broken-up-right.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenUpRight = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-broken-up.tsx b/src/components/icons/arrow-circle-broken-up.tsx index 4c17a6c65..3cf4ca068 100644 --- a/src/components/icons/arrow-circle-broken-up.tsx +++ b/src/components/icons/arrow-circle-broken-up.tsx @@ -7,9 +7,9 @@ const ArrowCircleBrokenUp = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-down-left.tsx b/src/components/icons/arrow-circle-down-left.tsx index 8123232a3..74d4a8efd 100644 --- a/src/components/icons/arrow-circle-down-left.tsx +++ b/src/components/icons/arrow-circle-down-left.tsx @@ -7,9 +7,9 @@ const ArrowCircleDownLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-down-right.tsx b/src/components/icons/arrow-circle-down-right.tsx index 5d5d89264..ff9deb7b6 100644 --- a/src/components/icons/arrow-circle-down-right.tsx +++ b/src/components/icons/arrow-circle-down-right.tsx @@ -7,9 +7,9 @@ const ArrowCircleDownRight = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-down.tsx b/src/components/icons/arrow-circle-down.tsx index fb17cb127..83c464892 100644 --- a/src/components/icons/arrow-circle-down.tsx +++ b/src/components/icons/arrow-circle-down.tsx @@ -7,9 +7,9 @@ const ArrowCircleDown = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-left.tsx b/src/components/icons/arrow-circle-left.tsx index 0244092a6..cee4167f4 100644 --- a/src/components/icons/arrow-circle-left.tsx +++ b/src/components/icons/arrow-circle-left.tsx @@ -7,9 +7,9 @@ const ArrowCircleLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-right.tsx b/src/components/icons/arrow-circle-right.tsx index ac5174fc9..c6ee59e89 100644 --- a/src/components/icons/arrow-circle-right.tsx +++ b/src/components/icons/arrow-circle-right.tsx @@ -7,9 +7,9 @@ const ArrowCircleRight = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-up-left.tsx b/src/components/icons/arrow-circle-up-left.tsx index e842a1fd1..9acbde10f 100644 --- a/src/components/icons/arrow-circle-up-left.tsx +++ b/src/components/icons/arrow-circle-up-left.tsx @@ -7,9 +7,9 @@ const ArrowCircleUpLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-up-right.tsx b/src/components/icons/arrow-circle-up-right.tsx index 88e9b24e8..81d7af26f 100644 --- a/src/components/icons/arrow-circle-up-right.tsx +++ b/src/components/icons/arrow-circle-up-right.tsx @@ -7,9 +7,9 @@ const ArrowCircleUpRight = createIcon({ , ], diff --git a/src/components/icons/arrow-circle-up.tsx b/src/components/icons/arrow-circle-up.tsx index c51b97a29..e3d65df97 100644 --- a/src/components/icons/arrow-circle-up.tsx +++ b/src/components/icons/arrow-circle-up.tsx @@ -7,9 +7,9 @@ const ArrowCircleUp = createIcon({ , ], diff --git a/src/components/icons/arrow-down-left.tsx b/src/components/icons/arrow-down-left.tsx index 05fc97ce9..9b9d81a0e 100644 --- a/src/components/icons/arrow-down-left.tsx +++ b/src/components/icons/arrow-down-left.tsx @@ -7,9 +7,9 @@ const ArrowDownLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-down-right.tsx b/src/components/icons/arrow-down-right.tsx index 58c6d951e..fe79bda8a 100644 --- a/src/components/icons/arrow-down-right.tsx +++ b/src/components/icons/arrow-down-right.tsx @@ -7,9 +7,9 @@ const ArrowDownRight = createIcon({ , ], diff --git a/src/components/icons/arrow-down.tsx b/src/components/icons/arrow-down.tsx index 23fea7b13..e4177dd2c 100644 --- a/src/components/icons/arrow-down.tsx +++ b/src/components/icons/arrow-down.tsx @@ -7,9 +7,9 @@ const ArrowDown = createIcon({ , ], diff --git a/src/components/icons/arrow-left.tsx b/src/components/icons/arrow-left.tsx index 419be23a6..3f3ef21b3 100644 --- a/src/components/icons/arrow-left.tsx +++ b/src/components/icons/arrow-left.tsx @@ -7,9 +7,9 @@ const ArrowLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-down-left.tsx b/src/components/icons/arrow-narrow-down-left.tsx index 433e03e39..6710d3eb0 100644 --- a/src/components/icons/arrow-narrow-down-left.tsx +++ b/src/components/icons/arrow-narrow-down-left.tsx @@ -7,9 +7,9 @@ const ArrowNarrowDownLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-down-right.tsx b/src/components/icons/arrow-narrow-down-right.tsx index c48bfc6b0..2354395e0 100644 --- a/src/components/icons/arrow-narrow-down-right.tsx +++ b/src/components/icons/arrow-narrow-down-right.tsx @@ -7,9 +7,9 @@ const ArrowNarrowDownRight = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-down.tsx b/src/components/icons/arrow-narrow-down.tsx index 7f8431c06..7b848edac 100644 --- a/src/components/icons/arrow-narrow-down.tsx +++ b/src/components/icons/arrow-narrow-down.tsx @@ -7,9 +7,9 @@ const ArrowNarrowDown = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-left.tsx b/src/components/icons/arrow-narrow-left.tsx index 0af3ca658..c62a90761 100644 --- a/src/components/icons/arrow-narrow-left.tsx +++ b/src/components/icons/arrow-narrow-left.tsx @@ -7,9 +7,9 @@ const ArrowNarrowLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-right.tsx b/src/components/icons/arrow-narrow-right.tsx index eab28cc61..9f37cf47d 100644 --- a/src/components/icons/arrow-narrow-right.tsx +++ b/src/components/icons/arrow-narrow-right.tsx @@ -7,9 +7,9 @@ const ArrowNarrowRight = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-up-left.tsx b/src/components/icons/arrow-narrow-up-left.tsx index 61826f8bc..275f66444 100644 --- a/src/components/icons/arrow-narrow-up-left.tsx +++ b/src/components/icons/arrow-narrow-up-left.tsx @@ -7,9 +7,9 @@ const ArrowNarrowUpLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-up-right.tsx b/src/components/icons/arrow-narrow-up-right.tsx index d305ad907..e885333d9 100644 --- a/src/components/icons/arrow-narrow-up-right.tsx +++ b/src/components/icons/arrow-narrow-up-right.tsx @@ -7,9 +7,9 @@ const ArrowNarrowUpRight = createIcon({ , ], diff --git a/src/components/icons/arrow-narrow-up.tsx b/src/components/icons/arrow-narrow-up.tsx index 65a3cb9cf..5aa90b163 100644 --- a/src/components/icons/arrow-narrow-up.tsx +++ b/src/components/icons/arrow-narrow-up.tsx @@ -7,9 +7,9 @@ const ArrowNarrowUp = createIcon({ , ], diff --git a/src/components/icons/arrow-right.tsx b/src/components/icons/arrow-right.tsx index 550464f1f..a71dca87b 100644 --- a/src/components/icons/arrow-right.tsx +++ b/src/components/icons/arrow-right.tsx @@ -7,9 +7,9 @@ const ArrowRight = createIcon({ , ], diff --git a/src/components/icons/arrow-square-down-left.tsx b/src/components/icons/arrow-square-down-left.tsx index 847a00870..4270dee80 100644 --- a/src/components/icons/arrow-square-down-left.tsx +++ b/src/components/icons/arrow-square-down-left.tsx @@ -7,9 +7,9 @@ const ArrowSquareDownLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-square-down-right.tsx b/src/components/icons/arrow-square-down-right.tsx index 40198f276..82235d6e1 100644 --- a/src/components/icons/arrow-square-down-right.tsx +++ b/src/components/icons/arrow-square-down-right.tsx @@ -7,9 +7,9 @@ const ArrowSquareDownRight = createIcon({ , ], diff --git a/src/components/icons/arrow-square-down.tsx b/src/components/icons/arrow-square-down.tsx index 69999f2e9..3a37db928 100644 --- a/src/components/icons/arrow-square-down.tsx +++ b/src/components/icons/arrow-square-down.tsx @@ -7,9 +7,9 @@ const ArrowSquareDown = createIcon({ , ], diff --git a/src/components/icons/arrow-square-left.tsx b/src/components/icons/arrow-square-left.tsx index 12fba9a9a..d7d247314 100644 --- a/src/components/icons/arrow-square-left.tsx +++ b/src/components/icons/arrow-square-left.tsx @@ -7,9 +7,9 @@ const ArrowSquareLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-square-right.tsx b/src/components/icons/arrow-square-right.tsx index b570a8e1f..4fe316e44 100644 --- a/src/components/icons/arrow-square-right.tsx +++ b/src/components/icons/arrow-square-right.tsx @@ -7,9 +7,9 @@ const ArrowSquareRight = createIcon({ , ], diff --git a/src/components/icons/arrow-square-up-left.tsx b/src/components/icons/arrow-square-up-left.tsx index 923c705f2..fa31d7ccd 100644 --- a/src/components/icons/arrow-square-up-left.tsx +++ b/src/components/icons/arrow-square-up-left.tsx @@ -7,9 +7,9 @@ const ArrowSquareUpLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-square-up-right.tsx b/src/components/icons/arrow-square-up-right.tsx index d1f8195bb..3353b4416 100644 --- a/src/components/icons/arrow-square-up-right.tsx +++ b/src/components/icons/arrow-square-up-right.tsx @@ -7,9 +7,9 @@ const ArrowSquareUpRight = createIcon({ , ], diff --git a/src/components/icons/arrow-square-up.tsx b/src/components/icons/arrow-square-up.tsx index fdfc6eac9..1c5aacfd4 100644 --- a/src/components/icons/arrow-square-up.tsx +++ b/src/components/icons/arrow-square-up.tsx @@ -7,9 +7,9 @@ const ArrowSquareUp = createIcon({ , ], diff --git a/src/components/icons/arrow-up-left.tsx b/src/components/icons/arrow-up-left.tsx index 94ca1ff75..cb8d56aaa 100644 --- a/src/components/icons/arrow-up-left.tsx +++ b/src/components/icons/arrow-up-left.tsx @@ -7,9 +7,9 @@ const ArrowUpLeft = createIcon({ , ], diff --git a/src/components/icons/arrow-up-right.tsx b/src/components/icons/arrow-up-right.tsx index 0bbc2c679..e73b6b8ec 100644 --- a/src/components/icons/arrow-up-right.tsx +++ b/src/components/icons/arrow-up-right.tsx @@ -7,9 +7,9 @@ const ArrowUpRight = createIcon({ , ], diff --git a/src/components/icons/arrow-up.tsx b/src/components/icons/arrow-up.tsx index 8003c72ee..fd0b4ec49 100644 --- a/src/components/icons/arrow-up.tsx +++ b/src/components/icons/arrow-up.tsx @@ -7,9 +7,9 @@ const ArrowUp = createIcon({ , ], diff --git a/src/components/icons/arrows-down.tsx b/src/components/icons/arrows-down.tsx index 6b4637edb..082b275f2 100644 --- a/src/components/icons/arrows-down.tsx +++ b/src/components/icons/arrows-down.tsx @@ -7,9 +7,9 @@ const ArrowsDown = createIcon({ , ], diff --git a/src/components/icons/arrows-left.tsx b/src/components/icons/arrows-left.tsx index 7b99f62e9..802ff68a0 100644 --- a/src/components/icons/arrows-left.tsx +++ b/src/components/icons/arrows-left.tsx @@ -7,9 +7,9 @@ const ArrowsLeft = createIcon({ , ], diff --git a/src/components/icons/arrows-right.tsx b/src/components/icons/arrows-right.tsx index e1b88a70d..6978addb7 100644 --- a/src/components/icons/arrows-right.tsx +++ b/src/components/icons/arrows-right.tsx @@ -7,9 +7,9 @@ const ArrowsRight = createIcon({ , ], diff --git a/src/components/icons/arrows-triangle.tsx b/src/components/icons/arrows-triangle.tsx index ec35fa8b0..9b39fdb0b 100644 --- a/src/components/icons/arrows-triangle.tsx +++ b/src/components/icons/arrows-triangle.tsx @@ -7,9 +7,9 @@ const ArrowsTriangle = createIcon({ , ], diff --git a/src/components/icons/arrows-up.tsx b/src/components/icons/arrows-up.tsx index 7e8f2927a..d7eb506f4 100644 --- a/src/components/icons/arrows-up.tsx +++ b/src/components/icons/arrows-up.tsx @@ -7,9 +7,9 @@ const ArrowsUp = createIcon({ , ], diff --git a/src/components/icons/asterisk-01.tsx b/src/components/icons/asterisk-01.tsx index 8ec6acb24..1890934f3 100644 --- a/src/components/icons/asterisk-01.tsx +++ b/src/components/icons/asterisk-01.tsx @@ -7,9 +7,9 @@ const Asterisk01 = createIcon({ , ], diff --git a/src/components/icons/asterisk-02.tsx b/src/components/icons/asterisk-02.tsx index 31354db90..08fc6b5ea 100644 --- a/src/components/icons/asterisk-02.tsx +++ b/src/components/icons/asterisk-02.tsx @@ -7,9 +7,9 @@ const Asterisk02 = createIcon({ , ], diff --git a/src/components/icons/at-sign.tsx b/src/components/icons/at-sign.tsx index 340d6a0c4..633e2cd2e 100644 --- a/src/components/icons/at-sign.tsx +++ b/src/components/icons/at-sign.tsx @@ -7,9 +7,9 @@ const AtSign = createIcon({ , ], diff --git a/src/components/icons/atom-01.tsx b/src/components/icons/atom-01.tsx index a32527dbf..ee24ad284 100644 --- a/src/components/icons/atom-01.tsx +++ b/src/components/icons/atom-01.tsx @@ -7,9 +7,9 @@ const Atom01 = createIcon({ , ], diff --git a/src/components/icons/atom-02.tsx b/src/components/icons/atom-02.tsx index 8baa71f13..a341e0375 100644 --- a/src/components/icons/atom-02.tsx +++ b/src/components/icons/atom-02.tsx @@ -7,9 +7,9 @@ const Atom02 = createIcon({ , ], diff --git a/src/components/icons/attachment-01.tsx b/src/components/icons/attachment-01.tsx index 4cd13a7d8..7319b5f05 100644 --- a/src/components/icons/attachment-01.tsx +++ b/src/components/icons/attachment-01.tsx @@ -7,9 +7,9 @@ const Attachment01 = createIcon({ , ], diff --git a/src/components/icons/attachment-02.tsx b/src/components/icons/attachment-02.tsx index 38fecc22b..14aca3c3c 100644 --- a/src/components/icons/attachment-02.tsx +++ b/src/components/icons/attachment-02.tsx @@ -7,9 +7,9 @@ const Attachment02 = createIcon({ , ], diff --git a/src/components/icons/award-01.tsx b/src/components/icons/award-01.tsx index 05460842e..d810ac651 100644 --- a/src/components/icons/award-01.tsx +++ b/src/components/icons/award-01.tsx @@ -7,9 +7,9 @@ const Award01 = createIcon({ , ], diff --git a/src/components/icons/award-02.tsx b/src/components/icons/award-02.tsx index 83f7b711e..6846f6534 100644 --- a/src/components/icons/award-02.tsx +++ b/src/components/icons/award-02.tsx @@ -7,9 +7,9 @@ const Award02 = createIcon({ , ], diff --git a/src/components/icons/award-03.tsx b/src/components/icons/award-03.tsx index 5d176a9c6..5833b8f1f 100644 --- a/src/components/icons/award-03.tsx +++ b/src/components/icons/award-03.tsx @@ -7,9 +7,9 @@ const Award03 = createIcon({ , ], diff --git a/src/components/icons/award-04.tsx b/src/components/icons/award-04.tsx index 010170ef6..037223d26 100644 --- a/src/components/icons/award-04.tsx +++ b/src/components/icons/award-04.tsx @@ -7,9 +7,9 @@ const Award04 = createIcon({ , ], diff --git a/src/components/icons/award-05.tsx b/src/components/icons/award-05.tsx index 177b47d62..146191f30 100644 --- a/src/components/icons/award-05.tsx +++ b/src/components/icons/award-05.tsx @@ -7,9 +7,9 @@ const Award05 = createIcon({ , ], diff --git a/src/components/icons/backpack.tsx b/src/components/icons/backpack.tsx index 7c5b119e1..2f31596e9 100644 --- a/src/components/icons/backpack.tsx +++ b/src/components/icons/backpack.tsx @@ -7,9 +7,9 @@ const Backpack = createIcon({ , ], diff --git a/src/components/icons/bank-note-01.tsx b/src/components/icons/bank-note-01.tsx index d07374001..5a7651a87 100644 --- a/src/components/icons/bank-note-01.tsx +++ b/src/components/icons/bank-note-01.tsx @@ -7,9 +7,9 @@ const BankNote01 = createIcon({ , ], diff --git a/src/components/icons/bank-note-02.tsx b/src/components/icons/bank-note-02.tsx index 036a04391..bce15295e 100644 --- a/src/components/icons/bank-note-02.tsx +++ b/src/components/icons/bank-note-02.tsx @@ -7,9 +7,9 @@ const BankNote02 = createIcon({ , ], diff --git a/src/components/icons/bank-note-03.tsx b/src/components/icons/bank-note-03.tsx index 9c39db435..ea5923cd1 100644 --- a/src/components/icons/bank-note-03.tsx +++ b/src/components/icons/bank-note-03.tsx @@ -7,9 +7,9 @@ const BankNote03 = createIcon({ , ], diff --git a/src/components/icons/bank.tsx b/src/components/icons/bank.tsx index 54e6ee5b7..256d057db 100644 --- a/src/components/icons/bank.tsx +++ b/src/components/icons/bank.tsx @@ -7,9 +7,9 @@ const Bank = createIcon({ , ], diff --git a/src/components/icons/bar-chart-01.tsx b/src/components/icons/bar-chart-01.tsx index 4ec6c5ffe..5e8b4ecd1 100644 --- a/src/components/icons/bar-chart-01.tsx +++ b/src/components/icons/bar-chart-01.tsx @@ -7,9 +7,9 @@ const BarChart01 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-02.tsx b/src/components/icons/bar-chart-02.tsx index 498231458..b4af274a0 100644 --- a/src/components/icons/bar-chart-02.tsx +++ b/src/components/icons/bar-chart-02.tsx @@ -7,9 +7,9 @@ const BarChart02 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-03.tsx b/src/components/icons/bar-chart-03.tsx index 0d9fe3c38..2d9e2467c 100644 --- a/src/components/icons/bar-chart-03.tsx +++ b/src/components/icons/bar-chart-03.tsx @@ -7,9 +7,9 @@ const BarChart03 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-04.tsx b/src/components/icons/bar-chart-04.tsx index f03495978..4edb518ac 100644 --- a/src/components/icons/bar-chart-04.tsx +++ b/src/components/icons/bar-chart-04.tsx @@ -7,9 +7,9 @@ const BarChart04 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-05.tsx b/src/components/icons/bar-chart-05.tsx index c7347c052..af0b57bbe 100644 --- a/src/components/icons/bar-chart-05.tsx +++ b/src/components/icons/bar-chart-05.tsx @@ -7,9 +7,9 @@ const BarChart05 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-06.tsx b/src/components/icons/bar-chart-06.tsx index 808ce10ea..184c1c375 100644 --- a/src/components/icons/bar-chart-06.tsx +++ b/src/components/icons/bar-chart-06.tsx @@ -7,9 +7,9 @@ const BarChart06 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-07.tsx b/src/components/icons/bar-chart-07.tsx index 97e9ffcae..1aacbb8de 100644 --- a/src/components/icons/bar-chart-07.tsx +++ b/src/components/icons/bar-chart-07.tsx @@ -7,9 +7,9 @@ const BarChart07 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-08.tsx b/src/components/icons/bar-chart-08.tsx index c98654a99..a26303dab 100644 --- a/src/components/icons/bar-chart-08.tsx +++ b/src/components/icons/bar-chart-08.tsx @@ -7,9 +7,9 @@ const BarChart08 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-09.tsx b/src/components/icons/bar-chart-09.tsx index 35d53b88a..ebe6a82be 100644 --- a/src/components/icons/bar-chart-09.tsx +++ b/src/components/icons/bar-chart-09.tsx @@ -7,9 +7,9 @@ const BarChart09 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-10.tsx b/src/components/icons/bar-chart-10.tsx index 04a9fe520..2bb2aae61 100644 --- a/src/components/icons/bar-chart-10.tsx +++ b/src/components/icons/bar-chart-10.tsx @@ -7,9 +7,9 @@ const BarChart10 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-11.tsx b/src/components/icons/bar-chart-11.tsx index 145cf6c97..f91e34d51 100644 --- a/src/components/icons/bar-chart-11.tsx +++ b/src/components/icons/bar-chart-11.tsx @@ -7,9 +7,9 @@ const BarChart11 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-12.tsx b/src/components/icons/bar-chart-12.tsx index 2d53e529a..a3541d999 100644 --- a/src/components/icons/bar-chart-12.tsx +++ b/src/components/icons/bar-chart-12.tsx @@ -7,9 +7,9 @@ const BarChart12 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-circle-01.tsx b/src/components/icons/bar-chart-circle-01.tsx index 7d9a8be86..6e8584c00 100644 --- a/src/components/icons/bar-chart-circle-01.tsx +++ b/src/components/icons/bar-chart-circle-01.tsx @@ -7,9 +7,9 @@ const BarChartCircle01 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-circle-02.tsx b/src/components/icons/bar-chart-circle-02.tsx index 573ce474b..13ebbb502 100644 --- a/src/components/icons/bar-chart-circle-02.tsx +++ b/src/components/icons/bar-chart-circle-02.tsx @@ -7,9 +7,9 @@ const BarChartCircle02 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-circle-03.tsx b/src/components/icons/bar-chart-circle-03.tsx index 80711a962..d469f48f6 100644 --- a/src/components/icons/bar-chart-circle-03.tsx +++ b/src/components/icons/bar-chart-circle-03.tsx @@ -7,9 +7,9 @@ const BarChartCircle03 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-square-01.tsx b/src/components/icons/bar-chart-square-01.tsx index bed200d10..861d35a81 100644 --- a/src/components/icons/bar-chart-square-01.tsx +++ b/src/components/icons/bar-chart-square-01.tsx @@ -7,9 +7,9 @@ const BarChartSquare01 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-square-02.tsx b/src/components/icons/bar-chart-square-02.tsx index 0d7a98b3a..be373c43a 100644 --- a/src/components/icons/bar-chart-square-02.tsx +++ b/src/components/icons/bar-chart-square-02.tsx @@ -7,9 +7,9 @@ const BarChartSquare02 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-square-03.tsx b/src/components/icons/bar-chart-square-03.tsx index 32b9ab267..234c0be93 100644 --- a/src/components/icons/bar-chart-square-03.tsx +++ b/src/components/icons/bar-chart-square-03.tsx @@ -7,9 +7,9 @@ const BarChartSquare03 = createIcon({ , ], diff --git a/src/components/icons/bar-chart-square-down.tsx b/src/components/icons/bar-chart-square-down.tsx index c3008ea03..dcb0cc095 100644 --- a/src/components/icons/bar-chart-square-down.tsx +++ b/src/components/icons/bar-chart-square-down.tsx @@ -7,9 +7,9 @@ const BarChartSquareDown = createIcon({ , ], diff --git a/src/components/icons/bar-chart-square-minus.tsx b/src/components/icons/bar-chart-square-minus.tsx index eabfc36eb..1a12db077 100644 --- a/src/components/icons/bar-chart-square-minus.tsx +++ b/src/components/icons/bar-chart-square-minus.tsx @@ -7,9 +7,9 @@ const BarChartSquareMinus = createIcon({ , ], diff --git a/src/components/icons/bar-chart-square-plus.tsx b/src/components/icons/bar-chart-square-plus.tsx index 954dc1c5d..1e5cd98de 100644 --- a/src/components/icons/bar-chart-square-plus.tsx +++ b/src/components/icons/bar-chart-square-plus.tsx @@ -7,9 +7,9 @@ const BarChartSquarePlus = createIcon({ , ], diff --git a/src/components/icons/bar-chart-square-up.tsx b/src/components/icons/bar-chart-square-up.tsx index ded55b6b2..6058e2f1d 100644 --- a/src/components/icons/bar-chart-square-up.tsx +++ b/src/components/icons/bar-chart-square-up.tsx @@ -7,9 +7,9 @@ const BarChartSquareUp = createIcon({ , ], diff --git a/src/components/icons/bar-line-chart.tsx b/src/components/icons/bar-line-chart.tsx index 5f361d4ba..30a84738a 100644 --- a/src/components/icons/bar-line-chart.tsx +++ b/src/components/icons/bar-line-chart.tsx @@ -7,9 +7,9 @@ const BarLineChart = createIcon({ , ], diff --git a/src/components/icons/battery-charging-01.tsx b/src/components/icons/battery-charging-01.tsx index bc9999f56..3a8b1c0d7 100644 --- a/src/components/icons/battery-charging-01.tsx +++ b/src/components/icons/battery-charging-01.tsx @@ -7,9 +7,9 @@ const BatteryCharging01 = createIcon({ , ], diff --git a/src/components/icons/battery-charging-02.tsx b/src/components/icons/battery-charging-02.tsx index b1c6bf1e8..fbd3d73d3 100644 --- a/src/components/icons/battery-charging-02.tsx +++ b/src/components/icons/battery-charging-02.tsx @@ -7,9 +7,9 @@ const BatteryCharging02 = createIcon({ , ], diff --git a/src/components/icons/battery-empty.tsx b/src/components/icons/battery-empty.tsx index 71b0d77ce..a52d53224 100644 --- a/src/components/icons/battery-empty.tsx +++ b/src/components/icons/battery-empty.tsx @@ -7,9 +7,9 @@ const BatteryEmpty = createIcon({ , ], diff --git a/src/components/icons/battery-full.tsx b/src/components/icons/battery-full.tsx index 574d91eba..19e401076 100644 --- a/src/components/icons/battery-full.tsx +++ b/src/components/icons/battery-full.tsx @@ -7,9 +7,9 @@ const BatteryFull = createIcon({ , ], diff --git a/src/components/icons/battery-low.tsx b/src/components/icons/battery-low.tsx index 065f97530..f4e6c9c9f 100644 --- a/src/components/icons/battery-low.tsx +++ b/src/components/icons/battery-low.tsx @@ -7,9 +7,9 @@ const BatteryLow = createIcon({ , ], diff --git a/src/components/icons/battery-mid.tsx b/src/components/icons/battery-mid.tsx index f6dbcd6ba..c2fd6f1fd 100644 --- a/src/components/icons/battery-mid.tsx +++ b/src/components/icons/battery-mid.tsx @@ -7,9 +7,9 @@ const BatteryMid = createIcon({ , ], diff --git a/src/components/icons/beaker-01.tsx b/src/components/icons/beaker-01.tsx index ca62b9e0d..a3787bd5f 100644 --- a/src/components/icons/beaker-01.tsx +++ b/src/components/icons/beaker-01.tsx @@ -7,9 +7,9 @@ const Beaker01 = createIcon({ , ], diff --git a/src/components/icons/beaker-02.tsx b/src/components/icons/beaker-02.tsx index 2410b1c25..62f74d9c0 100644 --- a/src/components/icons/beaker-02.tsx +++ b/src/components/icons/beaker-02.tsx @@ -7,9 +7,9 @@ const Beaker02 = createIcon({ , ], diff --git a/src/components/icons/bell-01.tsx b/src/components/icons/bell-01.tsx index cb08a650d..cfd9e5537 100644 --- a/src/components/icons/bell-01.tsx +++ b/src/components/icons/bell-01.tsx @@ -7,9 +7,9 @@ const Bell01 = createIcon({ , ], diff --git a/src/components/icons/bell-02.tsx b/src/components/icons/bell-02.tsx index 5a65b926f..ff6543d01 100644 --- a/src/components/icons/bell-02.tsx +++ b/src/components/icons/bell-02.tsx @@ -7,9 +7,9 @@ const Bell02 = createIcon({ , ], diff --git a/src/components/icons/bell-03.tsx b/src/components/icons/bell-03.tsx index f321a4ec9..b3fde4dca 100644 --- a/src/components/icons/bell-03.tsx +++ b/src/components/icons/bell-03.tsx @@ -7,9 +7,9 @@ const Bell03 = createIcon({ , ], diff --git a/src/components/icons/bell-04.tsx b/src/components/icons/bell-04.tsx index 12acd608f..1f9d4fcc4 100644 --- a/src/components/icons/bell-04.tsx +++ b/src/components/icons/bell-04.tsx @@ -7,9 +7,9 @@ const Bell04 = createIcon({ , ], diff --git a/src/components/icons/bell-minus.tsx b/src/components/icons/bell-minus.tsx index 53026e04b..eed571509 100644 --- a/src/components/icons/bell-minus.tsx +++ b/src/components/icons/bell-minus.tsx @@ -7,9 +7,9 @@ const BellMinus = createIcon({ , ], diff --git a/src/components/icons/bell-off-01.tsx b/src/components/icons/bell-off-01.tsx index 8049b051f..55b1836c5 100644 --- a/src/components/icons/bell-off-01.tsx +++ b/src/components/icons/bell-off-01.tsx @@ -7,9 +7,9 @@ const BellOff01 = createIcon({ , ], diff --git a/src/components/icons/bell-off-02.tsx b/src/components/icons/bell-off-02.tsx index d0b0ec202..20939d063 100644 --- a/src/components/icons/bell-off-02.tsx +++ b/src/components/icons/bell-off-02.tsx @@ -7,9 +7,9 @@ const BellOff02 = createIcon({ , ], diff --git a/src/components/icons/bell-off-03.tsx b/src/components/icons/bell-off-03.tsx index b2f92eb42..f77613879 100644 --- a/src/components/icons/bell-off-03.tsx +++ b/src/components/icons/bell-off-03.tsx @@ -7,9 +7,9 @@ const BellOff03 = createIcon({ , ], diff --git a/src/components/icons/bell-plus.tsx b/src/components/icons/bell-plus.tsx index 26faeb7d9..ccd44d84f 100644 --- a/src/components/icons/bell-plus.tsx +++ b/src/components/icons/bell-plus.tsx @@ -7,9 +7,9 @@ const BellPlus = createIcon({ , ], diff --git a/src/components/icons/bell-ringing-01.tsx b/src/components/icons/bell-ringing-01.tsx index d3395f03c..e2698030a 100644 --- a/src/components/icons/bell-ringing-01.tsx +++ b/src/components/icons/bell-ringing-01.tsx @@ -7,9 +7,9 @@ const BellRinging01 = createIcon({ , ], diff --git a/src/components/icons/bell-ringing-02.tsx b/src/components/icons/bell-ringing-02.tsx index 768fec22d..f925eabf0 100644 --- a/src/components/icons/bell-ringing-02.tsx +++ b/src/components/icons/bell-ringing-02.tsx @@ -7,9 +7,9 @@ const BellRinging02 = createIcon({ , ], diff --git a/src/components/icons/bell-ringing-03.tsx b/src/components/icons/bell-ringing-03.tsx index 185749dc7..0db346cb0 100644 --- a/src/components/icons/bell-ringing-03.tsx +++ b/src/components/icons/bell-ringing-03.tsx @@ -7,9 +7,9 @@ const BellRinging03 = createIcon({ , ], diff --git a/src/components/icons/bell-ringing-04.tsx b/src/components/icons/bell-ringing-04.tsx index 91ac391df..c81ff5549 100644 --- a/src/components/icons/bell-ringing-04.tsx +++ b/src/components/icons/bell-ringing-04.tsx @@ -7,9 +7,9 @@ const BellRinging04 = createIcon({ , ], diff --git a/src/components/icons/bezier-curve-01.tsx b/src/components/icons/bezier-curve-01.tsx index 086c3122a..43adc5eef 100644 --- a/src/components/icons/bezier-curve-01.tsx +++ b/src/components/icons/bezier-curve-01.tsx @@ -7,9 +7,9 @@ const BezierCurve01 = createIcon({ , ], diff --git a/src/components/icons/bezier-curve-02.tsx b/src/components/icons/bezier-curve-02.tsx index ab83c1f41..b99218ae0 100644 --- a/src/components/icons/bezier-curve-02.tsx +++ b/src/components/icons/bezier-curve-02.tsx @@ -7,9 +7,9 @@ const BezierCurve02 = createIcon({ , ], diff --git a/src/components/icons/bezier-curve-03.tsx b/src/components/icons/bezier-curve-03.tsx index 8993bd591..8ca20fa91 100644 --- a/src/components/icons/bezier-curve-03.tsx +++ b/src/components/icons/bezier-curve-03.tsx @@ -7,9 +7,9 @@ const BezierCurve03 = createIcon({ , ], diff --git a/src/components/icons/bluetooth-connect.tsx b/src/components/icons/bluetooth-connect.tsx index 916aa75e5..a10c0dd3d 100644 --- a/src/components/icons/bluetooth-connect.tsx +++ b/src/components/icons/bluetooth-connect.tsx @@ -7,9 +7,9 @@ const BluetoothConnect = createIcon({ , ], diff --git a/src/components/icons/bluetooth-off.tsx b/src/components/icons/bluetooth-off.tsx index 9459d46ca..e4e10e8a2 100644 --- a/src/components/icons/bluetooth-off.tsx +++ b/src/components/icons/bluetooth-off.tsx @@ -7,9 +7,9 @@ const BluetoothOff = createIcon({ , ], diff --git a/src/components/icons/bluetooth-on.tsx b/src/components/icons/bluetooth-on.tsx index b3612cbe8..3ac123988 100644 --- a/src/components/icons/bluetooth-on.tsx +++ b/src/components/icons/bluetooth-on.tsx @@ -7,9 +7,9 @@ const BluetoothOn = createIcon({ , ], diff --git a/src/components/icons/bluetooth-signal.tsx b/src/components/icons/bluetooth-signal.tsx index 950fef9ff..9e8857d14 100644 --- a/src/components/icons/bluetooth-signal.tsx +++ b/src/components/icons/bluetooth-signal.tsx @@ -7,9 +7,9 @@ const BluetoothSignal = createIcon({ , ], diff --git a/src/components/icons/bold-01.tsx b/src/components/icons/bold-01.tsx index c67f4c9aa..f4bd53079 100644 --- a/src/components/icons/bold-01.tsx +++ b/src/components/icons/bold-01.tsx @@ -7,9 +7,9 @@ const Bold01 = createIcon({ , ], diff --git a/src/components/icons/bold-02.tsx b/src/components/icons/bold-02.tsx index 2d931a972..dcd629420 100644 --- a/src/components/icons/bold-02.tsx +++ b/src/components/icons/bold-02.tsx @@ -7,9 +7,9 @@ const Bold02 = createIcon({ , ], diff --git a/src/components/icons/bold-square.tsx b/src/components/icons/bold-square.tsx index 11014ce27..b0dbaa73a 100644 --- a/src/components/icons/bold-square.tsx +++ b/src/components/icons/bold-square.tsx @@ -7,9 +7,9 @@ const BoldSquare = createIcon({ , ], diff --git a/src/components/icons/book-closed.tsx b/src/components/icons/book-closed.tsx index 4606fdf61..442ff3e16 100644 --- a/src/components/icons/book-closed.tsx +++ b/src/components/icons/book-closed.tsx @@ -7,9 +7,9 @@ const BookClosed = createIcon({ , ], diff --git a/src/components/icons/book-open-01.tsx b/src/components/icons/book-open-01.tsx index 5828ed5da..ee6f709f7 100644 --- a/src/components/icons/book-open-01.tsx +++ b/src/components/icons/book-open-01.tsx @@ -7,9 +7,9 @@ const BookOpen01 = createIcon({ , ], diff --git a/src/components/icons/book-open-02.tsx b/src/components/icons/book-open-02.tsx index 0228bc5a5..17e809690 100644 --- a/src/components/icons/book-open-02.tsx +++ b/src/components/icons/book-open-02.tsx @@ -7,9 +7,9 @@ const BookOpen02 = createIcon({ , ], diff --git a/src/components/icons/bookmark-add.tsx b/src/components/icons/bookmark-add.tsx index b1693800a..ba3b2c094 100644 --- a/src/components/icons/bookmark-add.tsx +++ b/src/components/icons/bookmark-add.tsx @@ -7,9 +7,9 @@ const BookmarkAdd = createIcon({ , ], diff --git a/src/components/icons/bookmark-check.tsx b/src/components/icons/bookmark-check.tsx index f5479b255..40b77790e 100644 --- a/src/components/icons/bookmark-check.tsx +++ b/src/components/icons/bookmark-check.tsx @@ -7,9 +7,9 @@ const BookmarkCheck = createIcon({ , ], diff --git a/src/components/icons/bookmark-minus.tsx b/src/components/icons/bookmark-minus.tsx index 7c9ba0a50..1dbd7182b 100644 --- a/src/components/icons/bookmark-minus.tsx +++ b/src/components/icons/bookmark-minus.tsx @@ -7,9 +7,9 @@ const BookmarkMinus = createIcon({ , ], diff --git a/src/components/icons/bookmark-x.tsx b/src/components/icons/bookmark-x.tsx index a302fa743..8cfeb5d92 100644 --- a/src/components/icons/bookmark-x.tsx +++ b/src/components/icons/bookmark-x.tsx @@ -7,9 +7,9 @@ const BookmarkX = createIcon({ , ], diff --git a/src/components/icons/bookmark.tsx b/src/components/icons/bookmark.tsx index 46a3a70fe..802c332a8 100644 --- a/src/components/icons/bookmark.tsx +++ b/src/components/icons/bookmark.tsx @@ -7,9 +7,9 @@ const Bookmark = createIcon({ , ], diff --git a/src/components/icons/box.tsx b/src/components/icons/box.tsx index 470434dec..a6028ef8d 100644 --- a/src/components/icons/box.tsx +++ b/src/components/icons/box.tsx @@ -7,9 +7,9 @@ const Box = createIcon({ , ], diff --git a/src/components/icons/brackets-check.tsx b/src/components/icons/brackets-check.tsx index 56a3f25a7..16151f2db 100644 --- a/src/components/icons/brackets-check.tsx +++ b/src/components/icons/brackets-check.tsx @@ -7,9 +7,9 @@ const BracketsCheck = createIcon({ , ], diff --git a/src/components/icons/brackets-ellipses.tsx b/src/components/icons/brackets-ellipses.tsx index b838a492d..43d7467f5 100644 --- a/src/components/icons/brackets-ellipses.tsx +++ b/src/components/icons/brackets-ellipses.tsx @@ -7,9 +7,9 @@ const BracketsEllipses = createIcon({ , ], diff --git a/src/components/icons/brackets-minus.tsx b/src/components/icons/brackets-minus.tsx index 1af0bf1e7..7e189410a 100644 --- a/src/components/icons/brackets-minus.tsx +++ b/src/components/icons/brackets-minus.tsx @@ -7,9 +7,9 @@ const BracketsMinus = createIcon({ , ], diff --git a/src/components/icons/brackets-plus.tsx b/src/components/icons/brackets-plus.tsx index 24549d9f0..cdad39295 100644 --- a/src/components/icons/brackets-plus.tsx +++ b/src/components/icons/brackets-plus.tsx @@ -7,9 +7,9 @@ const BracketsPlus = createIcon({ , ], diff --git a/src/components/icons/brackets-slash.tsx b/src/components/icons/brackets-slash.tsx index d948d24a6..ffbaf8015 100644 --- a/src/components/icons/brackets-slash.tsx +++ b/src/components/icons/brackets-slash.tsx @@ -7,9 +7,9 @@ const BracketsSlash = createIcon({ , ], diff --git a/src/components/icons/brackets-x.tsx b/src/components/icons/brackets-x.tsx index 3c8fa42b0..3ee9fc5b2 100644 --- a/src/components/icons/brackets-x.tsx +++ b/src/components/icons/brackets-x.tsx @@ -7,9 +7,9 @@ const BracketsX = createIcon({ , ], diff --git a/src/components/icons/brackets.tsx b/src/components/icons/brackets.tsx index 05c564b73..eb1d36aa4 100644 --- a/src/components/icons/brackets.tsx +++ b/src/components/icons/brackets.tsx @@ -7,9 +7,9 @@ const Brackets = createIcon({ , ], diff --git a/src/components/icons/briefcase-01.tsx b/src/components/icons/briefcase-01.tsx index a8d43f47a..6025b0197 100644 --- a/src/components/icons/briefcase-01.tsx +++ b/src/components/icons/briefcase-01.tsx @@ -7,9 +7,9 @@ const Briefcase01 = createIcon({ , ], diff --git a/src/components/icons/briefcase-02.tsx b/src/components/icons/briefcase-02.tsx index 8f77394dc..0803ae8db 100644 --- a/src/components/icons/briefcase-02.tsx +++ b/src/components/icons/briefcase-02.tsx @@ -7,9 +7,9 @@ const Briefcase02 = createIcon({ , ], diff --git a/src/components/icons/browser.tsx b/src/components/icons/browser.tsx index 2c013d937..43363539c 100644 --- a/src/components/icons/browser.tsx +++ b/src/components/icons/browser.tsx @@ -7,9 +7,9 @@ const Browser = createIcon({ , ], diff --git a/src/components/icons/brush-01.tsx b/src/components/icons/brush-01.tsx index d8969f62e..560494045 100644 --- a/src/components/icons/brush-01.tsx +++ b/src/components/icons/brush-01.tsx @@ -7,9 +7,9 @@ const Brush01 = createIcon({ , ], diff --git a/src/components/icons/brush-02.tsx b/src/components/icons/brush-02.tsx index 5466458ae..1ea99ba90 100644 --- a/src/components/icons/brush-02.tsx +++ b/src/components/icons/brush-02.tsx @@ -7,9 +7,9 @@ const Brush02 = createIcon({ , ], diff --git a/src/components/icons/brush-03.tsx b/src/components/icons/brush-03.tsx index 6d0c3bb8f..1b2826bdc 100644 --- a/src/components/icons/brush-03.tsx +++ b/src/components/icons/brush-03.tsx @@ -7,9 +7,9 @@ const Brush03 = createIcon({ , ], diff --git a/src/components/icons/building-01.tsx b/src/components/icons/building-01.tsx index a23c25837..8a8745e4a 100644 --- a/src/components/icons/building-01.tsx +++ b/src/components/icons/building-01.tsx @@ -7,9 +7,9 @@ const Building01 = createIcon({ , ], diff --git a/src/components/icons/building-02.tsx b/src/components/icons/building-02.tsx index a7f057c7b..54c2d693e 100644 --- a/src/components/icons/building-02.tsx +++ b/src/components/icons/building-02.tsx @@ -7,9 +7,9 @@ const Building02 = createIcon({ , ], diff --git a/src/components/icons/building-03.tsx b/src/components/icons/building-03.tsx index 99dc76a61..17b0f1be5 100644 --- a/src/components/icons/building-03.tsx +++ b/src/components/icons/building-03.tsx @@ -7,9 +7,9 @@ const Building03 = createIcon({ , ], diff --git a/src/components/icons/building-04.tsx b/src/components/icons/building-04.tsx index f58def6cd..b3e006b76 100644 --- a/src/components/icons/building-04.tsx +++ b/src/components/icons/building-04.tsx @@ -7,9 +7,9 @@ const Building04 = createIcon({ , ], diff --git a/src/components/icons/building-05.tsx b/src/components/icons/building-05.tsx index f3d12fba8..6429f24f7 100644 --- a/src/components/icons/building-05.tsx +++ b/src/components/icons/building-05.tsx @@ -7,9 +7,9 @@ const Building05 = createIcon({ , ], diff --git a/src/components/icons/building-06.tsx b/src/components/icons/building-06.tsx index d44e93f2f..8ece511ca 100644 --- a/src/components/icons/building-06.tsx +++ b/src/components/icons/building-06.tsx @@ -7,9 +7,9 @@ const Building06 = createIcon({ , ], diff --git a/src/components/icons/building-07.tsx b/src/components/icons/building-07.tsx index a29011fe5..e420c807a 100644 --- a/src/components/icons/building-07.tsx +++ b/src/components/icons/building-07.tsx @@ -7,9 +7,9 @@ const Building07 = createIcon({ , ], diff --git a/src/components/icons/building-08.tsx b/src/components/icons/building-08.tsx index 9bb609a69..9f179b695 100644 --- a/src/components/icons/building-08.tsx +++ b/src/components/icons/building-08.tsx @@ -7,9 +7,9 @@ const Building08 = createIcon({ , ], diff --git a/src/components/icons/bus.tsx b/src/components/icons/bus.tsx index 63ed91a71..04c3de08e 100644 --- a/src/components/icons/bus.tsx +++ b/src/components/icons/bus.tsx @@ -7,9 +7,9 @@ const Bus = createIcon({ , ], diff --git a/src/components/icons/calculator.tsx b/src/components/icons/calculator.tsx index 21343d1b0..f8ade0a28 100644 --- a/src/components/icons/calculator.tsx +++ b/src/components/icons/calculator.tsx @@ -7,9 +7,9 @@ const Calculator = createIcon({ , ], diff --git a/src/components/icons/calendar-check-01.tsx b/src/components/icons/calendar-check-01.tsx index 3ee9a01a2..e571d6eb0 100644 --- a/src/components/icons/calendar-check-01.tsx +++ b/src/components/icons/calendar-check-01.tsx @@ -7,9 +7,9 @@ const CalendarCheck01 = createIcon({ , ], diff --git a/src/components/icons/calendar-check-02.tsx b/src/components/icons/calendar-check-02.tsx index c010ee0c6..c946c3bef 100644 --- a/src/components/icons/calendar-check-02.tsx +++ b/src/components/icons/calendar-check-02.tsx @@ -7,9 +7,9 @@ const CalendarCheck02 = createIcon({ , ], diff --git a/src/components/icons/calendar-date.tsx b/src/components/icons/calendar-date.tsx index 7ec169281..c0d7af60f 100644 --- a/src/components/icons/calendar-date.tsx +++ b/src/components/icons/calendar-date.tsx @@ -7,9 +7,9 @@ const CalendarDate = createIcon({ , ], diff --git a/src/components/icons/calendar-heart-01.tsx b/src/components/icons/calendar-heart-01.tsx index f45bc119d..a6b608000 100644 --- a/src/components/icons/calendar-heart-01.tsx +++ b/src/components/icons/calendar-heart-01.tsx @@ -7,9 +7,9 @@ const CalendarHeart01 = createIcon({ , ], diff --git a/src/components/icons/calendar-heart-02.tsx b/src/components/icons/calendar-heart-02.tsx index 68fcbc08f..b7763c4fe 100644 --- a/src/components/icons/calendar-heart-02.tsx +++ b/src/components/icons/calendar-heart-02.tsx @@ -7,9 +7,9 @@ const CalendarHeart02 = createIcon({ , ], diff --git a/src/components/icons/calendar-minus-01.tsx b/src/components/icons/calendar-minus-01.tsx index 225dd3417..e55512dc8 100644 --- a/src/components/icons/calendar-minus-01.tsx +++ b/src/components/icons/calendar-minus-01.tsx @@ -7,9 +7,9 @@ const CalendarMinus01 = createIcon({ , ], diff --git a/src/components/icons/calendar-minus-02.tsx b/src/components/icons/calendar-minus-02.tsx index d817b5259..5a8e278e3 100644 --- a/src/components/icons/calendar-minus-02.tsx +++ b/src/components/icons/calendar-minus-02.tsx @@ -7,9 +7,9 @@ const CalendarMinus02 = createIcon({ , ], diff --git a/src/components/icons/calendar-plus-01.tsx b/src/components/icons/calendar-plus-01.tsx index c2023586c..34c767f5a 100644 --- a/src/components/icons/calendar-plus-01.tsx +++ b/src/components/icons/calendar-plus-01.tsx @@ -7,9 +7,9 @@ const CalendarPlus01 = createIcon({ , ], diff --git a/src/components/icons/calendar-plus-02.tsx b/src/components/icons/calendar-plus-02.tsx index 2c57d2180..a83bd0a67 100644 --- a/src/components/icons/calendar-plus-02.tsx +++ b/src/components/icons/calendar-plus-02.tsx @@ -7,9 +7,9 @@ const CalendarPlus02 = createIcon({ , ], diff --git a/src/components/icons/calendar.tsx b/src/components/icons/calendar.tsx index 06fed3473..56bd84909 100644 --- a/src/components/icons/calendar.tsx +++ b/src/components/icons/calendar.tsx @@ -7,9 +7,9 @@ const Calendar = createIcon({ , ], diff --git a/src/components/icons/camera-01.tsx b/src/components/icons/camera-01.tsx index 98bcf7a3f..58966663a 100644 --- a/src/components/icons/camera-01.tsx +++ b/src/components/icons/camera-01.tsx @@ -7,17 +7,17 @@ const Camera01 = createIcon({ , , ], diff --git a/src/components/icons/camera-02.tsx b/src/components/icons/camera-02.tsx index 0fb0798d3..4b0dd36b3 100644 --- a/src/components/icons/camera-02.tsx +++ b/src/components/icons/camera-02.tsx @@ -7,17 +7,17 @@ const Camera02 = createIcon({ , , ], diff --git a/src/components/icons/camera-03.tsx b/src/components/icons/camera-03.tsx index c91945540..ed3cae87e 100644 --- a/src/components/icons/camera-03.tsx +++ b/src/components/icons/camera-03.tsx @@ -7,17 +7,17 @@ const Camera03 = createIcon({ , , ], diff --git a/src/components/icons/camera-lens.tsx b/src/components/icons/camera-lens.tsx index fae7677f0..744656c59 100644 --- a/src/components/icons/camera-lens.tsx +++ b/src/components/icons/camera-lens.tsx @@ -7,9 +7,9 @@ const CameraLens = createIcon({ , ], diff --git a/src/components/icons/camera-off.tsx b/src/components/icons/camera-off.tsx index 767ee28f5..795c13cd8 100644 --- a/src/components/icons/camera-off.tsx +++ b/src/components/icons/camera-off.tsx @@ -7,9 +7,9 @@ const CameraOff = createIcon({ , ], diff --git a/src/components/icons/camera-plus.tsx b/src/components/icons/camera-plus.tsx index 6be92719f..419b1943c 100644 --- a/src/components/icons/camera-plus.tsx +++ b/src/components/icons/camera-plus.tsx @@ -7,9 +7,9 @@ const CameraPlus = createIcon({ , ], diff --git a/src/components/icons/car-01.tsx b/src/components/icons/car-01.tsx index 28229e3a1..5dad0f39d 100644 --- a/src/components/icons/car-01.tsx +++ b/src/components/icons/car-01.tsx @@ -7,9 +7,9 @@ const Car01 = createIcon({ , ], diff --git a/src/components/icons/car-02.tsx b/src/components/icons/car-02.tsx index 1c763f96f..118094a01 100644 --- a/src/components/icons/car-02.tsx +++ b/src/components/icons/car-02.tsx @@ -7,9 +7,9 @@ const Car02 = createIcon({ , ], diff --git a/src/components/icons/certificate-01.tsx b/src/components/icons/certificate-01.tsx index 2aabe3812..5a486319e 100644 --- a/src/components/icons/certificate-01.tsx +++ b/src/components/icons/certificate-01.tsx @@ -7,9 +7,9 @@ const Certificate01 = createIcon({ , ], diff --git a/src/components/icons/certificate-02.tsx b/src/components/icons/certificate-02.tsx index cc30692e5..89c319009 100644 --- a/src/components/icons/certificate-02.tsx +++ b/src/components/icons/certificate-02.tsx @@ -7,9 +7,9 @@ const Certificate02 = createIcon({ , ], diff --git a/src/components/icons/chart-breakout-circle.tsx b/src/components/icons/chart-breakout-circle.tsx index b1cfeee0d..bfe50d342 100644 --- a/src/components/icons/chart-breakout-circle.tsx +++ b/src/components/icons/chart-breakout-circle.tsx @@ -7,9 +7,9 @@ const ChartBreakoutCircle = createIcon({ , ], diff --git a/src/components/icons/chart-breakout-square.tsx b/src/components/icons/chart-breakout-square.tsx index 036fbdd12..dc0288f2f 100644 --- a/src/components/icons/chart-breakout-square.tsx +++ b/src/components/icons/chart-breakout-square.tsx @@ -7,9 +7,9 @@ const ChartBreakoutSquare = createIcon({ , ], diff --git a/src/components/icons/check-circle-broken.tsx b/src/components/icons/check-circle-broken.tsx index 5cd74544e..5fc7d7a72 100644 --- a/src/components/icons/check-circle-broken.tsx +++ b/src/components/icons/check-circle-broken.tsx @@ -7,9 +7,9 @@ const CheckCircleBroken = createIcon({ , ], diff --git a/src/components/icons/check-circle.tsx b/src/components/icons/check-circle.tsx index f5dae0b79..8c1a714f3 100644 --- a/src/components/icons/check-circle.tsx +++ b/src/components/icons/check-circle.tsx @@ -7,9 +7,9 @@ const CheckCircle = createIcon({ , ], diff --git a/src/components/icons/check-done-01.tsx b/src/components/icons/check-done-01.tsx index c6e57f21e..801b4a8b1 100644 --- a/src/components/icons/check-done-01.tsx +++ b/src/components/icons/check-done-01.tsx @@ -7,9 +7,9 @@ const CheckDone01 = createIcon({ , ], diff --git a/src/components/icons/check-done-02.tsx b/src/components/icons/check-done-02.tsx index 40cc7df14..664940544 100644 --- a/src/components/icons/check-done-02.tsx +++ b/src/components/icons/check-done-02.tsx @@ -7,9 +7,9 @@ const CheckDone02 = createIcon({ , ], diff --git a/src/components/icons/check-heart.tsx b/src/components/icons/check-heart.tsx index 05349d540..9bf262f0e 100644 --- a/src/components/icons/check-heart.tsx +++ b/src/components/icons/check-heart.tsx @@ -7,9 +7,9 @@ const CheckHeart = createIcon({ , ], diff --git a/src/components/icons/check-square-broken.tsx b/src/components/icons/check-square-broken.tsx index 7dd37202d..20f99651c 100644 --- a/src/components/icons/check-square-broken.tsx +++ b/src/components/icons/check-square-broken.tsx @@ -7,9 +7,9 @@ const CheckSquareBroken = createIcon({ , ], diff --git a/src/components/icons/check-square.tsx b/src/components/icons/check-square.tsx index a2ceb6f81..1e4d22f67 100644 --- a/src/components/icons/check-square.tsx +++ b/src/components/icons/check-square.tsx @@ -7,9 +7,9 @@ const CheckSquare = createIcon({ , ], diff --git a/src/components/icons/check-verified-01.tsx b/src/components/icons/check-verified-01.tsx index 1402a7fd1..4a22269f6 100644 --- a/src/components/icons/check-verified-01.tsx +++ b/src/components/icons/check-verified-01.tsx @@ -7,9 +7,9 @@ const CheckVerified01 = createIcon({ , ], diff --git a/src/components/icons/check-verified-02.tsx b/src/components/icons/check-verified-02.tsx index 2055e6902..6038fb969 100644 --- a/src/components/icons/check-verified-02.tsx +++ b/src/components/icons/check-verified-02.tsx @@ -7,9 +7,9 @@ const CheckVerified02 = createIcon({ , ], diff --git a/src/components/icons/check-verified-03.tsx b/src/components/icons/check-verified-03.tsx index 7f4efb18d..4655872eb 100644 --- a/src/components/icons/check-verified-03.tsx +++ b/src/components/icons/check-verified-03.tsx @@ -7,9 +7,9 @@ const CheckVerified03 = createIcon({ , ], diff --git a/src/components/icons/check.tsx b/src/components/icons/check.tsx index 6fd9c9fad..115f15a29 100644 --- a/src/components/icons/check.tsx +++ b/src/components/icons/check.tsx @@ -7,9 +7,9 @@ const Check = createIcon({ , ], diff --git a/src/components/icons/chevron-down-double.tsx b/src/components/icons/chevron-down-double.tsx index b6fcbf896..3e16c90c2 100644 --- a/src/components/icons/chevron-down-double.tsx +++ b/src/components/icons/chevron-down-double.tsx @@ -7,9 +7,9 @@ const ChevronDownDouble = createIcon({ , ], diff --git a/src/components/icons/chevron-down.tsx b/src/components/icons/chevron-down.tsx index 866a60352..b093aac5a 100644 --- a/src/components/icons/chevron-down.tsx +++ b/src/components/icons/chevron-down.tsx @@ -7,9 +7,9 @@ const ChevronDown = createIcon({ , ], diff --git a/src/components/icons/chevron-left-double.tsx b/src/components/icons/chevron-left-double.tsx index 31f314afe..56a79f095 100644 --- a/src/components/icons/chevron-left-double.tsx +++ b/src/components/icons/chevron-left-double.tsx @@ -7,9 +7,9 @@ const ChevronLeftDouble = createIcon({ , ], diff --git a/src/components/icons/chevron-left.tsx b/src/components/icons/chevron-left.tsx index 7a45ebd09..1219e7101 100644 --- a/src/components/icons/chevron-left.tsx +++ b/src/components/icons/chevron-left.tsx @@ -7,9 +7,9 @@ const ChevronLeft = createIcon({ , ], diff --git a/src/components/icons/chevron-right-double.tsx b/src/components/icons/chevron-right-double.tsx index 4c8645cdf..f5d06a238 100644 --- a/src/components/icons/chevron-right-double.tsx +++ b/src/components/icons/chevron-right-double.tsx @@ -7,9 +7,9 @@ const ChevronRightDouble = createIcon({ , ], diff --git a/src/components/icons/chevron-right.tsx b/src/components/icons/chevron-right.tsx index 0a405866b..90602def8 100644 --- a/src/components/icons/chevron-right.tsx +++ b/src/components/icons/chevron-right.tsx @@ -7,9 +7,9 @@ const ChevronRight = createIcon({ , ], diff --git a/src/components/icons/chevron-selector-horizontal.tsx b/src/components/icons/chevron-selector-horizontal.tsx index beb8babf8..38870eedd 100644 --- a/src/components/icons/chevron-selector-horizontal.tsx +++ b/src/components/icons/chevron-selector-horizontal.tsx @@ -7,9 +7,9 @@ const ChevronSelectorHorizontal = createIcon({ , ], diff --git a/src/components/icons/chevron-selector-vertical.tsx b/src/components/icons/chevron-selector-vertical.tsx index dae0f80c4..b65f5c7b8 100644 --- a/src/components/icons/chevron-selector-vertical.tsx +++ b/src/components/icons/chevron-selector-vertical.tsx @@ -7,9 +7,9 @@ const ChevronSelectorVertical = createIcon({ , ], diff --git a/src/components/icons/chevron-up-double.tsx b/src/components/icons/chevron-up-double.tsx index 1c3c3060d..d7c5de044 100644 --- a/src/components/icons/chevron-up-double.tsx +++ b/src/components/icons/chevron-up-double.tsx @@ -7,9 +7,9 @@ const ChevronUpDouble = createIcon({ , ], diff --git a/src/components/icons/chevron-up.tsx b/src/components/icons/chevron-up.tsx index d0f108a5d..2850b1b65 100644 --- a/src/components/icons/chevron-up.tsx +++ b/src/components/icons/chevron-up.tsx @@ -7,9 +7,9 @@ const ChevronUp = createIcon({ , ], diff --git a/src/components/icons/chrome-cast.tsx b/src/components/icons/chrome-cast.tsx index fd4793b2c..aefe24eb9 100644 --- a/src/components/icons/chrome-cast.tsx +++ b/src/components/icons/chrome-cast.tsx @@ -7,9 +7,9 @@ const ChromeCast = createIcon({ , ], diff --git a/src/components/icons/circle-cut.tsx b/src/components/icons/circle-cut.tsx index e233ee464..824a4306f 100644 --- a/src/components/icons/circle-cut.tsx +++ b/src/components/icons/circle-cut.tsx @@ -7,9 +7,9 @@ const CircleCut = createIcon({ , ], diff --git a/src/components/icons/circle.tsx b/src/components/icons/circle.tsx index f7c563d77..d2566d976 100644 --- a/src/components/icons/circle.tsx +++ b/src/components/icons/circle.tsx @@ -7,9 +7,9 @@ const Circle = createIcon({ , ], diff --git a/src/components/icons/clapperboard.tsx b/src/components/icons/clapperboard.tsx index 86edb3968..0454cd715 100644 --- a/src/components/icons/clapperboard.tsx +++ b/src/components/icons/clapperboard.tsx @@ -7,9 +7,9 @@ const Clapperboard = createIcon({ , ], diff --git a/src/components/icons/clipboard-attachment.tsx b/src/components/icons/clipboard-attachment.tsx index 34b284209..84a9771f7 100644 --- a/src/components/icons/clipboard-attachment.tsx +++ b/src/components/icons/clipboard-attachment.tsx @@ -7,9 +7,9 @@ const ClipboardAttachment = createIcon({ , ], diff --git a/src/components/icons/clipboard-check.tsx b/src/components/icons/clipboard-check.tsx index 62eb3fc35..5f434a17d 100644 --- a/src/components/icons/clipboard-check.tsx +++ b/src/components/icons/clipboard-check.tsx @@ -7,9 +7,9 @@ const ClipboardCheck = createIcon({ , ], diff --git a/src/components/icons/clipboard-download.tsx b/src/components/icons/clipboard-download.tsx index 5824ba255..c0f46d9c1 100644 --- a/src/components/icons/clipboard-download.tsx +++ b/src/components/icons/clipboard-download.tsx @@ -7,9 +7,9 @@ const ClipboardDownload = createIcon({ , ], diff --git a/src/components/icons/clipboard-minus.tsx b/src/components/icons/clipboard-minus.tsx index 5baf80de0..5fc8b4870 100644 --- a/src/components/icons/clipboard-minus.tsx +++ b/src/components/icons/clipboard-minus.tsx @@ -7,9 +7,9 @@ const ClipboardMinus = createIcon({ , ], diff --git a/src/components/icons/clipboard-plus.tsx b/src/components/icons/clipboard-plus.tsx index 9bec53a6b..551e12b58 100644 --- a/src/components/icons/clipboard-plus.tsx +++ b/src/components/icons/clipboard-plus.tsx @@ -7,9 +7,9 @@ const ClipboardPlus = createIcon({ , ], diff --git a/src/components/icons/clipboard-x.tsx b/src/components/icons/clipboard-x.tsx index a0a95fc6a..967e66b9f 100644 --- a/src/components/icons/clipboard-x.tsx +++ b/src/components/icons/clipboard-x.tsx @@ -7,9 +7,9 @@ const ClipboardX = createIcon({ , ], diff --git a/src/components/icons/clipboard.tsx b/src/components/icons/clipboard.tsx index 7fe3d010f..881955331 100644 --- a/src/components/icons/clipboard.tsx +++ b/src/components/icons/clipboard.tsx @@ -7,9 +7,9 @@ const Clipboard = createIcon({ , ], diff --git a/src/components/icons/clock-check.tsx b/src/components/icons/clock-check.tsx index 9080f7b3f..0d1d4e0d7 100644 --- a/src/components/icons/clock-check.tsx +++ b/src/components/icons/clock-check.tsx @@ -7,9 +7,9 @@ const ClockCheck = createIcon({ , ], diff --git a/src/components/icons/clock-fast-forward.tsx b/src/components/icons/clock-fast-forward.tsx index 304034f2a..69b0b8d01 100644 --- a/src/components/icons/clock-fast-forward.tsx +++ b/src/components/icons/clock-fast-forward.tsx @@ -7,9 +7,9 @@ const ClockFastForward = createIcon({ , ], diff --git a/src/components/icons/clock-plus.tsx b/src/components/icons/clock-plus.tsx index c622860c7..ed55f37e3 100644 --- a/src/components/icons/clock-plus.tsx +++ b/src/components/icons/clock-plus.tsx @@ -7,9 +7,9 @@ const ClockPlus = createIcon({ , ], diff --git a/src/components/icons/clock-refresh.tsx b/src/components/icons/clock-refresh.tsx index 11e2ee4ca..9badba548 100644 --- a/src/components/icons/clock-refresh.tsx +++ b/src/components/icons/clock-refresh.tsx @@ -7,9 +7,9 @@ const ClockRefresh = createIcon({ , ], diff --git a/src/components/icons/clock-rewind.tsx b/src/components/icons/clock-rewind.tsx index e110cee7f..e7531eb5f 100644 --- a/src/components/icons/clock-rewind.tsx +++ b/src/components/icons/clock-rewind.tsx @@ -7,9 +7,9 @@ const ClockRewind = createIcon({ , ], diff --git a/src/components/icons/clock-snooze.tsx b/src/components/icons/clock-snooze.tsx index c4dcc8ba6..0615d0863 100644 --- a/src/components/icons/clock-snooze.tsx +++ b/src/components/icons/clock-snooze.tsx @@ -7,9 +7,9 @@ const ClockSnooze = createIcon({ , ], diff --git a/src/components/icons/clock-stopwatch.tsx b/src/components/icons/clock-stopwatch.tsx index a8da8de19..3dccbdb3b 100644 --- a/src/components/icons/clock-stopwatch.tsx +++ b/src/components/icons/clock-stopwatch.tsx @@ -7,9 +7,9 @@ const ClockStopwatch = createIcon({ , ], diff --git a/src/components/icons/clock.tsx b/src/components/icons/clock.tsx index 6ed66b748..8fdae3835 100644 --- a/src/components/icons/clock.tsx +++ b/src/components/icons/clock.tsx @@ -7,9 +7,9 @@ const Clock = createIcon({ , ], diff --git a/src/components/icons/cloud-01.tsx b/src/components/icons/cloud-01.tsx index c49c3f56b..5ca2e2943 100644 --- a/src/components/icons/cloud-01.tsx +++ b/src/components/icons/cloud-01.tsx @@ -7,9 +7,9 @@ const Cloud01 = createIcon({ , ], diff --git a/src/components/icons/cloud-02.tsx b/src/components/icons/cloud-02.tsx index 54aa19862..531c9ff38 100644 --- a/src/components/icons/cloud-02.tsx +++ b/src/components/icons/cloud-02.tsx @@ -7,9 +7,9 @@ const Cloud02 = createIcon({ , ], diff --git a/src/components/icons/cloud-03.tsx b/src/components/icons/cloud-03.tsx index 658d6f7ae..7eeac4a25 100644 --- a/src/components/icons/cloud-03.tsx +++ b/src/components/icons/cloud-03.tsx @@ -7,9 +7,9 @@ const Cloud03 = createIcon({ , ], diff --git a/src/components/icons/cloud-blank-01.tsx b/src/components/icons/cloud-blank-01.tsx index 3a1ccb7bf..8cc4c8a62 100644 --- a/src/components/icons/cloud-blank-01.tsx +++ b/src/components/icons/cloud-blank-01.tsx @@ -7,9 +7,9 @@ const CloudBlank01 = createIcon({ , ], diff --git a/src/components/icons/cloud-blank-02.tsx b/src/components/icons/cloud-blank-02.tsx index 7ea9fa7e0..7ec6d5ac1 100644 --- a/src/components/icons/cloud-blank-02.tsx +++ b/src/components/icons/cloud-blank-02.tsx @@ -7,9 +7,9 @@ const CloudBlank02 = createIcon({ , ], diff --git a/src/components/icons/cloud-lightning.tsx b/src/components/icons/cloud-lightning.tsx index 74a16ed80..a6949ee76 100644 --- a/src/components/icons/cloud-lightning.tsx +++ b/src/components/icons/cloud-lightning.tsx @@ -7,9 +7,9 @@ const CloudLightning = createIcon({ , ], diff --git a/src/components/icons/cloud-moon.tsx b/src/components/icons/cloud-moon.tsx index 38d78f6ff..cdb83125f 100644 --- a/src/components/icons/cloud-moon.tsx +++ b/src/components/icons/cloud-moon.tsx @@ -7,9 +7,9 @@ const CloudMoon = createIcon({ , ], diff --git a/src/components/icons/cloud-off.tsx b/src/components/icons/cloud-off.tsx index 2d57dab56..f6a8b2a73 100644 --- a/src/components/icons/cloud-off.tsx +++ b/src/components/icons/cloud-off.tsx @@ -7,9 +7,9 @@ const CloudOff = createIcon({ , ], diff --git a/src/components/icons/cloud-raining-01.tsx b/src/components/icons/cloud-raining-01.tsx index 54eab0a60..3cc361b14 100644 --- a/src/components/icons/cloud-raining-01.tsx +++ b/src/components/icons/cloud-raining-01.tsx @@ -7,9 +7,9 @@ const CloudRaining01 = createIcon({ , ], diff --git a/src/components/icons/cloud-raining-02.tsx b/src/components/icons/cloud-raining-02.tsx index 534b5912c..018c2c7bb 100644 --- a/src/components/icons/cloud-raining-02.tsx +++ b/src/components/icons/cloud-raining-02.tsx @@ -7,9 +7,9 @@ const CloudRaining02 = createIcon({ , ], diff --git a/src/components/icons/cloud-raining-03.tsx b/src/components/icons/cloud-raining-03.tsx index 628c39389..60e41e7ab 100644 --- a/src/components/icons/cloud-raining-03.tsx +++ b/src/components/icons/cloud-raining-03.tsx @@ -7,9 +7,9 @@ const CloudRaining03 = createIcon({ , ], diff --git a/src/components/icons/cloud-raining-04.tsx b/src/components/icons/cloud-raining-04.tsx index 32e993f28..a6be93219 100644 --- a/src/components/icons/cloud-raining-04.tsx +++ b/src/components/icons/cloud-raining-04.tsx @@ -7,9 +7,9 @@ const CloudRaining04 = createIcon({ , ], diff --git a/src/components/icons/cloud-raining-05.tsx b/src/components/icons/cloud-raining-05.tsx index fe5f9b12e..f7aadfd1a 100644 --- a/src/components/icons/cloud-raining-05.tsx +++ b/src/components/icons/cloud-raining-05.tsx @@ -7,9 +7,9 @@ const CloudRaining05 = createIcon({ , ], diff --git a/src/components/icons/cloud-raining-06.tsx b/src/components/icons/cloud-raining-06.tsx index 3fdab6ea6..cec454e78 100644 --- a/src/components/icons/cloud-raining-06.tsx +++ b/src/components/icons/cloud-raining-06.tsx @@ -7,9 +7,9 @@ const CloudRaining06 = createIcon({ , ], diff --git a/src/components/icons/cloud-snowing-01.tsx b/src/components/icons/cloud-snowing-01.tsx index 49e18ef8d..8e58bc6da 100644 --- a/src/components/icons/cloud-snowing-01.tsx +++ b/src/components/icons/cloud-snowing-01.tsx @@ -7,9 +7,9 @@ const CloudSnowing01 = createIcon({ , ], diff --git a/src/components/icons/cloud-snowing-02.tsx b/src/components/icons/cloud-snowing-02.tsx index 333f3cd32..ffb2895fd 100644 --- a/src/components/icons/cloud-snowing-02.tsx +++ b/src/components/icons/cloud-snowing-02.tsx @@ -7,9 +7,9 @@ const CloudSnowing02 = createIcon({ , ], diff --git a/src/components/icons/cloud-sun-01.tsx b/src/components/icons/cloud-sun-01.tsx index c6445bdbe..8057849bc 100644 --- a/src/components/icons/cloud-sun-01.tsx +++ b/src/components/icons/cloud-sun-01.tsx @@ -7,9 +7,9 @@ const CloudSun01 = createIcon({ , ], diff --git a/src/components/icons/cloud-sun-02.tsx b/src/components/icons/cloud-sun-02.tsx index 1d4ef318c..d1a2ffd26 100644 --- a/src/components/icons/cloud-sun-02.tsx +++ b/src/components/icons/cloud-sun-02.tsx @@ -7,9 +7,9 @@ const CloudSun02 = createIcon({ , ], diff --git a/src/components/icons/cloud-sun-03.tsx b/src/components/icons/cloud-sun-03.tsx index 6ec73cbb5..805f63328 100644 --- a/src/components/icons/cloud-sun-03.tsx +++ b/src/components/icons/cloud-sun-03.tsx @@ -7,9 +7,9 @@ const CloudSun03 = createIcon({ , ], diff --git a/src/components/icons/code-01.tsx b/src/components/icons/code-01.tsx index 916e4c044..26caad3de 100644 --- a/src/components/icons/code-01.tsx +++ b/src/components/icons/code-01.tsx @@ -7,9 +7,9 @@ const Code01 = createIcon({ , ], diff --git a/src/components/icons/code-02.tsx b/src/components/icons/code-02.tsx index c598b76cc..9f54eec3c 100644 --- a/src/components/icons/code-02.tsx +++ b/src/components/icons/code-02.tsx @@ -7,9 +7,9 @@ const Code02 = createIcon({ , ], diff --git a/src/components/icons/code-browser.tsx b/src/components/icons/code-browser.tsx index d81eaece2..5be0f6410 100644 --- a/src/components/icons/code-browser.tsx +++ b/src/components/icons/code-browser.tsx @@ -7,9 +7,9 @@ const CodeBrowser = createIcon({ , ], diff --git a/src/components/icons/code-circle-01.tsx b/src/components/icons/code-circle-01.tsx index 211e34887..6d0608f89 100644 --- a/src/components/icons/code-circle-01.tsx +++ b/src/components/icons/code-circle-01.tsx @@ -7,9 +7,9 @@ const CodeCircle01 = createIcon({ , ], diff --git a/src/components/icons/code-circle-02.tsx b/src/components/icons/code-circle-02.tsx index 67a6bf2a2..ecc22d053 100644 --- a/src/components/icons/code-circle-02.tsx +++ b/src/components/icons/code-circle-02.tsx @@ -7,9 +7,9 @@ const CodeCircle02 = createIcon({ , ], diff --git a/src/components/icons/code-circle-03.tsx b/src/components/icons/code-circle-03.tsx index 004fd7bc1..f15419dce 100644 --- a/src/components/icons/code-circle-03.tsx +++ b/src/components/icons/code-circle-03.tsx @@ -7,9 +7,9 @@ const CodeCircle03 = createIcon({ , ], diff --git a/src/components/icons/code-snippet-01.tsx b/src/components/icons/code-snippet-01.tsx index 6aa9ffd39..2a1332010 100644 --- a/src/components/icons/code-snippet-01.tsx +++ b/src/components/icons/code-snippet-01.tsx @@ -7,9 +7,9 @@ const CodeSnippet01 = createIcon({ , ], diff --git a/src/components/icons/code-snippet-02.tsx b/src/components/icons/code-snippet-02.tsx index 2b11f9ed9..d2cbb4d68 100644 --- a/src/components/icons/code-snippet-02.tsx +++ b/src/components/icons/code-snippet-02.tsx @@ -7,9 +7,9 @@ const CodeSnippet02 = createIcon({ , ], diff --git a/src/components/icons/code-square-01.tsx b/src/components/icons/code-square-01.tsx index cb8b6cf87..cae22ae77 100644 --- a/src/components/icons/code-square-01.tsx +++ b/src/components/icons/code-square-01.tsx @@ -7,9 +7,9 @@ const CodeSquare01 = createIcon({ , ], diff --git a/src/components/icons/code-square-02.tsx b/src/components/icons/code-square-02.tsx index 6546f6f1c..7bcf062d1 100644 --- a/src/components/icons/code-square-02.tsx +++ b/src/components/icons/code-square-02.tsx @@ -7,9 +7,9 @@ const CodeSquare02 = createIcon({ , ], diff --git a/src/components/icons/codepen.tsx b/src/components/icons/codepen.tsx index 98d13c8a7..227f47fdc 100644 --- a/src/components/icons/codepen.tsx +++ b/src/components/icons/codepen.tsx @@ -7,9 +7,9 @@ const Codepen = createIcon({ , ], diff --git a/src/components/icons/coins-01.tsx b/src/components/icons/coins-01.tsx index a50776615..b6b22a58a 100644 --- a/src/components/icons/coins-01.tsx +++ b/src/components/icons/coins-01.tsx @@ -7,9 +7,9 @@ const Coins01 = createIcon({ , ], diff --git a/src/components/icons/coins-02.tsx b/src/components/icons/coins-02.tsx index 2afb6f515..f0adc9e81 100644 --- a/src/components/icons/coins-02.tsx +++ b/src/components/icons/coins-02.tsx @@ -7,9 +7,9 @@ const Coins02 = createIcon({ , ], diff --git a/src/components/icons/coins-03.tsx b/src/components/icons/coins-03.tsx index fb36a8d4f..eb42c215d 100644 --- a/src/components/icons/coins-03.tsx +++ b/src/components/icons/coins-03.tsx @@ -7,9 +7,9 @@ const Coins03 = createIcon({ , ], diff --git a/src/components/icons/coins-04.tsx b/src/components/icons/coins-04.tsx index 2cbfc4df7..fc30c275e 100644 --- a/src/components/icons/coins-04.tsx +++ b/src/components/icons/coins-04.tsx @@ -7,9 +7,9 @@ const Coins04 = createIcon({ , ], diff --git a/src/components/icons/coins-hand.tsx b/src/components/icons/coins-hand.tsx index e2b51d637..e98ed7752 100644 --- a/src/components/icons/coins-hand.tsx +++ b/src/components/icons/coins-hand.tsx @@ -7,9 +7,9 @@ const CoinsHand = createIcon({ , ], diff --git a/src/components/icons/coins-stacked-01.tsx b/src/components/icons/coins-stacked-01.tsx index 42019e2ea..23b9d6eb3 100644 --- a/src/components/icons/coins-stacked-01.tsx +++ b/src/components/icons/coins-stacked-01.tsx @@ -7,9 +7,9 @@ const CoinsStacked01 = createIcon({ , ], diff --git a/src/components/icons/coins-stacked-02.tsx b/src/components/icons/coins-stacked-02.tsx index 953fe22e5..8d3ec37fc 100644 --- a/src/components/icons/coins-stacked-02.tsx +++ b/src/components/icons/coins-stacked-02.tsx @@ -7,9 +7,9 @@ const CoinsStacked02 = createIcon({ , ], diff --git a/src/components/icons/coins-stacked-03.tsx b/src/components/icons/coins-stacked-03.tsx index 7bb32cccb..4074db79f 100644 --- a/src/components/icons/coins-stacked-03.tsx +++ b/src/components/icons/coins-stacked-03.tsx @@ -7,9 +7,9 @@ const CoinsStacked03 = createIcon({ , ], diff --git a/src/components/icons/coins-stacked-04.tsx b/src/components/icons/coins-stacked-04.tsx index 55e987432..43b36aedc 100644 --- a/src/components/icons/coins-stacked-04.tsx +++ b/src/components/icons/coins-stacked-04.tsx @@ -7,9 +7,9 @@ const CoinsStacked04 = createIcon({ , ], diff --git a/src/components/icons/coins-swap-01.tsx b/src/components/icons/coins-swap-01.tsx index b7e596cd1..36b8d905b 100644 --- a/src/components/icons/coins-swap-01.tsx +++ b/src/components/icons/coins-swap-01.tsx @@ -7,9 +7,9 @@ const CoinsSwap01 = createIcon({ , ], diff --git a/src/components/icons/coins-swap-02.tsx b/src/components/icons/coins-swap-02.tsx index ed38467f8..28f3d422e 100644 --- a/src/components/icons/coins-swap-02.tsx +++ b/src/components/icons/coins-swap-02.tsx @@ -7,9 +7,9 @@ const CoinsSwap02 = createIcon({ , ], diff --git a/src/components/icons/colors-1.tsx b/src/components/icons/colors-1.tsx index c50dc85f7..54dab5a06 100644 --- a/src/components/icons/colors-1.tsx +++ b/src/components/icons/colors-1.tsx @@ -7,9 +7,9 @@ const Colors1 = createIcon({ , ], diff --git a/src/components/icons/colors.tsx b/src/components/icons/colors.tsx index 87a71d7eb..5d60e8fbc 100644 --- a/src/components/icons/colors.tsx +++ b/src/components/icons/colors.tsx @@ -7,9 +7,9 @@ const Colors = createIcon({ , ], diff --git a/src/components/icons/columns-01.tsx b/src/components/icons/columns-01.tsx index 112c9a14e..f981f743a 100644 --- a/src/components/icons/columns-01.tsx +++ b/src/components/icons/columns-01.tsx @@ -7,17 +7,17 @@ const Columns01 = createIcon({ , , ], diff --git a/src/components/icons/columns-02.tsx b/src/components/icons/columns-02.tsx index 85bd4a91a..624e0cd56 100644 --- a/src/components/icons/columns-02.tsx +++ b/src/components/icons/columns-02.tsx @@ -7,9 +7,9 @@ const Columns02 = createIcon({ , ], diff --git a/src/components/icons/columns-03.tsx b/src/components/icons/columns-03.tsx index ec8475a5e..0ef4df9af 100644 --- a/src/components/icons/columns-03.tsx +++ b/src/components/icons/columns-03.tsx @@ -7,9 +7,9 @@ const Columns03 = createIcon({ , ], diff --git a/src/components/icons/command.tsx b/src/components/icons/command.tsx index 751535d4e..199f22142 100644 --- a/src/components/icons/command.tsx +++ b/src/components/icons/command.tsx @@ -7,9 +7,9 @@ const Command = createIcon({ , ], diff --git a/src/components/icons/compass-01.tsx b/src/components/icons/compass-01.tsx index e09ea037d..cf49082db 100644 --- a/src/components/icons/compass-01.tsx +++ b/src/components/icons/compass-01.tsx @@ -7,9 +7,9 @@ const Compass01 = createIcon({ , ], diff --git a/src/components/icons/compass-02.tsx b/src/components/icons/compass-02.tsx index fa6bd03be..537c11f51 100644 --- a/src/components/icons/compass-02.tsx +++ b/src/components/icons/compass-02.tsx @@ -7,9 +7,9 @@ const Compass02 = createIcon({ , ], diff --git a/src/components/icons/compass-03.tsx b/src/components/icons/compass-03.tsx index cf4053558..3d677c3ad 100644 --- a/src/components/icons/compass-03.tsx +++ b/src/components/icons/compass-03.tsx @@ -7,17 +7,17 @@ const Compass03 = createIcon({ , , ], diff --git a/src/components/icons/compass.tsx b/src/components/icons/compass.tsx index 5ad769216..823d1329d 100644 --- a/src/components/icons/compass.tsx +++ b/src/components/icons/compass.tsx @@ -7,9 +7,9 @@ const Compass = createIcon({ , ], diff --git a/src/components/icons/container.tsx b/src/components/icons/container.tsx index 08fdef1bc..8a73eb97c 100644 --- a/src/components/icons/container.tsx +++ b/src/components/icons/container.tsx @@ -7,9 +7,9 @@ const Container = createIcon({ , ], diff --git a/src/components/icons/contrast-01.tsx b/src/components/icons/contrast-01.tsx index 14399e9ad..73003065d 100644 --- a/src/components/icons/contrast-01.tsx +++ b/src/components/icons/contrast-01.tsx @@ -7,9 +7,9 @@ const Contrast01 = createIcon({ , ], diff --git a/src/components/icons/contrast-02.tsx b/src/components/icons/contrast-02.tsx index 9929ce62f..94508a9e4 100644 --- a/src/components/icons/contrast-02.tsx +++ b/src/components/icons/contrast-02.tsx @@ -7,17 +7,17 @@ const Contrast02 = createIcon({ , , ], diff --git a/src/components/icons/contrast-03.tsx b/src/components/icons/contrast-03.tsx index 2f02f8475..c8b9df035 100644 --- a/src/components/icons/contrast-03.tsx +++ b/src/components/icons/contrast-03.tsx @@ -7,17 +7,17 @@ const Contrast03 = createIcon({ , , ], diff --git a/src/components/icons/copy-01.tsx b/src/components/icons/copy-01.tsx index 1cbd2ceab..a074e865f 100644 --- a/src/components/icons/copy-01.tsx +++ b/src/components/icons/copy-01.tsx @@ -7,9 +7,9 @@ const Copy01 = createIcon({ , ], diff --git a/src/components/icons/copy-02.tsx b/src/components/icons/copy-02.tsx index 9a911e472..0613cd782 100644 --- a/src/components/icons/copy-02.tsx +++ b/src/components/icons/copy-02.tsx @@ -7,9 +7,9 @@ const Copy02 = createIcon({ , ], diff --git a/src/components/icons/copy-03.tsx b/src/components/icons/copy-03.tsx index 7442ad932..bb560592b 100644 --- a/src/components/icons/copy-03.tsx +++ b/src/components/icons/copy-03.tsx @@ -7,9 +7,9 @@ const Copy03 = createIcon({ , ], diff --git a/src/components/icons/copy-04.tsx b/src/components/icons/copy-04.tsx index 48b6e0a2e..30ee3486e 100644 --- a/src/components/icons/copy-04.tsx +++ b/src/components/icons/copy-04.tsx @@ -7,9 +7,9 @@ const Copy04 = createIcon({ , ], diff --git a/src/components/icons/copy-05.tsx b/src/components/icons/copy-05.tsx index 1e0866c6f..707d29662 100644 --- a/src/components/icons/copy-05.tsx +++ b/src/components/icons/copy-05.tsx @@ -7,9 +7,9 @@ const Copy05 = createIcon({ , ], diff --git a/src/components/icons/copy-06.tsx b/src/components/icons/copy-06.tsx index 64c2d468b..a7de46036 100644 --- a/src/components/icons/copy-06.tsx +++ b/src/components/icons/copy-06.tsx @@ -7,9 +7,9 @@ const Copy06 = createIcon({ , ], diff --git a/src/components/icons/copy-07.tsx b/src/components/icons/copy-07.tsx index 033e0b156..f8c20aa8f 100644 --- a/src/components/icons/copy-07.tsx +++ b/src/components/icons/copy-07.tsx @@ -7,9 +7,9 @@ const Copy07 = createIcon({ , ], diff --git a/src/components/icons/corner-down-left.tsx b/src/components/icons/corner-down-left.tsx index 3123b0616..3273a1e59 100644 --- a/src/components/icons/corner-down-left.tsx +++ b/src/components/icons/corner-down-left.tsx @@ -7,9 +7,9 @@ const CornerDownLeft = createIcon({ , ], diff --git a/src/components/icons/corner-down-right.tsx b/src/components/icons/corner-down-right.tsx index 246c2cfe6..41914ffff 100644 --- a/src/components/icons/corner-down-right.tsx +++ b/src/components/icons/corner-down-right.tsx @@ -7,9 +7,9 @@ const CornerDownRight = createIcon({ , ], diff --git a/src/components/icons/corner-left-down.tsx b/src/components/icons/corner-left-down.tsx index 8857d7b1a..e266b271c 100644 --- a/src/components/icons/corner-left-down.tsx +++ b/src/components/icons/corner-left-down.tsx @@ -7,9 +7,9 @@ const CornerLeftDown = createIcon({ , ], diff --git a/src/components/icons/corner-left-up.tsx b/src/components/icons/corner-left-up.tsx index 8bc4673a6..e72eb4b68 100644 --- a/src/components/icons/corner-left-up.tsx +++ b/src/components/icons/corner-left-up.tsx @@ -7,9 +7,9 @@ const CornerLeftUp = createIcon({ , ], diff --git a/src/components/icons/corner-right-down.tsx b/src/components/icons/corner-right-down.tsx index c3dbb071e..be9af2115 100644 --- a/src/components/icons/corner-right-down.tsx +++ b/src/components/icons/corner-right-down.tsx @@ -7,9 +7,9 @@ const CornerRightDown = createIcon({ , ], diff --git a/src/components/icons/corner-right-up.tsx b/src/components/icons/corner-right-up.tsx index 5db674de5..2fb813878 100644 --- a/src/components/icons/corner-right-up.tsx +++ b/src/components/icons/corner-right-up.tsx @@ -7,9 +7,9 @@ const CornerRightUp = createIcon({ , ], diff --git a/src/components/icons/corner-up-left.tsx b/src/components/icons/corner-up-left.tsx index 7a8ee3072..acc0f6e67 100644 --- a/src/components/icons/corner-up-left.tsx +++ b/src/components/icons/corner-up-left.tsx @@ -7,9 +7,9 @@ const CornerUpLeft = createIcon({ , ], diff --git a/src/components/icons/corner-up-right.tsx b/src/components/icons/corner-up-right.tsx index e25e1b6c7..f95cc0d87 100644 --- a/src/components/icons/corner-up-right.tsx +++ b/src/components/icons/corner-up-right.tsx @@ -7,9 +7,9 @@ const CornerUpRight = createIcon({ , ], diff --git a/src/components/icons/cpu-chip-01.tsx b/src/components/icons/cpu-chip-01.tsx index 0a38a958e..cab8595ac 100644 --- a/src/components/icons/cpu-chip-01.tsx +++ b/src/components/icons/cpu-chip-01.tsx @@ -7,9 +7,9 @@ const CpuChip01 = createIcon({ , ], diff --git a/src/components/icons/cpu-chip-02.tsx b/src/components/icons/cpu-chip-02.tsx index c6bdbb37f..c93581239 100644 --- a/src/components/icons/cpu-chip-02.tsx +++ b/src/components/icons/cpu-chip-02.tsx @@ -7,9 +7,9 @@ const CpuChip02 = createIcon({ , ], diff --git a/src/components/icons/credit-card-01.tsx b/src/components/icons/credit-card-01.tsx index 9f1b6ef37..ab82773a0 100644 --- a/src/components/icons/credit-card-01.tsx +++ b/src/components/icons/credit-card-01.tsx @@ -7,9 +7,9 @@ const CreditCard01 = createIcon({ , ], diff --git a/src/components/icons/credit-card-02.tsx b/src/components/icons/credit-card-02.tsx index 4557023f0..973b3b1fc 100644 --- a/src/components/icons/credit-card-02.tsx +++ b/src/components/icons/credit-card-02.tsx @@ -7,9 +7,9 @@ const CreditCard02 = createIcon({ , ], diff --git a/src/components/icons/credit-card-check.tsx b/src/components/icons/credit-card-check.tsx index 7ab879edc..170a273b2 100644 --- a/src/components/icons/credit-card-check.tsx +++ b/src/components/icons/credit-card-check.tsx @@ -7,9 +7,9 @@ const CreditCardCheck = createIcon({ , ], diff --git a/src/components/icons/credit-card-down.tsx b/src/components/icons/credit-card-down.tsx index 65aa380a1..74b12e7a1 100644 --- a/src/components/icons/credit-card-down.tsx +++ b/src/components/icons/credit-card-down.tsx @@ -7,9 +7,9 @@ const CreditCardDown = createIcon({ , ], diff --git a/src/components/icons/credit-card-download.tsx b/src/components/icons/credit-card-download.tsx index 07bca8107..1e8a4f514 100644 --- a/src/components/icons/credit-card-download.tsx +++ b/src/components/icons/credit-card-download.tsx @@ -7,9 +7,9 @@ const CreditCardDownload = createIcon({ , ], diff --git a/src/components/icons/credit-card-edit.tsx b/src/components/icons/credit-card-edit.tsx index 47fe8a6bf..4326b5596 100644 --- a/src/components/icons/credit-card-edit.tsx +++ b/src/components/icons/credit-card-edit.tsx @@ -7,9 +7,9 @@ const CreditCardEdit = createIcon({ , ], diff --git a/src/components/icons/credit-card-lock.tsx b/src/components/icons/credit-card-lock.tsx index 0bc9d8807..e3d4adf99 100644 --- a/src/components/icons/credit-card-lock.tsx +++ b/src/components/icons/credit-card-lock.tsx @@ -7,9 +7,9 @@ const CreditCardLock = createIcon({ , ], diff --git a/src/components/icons/credit-card-minus.tsx b/src/components/icons/credit-card-minus.tsx index caa9ed036..5f36e92d9 100644 --- a/src/components/icons/credit-card-minus.tsx +++ b/src/components/icons/credit-card-minus.tsx @@ -7,9 +7,9 @@ const CreditCardMinus = createIcon({ , ], diff --git a/src/components/icons/credit-card-plus.tsx b/src/components/icons/credit-card-plus.tsx index c9f4e7bed..d7f29abb9 100644 --- a/src/components/icons/credit-card-plus.tsx +++ b/src/components/icons/credit-card-plus.tsx @@ -7,9 +7,9 @@ const CreditCardPlus = createIcon({ , ], diff --git a/src/components/icons/credit-card-refresh.tsx b/src/components/icons/credit-card-refresh.tsx index 58cdbff1d..ddcb61e77 100644 --- a/src/components/icons/credit-card-refresh.tsx +++ b/src/components/icons/credit-card-refresh.tsx @@ -7,9 +7,9 @@ const CreditCardRefresh = createIcon({ , ], diff --git a/src/components/icons/credit-card-search.tsx b/src/components/icons/credit-card-search.tsx index f7a4d01bd..e99b472e6 100644 --- a/src/components/icons/credit-card-search.tsx +++ b/src/components/icons/credit-card-search.tsx @@ -7,9 +7,9 @@ const CreditCardSearch = createIcon({ , ], diff --git a/src/components/icons/credit-card-shield.tsx b/src/components/icons/credit-card-shield.tsx index 42a22a3f4..85eddd780 100644 --- a/src/components/icons/credit-card-shield.tsx +++ b/src/components/icons/credit-card-shield.tsx @@ -7,9 +7,9 @@ const CreditCardShield = createIcon({ , ], diff --git a/src/components/icons/credit-card-up.tsx b/src/components/icons/credit-card-up.tsx index a568bfb3e..1dbe03ca5 100644 --- a/src/components/icons/credit-card-up.tsx +++ b/src/components/icons/credit-card-up.tsx @@ -7,9 +7,9 @@ const CreditCardUp = createIcon({ , ], diff --git a/src/components/icons/credit-card-upload.tsx b/src/components/icons/credit-card-upload.tsx index ba33200c2..5d0676b96 100644 --- a/src/components/icons/credit-card-upload.tsx +++ b/src/components/icons/credit-card-upload.tsx @@ -7,9 +7,9 @@ const CreditCardUpload = createIcon({ , ], diff --git a/src/components/icons/credit-card-x.tsx b/src/components/icons/credit-card-x.tsx index 271ee47e3..4a17f0201 100644 --- a/src/components/icons/credit-card-x.tsx +++ b/src/components/icons/credit-card-x.tsx @@ -7,9 +7,9 @@ const CreditCardX = createIcon({ , ], diff --git a/src/components/icons/crop-01.tsx b/src/components/icons/crop-01.tsx index 15199a4d4..c23c2bf7b 100644 --- a/src/components/icons/crop-01.tsx +++ b/src/components/icons/crop-01.tsx @@ -7,9 +7,9 @@ const Crop01 = createIcon({ , ], diff --git a/src/components/icons/crop-02.tsx b/src/components/icons/crop-02.tsx index 8900cb54f..33f660fc1 100644 --- a/src/components/icons/crop-02.tsx +++ b/src/components/icons/crop-02.tsx @@ -7,9 +7,9 @@ const Crop02 = createIcon({ , ], diff --git a/src/components/icons/cryptocurrency-01.tsx b/src/components/icons/cryptocurrency-01.tsx index d5273f220..7936d1154 100644 --- a/src/components/icons/cryptocurrency-01.tsx +++ b/src/components/icons/cryptocurrency-01.tsx @@ -7,9 +7,9 @@ const Cryptocurrency01 = createIcon({ , ], diff --git a/src/components/icons/cryptocurrency-02.tsx b/src/components/icons/cryptocurrency-02.tsx index fca632c5f..c144484a6 100644 --- a/src/components/icons/cryptocurrency-02.tsx +++ b/src/components/icons/cryptocurrency-02.tsx @@ -7,9 +7,9 @@ const Cryptocurrency02 = createIcon({ , ], diff --git a/src/components/icons/cryptocurrency-03.tsx b/src/components/icons/cryptocurrency-03.tsx index e6219e21b..34fb6edd5 100644 --- a/src/components/icons/cryptocurrency-03.tsx +++ b/src/components/icons/cryptocurrency-03.tsx @@ -7,9 +7,9 @@ const Cryptocurrency03 = createIcon({ , ], diff --git a/src/components/icons/cryptocurrency-04.tsx b/src/components/icons/cryptocurrency-04.tsx index 94a76bcc2..4ad3352ec 100644 --- a/src/components/icons/cryptocurrency-04.tsx +++ b/src/components/icons/cryptocurrency-04.tsx @@ -7,9 +7,9 @@ const Cryptocurrency04 = createIcon({ , ], diff --git a/src/components/icons/cube-01.tsx b/src/components/icons/cube-01.tsx index d5dfedf8b..54b049879 100644 --- a/src/components/icons/cube-01.tsx +++ b/src/components/icons/cube-01.tsx @@ -7,9 +7,9 @@ const Cube01 = createIcon({ , ], diff --git a/src/components/icons/cube-02.tsx b/src/components/icons/cube-02.tsx index 6cccdeec4..cce9329fc 100644 --- a/src/components/icons/cube-02.tsx +++ b/src/components/icons/cube-02.tsx @@ -7,9 +7,9 @@ const Cube02 = createIcon({ , ], diff --git a/src/components/icons/cube-03.tsx b/src/components/icons/cube-03.tsx index 431605b2b..2dd005b57 100644 --- a/src/components/icons/cube-03.tsx +++ b/src/components/icons/cube-03.tsx @@ -7,9 +7,9 @@ const Cube03 = createIcon({ , ], diff --git a/src/components/icons/cube-04.tsx b/src/components/icons/cube-04.tsx index 9c2b3ca41..fa171f6eb 100644 --- a/src/components/icons/cube-04.tsx +++ b/src/components/icons/cube-04.tsx @@ -7,9 +7,9 @@ const Cube04 = createIcon({ , ], diff --git a/src/components/icons/cube-outline.tsx b/src/components/icons/cube-outline.tsx index 0c287bdfb..bd6fa2a10 100644 --- a/src/components/icons/cube-outline.tsx +++ b/src/components/icons/cube-outline.tsx @@ -7,9 +7,9 @@ const CubeOutline = createIcon({ , ], diff --git a/src/components/icons/currency-bitcoin-circle.tsx b/src/components/icons/currency-bitcoin-circle.tsx index eee47c627..b336d0f08 100644 --- a/src/components/icons/currency-bitcoin-circle.tsx +++ b/src/components/icons/currency-bitcoin-circle.tsx @@ -7,9 +7,9 @@ const CurrencyBitcoinCircle = createIcon({ , ], diff --git a/src/components/icons/currency-bitcoin.tsx b/src/components/icons/currency-bitcoin.tsx index b4637b4fe..48fa829ef 100644 --- a/src/components/icons/currency-bitcoin.tsx +++ b/src/components/icons/currency-bitcoin.tsx @@ -7,9 +7,9 @@ const CurrencyBitcoin = createIcon({ , ], diff --git a/src/components/icons/currency-dollar-circle.tsx b/src/components/icons/currency-dollar-circle.tsx index c48cb6bf0..386ff592f 100644 --- a/src/components/icons/currency-dollar-circle.tsx +++ b/src/components/icons/currency-dollar-circle.tsx @@ -7,9 +7,9 @@ const CurrencyDollarCircle = createIcon({ , ], diff --git a/src/components/icons/currency-dollar.tsx b/src/components/icons/currency-dollar.tsx index 73437c3c5..8747aa2c1 100644 --- a/src/components/icons/currency-dollar.tsx +++ b/src/components/icons/currency-dollar.tsx @@ -7,9 +7,9 @@ const CurrencyDollar = createIcon({ , ], diff --git a/src/components/icons/currency-ethereum-circle.tsx b/src/components/icons/currency-ethereum-circle.tsx index 092993974..9c22a60fe 100644 --- a/src/components/icons/currency-ethereum-circle.tsx +++ b/src/components/icons/currency-ethereum-circle.tsx @@ -7,9 +7,9 @@ const CurrencyEthereumCircle = createIcon({ , ], diff --git a/src/components/icons/currency-ethereum.tsx b/src/components/icons/currency-ethereum.tsx index eafdca708..abaa83e98 100644 --- a/src/components/icons/currency-ethereum.tsx +++ b/src/components/icons/currency-ethereum.tsx @@ -7,9 +7,9 @@ const CurrencyEthereum = createIcon({ , ], diff --git a/src/components/icons/currency-euro-circle.tsx b/src/components/icons/currency-euro-circle.tsx index 7be8ec73a..9c4cff292 100644 --- a/src/components/icons/currency-euro-circle.tsx +++ b/src/components/icons/currency-euro-circle.tsx @@ -7,9 +7,9 @@ const CurrencyEuroCircle = createIcon({ , ], diff --git a/src/components/icons/currency-euro.tsx b/src/components/icons/currency-euro.tsx index 211bda4f1..8f9e30684 100644 --- a/src/components/icons/currency-euro.tsx +++ b/src/components/icons/currency-euro.tsx @@ -7,9 +7,9 @@ const CurrencyEuro = createIcon({ , ], diff --git a/src/components/icons/currency-pound-circle.tsx b/src/components/icons/currency-pound-circle.tsx index e75519279..e0c9bcd97 100644 --- a/src/components/icons/currency-pound-circle.tsx +++ b/src/components/icons/currency-pound-circle.tsx @@ -7,9 +7,9 @@ const CurrencyPoundCircle = createIcon({ , ], diff --git a/src/components/icons/currency-pound.tsx b/src/components/icons/currency-pound.tsx index 0e578ac44..1967b136c 100644 --- a/src/components/icons/currency-pound.tsx +++ b/src/components/icons/currency-pound.tsx @@ -7,9 +7,9 @@ const CurrencyPound = createIcon({ , ], diff --git a/src/components/icons/currency-ruble-circle.tsx b/src/components/icons/currency-ruble-circle.tsx index a61f8b30d..32b473a63 100644 --- a/src/components/icons/currency-ruble-circle.tsx +++ b/src/components/icons/currency-ruble-circle.tsx @@ -7,9 +7,9 @@ const CurrencyRubleCircle = createIcon({ , ], diff --git a/src/components/icons/currency-ruble.tsx b/src/components/icons/currency-ruble.tsx index a53d8fd52..375eb4206 100644 --- a/src/components/icons/currency-ruble.tsx +++ b/src/components/icons/currency-ruble.tsx @@ -7,9 +7,9 @@ const CurrencyRuble = createIcon({ , ], diff --git a/src/components/icons/currency-rupee-circle.tsx b/src/components/icons/currency-rupee-circle.tsx index b9876b09e..ea0aa3222 100644 --- a/src/components/icons/currency-rupee-circle.tsx +++ b/src/components/icons/currency-rupee-circle.tsx @@ -7,9 +7,9 @@ const CurrencyRupeeCircle = createIcon({ , ], diff --git a/src/components/icons/currency-rupee.tsx b/src/components/icons/currency-rupee.tsx index 2a709c183..86a56e304 100644 --- a/src/components/icons/currency-rupee.tsx +++ b/src/components/icons/currency-rupee.tsx @@ -7,9 +7,9 @@ const CurrencyRupee = createIcon({ , ], diff --git a/src/components/icons/currency-yen-circle.tsx b/src/components/icons/currency-yen-circle.tsx index 865dbfa9a..7d4991851 100644 --- a/src/components/icons/currency-yen-circle.tsx +++ b/src/components/icons/currency-yen-circle.tsx @@ -7,9 +7,9 @@ const CurrencyYenCircle = createIcon({ , ], diff --git a/src/components/icons/currency-yen.tsx b/src/components/icons/currency-yen.tsx index 6fbd7dded..6c0977ee7 100644 --- a/src/components/icons/currency-yen.tsx +++ b/src/components/icons/currency-yen.tsx @@ -7,9 +7,9 @@ const CurrencyYen = createIcon({ , ], diff --git a/src/components/icons/cursor-01.tsx b/src/components/icons/cursor-01.tsx index 69cbe4d2a..2dd86e3b0 100644 --- a/src/components/icons/cursor-01.tsx +++ b/src/components/icons/cursor-01.tsx @@ -7,9 +7,9 @@ const Cursor01 = createIcon({ , ], diff --git a/src/components/icons/cursor-02.tsx b/src/components/icons/cursor-02.tsx index d64437149..a600a00fe 100644 --- a/src/components/icons/cursor-02.tsx +++ b/src/components/icons/cursor-02.tsx @@ -7,9 +7,9 @@ const Cursor02 = createIcon({ , ], diff --git a/src/components/icons/cursor-03.tsx b/src/components/icons/cursor-03.tsx index a395f6980..4214935cc 100644 --- a/src/components/icons/cursor-03.tsx +++ b/src/components/icons/cursor-03.tsx @@ -7,9 +7,9 @@ const Cursor03 = createIcon({ , ], diff --git a/src/components/icons/cursor-04.tsx b/src/components/icons/cursor-04.tsx index e6eaa2cd2..b2b31eaf0 100644 --- a/src/components/icons/cursor-04.tsx +++ b/src/components/icons/cursor-04.tsx @@ -7,9 +7,9 @@ const Cursor04 = createIcon({ , ], diff --git a/src/components/icons/cursor-box.tsx b/src/components/icons/cursor-box.tsx index c0c1d2a8d..89b714241 100644 --- a/src/components/icons/cursor-box.tsx +++ b/src/components/icons/cursor-box.tsx @@ -7,9 +7,9 @@ const CursorBox = createIcon({ , ], diff --git a/src/components/icons/cursor-click-01.tsx b/src/components/icons/cursor-click-01.tsx index f2029b414..7c288dadb 100644 --- a/src/components/icons/cursor-click-01.tsx +++ b/src/components/icons/cursor-click-01.tsx @@ -7,9 +7,9 @@ const CursorClick01 = createIcon({ , ], diff --git a/src/components/icons/cursor-click-02.tsx b/src/components/icons/cursor-click-02.tsx index 3909d9996..1ab0381a7 100644 --- a/src/components/icons/cursor-click-02.tsx +++ b/src/components/icons/cursor-click-02.tsx @@ -7,9 +7,9 @@ const CursorClick02 = createIcon({ , ], diff --git a/src/components/icons/data.tsx b/src/components/icons/data.tsx index 075f91979..4869b4add 100644 --- a/src/components/icons/data.tsx +++ b/src/components/icons/data.tsx @@ -7,33 +7,33 @@ const Data = createIcon({ , , , , ], diff --git a/src/components/icons/database-01.tsx b/src/components/icons/database-01.tsx index 320e703db..0848c145c 100644 --- a/src/components/icons/database-01.tsx +++ b/src/components/icons/database-01.tsx @@ -7,9 +7,9 @@ const Database01 = createIcon({ , ], diff --git a/src/components/icons/database-02.tsx b/src/components/icons/database-02.tsx index b8a3051f9..2def052d2 100644 --- a/src/components/icons/database-02.tsx +++ b/src/components/icons/database-02.tsx @@ -7,9 +7,9 @@ const Database02 = createIcon({ , ], diff --git a/src/components/icons/database-03.tsx b/src/components/icons/database-03.tsx index 54771c74d..026cccacf 100644 --- a/src/components/icons/database-03.tsx +++ b/src/components/icons/database-03.tsx @@ -7,9 +7,9 @@ const Database03 = createIcon({ , ], diff --git a/src/components/icons/dataflow-01.tsx b/src/components/icons/dataflow-01.tsx index d15273603..fe4fcb424 100644 --- a/src/components/icons/dataflow-01.tsx +++ b/src/components/icons/dataflow-01.tsx @@ -7,9 +7,9 @@ const Dataflow01 = createIcon({ , ], diff --git a/src/components/icons/dataflow-02.tsx b/src/components/icons/dataflow-02.tsx index 9bd494765..d8fd7d96d 100644 --- a/src/components/icons/dataflow-02.tsx +++ b/src/components/icons/dataflow-02.tsx @@ -7,9 +7,9 @@ const Dataflow02 = createIcon({ , ], diff --git a/src/components/icons/dataflow-03.tsx b/src/components/icons/dataflow-03.tsx index 8c9731eaa..143ff2a27 100644 --- a/src/components/icons/dataflow-03.tsx +++ b/src/components/icons/dataflow-03.tsx @@ -7,9 +7,9 @@ const Dataflow03 = createIcon({ , ], diff --git a/src/components/icons/dataflow-04.tsx b/src/components/icons/dataflow-04.tsx index 2652cb74b..5e80ebe35 100644 --- a/src/components/icons/dataflow-04.tsx +++ b/src/components/icons/dataflow-04.tsx @@ -7,9 +7,9 @@ const Dataflow04 = createIcon({ , ], diff --git a/src/components/icons/delete.tsx b/src/components/icons/delete.tsx index a5cf84da7..a9c7a6667 100644 --- a/src/components/icons/delete.tsx +++ b/src/components/icons/delete.tsx @@ -7,9 +7,9 @@ const Delete = createIcon({ , ], diff --git a/src/components/icons/diamond-01.tsx b/src/components/icons/diamond-01.tsx index 1a4d52dc2..aa44c5b35 100644 --- a/src/components/icons/diamond-01.tsx +++ b/src/components/icons/diamond-01.tsx @@ -7,9 +7,9 @@ const Diamond01 = createIcon({ , ], diff --git a/src/components/icons/diamond-02.tsx b/src/components/icons/diamond-02.tsx index 184c502c6..faa463384 100644 --- a/src/components/icons/diamond-02.tsx +++ b/src/components/icons/diamond-02.tsx @@ -7,9 +7,9 @@ const Diamond02 = createIcon({ , ], diff --git a/src/components/icons/dice-1.tsx b/src/components/icons/dice-1.tsx index bc28b16c0..21382af44 100644 --- a/src/components/icons/dice-1.tsx +++ b/src/components/icons/dice-1.tsx @@ -7,9 +7,9 @@ const Dice1 = createIcon({ , ], diff --git a/src/components/icons/dice-2.tsx b/src/components/icons/dice-2.tsx index 3a72118f0..cb3262cb5 100644 --- a/src/components/icons/dice-2.tsx +++ b/src/components/icons/dice-2.tsx @@ -7,9 +7,9 @@ const Dice2 = createIcon({ , ], diff --git a/src/components/icons/dice-3.tsx b/src/components/icons/dice-3.tsx index 81d2df7a0..88ade2a4b 100644 --- a/src/components/icons/dice-3.tsx +++ b/src/components/icons/dice-3.tsx @@ -7,9 +7,9 @@ const Dice3 = createIcon({ , ], diff --git a/src/components/icons/dice-4.tsx b/src/components/icons/dice-4.tsx index 3280d6da2..bab1ef336 100644 --- a/src/components/icons/dice-4.tsx +++ b/src/components/icons/dice-4.tsx @@ -7,9 +7,9 @@ const Dice4 = createIcon({ , ], diff --git a/src/components/icons/dice-5.tsx b/src/components/icons/dice-5.tsx index 1d906fb63..f84df7be4 100644 --- a/src/components/icons/dice-5.tsx +++ b/src/components/icons/dice-5.tsx @@ -7,9 +7,9 @@ const Dice5 = createIcon({ , ], diff --git a/src/components/icons/dice-6.tsx b/src/components/icons/dice-6.tsx index 743f47143..8e07fe744 100644 --- a/src/components/icons/dice-6.tsx +++ b/src/components/icons/dice-6.tsx @@ -7,9 +7,9 @@ const Dice6 = createIcon({ , ], diff --git a/src/components/icons/disc-01.tsx b/src/components/icons/disc-01.tsx index 0c759355a..1b52503a4 100644 --- a/src/components/icons/disc-01.tsx +++ b/src/components/icons/disc-01.tsx @@ -7,17 +7,17 @@ const Disc01 = createIcon({ , , ], diff --git a/src/components/icons/disc-02.tsx b/src/components/icons/disc-02.tsx index 58e1f7c25..2d4662e06 100644 --- a/src/components/icons/disc-02.tsx +++ b/src/components/icons/disc-02.tsx @@ -7,9 +7,9 @@ const Disc02 = createIcon({ , ], diff --git a/src/components/icons/distribute-spacing-horizontal.tsx b/src/components/icons/distribute-spacing-horizontal.tsx index 4b2b54b8e..147ba52ac 100644 --- a/src/components/icons/distribute-spacing-horizontal.tsx +++ b/src/components/icons/distribute-spacing-horizontal.tsx @@ -7,9 +7,9 @@ const DistributeSpacingHorizontal = createIcon({ , ], diff --git a/src/components/icons/distribute-spacing-vertical.tsx b/src/components/icons/distribute-spacing-vertical.tsx index d4dc83171..edaf90ccc 100644 --- a/src/components/icons/distribute-spacing-vertical.tsx +++ b/src/components/icons/distribute-spacing-vertical.tsx @@ -7,9 +7,9 @@ const DistributeSpacingVertical = createIcon({ , ], diff --git a/src/components/icons/divide-01.tsx b/src/components/icons/divide-01.tsx index c9d02b4ba..f99881693 100644 --- a/src/components/icons/divide-01.tsx +++ b/src/components/icons/divide-01.tsx @@ -7,9 +7,9 @@ const Divide01 = createIcon({ , ], diff --git a/src/components/icons/divide-02.tsx b/src/components/icons/divide-02.tsx index a4fe1f575..222ea5a30 100644 --- a/src/components/icons/divide-02.tsx +++ b/src/components/icons/divide-02.tsx @@ -7,9 +7,9 @@ const Divide02 = createIcon({ , ], diff --git a/src/components/icons/divide-03.tsx b/src/components/icons/divide-03.tsx index e713f65a4..8ad9dcf17 100644 --- a/src/components/icons/divide-03.tsx +++ b/src/components/icons/divide-03.tsx @@ -7,9 +7,9 @@ const Divide03 = createIcon({ , ], diff --git a/src/components/icons/divider.tsx b/src/components/icons/divider.tsx index fcd2a77d6..3e5151b93 100644 --- a/src/components/icons/divider.tsx +++ b/src/components/icons/divider.tsx @@ -7,9 +7,9 @@ const Divider = createIcon({ , ], diff --git a/src/components/icons/dotpoints-01.tsx b/src/components/icons/dotpoints-01.tsx index fd7a98c87..596358841 100644 --- a/src/components/icons/dotpoints-01.tsx +++ b/src/components/icons/dotpoints-01.tsx @@ -7,9 +7,9 @@ const Dotpoints01 = createIcon({ , ], diff --git a/src/components/icons/dotpoints-02.tsx b/src/components/icons/dotpoints-02.tsx index 558d79914..8fbe48e48 100644 --- a/src/components/icons/dotpoints-02.tsx +++ b/src/components/icons/dotpoints-02.tsx @@ -7,9 +7,9 @@ const Dotpoints02 = createIcon({ , ], diff --git a/src/components/icons/dots-grid.tsx b/src/components/icons/dots-grid.tsx index 78caf6c26..28cd41e53 100644 --- a/src/components/icons/dots-grid.tsx +++ b/src/components/icons/dots-grid.tsx @@ -7,73 +7,73 @@ const DotsGrid = createIcon({ , , , , , , , , , ], diff --git a/src/components/icons/dots-horizontal.tsx b/src/components/icons/dots-horizontal.tsx index 69d4694d5..0446f930c 100644 --- a/src/components/icons/dots-horizontal.tsx +++ b/src/components/icons/dots-horizontal.tsx @@ -7,25 +7,25 @@ const DotsHorizontal = createIcon({ , , , ], diff --git a/src/components/icons/dots-vertical.tsx b/src/components/icons/dots-vertical.tsx index cb240906e..c2f0dbf8d 100644 --- a/src/components/icons/dots-vertical.tsx +++ b/src/components/icons/dots-vertical.tsx @@ -7,25 +7,25 @@ const DotsVertical = createIcon({ , , , ], diff --git a/src/components/icons/download-01.tsx b/src/components/icons/download-01.tsx index 4cb9372d4..40bc12d81 100644 --- a/src/components/icons/download-01.tsx +++ b/src/components/icons/download-01.tsx @@ -7,9 +7,9 @@ const Download01 = createIcon({ , ], diff --git a/src/components/icons/download-02.tsx b/src/components/icons/download-02.tsx index 5fcfb479e..abfe4b663 100644 --- a/src/components/icons/download-02.tsx +++ b/src/components/icons/download-02.tsx @@ -7,9 +7,9 @@ const Download02 = createIcon({ , ], diff --git a/src/components/icons/download-03.tsx b/src/components/icons/download-03.tsx index 66db94ac2..2e1f58e0a 100644 --- a/src/components/icons/download-03.tsx +++ b/src/components/icons/download-03.tsx @@ -7,9 +7,9 @@ const Download03 = createIcon({ , ], diff --git a/src/components/icons/download-04.tsx b/src/components/icons/download-04.tsx index 6442443d2..4c85d6bab 100644 --- a/src/components/icons/download-04.tsx +++ b/src/components/icons/download-04.tsx @@ -7,9 +7,9 @@ const Download04 = createIcon({ , ], diff --git a/src/components/icons/download-cloud-01.tsx b/src/components/icons/download-cloud-01.tsx index bfca999dc..58d8efbcb 100644 --- a/src/components/icons/download-cloud-01.tsx +++ b/src/components/icons/download-cloud-01.tsx @@ -7,9 +7,9 @@ const DownloadCloud01 = createIcon({ , ], diff --git a/src/components/icons/download-cloud-02.tsx b/src/components/icons/download-cloud-02.tsx index a1f3fb40f..3bbf56792 100644 --- a/src/components/icons/download-cloud-02.tsx +++ b/src/components/icons/download-cloud-02.tsx @@ -7,9 +7,9 @@ const DownloadCloud02 = createIcon({ , ], diff --git a/src/components/icons/drop.tsx b/src/components/icons/drop.tsx index 6b520961a..77af2ffc5 100644 --- a/src/components/icons/drop.tsx +++ b/src/components/icons/drop.tsx @@ -7,9 +7,9 @@ const Drop = createIcon({ , ], diff --git a/src/components/icons/droplets-01.tsx b/src/components/icons/droplets-01.tsx index 8b88d49d6..5d4c1e779 100644 --- a/src/components/icons/droplets-01.tsx +++ b/src/components/icons/droplets-01.tsx @@ -7,17 +7,17 @@ const Droplets01 = createIcon({ , , ], diff --git a/src/components/icons/droplets-02.tsx b/src/components/icons/droplets-02.tsx index 687128ca8..0bd6117f7 100644 --- a/src/components/icons/droplets-02.tsx +++ b/src/components/icons/droplets-02.tsx @@ -7,9 +7,9 @@ const Droplets02 = createIcon({ , ], diff --git a/src/components/icons/droplets-03.tsx b/src/components/icons/droplets-03.tsx index 94b18531f..d5394910a 100644 --- a/src/components/icons/droplets-03.tsx +++ b/src/components/icons/droplets-03.tsx @@ -7,9 +7,9 @@ const Droplets03 = createIcon({ , ], diff --git a/src/components/icons/dropper.tsx b/src/components/icons/dropper.tsx index bb1764b27..f24ce5e4d 100644 --- a/src/components/icons/dropper.tsx +++ b/src/components/icons/dropper.tsx @@ -7,9 +7,9 @@ const Dropper = createIcon({ , ], diff --git a/src/components/icons/edit-01.tsx b/src/components/icons/edit-01.tsx index f0efaf4f9..2aa781d3c 100644 --- a/src/components/icons/edit-01.tsx +++ b/src/components/icons/edit-01.tsx @@ -7,9 +7,9 @@ const Edit01 = createIcon({ , ], diff --git a/src/components/icons/edit-02.tsx b/src/components/icons/edit-02.tsx index b2da70bb3..6d95a576c 100644 --- a/src/components/icons/edit-02.tsx +++ b/src/components/icons/edit-02.tsx @@ -7,9 +7,9 @@ const Edit02 = createIcon({ , ], diff --git a/src/components/icons/edit-03.tsx b/src/components/icons/edit-03.tsx index 548fd9e5c..fd15c6150 100644 --- a/src/components/icons/edit-03.tsx +++ b/src/components/icons/edit-03.tsx @@ -7,9 +7,9 @@ const Edit03 = createIcon({ , ], diff --git a/src/components/icons/edit-04.tsx b/src/components/icons/edit-04.tsx index 02b69b664..235ab50af 100644 --- a/src/components/icons/edit-04.tsx +++ b/src/components/icons/edit-04.tsx @@ -7,9 +7,9 @@ const Edit04 = createIcon({ , ], diff --git a/src/components/icons/edit-05.tsx b/src/components/icons/edit-05.tsx index a38151e56..6cd11ab02 100644 --- a/src/components/icons/edit-05.tsx +++ b/src/components/icons/edit-05.tsx @@ -7,9 +7,9 @@ const Edit05 = createIcon({ , ], diff --git a/src/components/icons/equal-not.tsx b/src/components/icons/equal-not.tsx index 373820840..c70aec4c6 100644 --- a/src/components/icons/equal-not.tsx +++ b/src/components/icons/equal-not.tsx @@ -7,9 +7,9 @@ const EqualNot = createIcon({ , ], diff --git a/src/components/icons/equal.tsx b/src/components/icons/equal.tsx index bdfa4e6a8..375094e0f 100644 --- a/src/components/icons/equal.tsx +++ b/src/components/icons/equal.tsx @@ -7,9 +7,9 @@ const Equal = createIcon({ , ], diff --git a/src/components/icons/eraser.tsx b/src/components/icons/eraser.tsx index 02ace3420..fc5d6acfe 100644 --- a/src/components/icons/eraser.tsx +++ b/src/components/icons/eraser.tsx @@ -7,9 +7,9 @@ const Eraser = createIcon({ , ], diff --git a/src/components/icons/expand-01.tsx b/src/components/icons/expand-01.tsx index d154cbafc..0166e6975 100644 --- a/src/components/icons/expand-01.tsx +++ b/src/components/icons/expand-01.tsx @@ -7,9 +7,9 @@ const Expand01 = createIcon({ , ], diff --git a/src/components/icons/expand-02.tsx b/src/components/icons/expand-02.tsx index 081993a72..39884ed8d 100644 --- a/src/components/icons/expand-02.tsx +++ b/src/components/icons/expand-02.tsx @@ -7,9 +7,9 @@ const Expand02 = createIcon({ , ], diff --git a/src/components/icons/expand-03.tsx b/src/components/icons/expand-03.tsx index 8495b454b..3640fd725 100644 --- a/src/components/icons/expand-03.tsx +++ b/src/components/icons/expand-03.tsx @@ -7,9 +7,9 @@ const Expand03 = createIcon({ , ], diff --git a/src/components/icons/expand-04.tsx b/src/components/icons/expand-04.tsx index 0a04d863b..6693ed6f1 100644 --- a/src/components/icons/expand-04.tsx +++ b/src/components/icons/expand-04.tsx @@ -7,9 +7,9 @@ const Expand04 = createIcon({ , ], diff --git a/src/components/icons/expand-05.tsx b/src/components/icons/expand-05.tsx index 806efde3d..410bb3270 100644 --- a/src/components/icons/expand-05.tsx +++ b/src/components/icons/expand-05.tsx @@ -7,9 +7,9 @@ const Expand05 = createIcon({ , ], diff --git a/src/components/icons/expand-06.tsx b/src/components/icons/expand-06.tsx index 0dbae108f..9648d3162 100644 --- a/src/components/icons/expand-06.tsx +++ b/src/components/icons/expand-06.tsx @@ -7,9 +7,9 @@ const Expand06 = createIcon({ , ], diff --git a/src/components/icons/eye-off.tsx b/src/components/icons/eye-off.tsx index 74eb91c92..7dbe6c8cc 100644 --- a/src/components/icons/eye-off.tsx +++ b/src/components/icons/eye-off.tsx @@ -7,9 +7,9 @@ const EyeOff = createIcon({ , ], diff --git a/src/components/icons/eye.tsx b/src/components/icons/eye.tsx index 220ce9df5..45b626435 100644 --- a/src/components/icons/eye.tsx +++ b/src/components/icons/eye.tsx @@ -7,17 +7,17 @@ const Eye = createIcon({ , , ], diff --git a/src/components/icons/face-content.tsx b/src/components/icons/face-content.tsx index 0025f3e6e..2fd9c2bad 100644 --- a/src/components/icons/face-content.tsx +++ b/src/components/icons/face-content.tsx @@ -7,9 +7,9 @@ const FaceContent = createIcon({ , ], diff --git a/src/components/icons/face-frown.tsx b/src/components/icons/face-frown.tsx index 7b2222f89..4de07f952 100644 --- a/src/components/icons/face-frown.tsx +++ b/src/components/icons/face-frown.tsx @@ -7,9 +7,9 @@ const FaceFrown = createIcon({ , ], diff --git a/src/components/icons/face-happy.tsx b/src/components/icons/face-happy.tsx index 3d65ddb76..c29c43986 100644 --- a/src/components/icons/face-happy.tsx +++ b/src/components/icons/face-happy.tsx @@ -7,9 +7,9 @@ const FaceHappy = createIcon({ , ], diff --git a/src/components/icons/face-id-square.tsx b/src/components/icons/face-id-square.tsx index a660b74c7..2c3852354 100644 --- a/src/components/icons/face-id-square.tsx +++ b/src/components/icons/face-id-square.tsx @@ -7,9 +7,9 @@ const FaceIdSquare = createIcon({ , ], diff --git a/src/components/icons/face-id.tsx b/src/components/icons/face-id.tsx index 051098967..def724c10 100644 --- a/src/components/icons/face-id.tsx +++ b/src/components/icons/face-id.tsx @@ -7,9 +7,9 @@ const FaceId = createIcon({ , ], diff --git a/src/components/icons/face-neutral.tsx b/src/components/icons/face-neutral.tsx index c133e8c24..a2487c253 100644 --- a/src/components/icons/face-neutral.tsx +++ b/src/components/icons/face-neutral.tsx @@ -7,9 +7,9 @@ const FaceNeutral = createIcon({ , ], diff --git a/src/components/icons/face-sad.tsx b/src/components/icons/face-sad.tsx index 33793b545..72877ef39 100644 --- a/src/components/icons/face-sad.tsx +++ b/src/components/icons/face-sad.tsx @@ -7,9 +7,9 @@ const FaceSad = createIcon({ , ], diff --git a/src/components/icons/face-smile.tsx b/src/components/icons/face-smile.tsx index d99e49983..c5ad8f730 100644 --- a/src/components/icons/face-smile.tsx +++ b/src/components/icons/face-smile.tsx @@ -7,9 +7,9 @@ const FaceSmile = createIcon({ , ], diff --git a/src/components/icons/face-wink.tsx b/src/components/icons/face-wink.tsx index 51c11a3ad..72fcbd8fc 100644 --- a/src/components/icons/face-wink.tsx +++ b/src/components/icons/face-wink.tsx @@ -7,9 +7,9 @@ const FaceWink = createIcon({ , ], diff --git a/src/components/icons/fast-backward.tsx b/src/components/icons/fast-backward.tsx index 579147fb1..e50107165 100644 --- a/src/components/icons/fast-backward.tsx +++ b/src/components/icons/fast-backward.tsx @@ -7,17 +7,17 @@ const FastBackward = createIcon({ , , ], diff --git a/src/components/icons/fast-forward.tsx b/src/components/icons/fast-forward.tsx index 8766fd1e5..a01276620 100644 --- a/src/components/icons/fast-forward.tsx +++ b/src/components/icons/fast-forward.tsx @@ -7,17 +7,17 @@ const FastForward = createIcon({ , , ], diff --git a/src/components/icons/feather.tsx b/src/components/icons/feather.tsx index 5677446af..e02ffb707 100644 --- a/src/components/icons/feather.tsx +++ b/src/components/icons/feather.tsx @@ -7,9 +7,9 @@ const Feather = createIcon({ , ], diff --git a/src/components/icons/figma.tsx b/src/components/icons/figma.tsx index 048f303c5..f69ba3535 100644 --- a/src/components/icons/figma.tsx +++ b/src/components/icons/figma.tsx @@ -7,9 +7,9 @@ const Figma = createIcon({ , ], diff --git a/src/components/icons/file-01.tsx b/src/components/icons/file-01.tsx index bb0b6aade..66107219e 100644 --- a/src/components/icons/file-01.tsx +++ b/src/components/icons/file-01.tsx @@ -7,9 +7,9 @@ const File01 = createIcon({ , ], diff --git a/src/components/icons/file-02.tsx b/src/components/icons/file-02.tsx index 01010b1ff..1e6ba75e3 100644 --- a/src/components/icons/file-02.tsx +++ b/src/components/icons/file-02.tsx @@ -7,9 +7,9 @@ const File02 = createIcon({ , ], diff --git a/src/components/icons/file-03.tsx b/src/components/icons/file-03.tsx index 5d1b0e3db..73b6e4c34 100644 --- a/src/components/icons/file-03.tsx +++ b/src/components/icons/file-03.tsx @@ -7,9 +7,9 @@ const File03 = createIcon({ , ], diff --git a/src/components/icons/file-04.tsx b/src/components/icons/file-04.tsx index aa13e2948..2c9c57237 100644 --- a/src/components/icons/file-04.tsx +++ b/src/components/icons/file-04.tsx @@ -7,9 +7,9 @@ const File04 = createIcon({ , ], diff --git a/src/components/icons/file-05.tsx b/src/components/icons/file-05.tsx index fdf58a13d..afb2722f7 100644 --- a/src/components/icons/file-05.tsx +++ b/src/components/icons/file-05.tsx @@ -7,9 +7,9 @@ const File05 = createIcon({ , ], diff --git a/src/components/icons/file-06.tsx b/src/components/icons/file-06.tsx index 23bfe514a..00027915e 100644 --- a/src/components/icons/file-06.tsx +++ b/src/components/icons/file-06.tsx @@ -7,9 +7,9 @@ const File06 = createIcon({ , ], diff --git a/src/components/icons/file-07.tsx b/src/components/icons/file-07.tsx index ddd9613ca..0c1f6b931 100644 --- a/src/components/icons/file-07.tsx +++ b/src/components/icons/file-07.tsx @@ -7,9 +7,9 @@ const File07 = createIcon({ , ], diff --git a/src/components/icons/file-attachment-01.tsx b/src/components/icons/file-attachment-01.tsx index a4cb85f97..dd94d9a6e 100644 --- a/src/components/icons/file-attachment-01.tsx +++ b/src/components/icons/file-attachment-01.tsx @@ -7,9 +7,9 @@ const FileAttachment01 = createIcon({ , ], diff --git a/src/components/icons/file-attachment-02.tsx b/src/components/icons/file-attachment-02.tsx index 7a08398b6..d9976f63a 100644 --- a/src/components/icons/file-attachment-02.tsx +++ b/src/components/icons/file-attachment-02.tsx @@ -7,9 +7,9 @@ const FileAttachment02 = createIcon({ , ], diff --git a/src/components/icons/file-attachment-03.tsx b/src/components/icons/file-attachment-03.tsx index 2871a308b..823fe5901 100644 --- a/src/components/icons/file-attachment-03.tsx +++ b/src/components/icons/file-attachment-03.tsx @@ -7,9 +7,9 @@ const FileAttachment03 = createIcon({ , ], diff --git a/src/components/icons/file-attachment-04.tsx b/src/components/icons/file-attachment-04.tsx index 1436f1dc5..42d8ac5ad 100644 --- a/src/components/icons/file-attachment-04.tsx +++ b/src/components/icons/file-attachment-04.tsx @@ -7,9 +7,9 @@ const FileAttachment04 = createIcon({ , ], diff --git a/src/components/icons/file-attachment-05.tsx b/src/components/icons/file-attachment-05.tsx index 4e1c2479f..f50de3082 100644 --- a/src/components/icons/file-attachment-05.tsx +++ b/src/components/icons/file-attachment-05.tsx @@ -7,9 +7,9 @@ const FileAttachment05 = createIcon({ , ], diff --git a/src/components/icons/file-check-01.tsx b/src/components/icons/file-check-01.tsx index 45a9f31c8..dee3ab81d 100644 --- a/src/components/icons/file-check-01.tsx +++ b/src/components/icons/file-check-01.tsx @@ -7,9 +7,9 @@ const FileCheck01 = createIcon({ , ], diff --git a/src/components/icons/file-check-02.tsx b/src/components/icons/file-check-02.tsx index bcf06ac42..1b4a0501e 100644 --- a/src/components/icons/file-check-02.tsx +++ b/src/components/icons/file-check-02.tsx @@ -7,9 +7,9 @@ const FileCheck02 = createIcon({ , ], diff --git a/src/components/icons/file-check-03.tsx b/src/components/icons/file-check-03.tsx index 2fac9ad4b..7c4aa7804 100644 --- a/src/components/icons/file-check-03.tsx +++ b/src/components/icons/file-check-03.tsx @@ -7,9 +7,9 @@ const FileCheck03 = createIcon({ , ], diff --git a/src/components/icons/file-code-01.tsx b/src/components/icons/file-code-01.tsx index 93957ed99..67a5fb7a5 100644 --- a/src/components/icons/file-code-01.tsx +++ b/src/components/icons/file-code-01.tsx @@ -7,9 +7,9 @@ const FileCode01 = createIcon({ , ], diff --git a/src/components/icons/file-code-02.tsx b/src/components/icons/file-code-02.tsx index 6c9eb67f9..de6c0ebd3 100644 --- a/src/components/icons/file-code-02.tsx +++ b/src/components/icons/file-code-02.tsx @@ -7,9 +7,9 @@ const FileCode02 = createIcon({ , ], diff --git a/src/components/icons/file-download-01.tsx b/src/components/icons/file-download-01.tsx index 33946a4eb..3015b397a 100644 --- a/src/components/icons/file-download-01.tsx +++ b/src/components/icons/file-download-01.tsx @@ -7,9 +7,9 @@ const FileDownload01 = createIcon({ , ], diff --git a/src/components/icons/file-download-02.tsx b/src/components/icons/file-download-02.tsx index 33be18f01..db1dacde8 100644 --- a/src/components/icons/file-download-02.tsx +++ b/src/components/icons/file-download-02.tsx @@ -7,9 +7,9 @@ const FileDownload02 = createIcon({ , ], diff --git a/src/components/icons/file-download-03.tsx b/src/components/icons/file-download-03.tsx index 70edd7091..490779632 100644 --- a/src/components/icons/file-download-03.tsx +++ b/src/components/icons/file-download-03.tsx @@ -7,9 +7,9 @@ const FileDownload03 = createIcon({ , ], diff --git a/src/components/icons/file-heart-01.tsx b/src/components/icons/file-heart-01.tsx index 1a3773289..2ddefc795 100644 --- a/src/components/icons/file-heart-01.tsx +++ b/src/components/icons/file-heart-01.tsx @@ -7,9 +7,9 @@ const FileHeart01 = createIcon({ , ], diff --git a/src/components/icons/file-heart-02.tsx b/src/components/icons/file-heart-02.tsx index f46b94cdf..d49235c52 100644 --- a/src/components/icons/file-heart-02.tsx +++ b/src/components/icons/file-heart-02.tsx @@ -7,9 +7,9 @@ const FileHeart02 = createIcon({ , ], diff --git a/src/components/icons/file-heart-03.tsx b/src/components/icons/file-heart-03.tsx index 350dde7e3..503469735 100644 --- a/src/components/icons/file-heart-03.tsx +++ b/src/components/icons/file-heart-03.tsx @@ -7,9 +7,9 @@ const FileHeart03 = createIcon({ , ], diff --git a/src/components/icons/file-lock-01.tsx b/src/components/icons/file-lock-01.tsx index c980cc19a..876e44a1c 100644 --- a/src/components/icons/file-lock-01.tsx +++ b/src/components/icons/file-lock-01.tsx @@ -7,9 +7,9 @@ const FileLock01 = createIcon({ , ], diff --git a/src/components/icons/file-lock-02.tsx b/src/components/icons/file-lock-02.tsx index 557973321..f6e9c1dd7 100644 --- a/src/components/icons/file-lock-02.tsx +++ b/src/components/icons/file-lock-02.tsx @@ -7,9 +7,9 @@ const FileLock02 = createIcon({ , ], diff --git a/src/components/icons/file-lock-03.tsx b/src/components/icons/file-lock-03.tsx index 021b3280a..4404682e7 100644 --- a/src/components/icons/file-lock-03.tsx +++ b/src/components/icons/file-lock-03.tsx @@ -7,9 +7,9 @@ const FileLock03 = createIcon({ , ], diff --git a/src/components/icons/file-minus-01.tsx b/src/components/icons/file-minus-01.tsx index 5b9e0e217..c8c027c9b 100644 --- a/src/components/icons/file-minus-01.tsx +++ b/src/components/icons/file-minus-01.tsx @@ -7,9 +7,9 @@ const FileMinus01 = createIcon({ , ], diff --git a/src/components/icons/file-minus-02.tsx b/src/components/icons/file-minus-02.tsx index 523217b3e..9f82e083e 100644 --- a/src/components/icons/file-minus-02.tsx +++ b/src/components/icons/file-minus-02.tsx @@ -7,9 +7,9 @@ const FileMinus02 = createIcon({ , ], diff --git a/src/components/icons/file-minus-03.tsx b/src/components/icons/file-minus-03.tsx index 097b629dc..af9543b9e 100644 --- a/src/components/icons/file-minus-03.tsx +++ b/src/components/icons/file-minus-03.tsx @@ -7,9 +7,9 @@ const FileMinus03 = createIcon({ , ], diff --git a/src/components/icons/file-plus-01.tsx b/src/components/icons/file-plus-01.tsx index 28e540858..18c9428be 100644 --- a/src/components/icons/file-plus-01.tsx +++ b/src/components/icons/file-plus-01.tsx @@ -7,9 +7,9 @@ const FilePlus01 = createIcon({ , ], diff --git a/src/components/icons/file-plus-02.tsx b/src/components/icons/file-plus-02.tsx index a64f9ae6e..f72292577 100644 --- a/src/components/icons/file-plus-02.tsx +++ b/src/components/icons/file-plus-02.tsx @@ -7,9 +7,9 @@ const FilePlus02 = createIcon({ , ], diff --git a/src/components/icons/file-plus-03.tsx b/src/components/icons/file-plus-03.tsx index b53b2f355..5f8eedabd 100644 --- a/src/components/icons/file-plus-03.tsx +++ b/src/components/icons/file-plus-03.tsx @@ -7,9 +7,9 @@ const FilePlus03 = createIcon({ , ], diff --git a/src/components/icons/file-question-01.tsx b/src/components/icons/file-question-01.tsx index d58a967c9..30ea3fdab 100644 --- a/src/components/icons/file-question-01.tsx +++ b/src/components/icons/file-question-01.tsx @@ -7,9 +7,9 @@ const FileQuestion01 = createIcon({ , ], diff --git a/src/components/icons/file-question-02.tsx b/src/components/icons/file-question-02.tsx index 3c2a3d737..e57f17948 100644 --- a/src/components/icons/file-question-02.tsx +++ b/src/components/icons/file-question-02.tsx @@ -7,9 +7,9 @@ const FileQuestion02 = createIcon({ , ], diff --git a/src/components/icons/file-question-03.tsx b/src/components/icons/file-question-03.tsx index 084c6518d..84a9adaab 100644 --- a/src/components/icons/file-question-03.tsx +++ b/src/components/icons/file-question-03.tsx @@ -7,9 +7,9 @@ const FileQuestion03 = createIcon({ , ], diff --git a/src/components/icons/file-search-01.tsx b/src/components/icons/file-search-01.tsx index 93df0f8bc..fbe8293b9 100644 --- a/src/components/icons/file-search-01.tsx +++ b/src/components/icons/file-search-01.tsx @@ -7,9 +7,9 @@ const FileSearch01 = createIcon({ , ], diff --git a/src/components/icons/file-search-02.tsx b/src/components/icons/file-search-02.tsx index 7045f9cd4..862636d84 100644 --- a/src/components/icons/file-search-02.tsx +++ b/src/components/icons/file-search-02.tsx @@ -7,9 +7,9 @@ const FileSearch02 = createIcon({ , ], diff --git a/src/components/icons/file-search-03.tsx b/src/components/icons/file-search-03.tsx index f7d9a9a94..6046d59cd 100644 --- a/src/components/icons/file-search-03.tsx +++ b/src/components/icons/file-search-03.tsx @@ -7,9 +7,9 @@ const FileSearch03 = createIcon({ , ], diff --git a/src/components/icons/file-shield-01.tsx b/src/components/icons/file-shield-01.tsx index 146c36555..6726772c7 100644 --- a/src/components/icons/file-shield-01.tsx +++ b/src/components/icons/file-shield-01.tsx @@ -7,9 +7,9 @@ const FileShield01 = createIcon({ , ], diff --git a/src/components/icons/file-shield-02.tsx b/src/components/icons/file-shield-02.tsx index 3ffd27caa..266932e14 100644 --- a/src/components/icons/file-shield-02.tsx +++ b/src/components/icons/file-shield-02.tsx @@ -7,9 +7,9 @@ const FileShield02 = createIcon({ , ], diff --git a/src/components/icons/file-shield-03.tsx b/src/components/icons/file-shield-03.tsx index f9b26c5ed..1f0aeb48d 100644 --- a/src/components/icons/file-shield-03.tsx +++ b/src/components/icons/file-shield-03.tsx @@ -7,9 +7,9 @@ const FileShield03 = createIcon({ , ], diff --git a/src/components/icons/file-x-01.tsx b/src/components/icons/file-x-01.tsx index 2e0368a24..7edd38255 100644 --- a/src/components/icons/file-x-01.tsx +++ b/src/components/icons/file-x-01.tsx @@ -7,9 +7,9 @@ const FileX01 = createIcon({ , ], diff --git a/src/components/icons/file-x-02.tsx b/src/components/icons/file-x-02.tsx index 79f9d711b..7fc9929a6 100644 --- a/src/components/icons/file-x-02.tsx +++ b/src/components/icons/file-x-02.tsx @@ -7,9 +7,9 @@ const FileX02 = createIcon({ , ], diff --git a/src/components/icons/file-x-03.tsx b/src/components/icons/file-x-03.tsx index c1948aa87..093d5fc19 100644 --- a/src/components/icons/file-x-03.tsx +++ b/src/components/icons/file-x-03.tsx @@ -7,9 +7,9 @@ const FileX03 = createIcon({ , ], diff --git a/src/components/icons/film-01.tsx b/src/components/icons/film-01.tsx index a0044ed36..010e67c95 100644 --- a/src/components/icons/film-01.tsx +++ b/src/components/icons/film-01.tsx @@ -7,9 +7,9 @@ const Film01 = createIcon({ , ], diff --git a/src/components/icons/film-02.tsx b/src/components/icons/film-02.tsx index 33f027c74..3594b5a97 100644 --- a/src/components/icons/film-02.tsx +++ b/src/components/icons/film-02.tsx @@ -7,9 +7,9 @@ const Film02 = createIcon({ , ], diff --git a/src/components/icons/film-03.tsx b/src/components/icons/film-03.tsx index 9d4d5cc61..6b7dd5ff2 100644 --- a/src/components/icons/film-03.tsx +++ b/src/components/icons/film-03.tsx @@ -7,9 +7,9 @@ const Film03 = createIcon({ , ], diff --git a/src/components/icons/filter-funnel-01.tsx b/src/components/icons/filter-funnel-01.tsx index afae87b84..68137a162 100644 --- a/src/components/icons/filter-funnel-01.tsx +++ b/src/components/icons/filter-funnel-01.tsx @@ -7,9 +7,9 @@ const FilterFunnel01 = createIcon({ , ], diff --git a/src/components/icons/filter-funnel-02.tsx b/src/components/icons/filter-funnel-02.tsx index df8f02a1b..a114db39c 100644 --- a/src/components/icons/filter-funnel-02.tsx +++ b/src/components/icons/filter-funnel-02.tsx @@ -7,9 +7,9 @@ const FilterFunnel02 = createIcon({ , ], diff --git a/src/components/icons/filter-lines.tsx b/src/components/icons/filter-lines.tsx index 707c4e6d6..efbbeb3a2 100644 --- a/src/components/icons/filter-lines.tsx +++ b/src/components/icons/filter-lines.tsx @@ -7,9 +7,9 @@ const FilterLines = createIcon({ , ], diff --git a/src/components/icons/fingerprint-01.tsx b/src/components/icons/fingerprint-01.tsx index 6383c1a76..908634b1d 100644 --- a/src/components/icons/fingerprint-01.tsx +++ b/src/components/icons/fingerprint-01.tsx @@ -7,9 +7,9 @@ const Fingerprint01 = createIcon({ , ], diff --git a/src/components/icons/fingerprint-02.tsx b/src/components/icons/fingerprint-02.tsx index fc3b53522..256a7edc4 100644 --- a/src/components/icons/fingerprint-02.tsx +++ b/src/components/icons/fingerprint-02.tsx @@ -7,9 +7,9 @@ const Fingerprint02 = createIcon({ , ], diff --git a/src/components/icons/fingerprint-03.tsx b/src/components/icons/fingerprint-03.tsx index 6568ec451..bf1dd82cd 100644 --- a/src/components/icons/fingerprint-03.tsx +++ b/src/components/icons/fingerprint-03.tsx @@ -7,65 +7,65 @@ const Fingerprint03 = createIcon({ , , , , , , , , ], diff --git a/src/components/icons/fingerprint-04.tsx b/src/components/icons/fingerprint-04.tsx index ab5c70559..ddc1b6385 100644 --- a/src/components/icons/fingerprint-04.tsx +++ b/src/components/icons/fingerprint-04.tsx @@ -7,9 +7,9 @@ const Fingerprint04 = createIcon({ , ], diff --git a/src/components/icons/flag-01.tsx b/src/components/icons/flag-01.tsx index 7637d0bac..92c1a81bf 100644 --- a/src/components/icons/flag-01.tsx +++ b/src/components/icons/flag-01.tsx @@ -7,9 +7,9 @@ const Flag01 = createIcon({ , ], diff --git a/src/components/icons/flag-02.tsx b/src/components/icons/flag-02.tsx index f9fdba167..c1c721536 100644 --- a/src/components/icons/flag-02.tsx +++ b/src/components/icons/flag-02.tsx @@ -7,9 +7,9 @@ const Flag02 = createIcon({ , ], diff --git a/src/components/icons/flag-03.tsx b/src/components/icons/flag-03.tsx index 242615688..1e1d24b62 100644 --- a/src/components/icons/flag-03.tsx +++ b/src/components/icons/flag-03.tsx @@ -7,9 +7,9 @@ const Flag03 = createIcon({ , ], diff --git a/src/components/icons/flag-04.tsx b/src/components/icons/flag-04.tsx index 94a534468..247c84d5f 100644 --- a/src/components/icons/flag-04.tsx +++ b/src/components/icons/flag-04.tsx @@ -7,9 +7,9 @@ const Flag04 = createIcon({ , ], diff --git a/src/components/icons/flag-05.tsx b/src/components/icons/flag-05.tsx index 7f43a07b0..d77d2f6d2 100644 --- a/src/components/icons/flag-05.tsx +++ b/src/components/icons/flag-05.tsx @@ -7,9 +7,9 @@ const Flag05 = createIcon({ , ], diff --git a/src/components/icons/flag-06.tsx b/src/components/icons/flag-06.tsx index 13afaf2b4..3e9227305 100644 --- a/src/components/icons/flag-06.tsx +++ b/src/components/icons/flag-06.tsx @@ -7,9 +7,9 @@ const Flag06 = createIcon({ , ], diff --git a/src/components/icons/flash-off.tsx b/src/components/icons/flash-off.tsx index d2c2fca75..b0268abee 100644 --- a/src/components/icons/flash-off.tsx +++ b/src/components/icons/flash-off.tsx @@ -7,9 +7,9 @@ const FlashOff = createIcon({ , ], diff --git a/src/components/icons/flash.tsx b/src/components/icons/flash.tsx index 0c75ba545..cc4755162 100644 --- a/src/components/icons/flash.tsx +++ b/src/components/icons/flash.tsx @@ -7,9 +7,9 @@ const Flash = createIcon({ , ], diff --git a/src/components/icons/flex-align-bottom.tsx b/src/components/icons/flex-align-bottom.tsx index 235fd347a..c08d4e843 100644 --- a/src/components/icons/flex-align-bottom.tsx +++ b/src/components/icons/flex-align-bottom.tsx @@ -7,9 +7,9 @@ const FlexAlignBottom = createIcon({ , ], diff --git a/src/components/icons/flex-align-left.tsx b/src/components/icons/flex-align-left.tsx index dbd94408f..83c514c0c 100644 --- a/src/components/icons/flex-align-left.tsx +++ b/src/components/icons/flex-align-left.tsx @@ -7,9 +7,9 @@ const FlexAlignLeft = createIcon({ , ], diff --git a/src/components/icons/flex-align-right.tsx b/src/components/icons/flex-align-right.tsx index 008b516cf..6b6066512 100644 --- a/src/components/icons/flex-align-right.tsx +++ b/src/components/icons/flex-align-right.tsx @@ -7,9 +7,9 @@ const FlexAlignRight = createIcon({ , ], diff --git a/src/components/icons/flex-align-top.tsx b/src/components/icons/flex-align-top.tsx index 9b145d385..1f18b1958 100644 --- a/src/components/icons/flex-align-top.tsx +++ b/src/components/icons/flex-align-top.tsx @@ -7,9 +7,9 @@ const FlexAlignTop = createIcon({ , ], diff --git a/src/components/icons/flip-backward.tsx b/src/components/icons/flip-backward.tsx index 6a6ad43bb..a06fc193e 100644 --- a/src/components/icons/flip-backward.tsx +++ b/src/components/icons/flip-backward.tsx @@ -7,9 +7,9 @@ const FlipBackward = createIcon({ , ], diff --git a/src/components/icons/flip-forward.tsx b/src/components/icons/flip-forward.tsx index b0bf81880..c18d186e7 100644 --- a/src/components/icons/flip-forward.tsx +++ b/src/components/icons/flip-forward.tsx @@ -7,9 +7,9 @@ const FlipForward = createIcon({ , ], diff --git a/src/components/icons/folder-check.tsx b/src/components/icons/folder-check.tsx index 7382899b1..9efb0b7fe 100644 --- a/src/components/icons/folder-check.tsx +++ b/src/components/icons/folder-check.tsx @@ -7,9 +7,9 @@ const FolderCheck = createIcon({ , ], diff --git a/src/components/icons/folder-closed.tsx b/src/components/icons/folder-closed.tsx index ce3af7ccf..d6dc286cc 100644 --- a/src/components/icons/folder-closed.tsx +++ b/src/components/icons/folder-closed.tsx @@ -7,9 +7,9 @@ const FolderClosed = createIcon({ , ], diff --git a/src/components/icons/folder-code.tsx b/src/components/icons/folder-code.tsx index e902635d7..0cfe71f6f 100644 --- a/src/components/icons/folder-code.tsx +++ b/src/components/icons/folder-code.tsx @@ -7,9 +7,9 @@ const FolderCode = createIcon({ , ], diff --git a/src/components/icons/folder-download.tsx b/src/components/icons/folder-download.tsx index 642851a28..e6d0d943b 100644 --- a/src/components/icons/folder-download.tsx +++ b/src/components/icons/folder-download.tsx @@ -7,9 +7,9 @@ const FolderDownload = createIcon({ , ], diff --git a/src/components/icons/folder-lock.tsx b/src/components/icons/folder-lock.tsx index ce68a7715..250726834 100644 --- a/src/components/icons/folder-lock.tsx +++ b/src/components/icons/folder-lock.tsx @@ -7,9 +7,9 @@ const FolderLock = createIcon({ , ], diff --git a/src/components/icons/folder-minus.tsx b/src/components/icons/folder-minus.tsx index e49ffad97..83fce419c 100644 --- a/src/components/icons/folder-minus.tsx +++ b/src/components/icons/folder-minus.tsx @@ -7,9 +7,9 @@ const FolderMinus = createIcon({ , ], diff --git a/src/components/icons/folder-plus.tsx b/src/components/icons/folder-plus.tsx index 60717cd34..012a0f15d 100644 --- a/src/components/icons/folder-plus.tsx +++ b/src/components/icons/folder-plus.tsx @@ -7,9 +7,9 @@ const FolderPlus = createIcon({ , ], diff --git a/src/components/icons/folder-question.tsx b/src/components/icons/folder-question.tsx index c6553c3ce..218d5eca4 100644 --- a/src/components/icons/folder-question.tsx +++ b/src/components/icons/folder-question.tsx @@ -7,9 +7,9 @@ const FolderQuestion = createIcon({ , ], diff --git a/src/components/icons/folder-search.tsx b/src/components/icons/folder-search.tsx index ff9c62258..faa53842a 100644 --- a/src/components/icons/folder-search.tsx +++ b/src/components/icons/folder-search.tsx @@ -7,9 +7,9 @@ const FolderSearch = createIcon({ , ], diff --git a/src/components/icons/folder-shield.tsx b/src/components/icons/folder-shield.tsx index b953b1b9b..de30a0782 100644 --- a/src/components/icons/folder-shield.tsx +++ b/src/components/icons/folder-shield.tsx @@ -7,9 +7,9 @@ const FolderShield = createIcon({ , ], diff --git a/src/components/icons/folder-x.tsx b/src/components/icons/folder-x.tsx index 5a987835e..1a11504f5 100644 --- a/src/components/icons/folder-x.tsx +++ b/src/components/icons/folder-x.tsx @@ -7,9 +7,9 @@ const FolderX = createIcon({ , ], diff --git a/src/components/icons/folder.tsx b/src/components/icons/folder.tsx index 5965818a3..38be3ee04 100644 --- a/src/components/icons/folder.tsx +++ b/src/components/icons/folder.tsx @@ -7,9 +7,9 @@ const Folder = createIcon({ , ], diff --git a/src/components/icons/framer.tsx b/src/components/icons/framer.tsx index b67e47383..876b04a30 100644 --- a/src/components/icons/framer.tsx +++ b/src/components/icons/framer.tsx @@ -7,9 +7,9 @@ const Framer = createIcon({ , ], diff --git a/src/components/icons/gaming-pad-01.tsx b/src/components/icons/gaming-pad-01.tsx index 30d44346c..f7876370d 100644 --- a/src/components/icons/gaming-pad-01.tsx +++ b/src/components/icons/gaming-pad-01.tsx @@ -7,9 +7,9 @@ const GamingPad01 = createIcon({ , ], diff --git a/src/components/icons/gaming-pad-02.tsx b/src/components/icons/gaming-pad-02.tsx index 1ba36f8d7..18500aac5 100644 --- a/src/components/icons/gaming-pad-02.tsx +++ b/src/components/icons/gaming-pad-02.tsx @@ -7,9 +7,9 @@ const GamingPad02 = createIcon({ , ], diff --git a/src/components/icons/gift-01.tsx b/src/components/icons/gift-01.tsx index 793712aab..7b4b88952 100644 --- a/src/components/icons/gift-01.tsx +++ b/src/components/icons/gift-01.tsx @@ -7,9 +7,9 @@ const Gift01 = createIcon({ , ], diff --git a/src/components/icons/gift-02.tsx b/src/components/icons/gift-02.tsx index f505c550b..e1a3d2f59 100644 --- a/src/components/icons/gift-02.tsx +++ b/src/components/icons/gift-02.tsx @@ -7,9 +7,9 @@ const Gift02 = createIcon({ , ], diff --git a/src/components/icons/git-branch-01.tsx b/src/components/icons/git-branch-01.tsx index e9ebcde9d..b6357f968 100644 --- a/src/components/icons/git-branch-01.tsx +++ b/src/components/icons/git-branch-01.tsx @@ -7,9 +7,9 @@ const GitBranch01 = createIcon({ , ], diff --git a/src/components/icons/git-branch-02.tsx b/src/components/icons/git-branch-02.tsx index d1c9c28bc..1e79746bb 100644 --- a/src/components/icons/git-branch-02.tsx +++ b/src/components/icons/git-branch-02.tsx @@ -7,9 +7,9 @@ const GitBranch02 = createIcon({ , ], diff --git a/src/components/icons/git-commit.tsx b/src/components/icons/git-commit.tsx index 46adf9e99..3b6992760 100644 --- a/src/components/icons/git-commit.tsx +++ b/src/components/icons/git-commit.tsx @@ -7,9 +7,9 @@ const GitCommit = createIcon({ , ], diff --git a/src/components/icons/git-merge.tsx b/src/components/icons/git-merge.tsx index d9211db5b..d340a506a 100644 --- a/src/components/icons/git-merge.tsx +++ b/src/components/icons/git-merge.tsx @@ -7,9 +7,9 @@ const GitMerge = createIcon({ , ], diff --git a/src/components/icons/git-pull-request.tsx b/src/components/icons/git-pull-request.tsx index 84dfda18d..a01e9323c 100644 --- a/src/components/icons/git-pull-request.tsx +++ b/src/components/icons/git-pull-request.tsx @@ -7,9 +7,9 @@ const GitPullRequest = createIcon({ , ], diff --git a/src/components/icons/glasses-01.tsx b/src/components/icons/glasses-01.tsx index ddd676631..7f7ecca10 100644 --- a/src/components/icons/glasses-01.tsx +++ b/src/components/icons/glasses-01.tsx @@ -7,9 +7,9 @@ const Glasses01 = createIcon({ , ], diff --git a/src/components/icons/glasses-02.tsx b/src/components/icons/glasses-02.tsx index 5412583b4..734578d50 100644 --- a/src/components/icons/glasses-02.tsx +++ b/src/components/icons/glasses-02.tsx @@ -7,9 +7,9 @@ const Glasses02 = createIcon({ , ], diff --git a/src/components/icons/globe-01.tsx b/src/components/icons/globe-01.tsx index a543aa214..95ca09840 100644 --- a/src/components/icons/globe-01.tsx +++ b/src/components/icons/globe-01.tsx @@ -7,9 +7,9 @@ const Globe01 = createIcon({ , ], diff --git a/src/components/icons/globe-02.tsx b/src/components/icons/globe-02.tsx index 8a96452a7..5a64f63f3 100644 --- a/src/components/icons/globe-02.tsx +++ b/src/components/icons/globe-02.tsx @@ -7,9 +7,9 @@ const Globe02 = createIcon({ , ], diff --git a/src/components/icons/globe-03.tsx b/src/components/icons/globe-03.tsx index a305bfbdd..005a67c5a 100644 --- a/src/components/icons/globe-03.tsx +++ b/src/components/icons/globe-03.tsx @@ -7,9 +7,9 @@ const Globe03 = createIcon({ , ], diff --git a/src/components/icons/globe-04.tsx b/src/components/icons/globe-04.tsx index 20350e126..4b847e64b 100644 --- a/src/components/icons/globe-04.tsx +++ b/src/components/icons/globe-04.tsx @@ -7,9 +7,9 @@ const Globe04 = createIcon({ , ], diff --git a/src/components/icons/globe-05.tsx b/src/components/icons/globe-05.tsx index bc2c80093..6b9c635b3 100644 --- a/src/components/icons/globe-05.tsx +++ b/src/components/icons/globe-05.tsx @@ -7,9 +7,9 @@ const Globe05 = createIcon({ , ], diff --git a/src/components/icons/globe-06.tsx b/src/components/icons/globe-06.tsx index e338499b0..3089c9523 100644 --- a/src/components/icons/globe-06.tsx +++ b/src/components/icons/globe-06.tsx @@ -7,9 +7,9 @@ const Globe06 = createIcon({ , ], diff --git a/src/components/icons/globe-slated-01.tsx b/src/components/icons/globe-slated-01.tsx index fabc5727f..3e11dca65 100644 --- a/src/components/icons/globe-slated-01.tsx +++ b/src/components/icons/globe-slated-01.tsx @@ -7,9 +7,9 @@ const GlobeSlated01 = createIcon({ , ], diff --git a/src/components/icons/globe-slated-02.tsx b/src/components/icons/globe-slated-02.tsx index 68e700faf..a7eea0922 100644 --- a/src/components/icons/globe-slated-02.tsx +++ b/src/components/icons/globe-slated-02.tsx @@ -7,9 +7,9 @@ const GlobeSlated02 = createIcon({ , ], diff --git a/src/components/icons/google-chrome.tsx b/src/components/icons/google-chrome.tsx index 65b870afa..ef8198784 100644 --- a/src/components/icons/google-chrome.tsx +++ b/src/components/icons/google-chrome.tsx @@ -7,9 +7,9 @@ const GoogleChrome = createIcon({ , ], diff --git a/src/components/icons/graduation-hat-01.tsx b/src/components/icons/graduation-hat-01.tsx index f8da9ceca..833195b21 100644 --- a/src/components/icons/graduation-hat-01.tsx +++ b/src/components/icons/graduation-hat-01.tsx @@ -7,9 +7,9 @@ const GraduationHat01 = createIcon({ , ], diff --git a/src/components/icons/graduation-hat-02.tsx b/src/components/icons/graduation-hat-02.tsx index 736565d46..aed4dd064 100644 --- a/src/components/icons/graduation-hat-02.tsx +++ b/src/components/icons/graduation-hat-02.tsx @@ -7,9 +7,9 @@ const GraduationHat02 = createIcon({ , ], diff --git a/src/components/icons/grid-01.tsx b/src/components/icons/grid-01.tsx index 310424a31..556c456d0 100644 --- a/src/components/icons/grid-01.tsx +++ b/src/components/icons/grid-01.tsx @@ -7,33 +7,33 @@ const Grid01 = createIcon({ , , , , ], diff --git a/src/components/icons/grid-02.tsx b/src/components/icons/grid-02.tsx index 55032c586..1722cac86 100644 --- a/src/components/icons/grid-02.tsx +++ b/src/components/icons/grid-02.tsx @@ -7,9 +7,9 @@ const Grid02 = createIcon({ , ], diff --git a/src/components/icons/grid-03.tsx b/src/components/icons/grid-03.tsx index d48a284a9..099ca9108 100644 --- a/src/components/icons/grid-03.tsx +++ b/src/components/icons/grid-03.tsx @@ -7,9 +7,9 @@ const Grid03 = createIcon({ , ], diff --git a/src/components/icons/grid-dots-blank.tsx b/src/components/icons/grid-dots-blank.tsx index 5ce587d35..8b08cb367 100644 --- a/src/components/icons/grid-dots-blank.tsx +++ b/src/components/icons/grid-dots-blank.tsx @@ -7,9 +7,9 @@ const GridDotsBlank = createIcon({ , ], diff --git a/src/components/icons/grid-dots-bottom.tsx b/src/components/icons/grid-dots-bottom.tsx index 5d037482a..56ffe2043 100644 --- a/src/components/icons/grid-dots-bottom.tsx +++ b/src/components/icons/grid-dots-bottom.tsx @@ -7,9 +7,9 @@ const GridDotsBottom = createIcon({ , ], diff --git a/src/components/icons/grid-dots-horizontal-center.tsx b/src/components/icons/grid-dots-horizontal-center.tsx index c3d13c65c..4d90b1c0f 100644 --- a/src/components/icons/grid-dots-horizontal-center.tsx +++ b/src/components/icons/grid-dots-horizontal-center.tsx @@ -7,9 +7,9 @@ const GridDotsHorizontalCenter = createIcon({ , ], diff --git a/src/components/icons/grid-dots-left.tsx b/src/components/icons/grid-dots-left.tsx index ee1900e6d..8db4f96f1 100644 --- a/src/components/icons/grid-dots-left.tsx +++ b/src/components/icons/grid-dots-left.tsx @@ -7,9 +7,9 @@ const GridDotsLeft = createIcon({ , ], diff --git a/src/components/icons/grid-dots-outer.tsx b/src/components/icons/grid-dots-outer.tsx index 1fbf7eefe..cffa78e8c 100644 --- a/src/components/icons/grid-dots-outer.tsx +++ b/src/components/icons/grid-dots-outer.tsx @@ -7,9 +7,9 @@ const GridDotsOuter = createIcon({ , ], diff --git a/src/components/icons/grid-dots-right.tsx b/src/components/icons/grid-dots-right.tsx index 451f7f32e..93c7b0a4c 100644 --- a/src/components/icons/grid-dots-right.tsx +++ b/src/components/icons/grid-dots-right.tsx @@ -7,9 +7,9 @@ const GridDotsRight = createIcon({ , ], diff --git a/src/components/icons/grid-dots-top.tsx b/src/components/icons/grid-dots-top.tsx index be7bcf0c8..76f517069 100644 --- a/src/components/icons/grid-dots-top.tsx +++ b/src/components/icons/grid-dots-top.tsx @@ -7,9 +7,9 @@ const GridDotsTop = createIcon({ , ], diff --git a/src/components/icons/grid-dots-vertical-center.tsx b/src/components/icons/grid-dots-vertical-center.tsx index 97efbbd36..d91bb553c 100644 --- a/src/components/icons/grid-dots-vertical-center.tsx +++ b/src/components/icons/grid-dots-vertical-center.tsx @@ -7,9 +7,9 @@ const GridDotsVerticalCenter = createIcon({ , ], diff --git a/src/components/icons/hand.tsx b/src/components/icons/hand.tsx index 962f027eb..33ba9c240 100644 --- a/src/components/icons/hand.tsx +++ b/src/components/icons/hand.tsx @@ -7,9 +7,9 @@ const Hand = createIcon({ , ], diff --git a/src/components/icons/hard-drive.tsx b/src/components/icons/hard-drive.tsx index 91158bea2..d900ee0ed 100644 --- a/src/components/icons/hard-drive.tsx +++ b/src/components/icons/hard-drive.tsx @@ -7,9 +7,9 @@ const HardDrive = createIcon({ , ], diff --git a/src/components/icons/hash-01.tsx b/src/components/icons/hash-01.tsx index 21b645519..e5c3d9895 100644 --- a/src/components/icons/hash-01.tsx +++ b/src/components/icons/hash-01.tsx @@ -7,9 +7,9 @@ const Hash01 = createIcon({ , ], diff --git a/src/components/icons/hash-02.tsx b/src/components/icons/hash-02.tsx index 16f2076b3..b6a307cea 100644 --- a/src/components/icons/hash-02.tsx +++ b/src/components/icons/hash-02.tsx @@ -7,9 +7,9 @@ const Hash02 = createIcon({ , ], diff --git a/src/components/icons/heading-01.tsx b/src/components/icons/heading-01.tsx index 9c40e72ca..fef04cddd 100644 --- a/src/components/icons/heading-01.tsx +++ b/src/components/icons/heading-01.tsx @@ -7,9 +7,9 @@ const Heading01 = createIcon({ , ], diff --git a/src/components/icons/heading-02.tsx b/src/components/icons/heading-02.tsx index 1bfb812fc..4b668a8e1 100644 --- a/src/components/icons/heading-02.tsx +++ b/src/components/icons/heading-02.tsx @@ -7,9 +7,9 @@ const Heading02 = createIcon({ , ], diff --git a/src/components/icons/heading-square.tsx b/src/components/icons/heading-square.tsx index e3061d45f..c8fb15b80 100644 --- a/src/components/icons/heading-square.tsx +++ b/src/components/icons/heading-square.tsx @@ -7,9 +7,9 @@ const HeadingSquare = createIcon({ , ], diff --git a/src/components/icons/headphones-01.tsx b/src/components/icons/headphones-01.tsx index abc7700d0..45123b14b 100644 --- a/src/components/icons/headphones-01.tsx +++ b/src/components/icons/headphones-01.tsx @@ -7,9 +7,9 @@ const Headphones01 = createIcon({ , ], diff --git a/src/components/icons/headphones-02.tsx b/src/components/icons/headphones-02.tsx index 023bd9bea..eec12d04d 100644 --- a/src/components/icons/headphones-02.tsx +++ b/src/components/icons/headphones-02.tsx @@ -7,9 +7,9 @@ const Headphones02 = createIcon({ , ], diff --git a/src/components/icons/heart-circle.tsx b/src/components/icons/heart-circle.tsx index 606fa3bcf..222cb6d89 100644 --- a/src/components/icons/heart-circle.tsx +++ b/src/components/icons/heart-circle.tsx @@ -7,19 +7,19 @@ const HeartCircle = createIcon({ , , ], diff --git a/src/components/icons/heart-hand.tsx b/src/components/icons/heart-hand.tsx index 38b04b31a..9eadc2b38 100644 --- a/src/components/icons/heart-hand.tsx +++ b/src/components/icons/heart-hand.tsx @@ -7,9 +7,9 @@ const HeartHand = createIcon({ , ], diff --git a/src/components/icons/heart-hexagon.tsx b/src/components/icons/heart-hexagon.tsx index 7df75396b..9c473a557 100644 --- a/src/components/icons/heart-hexagon.tsx +++ b/src/components/icons/heart-hexagon.tsx @@ -7,19 +7,19 @@ const HeartHexagon = createIcon({ , , ], diff --git a/src/components/icons/heart-octagon.tsx b/src/components/icons/heart-octagon.tsx index 3c952f670..67cba2fce 100644 --- a/src/components/icons/heart-octagon.tsx +++ b/src/components/icons/heart-octagon.tsx @@ -7,19 +7,19 @@ const HeartOctagon = createIcon({ , , ], diff --git a/src/components/icons/heart-rounded.tsx b/src/components/icons/heart-rounded.tsx index 6a78d52f4..fcccb3482 100644 --- a/src/components/icons/heart-rounded.tsx +++ b/src/components/icons/heart-rounded.tsx @@ -7,9 +7,9 @@ const HeartRounded = createIcon({ , ], diff --git a/src/components/icons/heart-square.tsx b/src/components/icons/heart-square.tsx index e83e09f15..35dc2df2e 100644 --- a/src/components/icons/heart-square.tsx +++ b/src/components/icons/heart-square.tsx @@ -7,19 +7,19 @@ const HeartSquare = createIcon({ , , ], diff --git a/src/components/icons/heart.tsx b/src/components/icons/heart.tsx index c952fc224..88886a008 100644 --- a/src/components/icons/heart.tsx +++ b/src/components/icons/heart.tsx @@ -5,13 +5,13 @@ const Heart = createIcon({ viewBox: "0 0 24 24", path: [ , ], diff --git a/src/components/icons/hearts.tsx b/src/components/icons/hearts.tsx index 6384b91cd..87ddef4d0 100644 --- a/src/components/icons/hearts.tsx +++ b/src/components/icons/hearts.tsx @@ -7,9 +7,9 @@ const Hearts = createIcon({ , ], diff --git a/src/components/icons/help-circle.tsx b/src/components/icons/help-circle.tsx index 36e6c1308..6497dc43b 100644 --- a/src/components/icons/help-circle.tsx +++ b/src/components/icons/help-circle.tsx @@ -7,9 +7,9 @@ const HelpCircle = createIcon({ , ], diff --git a/src/components/icons/help-hexagon.tsx b/src/components/icons/help-hexagon.tsx index 0944da401..4752dede5 100644 --- a/src/components/icons/help-hexagon.tsx +++ b/src/components/icons/help-hexagon.tsx @@ -7,9 +7,9 @@ const HelpHexagon = createIcon({ , ], diff --git a/src/components/icons/help-octagon.tsx b/src/components/icons/help-octagon.tsx index 423d93c67..84d550c09 100644 --- a/src/components/icons/help-octagon.tsx +++ b/src/components/icons/help-octagon.tsx @@ -7,9 +7,9 @@ const HelpOctagon = createIcon({ , ], diff --git a/src/components/icons/help-square.tsx b/src/components/icons/help-square.tsx index dc40ef1f0..ceb9dc266 100644 --- a/src/components/icons/help-square.tsx +++ b/src/components/icons/help-square.tsx @@ -7,9 +7,9 @@ const HelpSquare = createIcon({ , ], diff --git a/src/components/icons/hexagon-01.tsx b/src/components/icons/hexagon-01.tsx index 6f0691aa4..64d332f1e 100644 --- a/src/components/icons/hexagon-01.tsx +++ b/src/components/icons/hexagon-01.tsx @@ -7,9 +7,9 @@ const Hexagon01 = createIcon({ , ], diff --git a/src/components/icons/hexagon-02.tsx b/src/components/icons/hexagon-02.tsx index 0c7391b94..182e7362c 100644 --- a/src/components/icons/hexagon-02.tsx +++ b/src/components/icons/hexagon-02.tsx @@ -7,9 +7,9 @@ const Hexagon02 = createIcon({ , ], diff --git a/src/components/icons/home-01.tsx b/src/components/icons/home-01.tsx index a8027feee..0238da666 100644 --- a/src/components/icons/home-01.tsx +++ b/src/components/icons/home-01.tsx @@ -7,9 +7,9 @@ const Home01 = createIcon({ , ], diff --git a/src/components/icons/home-02.tsx b/src/components/icons/home-02.tsx index 2abc6c3ca..8283b085b 100644 --- a/src/components/icons/home-02.tsx +++ b/src/components/icons/home-02.tsx @@ -7,9 +7,9 @@ const Home02 = createIcon({ , ], diff --git a/src/components/icons/home-03.tsx b/src/components/icons/home-03.tsx index f1d36b63e..a8734eb68 100644 --- a/src/components/icons/home-03.tsx +++ b/src/components/icons/home-03.tsx @@ -7,9 +7,9 @@ const Home03 = createIcon({ , ], diff --git a/src/components/icons/home-04.tsx b/src/components/icons/home-04.tsx index 77a0ebcd5..929c3945c 100644 --- a/src/components/icons/home-04.tsx +++ b/src/components/icons/home-04.tsx @@ -7,17 +7,17 @@ const Home04 = createIcon({ , , ], diff --git a/src/components/icons/home-05.tsx b/src/components/icons/home-05.tsx index 94a114273..a4c4ebe25 100644 --- a/src/components/icons/home-05.tsx +++ b/src/components/icons/home-05.tsx @@ -7,9 +7,9 @@ const Home05 = createIcon({ , ], diff --git a/src/components/icons/home-line.tsx b/src/components/icons/home-line.tsx index 47da31847..b73cb04fb 100644 --- a/src/components/icons/home-line.tsx +++ b/src/components/icons/home-line.tsx @@ -7,9 +7,9 @@ const HomeLine = createIcon({ , ], diff --git a/src/components/icons/home-smile.tsx b/src/components/icons/home-smile.tsx index e3edd8cf8..320381c65 100644 --- a/src/components/icons/home-smile.tsx +++ b/src/components/icons/home-smile.tsx @@ -7,9 +7,9 @@ const HomeSmile = createIcon({ , ], diff --git a/src/components/icons/horizontal-bar-chart-01.tsx b/src/components/icons/horizontal-bar-chart-01.tsx index 582132efb..0cdd2e5e0 100644 --- a/src/components/icons/horizontal-bar-chart-01.tsx +++ b/src/components/icons/horizontal-bar-chart-01.tsx @@ -7,9 +7,9 @@ const HorizontalBarChart01 = createIcon({ , ], diff --git a/src/components/icons/horizontal-bar-chart-02.tsx b/src/components/icons/horizontal-bar-chart-02.tsx index 0a2f701fb..7f0e688bb 100644 --- a/src/components/icons/horizontal-bar-chart-02.tsx +++ b/src/components/icons/horizontal-bar-chart-02.tsx @@ -7,9 +7,9 @@ const HorizontalBarChart02 = createIcon({ , ], diff --git a/src/components/icons/horizontal-bar-chart-03.tsx b/src/components/icons/horizontal-bar-chart-03.tsx index c044ac1bb..8883521fa 100644 --- a/src/components/icons/horizontal-bar-chart-03.tsx +++ b/src/components/icons/horizontal-bar-chart-03.tsx @@ -7,9 +7,9 @@ const HorizontalBarChart03 = createIcon({ , ], diff --git a/src/components/icons/hourglass-01.tsx b/src/components/icons/hourglass-01.tsx index c932790ea..a799a844a 100644 --- a/src/components/icons/hourglass-01.tsx +++ b/src/components/icons/hourglass-01.tsx @@ -7,9 +7,9 @@ const Hourglass01 = createIcon({ , ], diff --git a/src/components/icons/hourglass-02.tsx b/src/components/icons/hourglass-02.tsx index b33aba4c5..d54ef1bbe 100644 --- a/src/components/icons/hourglass-02.tsx +++ b/src/components/icons/hourglass-02.tsx @@ -7,9 +7,9 @@ const Hourglass02 = createIcon({ , ], diff --git a/src/components/icons/hourglass-03.tsx b/src/components/icons/hourglass-03.tsx index 860cd9eb5..25e2f7b2e 100644 --- a/src/components/icons/hourglass-03.tsx +++ b/src/components/icons/hourglass-03.tsx @@ -7,9 +7,9 @@ const Hourglass03 = createIcon({ , ], diff --git a/src/components/icons/hurricane-01.tsx b/src/components/icons/hurricane-01.tsx index 00f00c88b..91da0d933 100644 --- a/src/components/icons/hurricane-01.tsx +++ b/src/components/icons/hurricane-01.tsx @@ -7,9 +7,9 @@ const Hurricane01 = createIcon({ , ], diff --git a/src/components/icons/hurricane-02.tsx b/src/components/icons/hurricane-02.tsx index aec739a8b..16e8ad880 100644 --- a/src/components/icons/hurricane-02.tsx +++ b/src/components/icons/hurricane-02.tsx @@ -7,9 +7,9 @@ const Hurricane02 = createIcon({ , ], diff --git a/src/components/icons/hurricane-03.tsx b/src/components/icons/hurricane-03.tsx index 8ee20972a..2c3dc070e 100644 --- a/src/components/icons/hurricane-03.tsx +++ b/src/components/icons/hurricane-03.tsx @@ -7,9 +7,9 @@ const Hurricane03 = createIcon({ , ], diff --git a/src/components/icons/image-01.tsx b/src/components/icons/image-01.tsx index 14d6c1519..565f501a1 100644 --- a/src/components/icons/image-01.tsx +++ b/src/components/icons/image-01.tsx @@ -7,9 +7,9 @@ const Image01 = createIcon({ , ], diff --git a/src/components/icons/image-02.tsx b/src/components/icons/image-02.tsx index 43429369d..606ce634d 100644 --- a/src/components/icons/image-02.tsx +++ b/src/components/icons/image-02.tsx @@ -7,9 +7,9 @@ const Image02 = createIcon({ , ], diff --git a/src/components/icons/image-03.tsx b/src/components/icons/image-03.tsx index 806e54856..7d911607d 100644 --- a/src/components/icons/image-03.tsx +++ b/src/components/icons/image-03.tsx @@ -7,9 +7,9 @@ const Image03 = createIcon({ , ], diff --git a/src/components/icons/image-04.tsx b/src/components/icons/image-04.tsx index d6c78d83a..23a7e7337 100644 --- a/src/components/icons/image-04.tsx +++ b/src/components/icons/image-04.tsx @@ -7,17 +7,17 @@ const Image04 = createIcon({ , , ], diff --git a/src/components/icons/image-05.tsx b/src/components/icons/image-05.tsx index 0f593a453..e472d601d 100644 --- a/src/components/icons/image-05.tsx +++ b/src/components/icons/image-05.tsx @@ -7,9 +7,9 @@ const Image05 = createIcon({ , ], diff --git a/src/components/icons/image-check.tsx b/src/components/icons/image-check.tsx index 61ab6b6a8..2101ce2e3 100644 --- a/src/components/icons/image-check.tsx +++ b/src/components/icons/image-check.tsx @@ -7,9 +7,9 @@ const ImageCheck = createIcon({ , ], diff --git a/src/components/icons/image-down.tsx b/src/components/icons/image-down.tsx index 1a7a9d45c..d6dfa9bb1 100644 --- a/src/components/icons/image-down.tsx +++ b/src/components/icons/image-down.tsx @@ -7,9 +7,9 @@ const ImageDown = createIcon({ , ], diff --git a/src/components/icons/image-indent-left.tsx b/src/components/icons/image-indent-left.tsx index bc320d3c9..fb5ca2c46 100644 --- a/src/components/icons/image-indent-left.tsx +++ b/src/components/icons/image-indent-left.tsx @@ -7,9 +7,9 @@ const ImageIndentLeft = createIcon({ , ], diff --git a/src/components/icons/image-indent-right.tsx b/src/components/icons/image-indent-right.tsx index 2285d8d83..4cfcd805d 100644 --- a/src/components/icons/image-indent-right.tsx +++ b/src/components/icons/image-indent-right.tsx @@ -7,9 +7,9 @@ const ImageIndentRight = createIcon({ , ], diff --git a/src/components/icons/image-left.tsx b/src/components/icons/image-left.tsx index 1eb21c401..d8a0e0193 100644 --- a/src/components/icons/image-left.tsx +++ b/src/components/icons/image-left.tsx @@ -7,9 +7,9 @@ const ImageLeft = createIcon({ , ], diff --git a/src/components/icons/image-plus.tsx b/src/components/icons/image-plus.tsx index 0cb7db9d0..da8e66765 100644 --- a/src/components/icons/image-plus.tsx +++ b/src/components/icons/image-plus.tsx @@ -7,9 +7,9 @@ const ImagePlus = createIcon({ , ], diff --git a/src/components/icons/image-right.tsx b/src/components/icons/image-right.tsx index aad8c0797..490abc471 100644 --- a/src/components/icons/image-right.tsx +++ b/src/components/icons/image-right.tsx @@ -7,9 +7,9 @@ const ImageRight = createIcon({ , ], diff --git a/src/components/icons/image-up.tsx b/src/components/icons/image-up.tsx index 17b0480e2..ab0ec2b31 100644 --- a/src/components/icons/image-up.tsx +++ b/src/components/icons/image-up.tsx @@ -7,9 +7,9 @@ const ImageUp = createIcon({ , ], diff --git a/src/components/icons/image-user-check.tsx b/src/components/icons/image-user-check.tsx index 8279701ef..6bf312373 100644 --- a/src/components/icons/image-user-check.tsx +++ b/src/components/icons/image-user-check.tsx @@ -7,9 +7,9 @@ const ImageUserCheck = createIcon({ , ], diff --git a/src/components/icons/image-user-down.tsx b/src/components/icons/image-user-down.tsx index 6589fa218..2b91908ca 100644 --- a/src/components/icons/image-user-down.tsx +++ b/src/components/icons/image-user-down.tsx @@ -7,9 +7,9 @@ const ImageUserDown = createIcon({ , ], diff --git a/src/components/icons/image-user-left.tsx b/src/components/icons/image-user-left.tsx index b1d64a8f4..37b678ba4 100644 --- a/src/components/icons/image-user-left.tsx +++ b/src/components/icons/image-user-left.tsx @@ -7,9 +7,9 @@ const ImageUserLeft = createIcon({ , ], diff --git a/src/components/icons/image-user-plus.tsx b/src/components/icons/image-user-plus.tsx index c266ab7d6..fb22cc87b 100644 --- a/src/components/icons/image-user-plus.tsx +++ b/src/components/icons/image-user-plus.tsx @@ -7,9 +7,9 @@ const ImageUserPlus = createIcon({ , ], diff --git a/src/components/icons/image-user-right.tsx b/src/components/icons/image-user-right.tsx index 6f3ee2560..9f3939a9d 100644 --- a/src/components/icons/image-user-right.tsx +++ b/src/components/icons/image-user-right.tsx @@ -7,9 +7,9 @@ const ImageUserRight = createIcon({ , ], diff --git a/src/components/icons/image-user-up.tsx b/src/components/icons/image-user-up.tsx index cf325eecb..3f0211def 100644 --- a/src/components/icons/image-user-up.tsx +++ b/src/components/icons/image-user-up.tsx @@ -7,9 +7,9 @@ const ImageUserUp = createIcon({ , ], diff --git a/src/components/icons/image-user-x.tsx b/src/components/icons/image-user-x.tsx index 630bc0fda..a8d2058ef 100644 --- a/src/components/icons/image-user-x.tsx +++ b/src/components/icons/image-user-x.tsx @@ -7,9 +7,9 @@ const ImageUserX = createIcon({ , ], diff --git a/src/components/icons/image-user.tsx b/src/components/icons/image-user.tsx index a6b9f38ed..75f3444c4 100644 --- a/src/components/icons/image-user.tsx +++ b/src/components/icons/image-user.tsx @@ -7,9 +7,9 @@ const ImageUser = createIcon({ , ], diff --git a/src/components/icons/image-x.tsx b/src/components/icons/image-x.tsx index be4bd19b4..6ddcac720 100644 --- a/src/components/icons/image-x.tsx +++ b/src/components/icons/image-x.tsx @@ -7,9 +7,9 @@ const ImageX = createIcon({ , ], diff --git a/src/components/icons/inbox-01.tsx b/src/components/icons/inbox-01.tsx index 4f45c4efb..0f600d054 100644 --- a/src/components/icons/inbox-01.tsx +++ b/src/components/icons/inbox-01.tsx @@ -7,9 +7,9 @@ const Inbox01 = createIcon({ , ], diff --git a/src/components/icons/inbox-02.tsx b/src/components/icons/inbox-02.tsx index 43a5115f9..3850342c1 100644 --- a/src/components/icons/inbox-02.tsx +++ b/src/components/icons/inbox-02.tsx @@ -7,9 +7,9 @@ const Inbox02 = createIcon({ , ], diff --git a/src/components/icons/infinity.tsx b/src/components/icons/infinity.tsx index 31c36418a..fc32df66b 100644 --- a/src/components/icons/infinity.tsx +++ b/src/components/icons/infinity.tsx @@ -7,9 +7,9 @@ const Infinity = createIcon({ , ], diff --git a/src/components/icons/info-circle.tsx b/src/components/icons/info-circle.tsx index 424c8c5c7..019f2b79c 100644 --- a/src/components/icons/info-circle.tsx +++ b/src/components/icons/info-circle.tsx @@ -7,9 +7,9 @@ const InfoCircle = createIcon({ , ], diff --git a/src/components/icons/info-hexagon.tsx b/src/components/icons/info-hexagon.tsx index be7a24f31..2a0eed803 100644 --- a/src/components/icons/info-hexagon.tsx +++ b/src/components/icons/info-hexagon.tsx @@ -7,9 +7,9 @@ const InfoHexagon = createIcon({ , ], diff --git a/src/components/icons/info-octagon.tsx b/src/components/icons/info-octagon.tsx index 3d1dd4dd8..f556bc41b 100644 --- a/src/components/icons/info-octagon.tsx +++ b/src/components/icons/info-octagon.tsx @@ -7,9 +7,9 @@ const InfoOctagon = createIcon({ , ], diff --git a/src/components/icons/info-square.tsx b/src/components/icons/info-square.tsx index 323149488..d4c2c6cd1 100644 --- a/src/components/icons/info-square.tsx +++ b/src/components/icons/info-square.tsx @@ -7,9 +7,9 @@ const InfoSquare = createIcon({ , ], diff --git a/src/components/icons/intersect-circle.tsx b/src/components/icons/intersect-circle.tsx index 2e377e4a2..5536585d0 100644 --- a/src/components/icons/intersect-circle.tsx +++ b/src/components/icons/intersect-circle.tsx @@ -7,17 +7,17 @@ const IntersectCircle = createIcon({ , , ], diff --git a/src/components/icons/intersect-square.tsx b/src/components/icons/intersect-square.tsx index 772c3fa49..3230935f9 100644 --- a/src/components/icons/intersect-square.tsx +++ b/src/components/icons/intersect-square.tsx @@ -7,17 +7,17 @@ const IntersectSquare = createIcon({ , , ], diff --git a/src/components/icons/italic-01.tsx b/src/components/icons/italic-01.tsx index 13dc03eac..26ea057ac 100644 --- a/src/components/icons/italic-01.tsx +++ b/src/components/icons/italic-01.tsx @@ -7,9 +7,9 @@ const Italic01 = createIcon({ , ], diff --git a/src/components/icons/italic-02.tsx b/src/components/icons/italic-02.tsx index cb3794e4e..8932af4aa 100644 --- a/src/components/icons/italic-02.tsx +++ b/src/components/icons/italic-02.tsx @@ -7,9 +7,9 @@ const Italic02 = createIcon({ , ], diff --git a/src/components/icons/italic-square.tsx b/src/components/icons/italic-square.tsx index 34e27fef1..3b099df51 100644 --- a/src/components/icons/italic-square.tsx +++ b/src/components/icons/italic-square.tsx @@ -7,9 +7,9 @@ const ItalicSquare = createIcon({ , ], diff --git a/src/components/icons/key-01.tsx b/src/components/icons/key-01.tsx index 9f078a52b..9b6ced508 100644 --- a/src/components/icons/key-01.tsx +++ b/src/components/icons/key-01.tsx @@ -7,9 +7,9 @@ const Key01 = createIcon({ , ], diff --git a/src/components/icons/key-02.tsx b/src/components/icons/key-02.tsx index dd14d4ae1..e2ce65ba5 100644 --- a/src/components/icons/key-02.tsx +++ b/src/components/icons/key-02.tsx @@ -7,9 +7,9 @@ const Key02 = createIcon({ , ], diff --git a/src/components/icons/keyboard-01.tsx b/src/components/icons/keyboard-01.tsx index 0b42cb2a9..c22f9e7c2 100644 --- a/src/components/icons/keyboard-01.tsx +++ b/src/components/icons/keyboard-01.tsx @@ -7,9 +7,9 @@ const Keyboard01 = createIcon({ , ], diff --git a/src/components/icons/keyboard-02.tsx b/src/components/icons/keyboard-02.tsx index 265d16094..d4c9c6c45 100644 --- a/src/components/icons/keyboard-02.tsx +++ b/src/components/icons/keyboard-02.tsx @@ -7,9 +7,9 @@ const Keyboard02 = createIcon({ , ], diff --git a/src/components/icons/laptop-01.tsx b/src/components/icons/laptop-01.tsx index e753b401f..30d102e8a 100644 --- a/src/components/icons/laptop-01.tsx +++ b/src/components/icons/laptop-01.tsx @@ -7,9 +7,9 @@ const Laptop01 = createIcon({ , ], diff --git a/src/components/icons/laptop-02.tsx b/src/components/icons/laptop-02.tsx index 0e567eef7..f6ad88ba1 100644 --- a/src/components/icons/laptop-02.tsx +++ b/src/components/icons/laptop-02.tsx @@ -7,9 +7,9 @@ const Laptop02 = createIcon({ , ], diff --git a/src/components/icons/layer-single.tsx b/src/components/icons/layer-single.tsx index c3aeb311a..57358b93a 100644 --- a/src/components/icons/layer-single.tsx +++ b/src/components/icons/layer-single.tsx @@ -7,9 +7,9 @@ const LayerSingle = createIcon({ , ], diff --git a/src/components/icons/layers-three-01.tsx b/src/components/icons/layers-three-01.tsx index c137826ca..3e0bc254f 100644 --- a/src/components/icons/layers-three-01.tsx +++ b/src/components/icons/layers-three-01.tsx @@ -7,9 +7,9 @@ const LayersThree01 = createIcon({ , ], diff --git a/src/components/icons/layers-three-02.tsx b/src/components/icons/layers-three-02.tsx index 2a71ee4a2..1b51381bb 100644 --- a/src/components/icons/layers-three-02.tsx +++ b/src/components/icons/layers-three-02.tsx @@ -7,9 +7,9 @@ const LayersThree02 = createIcon({ , ], diff --git a/src/components/icons/layers-two-01.tsx b/src/components/icons/layers-two-01.tsx index 67a075cf0..cdb809331 100644 --- a/src/components/icons/layers-two-01.tsx +++ b/src/components/icons/layers-two-01.tsx @@ -7,9 +7,9 @@ const LayersTwo01 = createIcon({ , ], diff --git a/src/components/icons/layers-two-02.tsx b/src/components/icons/layers-two-02.tsx index 3d145fca2..37116628f 100644 --- a/src/components/icons/layers-two-02.tsx +++ b/src/components/icons/layers-two-02.tsx @@ -7,9 +7,9 @@ const LayersTwo02 = createIcon({ , ], diff --git a/src/components/icons/layout-alt-01.tsx b/src/components/icons/layout-alt-01.tsx index a7f0e46fc..2c6486331 100644 --- a/src/components/icons/layout-alt-01.tsx +++ b/src/components/icons/layout-alt-01.tsx @@ -7,9 +7,9 @@ const LayoutAlt01 = createIcon({ , ], diff --git a/src/components/icons/layout-alt-02.tsx b/src/components/icons/layout-alt-02.tsx index a46816e49..cbb628a15 100644 --- a/src/components/icons/layout-alt-02.tsx +++ b/src/components/icons/layout-alt-02.tsx @@ -7,9 +7,9 @@ const LayoutAlt02 = createIcon({ , ], diff --git a/src/components/icons/layout-alt-03.tsx b/src/components/icons/layout-alt-03.tsx index 4f58ac502..bce1c9c8a 100644 --- a/src/components/icons/layout-alt-03.tsx +++ b/src/components/icons/layout-alt-03.tsx @@ -7,9 +7,9 @@ const LayoutAlt03 = createIcon({ , ], diff --git a/src/components/icons/layout-alt-04.tsx b/src/components/icons/layout-alt-04.tsx index f5e5f5d5f..2ab31868a 100644 --- a/src/components/icons/layout-alt-04.tsx +++ b/src/components/icons/layout-alt-04.tsx @@ -7,9 +7,9 @@ const LayoutAlt04 = createIcon({ , ], diff --git a/src/components/icons/layout-bottom.tsx b/src/components/icons/layout-bottom.tsx index fc6fa18c4..a93ea3397 100644 --- a/src/components/icons/layout-bottom.tsx +++ b/src/components/icons/layout-bottom.tsx @@ -7,9 +7,9 @@ const LayoutBottom = createIcon({ , ], diff --git a/src/components/icons/layout-grid-01.tsx b/src/components/icons/layout-grid-01.tsx index 69f910c31..5b2152721 100644 --- a/src/components/icons/layout-grid-01.tsx +++ b/src/components/icons/layout-grid-01.tsx @@ -7,9 +7,9 @@ const LayoutGrid01 = createIcon({ , ], diff --git a/src/components/icons/layout-grid-02.tsx b/src/components/icons/layout-grid-02.tsx index 7df197658..f0594e84e 100644 --- a/src/components/icons/layout-grid-02.tsx +++ b/src/components/icons/layout-grid-02.tsx @@ -7,9 +7,9 @@ const LayoutGrid02 = createIcon({ , ], diff --git a/src/components/icons/layout-left.tsx b/src/components/icons/layout-left.tsx index 15205dca9..8c6148849 100644 --- a/src/components/icons/layout-left.tsx +++ b/src/components/icons/layout-left.tsx @@ -7,9 +7,9 @@ const LayoutLeft = createIcon({ , ], diff --git a/src/components/icons/layout-right.tsx b/src/components/icons/layout-right.tsx index 83c3f9c94..be8d099a2 100644 --- a/src/components/icons/layout-right.tsx +++ b/src/components/icons/layout-right.tsx @@ -7,9 +7,9 @@ const LayoutRight = createIcon({ , ], diff --git a/src/components/icons/layout-top.tsx b/src/components/icons/layout-top.tsx index c42895035..9cb3be515 100644 --- a/src/components/icons/layout-top.tsx +++ b/src/components/icons/layout-top.tsx @@ -7,9 +7,9 @@ const LayoutTop = createIcon({ , ], diff --git a/src/components/icons/left-indent-01.tsx b/src/components/icons/left-indent-01.tsx index 49b535e98..77e6cf933 100644 --- a/src/components/icons/left-indent-01.tsx +++ b/src/components/icons/left-indent-01.tsx @@ -7,9 +7,9 @@ const LeftIndent01 = createIcon({ , ], diff --git a/src/components/icons/left-indent-02.tsx b/src/components/icons/left-indent-02.tsx index cfd876306..a062a2009 100644 --- a/src/components/icons/left-indent-02.tsx +++ b/src/components/icons/left-indent-02.tsx @@ -7,9 +7,9 @@ const LeftIndent02 = createIcon({ , ], diff --git a/src/components/icons/letter-spacing-01.tsx b/src/components/icons/letter-spacing-01.tsx index 2d7a9c2b0..934774def 100644 --- a/src/components/icons/letter-spacing-01.tsx +++ b/src/components/icons/letter-spacing-01.tsx @@ -7,9 +7,9 @@ const LetterSpacing01 = createIcon({ , ], diff --git a/src/components/icons/letter-spacing-02.tsx b/src/components/icons/letter-spacing-02.tsx index 6fbd53500..1343adcf4 100644 --- a/src/components/icons/letter-spacing-02.tsx +++ b/src/components/icons/letter-spacing-02.tsx @@ -7,9 +7,9 @@ const LetterSpacing02 = createIcon({ , ], diff --git a/src/components/icons/life-buoy-01.tsx b/src/components/icons/life-buoy-01.tsx index 5538189e1..c7afd8cc1 100644 --- a/src/components/icons/life-buoy-01.tsx +++ b/src/components/icons/life-buoy-01.tsx @@ -7,9 +7,9 @@ const LifeBuoy01 = createIcon({ , ], diff --git a/src/components/icons/life-buoy-02.tsx b/src/components/icons/life-buoy-02.tsx index 50667677f..56356b2eb 100644 --- a/src/components/icons/life-buoy-02.tsx +++ b/src/components/icons/life-buoy-02.tsx @@ -7,9 +7,9 @@ const LifeBuoy02 = createIcon({ , ], diff --git a/src/components/icons/lightbulb-01.tsx b/src/components/icons/lightbulb-01.tsx index 86c629ea2..1d4e2f008 100644 --- a/src/components/icons/lightbulb-01.tsx +++ b/src/components/icons/lightbulb-01.tsx @@ -7,9 +7,9 @@ const Lightbulb01 = createIcon({ , ], diff --git a/src/components/icons/lightbulb-02.tsx b/src/components/icons/lightbulb-02.tsx index 41b87751c..805fec644 100644 --- a/src/components/icons/lightbulb-02.tsx +++ b/src/components/icons/lightbulb-02.tsx @@ -7,9 +7,9 @@ const Lightbulb02 = createIcon({ , ], diff --git a/src/components/icons/lightbulb-03.tsx b/src/components/icons/lightbulb-03.tsx index 4f52aca76..72fa7b450 100644 --- a/src/components/icons/lightbulb-03.tsx +++ b/src/components/icons/lightbulb-03.tsx @@ -7,9 +7,9 @@ const Lightbulb03 = createIcon({ , ], diff --git a/src/components/icons/lightbulb-04.tsx b/src/components/icons/lightbulb-04.tsx index 8b0cacc76..6b481a137 100644 --- a/src/components/icons/lightbulb-04.tsx +++ b/src/components/icons/lightbulb-04.tsx @@ -7,9 +7,9 @@ const Lightbulb04 = createIcon({ , ], diff --git a/src/components/icons/lightbulb-05.tsx b/src/components/icons/lightbulb-05.tsx index 3dfc0ca9c..1c2a0c3ea 100644 --- a/src/components/icons/lightbulb-05.tsx +++ b/src/components/icons/lightbulb-05.tsx @@ -7,9 +7,9 @@ const Lightbulb05 = createIcon({ , ], diff --git a/src/components/icons/lightning-01.tsx b/src/components/icons/lightning-01.tsx index 442ead2a0..c7721af63 100644 --- a/src/components/icons/lightning-01.tsx +++ b/src/components/icons/lightning-01.tsx @@ -7,9 +7,9 @@ const Lightning01 = createIcon({ , ], diff --git a/src/components/icons/lightning-02.tsx b/src/components/icons/lightning-02.tsx index 38e60ab22..cc48e89b6 100644 --- a/src/components/icons/lightning-02.tsx +++ b/src/components/icons/lightning-02.tsx @@ -7,9 +7,9 @@ const Lightning02 = createIcon({ , ], diff --git a/src/components/icons/line-chart-down-01.tsx b/src/components/icons/line-chart-down-01.tsx index 6045570ca..a03811ca8 100644 --- a/src/components/icons/line-chart-down-01.tsx +++ b/src/components/icons/line-chart-down-01.tsx @@ -7,9 +7,9 @@ const LineChartDown01 = createIcon({ , ], diff --git a/src/components/icons/line-chart-down-02.tsx b/src/components/icons/line-chart-down-02.tsx index 625bdd2e2..85df4f54e 100644 --- a/src/components/icons/line-chart-down-02.tsx +++ b/src/components/icons/line-chart-down-02.tsx @@ -7,9 +7,9 @@ const LineChartDown02 = createIcon({ , ], diff --git a/src/components/icons/line-chart-down-03.tsx b/src/components/icons/line-chart-down-03.tsx index 870e8b103..de0dbfb73 100644 --- a/src/components/icons/line-chart-down-03.tsx +++ b/src/components/icons/line-chart-down-03.tsx @@ -7,9 +7,9 @@ const LineChartDown03 = createIcon({ , ], diff --git a/src/components/icons/line-chart-down-04.tsx b/src/components/icons/line-chart-down-04.tsx index 5128fea18..b4d095338 100644 --- a/src/components/icons/line-chart-down-04.tsx +++ b/src/components/icons/line-chart-down-04.tsx @@ -7,9 +7,9 @@ const LineChartDown04 = createIcon({ , ], diff --git a/src/components/icons/line-chart-down-05.tsx b/src/components/icons/line-chart-down-05.tsx index c91531850..cabe8a80f 100644 --- a/src/components/icons/line-chart-down-05.tsx +++ b/src/components/icons/line-chart-down-05.tsx @@ -7,9 +7,9 @@ const LineChartDown05 = createIcon({ , ], diff --git a/src/components/icons/line-chart-up-01.tsx b/src/components/icons/line-chart-up-01.tsx index f2fd84b22..4ebc45ddd 100644 --- a/src/components/icons/line-chart-up-01.tsx +++ b/src/components/icons/line-chart-up-01.tsx @@ -7,9 +7,9 @@ const LineChartUp01 = createIcon({ , ], diff --git a/src/components/icons/line-chart-up-02.tsx b/src/components/icons/line-chart-up-02.tsx index 69d6e78b8..3940ea5ed 100644 --- a/src/components/icons/line-chart-up-02.tsx +++ b/src/components/icons/line-chart-up-02.tsx @@ -7,9 +7,9 @@ const LineChartUp02 = createIcon({ , ], diff --git a/src/components/icons/line-chart-up-03.tsx b/src/components/icons/line-chart-up-03.tsx index 422e298d1..38babeda6 100644 --- a/src/components/icons/line-chart-up-03.tsx +++ b/src/components/icons/line-chart-up-03.tsx @@ -7,9 +7,9 @@ const LineChartUp03 = createIcon({ , ], diff --git a/src/components/icons/line-chart-up-04.tsx b/src/components/icons/line-chart-up-04.tsx index 97e9f05e0..305587f49 100644 --- a/src/components/icons/line-chart-up-04.tsx +++ b/src/components/icons/line-chart-up-04.tsx @@ -7,9 +7,9 @@ const LineChartUp04 = createIcon({ , ], diff --git a/src/components/icons/line-chart-up-05.tsx b/src/components/icons/line-chart-up-05.tsx index fe014dcf4..4bc75b210 100644 --- a/src/components/icons/line-chart-up-05.tsx +++ b/src/components/icons/line-chart-up-05.tsx @@ -7,9 +7,9 @@ const LineChartUp05 = createIcon({ , ], diff --git a/src/components/icons/line-height.tsx b/src/components/icons/line-height.tsx index 122541e6d..349f34490 100644 --- a/src/components/icons/line-height.tsx +++ b/src/components/icons/line-height.tsx @@ -7,9 +7,9 @@ const LineHeight = createIcon({ , ], diff --git a/src/components/icons/link-01.tsx b/src/components/icons/link-01.tsx index 8ea9f499e..f7dbaf37a 100644 --- a/src/components/icons/link-01.tsx +++ b/src/components/icons/link-01.tsx @@ -7,9 +7,9 @@ const Link01 = createIcon({ , ], diff --git a/src/components/icons/link-02.tsx b/src/components/icons/link-02.tsx index f3915ec6a..19d5a557b 100644 --- a/src/components/icons/link-02.tsx +++ b/src/components/icons/link-02.tsx @@ -7,9 +7,9 @@ const Link02 = createIcon({ , ], diff --git a/src/components/icons/link-03.tsx b/src/components/icons/link-03.tsx index 55ddb2e33..034eedfe7 100644 --- a/src/components/icons/link-03.tsx +++ b/src/components/icons/link-03.tsx @@ -7,9 +7,9 @@ const Link03 = createIcon({ , ], diff --git a/src/components/icons/link-04.tsx b/src/components/icons/link-04.tsx index c9f6ea52e..ef34d6956 100644 --- a/src/components/icons/link-04.tsx +++ b/src/components/icons/link-04.tsx @@ -7,9 +7,9 @@ const Link04 = createIcon({ , ], diff --git a/src/components/icons/link-05.tsx b/src/components/icons/link-05.tsx index e9f38758c..4b14b8742 100644 --- a/src/components/icons/link-05.tsx +++ b/src/components/icons/link-05.tsx @@ -7,9 +7,9 @@ const Link05 = createIcon({ , ], diff --git a/src/components/icons/link-broken-01.tsx b/src/components/icons/link-broken-01.tsx index cc15420a7..ea96a40cc 100644 --- a/src/components/icons/link-broken-01.tsx +++ b/src/components/icons/link-broken-01.tsx @@ -7,9 +7,9 @@ const LinkBroken01 = createIcon({ , ], diff --git a/src/components/icons/link-broken-02.tsx b/src/components/icons/link-broken-02.tsx index 3a3dcd807..b6a7cb16b 100644 --- a/src/components/icons/link-broken-02.tsx +++ b/src/components/icons/link-broken-02.tsx @@ -7,9 +7,9 @@ const LinkBroken02 = createIcon({ , ], diff --git a/src/components/icons/link-external-01.tsx b/src/components/icons/link-external-01.tsx index f2d5ed1fb..0829f4f0b 100644 --- a/src/components/icons/link-external-01.tsx +++ b/src/components/icons/link-external-01.tsx @@ -7,9 +7,9 @@ const LinkExternal01 = createIcon({ , ], diff --git a/src/components/icons/link-external-02.tsx b/src/components/icons/link-external-02.tsx index 5389ca1a0..6b3b517da 100644 --- a/src/components/icons/link-external-02.tsx +++ b/src/components/icons/link-external-02.tsx @@ -7,9 +7,9 @@ const LinkExternal02 = createIcon({ , ], diff --git a/src/components/icons/list.tsx b/src/components/icons/list.tsx index e64910ba2..8a926ee30 100644 --- a/src/components/icons/list.tsx +++ b/src/components/icons/list.tsx @@ -7,9 +7,9 @@ const List = createIcon({ , ], diff --git a/src/components/icons/loading-01.tsx b/src/components/icons/loading-01.tsx index 8bbf1ac4e..2f2ca9a6a 100644 --- a/src/components/icons/loading-01.tsx +++ b/src/components/icons/loading-01.tsx @@ -7,9 +7,9 @@ const Loading01 = createIcon({ , ], diff --git a/src/components/icons/loading-02.tsx b/src/components/icons/loading-02.tsx index 0b8016f38..a0f80be9a 100644 --- a/src/components/icons/loading-02.tsx +++ b/src/components/icons/loading-02.tsx @@ -7,9 +7,9 @@ const Loading02 = createIcon({ , ], diff --git a/src/components/icons/loading-03.tsx b/src/components/icons/loading-03.tsx index f597e501b..3393de153 100644 --- a/src/components/icons/loading-03.tsx +++ b/src/components/icons/loading-03.tsx @@ -7,9 +7,9 @@ const Loading03 = createIcon({ , ], diff --git a/src/components/icons/lock-01.tsx b/src/components/icons/lock-01.tsx index eff4f72e3..7f35faf0b 100644 --- a/src/components/icons/lock-01.tsx +++ b/src/components/icons/lock-01.tsx @@ -7,9 +7,9 @@ const Lock01 = createIcon({ , ], diff --git a/src/components/icons/lock-02.tsx b/src/components/icons/lock-02.tsx index 9da5fc630..2202948d4 100644 --- a/src/components/icons/lock-02.tsx +++ b/src/components/icons/lock-02.tsx @@ -7,9 +7,9 @@ const Lock02 = createIcon({ , ], diff --git a/src/components/icons/lock-03.tsx b/src/components/icons/lock-03.tsx index 2d6900725..574d2b9eb 100644 --- a/src/components/icons/lock-03.tsx +++ b/src/components/icons/lock-03.tsx @@ -7,9 +7,9 @@ const Lock03 = createIcon({ , ], diff --git a/src/components/icons/lock-04.tsx b/src/components/icons/lock-04.tsx index fa9365176..78add5a0d 100644 --- a/src/components/icons/lock-04.tsx +++ b/src/components/icons/lock-04.tsx @@ -7,9 +7,9 @@ const Lock04 = createIcon({ , ], diff --git a/src/components/icons/lock-keyhole-circle.tsx b/src/components/icons/lock-keyhole-circle.tsx index 7470091e9..0f105f1a9 100644 --- a/src/components/icons/lock-keyhole-circle.tsx +++ b/src/components/icons/lock-keyhole-circle.tsx @@ -7,17 +7,17 @@ const LockKeyholeCircle = createIcon({ , , ], diff --git a/src/components/icons/lock-keyhole-square.tsx b/src/components/icons/lock-keyhole-square.tsx index 964aad66a..2bb39e684 100644 --- a/src/components/icons/lock-keyhole-square.tsx +++ b/src/components/icons/lock-keyhole-square.tsx @@ -7,17 +7,17 @@ const LockKeyholeSquare = createIcon({ , , ], diff --git a/src/components/icons/lock-unlocked-01.tsx b/src/components/icons/lock-unlocked-01.tsx index 893efacc5..954500d6c 100644 --- a/src/components/icons/lock-unlocked-01.tsx +++ b/src/components/icons/lock-unlocked-01.tsx @@ -7,9 +7,9 @@ const LockUnlocked01 = createIcon({ , ], diff --git a/src/components/icons/lock-unlocked-02.tsx b/src/components/icons/lock-unlocked-02.tsx index 27ead12a8..d8d3091b0 100644 --- a/src/components/icons/lock-unlocked-02.tsx +++ b/src/components/icons/lock-unlocked-02.tsx @@ -7,9 +7,9 @@ const LockUnlocked02 = createIcon({ , ], diff --git a/src/components/icons/lock-unlocked-03.tsx b/src/components/icons/lock-unlocked-03.tsx index 6dab53112..a0c27d450 100644 --- a/src/components/icons/lock-unlocked-03.tsx +++ b/src/components/icons/lock-unlocked-03.tsx @@ -7,9 +7,9 @@ const LockUnlocked03 = createIcon({ , ], diff --git a/src/components/icons/lock-unlocked-04.tsx b/src/components/icons/lock-unlocked-04.tsx index ee8c6c3f5..13fb7441c 100644 --- a/src/components/icons/lock-unlocked-04.tsx +++ b/src/components/icons/lock-unlocked-04.tsx @@ -7,9 +7,9 @@ const LockUnlocked04 = createIcon({ , ], diff --git a/src/components/icons/log-in-01.tsx b/src/components/icons/log-in-01.tsx index d4fbef21d..dceab47d3 100644 --- a/src/components/icons/log-in-01.tsx +++ b/src/components/icons/log-in-01.tsx @@ -7,9 +7,9 @@ const LogIn01 = createIcon({ , ], diff --git a/src/components/icons/log-in-02.tsx b/src/components/icons/log-in-02.tsx index de9033ded..af1755ae5 100644 --- a/src/components/icons/log-in-02.tsx +++ b/src/components/icons/log-in-02.tsx @@ -7,9 +7,9 @@ const LogIn02 = createIcon({ , ], diff --git a/src/components/icons/log-in-03.tsx b/src/components/icons/log-in-03.tsx index 88168182e..804a74274 100644 --- a/src/components/icons/log-in-03.tsx +++ b/src/components/icons/log-in-03.tsx @@ -7,9 +7,9 @@ const LogIn03 = createIcon({ , ], diff --git a/src/components/icons/log-in-04.tsx b/src/components/icons/log-in-04.tsx index 481e9350d..544a0c089 100644 --- a/src/components/icons/log-in-04.tsx +++ b/src/components/icons/log-in-04.tsx @@ -7,9 +7,9 @@ const LogIn04 = createIcon({ , ], diff --git a/src/components/icons/log-out-01.tsx b/src/components/icons/log-out-01.tsx index c59d0dad3..c96280936 100644 --- a/src/components/icons/log-out-01.tsx +++ b/src/components/icons/log-out-01.tsx @@ -7,9 +7,9 @@ const LogOut01 = createIcon({ , ], diff --git a/src/components/icons/log-out-02.tsx b/src/components/icons/log-out-02.tsx index c0fc0295a..3d0e8eece 100644 --- a/src/components/icons/log-out-02.tsx +++ b/src/components/icons/log-out-02.tsx @@ -7,9 +7,9 @@ const LogOut02 = createIcon({ , ], diff --git a/src/components/icons/log-out-03.tsx b/src/components/icons/log-out-03.tsx index 66d264aa0..0eafe05e4 100644 --- a/src/components/icons/log-out-03.tsx +++ b/src/components/icons/log-out-03.tsx @@ -7,9 +7,9 @@ const LogOut03 = createIcon({ , ], diff --git a/src/components/icons/log-out-04.tsx b/src/components/icons/log-out-04.tsx index cb4087c6d..0ed7f0ba4 100644 --- a/src/components/icons/log-out-04.tsx +++ b/src/components/icons/log-out-04.tsx @@ -7,9 +7,9 @@ const LogOut04 = createIcon({ , ], diff --git a/src/components/icons/luggage-01.tsx b/src/components/icons/luggage-01.tsx index 16e383c9b..3b79aa3cd 100644 --- a/src/components/icons/luggage-01.tsx +++ b/src/components/icons/luggage-01.tsx @@ -7,9 +7,9 @@ const Luggage01 = createIcon({ , ], diff --git a/src/components/icons/luggage-02.tsx b/src/components/icons/luggage-02.tsx index 8e1c5c3a8..eba664cbf 100644 --- a/src/components/icons/luggage-02.tsx +++ b/src/components/icons/luggage-02.tsx @@ -7,9 +7,9 @@ const Luggage02 = createIcon({ , ], diff --git a/src/components/icons/luggage-03.tsx b/src/components/icons/luggage-03.tsx index 0a1bd0859..b12f732f2 100644 --- a/src/components/icons/luggage-03.tsx +++ b/src/components/icons/luggage-03.tsx @@ -7,9 +7,9 @@ const Luggage03 = createIcon({ , ], diff --git a/src/components/icons/magic-wand-01.tsx b/src/components/icons/magic-wand-01.tsx index 325165674..463e5d5a2 100644 --- a/src/components/icons/magic-wand-01.tsx +++ b/src/components/icons/magic-wand-01.tsx @@ -7,9 +7,9 @@ const MagicWand01 = createIcon({ , ], diff --git a/src/components/icons/magic-wand-02.tsx b/src/components/icons/magic-wand-02.tsx index f3901630d..a905c24f6 100644 --- a/src/components/icons/magic-wand-02.tsx +++ b/src/components/icons/magic-wand-02.tsx @@ -7,9 +7,9 @@ const MagicWand02 = createIcon({ , ], diff --git a/src/components/icons/mail-01.tsx b/src/components/icons/mail-01.tsx index aa4db0964..8d812f396 100644 --- a/src/components/icons/mail-01.tsx +++ b/src/components/icons/mail-01.tsx @@ -7,9 +7,9 @@ const Mail01 = createIcon({ , ], diff --git a/src/components/icons/mail-02.tsx b/src/components/icons/mail-02.tsx index 68f6b038e..f6dbe3c7c 100644 --- a/src/components/icons/mail-02.tsx +++ b/src/components/icons/mail-02.tsx @@ -7,9 +7,9 @@ const Mail02 = createIcon({ , ], diff --git a/src/components/icons/mail-03.tsx b/src/components/icons/mail-03.tsx index 52d7ea555..a40eb568e 100644 --- a/src/components/icons/mail-03.tsx +++ b/src/components/icons/mail-03.tsx @@ -7,9 +7,9 @@ const Mail03 = createIcon({ , ], diff --git a/src/components/icons/mail-04.tsx b/src/components/icons/mail-04.tsx index c88d48a11..6502db297 100644 --- a/src/components/icons/mail-04.tsx +++ b/src/components/icons/mail-04.tsx @@ -7,9 +7,9 @@ const Mail04 = createIcon({ , ], diff --git a/src/components/icons/mail-05.tsx b/src/components/icons/mail-05.tsx index 966622081..61705e5da 100644 --- a/src/components/icons/mail-05.tsx +++ b/src/components/icons/mail-05.tsx @@ -7,9 +7,9 @@ const Mail05 = createIcon({ , ], diff --git a/src/components/icons/map-01.tsx b/src/components/icons/map-01.tsx index 2523054e0..5ed513794 100644 --- a/src/components/icons/map-01.tsx +++ b/src/components/icons/map-01.tsx @@ -7,9 +7,9 @@ const Map01 = createIcon({ , ], diff --git a/src/components/icons/map-02.tsx b/src/components/icons/map-02.tsx index ff95c1147..355c4948b 100644 --- a/src/components/icons/map-02.tsx +++ b/src/components/icons/map-02.tsx @@ -7,9 +7,9 @@ const Map02 = createIcon({ , ], diff --git a/src/components/icons/mark.tsx b/src/components/icons/mark.tsx index 6bd9bc6f2..6973e19fb 100644 --- a/src/components/icons/mark.tsx +++ b/src/components/icons/mark.tsx @@ -7,9 +7,9 @@ const Mark = createIcon({ , ], diff --git a/src/components/icons/marker-pin-01.tsx b/src/components/icons/marker-pin-01.tsx index ee668aa06..b0d98cd21 100644 --- a/src/components/icons/marker-pin-01.tsx +++ b/src/components/icons/marker-pin-01.tsx @@ -7,17 +7,17 @@ const MarkerPin01 = createIcon({ , , ], diff --git a/src/components/icons/marker-pin-02.tsx b/src/components/icons/marker-pin-02.tsx index efab6132d..e0e334cb0 100644 --- a/src/components/icons/marker-pin-02.tsx +++ b/src/components/icons/marker-pin-02.tsx @@ -7,17 +7,17 @@ const MarkerPin02 = createIcon({ , , ], diff --git a/src/components/icons/marker-pin-03.tsx b/src/components/icons/marker-pin-03.tsx index 631c75aff..f6a0446c1 100644 --- a/src/components/icons/marker-pin-03.tsx +++ b/src/components/icons/marker-pin-03.tsx @@ -7,17 +7,17 @@ const MarkerPin03 = createIcon({ , , ], diff --git a/src/components/icons/marker-pin-04.tsx b/src/components/icons/marker-pin-04.tsx index 65cda8b25..cbeba1e62 100644 --- a/src/components/icons/marker-pin-04.tsx +++ b/src/components/icons/marker-pin-04.tsx @@ -7,9 +7,9 @@ const MarkerPin04 = createIcon({ , ], diff --git a/src/components/icons/marker-pin-05.tsx b/src/components/icons/marker-pin-05.tsx index 997cb4c21..8f73e35e8 100644 --- a/src/components/icons/marker-pin-05.tsx +++ b/src/components/icons/marker-pin-05.tsx @@ -7,9 +7,9 @@ const MarkerPin05 = createIcon({ , ], diff --git a/src/components/icons/marker-pin-06.tsx b/src/components/icons/marker-pin-06.tsx index f22d6a3b8..68f5e1cec 100644 --- a/src/components/icons/marker-pin-06.tsx +++ b/src/components/icons/marker-pin-06.tsx @@ -7,9 +7,9 @@ const MarkerPin06 = createIcon({ , ], diff --git a/src/components/icons/maximize-01.tsx b/src/components/icons/maximize-01.tsx index 07af33de0..40f1f74fa 100644 --- a/src/components/icons/maximize-01.tsx +++ b/src/components/icons/maximize-01.tsx @@ -7,9 +7,9 @@ const Maximize01 = createIcon({ , ], diff --git a/src/components/icons/maximize-02.tsx b/src/components/icons/maximize-02.tsx index dad4dcbfc..6f2870161 100644 --- a/src/components/icons/maximize-02.tsx +++ b/src/components/icons/maximize-02.tsx @@ -7,9 +7,9 @@ const Maximize02 = createIcon({ , ], diff --git a/src/components/icons/medical-circle.tsx b/src/components/icons/medical-circle.tsx index ed4d6cc50..773bf9175 100644 --- a/src/components/icons/medical-circle.tsx +++ b/src/components/icons/medical-circle.tsx @@ -7,17 +7,17 @@ const MedicalCircle = createIcon({ , , ], diff --git a/src/components/icons/medical-cross.tsx b/src/components/icons/medical-cross.tsx index 87d8702af..46749b42f 100644 --- a/src/components/icons/medical-cross.tsx +++ b/src/components/icons/medical-cross.tsx @@ -7,9 +7,9 @@ const MedicalCross = createIcon({ , ], diff --git a/src/components/icons/medical-square.tsx b/src/components/icons/medical-square.tsx index c1398bd28..f1b874ced 100644 --- a/src/components/icons/medical-square.tsx +++ b/src/components/icons/medical-square.tsx @@ -7,17 +7,17 @@ const MedicalSquare = createIcon({ , , ], diff --git a/src/components/icons/menu-01.tsx b/src/components/icons/menu-01.tsx index ec9aac9e5..ff3cb59bb 100644 --- a/src/components/icons/menu-01.tsx +++ b/src/components/icons/menu-01.tsx @@ -7,9 +7,9 @@ const Menu01 = createIcon({ , ], diff --git a/src/components/icons/menu-02.tsx b/src/components/icons/menu-02.tsx index 47a85028a..a822ac018 100644 --- a/src/components/icons/menu-02.tsx +++ b/src/components/icons/menu-02.tsx @@ -7,9 +7,9 @@ const Menu02 = createIcon({ , ], diff --git a/src/components/icons/menu-03.tsx b/src/components/icons/menu-03.tsx index e4830dca3..8bd6d4f5f 100644 --- a/src/components/icons/menu-03.tsx +++ b/src/components/icons/menu-03.tsx @@ -7,9 +7,9 @@ const Menu03 = createIcon({ , ], diff --git a/src/components/icons/menu-04.tsx b/src/components/icons/menu-04.tsx index 24dcfb621..c24975e76 100644 --- a/src/components/icons/menu-04.tsx +++ b/src/components/icons/menu-04.tsx @@ -7,9 +7,9 @@ const Menu04 = createIcon({ , ], diff --git a/src/components/icons/menu-05.tsx b/src/components/icons/menu-05.tsx index 440444db3..9ac3a4085 100644 --- a/src/components/icons/menu-05.tsx +++ b/src/components/icons/menu-05.tsx @@ -7,9 +7,9 @@ const Menu05 = createIcon({ , ], diff --git a/src/components/icons/message-alert-circle.tsx b/src/components/icons/message-alert-circle.tsx index abfe566a4..94336588c 100644 --- a/src/components/icons/message-alert-circle.tsx +++ b/src/components/icons/message-alert-circle.tsx @@ -7,9 +7,9 @@ const MessageAlertCircle = createIcon({ , ], diff --git a/src/components/icons/message-alert-square.tsx b/src/components/icons/message-alert-square.tsx index d2a22377d..dfb8e5f04 100644 --- a/src/components/icons/message-alert-square.tsx +++ b/src/components/icons/message-alert-square.tsx @@ -7,9 +7,9 @@ const MessageAlertSquare = createIcon({ , ], diff --git a/src/components/icons/message-chat-circle.tsx b/src/components/icons/message-chat-circle.tsx index de003e9ef..ecb5614dc 100644 --- a/src/components/icons/message-chat-circle.tsx +++ b/src/components/icons/message-chat-circle.tsx @@ -7,9 +7,9 @@ const MessageChatCircle = createIcon({ , ], diff --git a/src/components/icons/message-chat-square.tsx b/src/components/icons/message-chat-square.tsx index 899227680..5e799e817 100644 --- a/src/components/icons/message-chat-square.tsx +++ b/src/components/icons/message-chat-square.tsx @@ -7,9 +7,9 @@ const MessageChatSquare = createIcon({ , ], diff --git a/src/components/icons/message-check-circle.tsx b/src/components/icons/message-check-circle.tsx index c9e1b1b99..cc0e91808 100644 --- a/src/components/icons/message-check-circle.tsx +++ b/src/components/icons/message-check-circle.tsx @@ -7,9 +7,9 @@ const MessageCheckCircle = createIcon({ , ], diff --git a/src/components/icons/message-check-square.tsx b/src/components/icons/message-check-square.tsx index 39732a0c0..3227a2057 100644 --- a/src/components/icons/message-check-square.tsx +++ b/src/components/icons/message-check-square.tsx @@ -7,9 +7,9 @@ const MessageCheckSquare = createIcon({ , ], diff --git a/src/components/icons/message-circle-01.tsx b/src/components/icons/message-circle-01.tsx index cbe6b03c5..edb3eca2d 100644 --- a/src/components/icons/message-circle-01.tsx +++ b/src/components/icons/message-circle-01.tsx @@ -7,9 +7,9 @@ const MessageCircle01 = createIcon({ , ], diff --git a/src/components/icons/message-circle-02.tsx b/src/components/icons/message-circle-02.tsx index 9fe4a160c..80c589ce8 100644 --- a/src/components/icons/message-circle-02.tsx +++ b/src/components/icons/message-circle-02.tsx @@ -7,9 +7,9 @@ const MessageCircle02 = createIcon({ , ], diff --git a/src/components/icons/message-dots-circle.tsx b/src/components/icons/message-dots-circle.tsx index d733a1d63..c874f565c 100644 --- a/src/components/icons/message-dots-circle.tsx +++ b/src/components/icons/message-dots-circle.tsx @@ -7,9 +7,9 @@ const MessageDotsCircle = createIcon({ , ], diff --git a/src/components/icons/message-dots-square.tsx b/src/components/icons/message-dots-square.tsx index 92b19bd8c..ebebc378d 100644 --- a/src/components/icons/message-dots-square.tsx +++ b/src/components/icons/message-dots-square.tsx @@ -7,9 +7,9 @@ const MessageDotsSquare = createIcon({ , ], diff --git a/src/components/icons/message-heart-circle.tsx b/src/components/icons/message-heart-circle.tsx index 3ac762341..4e9d4f3fc 100644 --- a/src/components/icons/message-heart-circle.tsx +++ b/src/components/icons/message-heart-circle.tsx @@ -7,19 +7,19 @@ const MessageHeartCircle = createIcon({ , , ], diff --git a/src/components/icons/message-heart-square.tsx b/src/components/icons/message-heart-square.tsx index 5bfbbe3ec..d2314042a 100644 --- a/src/components/icons/message-heart-square.tsx +++ b/src/components/icons/message-heart-square.tsx @@ -7,19 +7,19 @@ const MessageHeartSquare = createIcon({ , , ], diff --git a/src/components/icons/message-notification-circle.tsx b/src/components/icons/message-notification-circle.tsx index a03301638..853583f7a 100644 --- a/src/components/icons/message-notification-circle.tsx +++ b/src/components/icons/message-notification-circle.tsx @@ -7,9 +7,9 @@ const MessageNotificationCircle = createIcon({ , ], diff --git a/src/components/icons/message-notification-square.tsx b/src/components/icons/message-notification-square.tsx index 136b98346..4dbe1d9f7 100644 --- a/src/components/icons/message-notification-square.tsx +++ b/src/components/icons/message-notification-square.tsx @@ -7,9 +7,9 @@ const MessageNotificationSquare = createIcon({ , ], diff --git a/src/components/icons/message-plus-circle.tsx b/src/components/icons/message-plus-circle.tsx index 726f6c11d..c0c60f954 100644 --- a/src/components/icons/message-plus-circle.tsx +++ b/src/components/icons/message-plus-circle.tsx @@ -7,9 +7,9 @@ const MessagePlusCircle = createIcon({ , ], diff --git a/src/components/icons/message-plus-square.tsx b/src/components/icons/message-plus-square.tsx index afbd8208b..62c7ade41 100644 --- a/src/components/icons/message-plus-square.tsx +++ b/src/components/icons/message-plus-square.tsx @@ -7,9 +7,9 @@ const MessagePlusSquare = createIcon({ , ], diff --git a/src/components/icons/message-question-circle.tsx b/src/components/icons/message-question-circle.tsx index 0936ce882..6ec69c5a9 100644 --- a/src/components/icons/message-question-circle.tsx +++ b/src/components/icons/message-question-circle.tsx @@ -7,9 +7,9 @@ const MessageQuestionCircle = createIcon({ , ], diff --git a/src/components/icons/message-question-square.tsx b/src/components/icons/message-question-square.tsx index e0ec13b77..6ecb03f6f 100644 --- a/src/components/icons/message-question-square.tsx +++ b/src/components/icons/message-question-square.tsx @@ -7,9 +7,9 @@ const MessageQuestionSquare = createIcon({ , ], diff --git a/src/components/icons/message-smile-circle.tsx b/src/components/icons/message-smile-circle.tsx index a0b067a6b..ba6a8ae3e 100644 --- a/src/components/icons/message-smile-circle.tsx +++ b/src/components/icons/message-smile-circle.tsx @@ -7,9 +7,9 @@ const MessageSmileCircle = createIcon({ , ], diff --git a/src/components/icons/message-smile-square.tsx b/src/components/icons/message-smile-square.tsx index e35b9aa67..74bef3d00 100644 --- a/src/components/icons/message-smile-square.tsx +++ b/src/components/icons/message-smile-square.tsx @@ -7,9 +7,9 @@ const MessageSmileSquare = createIcon({ , ], diff --git a/src/components/icons/message-square-01.tsx b/src/components/icons/message-square-01.tsx index f98bc5b9c..92a6493f7 100644 --- a/src/components/icons/message-square-01.tsx +++ b/src/components/icons/message-square-01.tsx @@ -7,9 +7,9 @@ const MessageSquare01 = createIcon({ , ], diff --git a/src/components/icons/message-square-02.tsx b/src/components/icons/message-square-02.tsx index 6c65b11e2..300a8f702 100644 --- a/src/components/icons/message-square-02.tsx +++ b/src/components/icons/message-square-02.tsx @@ -7,9 +7,9 @@ const MessageSquare02 = createIcon({ , ], diff --git a/src/components/icons/message-text-circle-01.tsx b/src/components/icons/message-text-circle-01.tsx index f559c6d11..328ddac2a 100644 --- a/src/components/icons/message-text-circle-01.tsx +++ b/src/components/icons/message-text-circle-01.tsx @@ -7,9 +7,9 @@ const MessageTextCircle01 = createIcon({ , ], diff --git a/src/components/icons/message-text-circle-02.tsx b/src/components/icons/message-text-circle-02.tsx index 9d80da31a..14ff6aabc 100644 --- a/src/components/icons/message-text-circle-02.tsx +++ b/src/components/icons/message-text-circle-02.tsx @@ -7,9 +7,9 @@ const MessageTextCircle02 = createIcon({ , ], diff --git a/src/components/icons/message-text-square-01.tsx b/src/components/icons/message-text-square-01.tsx index f21da4117..4c8b0fa1c 100644 --- a/src/components/icons/message-text-square-01.tsx +++ b/src/components/icons/message-text-square-01.tsx @@ -7,9 +7,9 @@ const MessageTextSquare01 = createIcon({ , ], diff --git a/src/components/icons/message-text-square-02.tsx b/src/components/icons/message-text-square-02.tsx index 62f256b91..3b68c3191 100644 --- a/src/components/icons/message-text-square-02.tsx +++ b/src/components/icons/message-text-square-02.tsx @@ -7,9 +7,9 @@ const MessageTextSquare02 = createIcon({ , ], diff --git a/src/components/icons/message-x-circle.tsx b/src/components/icons/message-x-circle.tsx index 1b554fec0..7732fb78a 100644 --- a/src/components/icons/message-x-circle.tsx +++ b/src/components/icons/message-x-circle.tsx @@ -7,9 +7,9 @@ const MessageXCircle = createIcon({ , ], diff --git a/src/components/icons/message-x-square.tsx b/src/components/icons/message-x-square.tsx index 4eb76fbb5..061ab15ee 100644 --- a/src/components/icons/message-x-square.tsx +++ b/src/components/icons/message-x-square.tsx @@ -7,9 +7,9 @@ const MessageXSquare = createIcon({ , ], diff --git a/src/components/icons/microphone-01.tsx b/src/components/icons/microphone-01.tsx index 3bb09a7bd..301bafd13 100644 --- a/src/components/icons/microphone-01.tsx +++ b/src/components/icons/microphone-01.tsx @@ -7,9 +7,9 @@ const Microphone01 = createIcon({ , ], diff --git a/src/components/icons/microphone-02.tsx b/src/components/icons/microphone-02.tsx index f2846abd9..9b5b30053 100644 --- a/src/components/icons/microphone-02.tsx +++ b/src/components/icons/microphone-02.tsx @@ -7,9 +7,9 @@ const Microphone02 = createIcon({ , ], diff --git a/src/components/icons/microphone-off-01.tsx b/src/components/icons/microphone-off-01.tsx index c78ce49d2..f03683d7f 100644 --- a/src/components/icons/microphone-off-01.tsx +++ b/src/components/icons/microphone-off-01.tsx @@ -7,9 +7,9 @@ const MicrophoneOff01 = createIcon({ , ], diff --git a/src/components/icons/microphone-off-02.tsx b/src/components/icons/microphone-off-02.tsx index b04f31aa0..ac05493d9 100644 --- a/src/components/icons/microphone-off-02.tsx +++ b/src/components/icons/microphone-off-02.tsx @@ -7,9 +7,9 @@ const MicrophoneOff02 = createIcon({ , ], diff --git a/src/components/icons/microscope.tsx b/src/components/icons/microscope.tsx index 0780036ab..28f8db0c1 100644 --- a/src/components/icons/microscope.tsx +++ b/src/components/icons/microscope.tsx @@ -7,9 +7,9 @@ const Microscope = createIcon({ , ], diff --git a/src/components/icons/minimize-01.tsx b/src/components/icons/minimize-01.tsx index 6d0fcc40b..6c0c120d7 100644 --- a/src/components/icons/minimize-01.tsx +++ b/src/components/icons/minimize-01.tsx @@ -7,9 +7,9 @@ const Minimize01 = createIcon({ , ], diff --git a/src/components/icons/minimize-02.tsx b/src/components/icons/minimize-02.tsx index 31e73bc76..4f0051330 100644 --- a/src/components/icons/minimize-02.tsx +++ b/src/components/icons/minimize-02.tsx @@ -7,9 +7,9 @@ const Minimize02 = createIcon({ , ], diff --git a/src/components/icons/minus-circle.tsx b/src/components/icons/minus-circle.tsx index 52599d048..456864c90 100644 --- a/src/components/icons/minus-circle.tsx +++ b/src/components/icons/minus-circle.tsx @@ -7,9 +7,9 @@ const MinusCircle = createIcon({ , ], diff --git a/src/components/icons/minus-square.tsx b/src/components/icons/minus-square.tsx index b167bdbe3..b8e4da917 100644 --- a/src/components/icons/minus-square.tsx +++ b/src/components/icons/minus-square.tsx @@ -7,9 +7,9 @@ const MinusSquare = createIcon({ , ], diff --git a/src/components/icons/minus.tsx b/src/components/icons/minus.tsx index 1d9902f2b..80e054f98 100644 --- a/src/components/icons/minus.tsx +++ b/src/components/icons/minus.tsx @@ -7,9 +7,9 @@ const Minus = createIcon({ , ], diff --git a/src/components/icons/modem-01.tsx b/src/components/icons/modem-01.tsx index 20d3aebe0..606e73f80 100644 --- a/src/components/icons/modem-01.tsx +++ b/src/components/icons/modem-01.tsx @@ -7,9 +7,9 @@ const Modem01 = createIcon({ , ], diff --git a/src/components/icons/modem-02.tsx b/src/components/icons/modem-02.tsx index 2164eafa9..78572e551 100644 --- a/src/components/icons/modem-02.tsx +++ b/src/components/icons/modem-02.tsx @@ -7,9 +7,9 @@ const Modem02 = createIcon({ , ], diff --git a/src/components/icons/monitor-01.tsx b/src/components/icons/monitor-01.tsx index 8fbf6c572..ed5f54289 100644 --- a/src/components/icons/monitor-01.tsx +++ b/src/components/icons/monitor-01.tsx @@ -7,9 +7,9 @@ const Monitor01 = createIcon({ , ], diff --git a/src/components/icons/monitor-02.tsx b/src/components/icons/monitor-02.tsx index 096b92601..b8dc10222 100644 --- a/src/components/icons/monitor-02.tsx +++ b/src/components/icons/monitor-02.tsx @@ -7,9 +7,9 @@ const Monitor02 = createIcon({ , ], diff --git a/src/components/icons/monitor-03.tsx b/src/components/icons/monitor-03.tsx index 8bace9a69..e6b565eab 100644 --- a/src/components/icons/monitor-03.tsx +++ b/src/components/icons/monitor-03.tsx @@ -7,9 +7,9 @@ const Monitor03 = createIcon({ , ], diff --git a/src/components/icons/monitor-04.tsx b/src/components/icons/monitor-04.tsx index 389d0154f..ed0bad18d 100644 --- a/src/components/icons/monitor-04.tsx +++ b/src/components/icons/monitor-04.tsx @@ -7,9 +7,9 @@ const Monitor04 = createIcon({ , ], diff --git a/src/components/icons/monitor-05.tsx b/src/components/icons/monitor-05.tsx index 4c7102e28..99da8b528 100644 --- a/src/components/icons/monitor-05.tsx +++ b/src/components/icons/monitor-05.tsx @@ -7,9 +7,9 @@ const Monitor05 = createIcon({ , ], diff --git a/src/components/icons/moon-01.tsx b/src/components/icons/moon-01.tsx index 7ed01ea9f..c15cc3187 100644 --- a/src/components/icons/moon-01.tsx +++ b/src/components/icons/moon-01.tsx @@ -7,9 +7,9 @@ const Moon01 = createIcon({ , ], diff --git a/src/components/icons/moon-02.tsx b/src/components/icons/moon-02.tsx index 89289d8ff..339e431a7 100644 --- a/src/components/icons/moon-02.tsx +++ b/src/components/icons/moon-02.tsx @@ -7,9 +7,9 @@ const Moon02 = createIcon({ , ], diff --git a/src/components/icons/moon-eclipse.tsx b/src/components/icons/moon-eclipse.tsx index a9eb0cbf8..07d89dce8 100644 --- a/src/components/icons/moon-eclipse.tsx +++ b/src/components/icons/moon-eclipse.tsx @@ -7,9 +7,9 @@ const MoonEclipse = createIcon({ , ], diff --git a/src/components/icons/moon-star.tsx b/src/components/icons/moon-star.tsx index 976c39c3c..c91fb5db8 100644 --- a/src/components/icons/moon-star.tsx +++ b/src/components/icons/moon-star.tsx @@ -7,17 +7,17 @@ const MoonStar = createIcon({ , , ], diff --git a/src/components/icons/mouse.tsx b/src/components/icons/mouse.tsx index 433986e02..95bfc1fde 100644 --- a/src/components/icons/mouse.tsx +++ b/src/components/icons/mouse.tsx @@ -7,9 +7,9 @@ const Mouse = createIcon({ , ], diff --git a/src/components/icons/move.tsx b/src/components/icons/move.tsx index 4fc6c7bed..72ae15930 100644 --- a/src/components/icons/move.tsx +++ b/src/components/icons/move.tsx @@ -7,9 +7,9 @@ const Move = createIcon({ , ], diff --git a/src/components/icons/music-note-01.tsx b/src/components/icons/music-note-01.tsx index 575560aea..b2e6d8f87 100644 --- a/src/components/icons/music-note-01.tsx +++ b/src/components/icons/music-note-01.tsx @@ -7,9 +7,9 @@ const MusicNote01 = createIcon({ , ], diff --git a/src/components/icons/music-note-02.tsx b/src/components/icons/music-note-02.tsx index d46152a32..54d7615dd 100644 --- a/src/components/icons/music-note-02.tsx +++ b/src/components/icons/music-note-02.tsx @@ -7,9 +7,9 @@ const MusicNote02 = createIcon({ , ], diff --git a/src/components/icons/music-note-plus.tsx b/src/components/icons/music-note-plus.tsx index 59456bf14..053190abc 100644 --- a/src/components/icons/music-note-plus.tsx +++ b/src/components/icons/music-note-plus.tsx @@ -7,9 +7,9 @@ const MusicNotePlus = createIcon({ , ], diff --git a/src/components/icons/navigation-pointer-01.tsx b/src/components/icons/navigation-pointer-01.tsx index 21cdce5f0..427989374 100644 --- a/src/components/icons/navigation-pointer-01.tsx +++ b/src/components/icons/navigation-pointer-01.tsx @@ -7,9 +7,9 @@ const NavigationPointer01 = createIcon({ , ], diff --git a/src/components/icons/navigation-pointer-02.tsx b/src/components/icons/navigation-pointer-02.tsx index d6fa30517..d16e609d1 100644 --- a/src/components/icons/navigation-pointer-02.tsx +++ b/src/components/icons/navigation-pointer-02.tsx @@ -7,9 +7,9 @@ const NavigationPointer02 = createIcon({ , ], diff --git a/src/components/icons/navigation-pointer-off-01.tsx b/src/components/icons/navigation-pointer-off-01.tsx index 5afe8f69a..043af7727 100644 --- a/src/components/icons/navigation-pointer-off-01.tsx +++ b/src/components/icons/navigation-pointer-off-01.tsx @@ -7,9 +7,9 @@ const NavigationPointerOff01 = createIcon({ , ], diff --git a/src/components/icons/navigation-pointer-off-02.tsx b/src/components/icons/navigation-pointer-off-02.tsx index f99f82db4..21b52b251 100644 --- a/src/components/icons/navigation-pointer-off-02.tsx +++ b/src/components/icons/navigation-pointer-off-02.tsx @@ -7,9 +7,9 @@ const NavigationPointerOff02 = createIcon({ , ], diff --git a/src/components/icons/notification-box.tsx b/src/components/icons/notification-box.tsx index 431a39366..0a5917356 100644 --- a/src/components/icons/notification-box.tsx +++ b/src/components/icons/notification-box.tsx @@ -7,9 +7,9 @@ const NotificationBox = createIcon({ , ], diff --git a/src/components/icons/notification-message.tsx b/src/components/icons/notification-message.tsx index 589f18700..e7c7cf67f 100644 --- a/src/components/icons/notification-message.tsx +++ b/src/components/icons/notification-message.tsx @@ -7,9 +7,9 @@ const NotificationMessage = createIcon({ , ], diff --git a/src/components/icons/notification-text.tsx b/src/components/icons/notification-text.tsx index 96e4a3f7e..23359a16b 100644 --- a/src/components/icons/notification-text.tsx +++ b/src/components/icons/notification-text.tsx @@ -7,9 +7,9 @@ const NotificationText = createIcon({ , ], diff --git a/src/components/icons/octagon.tsx b/src/components/icons/octagon.tsx index 70f80ff85..38b69af44 100644 --- a/src/components/icons/octagon.tsx +++ b/src/components/icons/octagon.tsx @@ -7,9 +7,9 @@ const Octagon = createIcon({ , ], diff --git a/src/components/icons/package-check.tsx b/src/components/icons/package-check.tsx index 02257cc9e..67e85bd2a 100644 --- a/src/components/icons/package-check.tsx +++ b/src/components/icons/package-check.tsx @@ -7,9 +7,9 @@ const PackageCheck = createIcon({ , ], diff --git a/src/components/icons/package-minus.tsx b/src/components/icons/package-minus.tsx index 836a8e934..bf386920a 100644 --- a/src/components/icons/package-minus.tsx +++ b/src/components/icons/package-minus.tsx @@ -7,9 +7,9 @@ const PackageMinus = createIcon({ , ], diff --git a/src/components/icons/package-plus.tsx b/src/components/icons/package-plus.tsx index e2c79bff7..6f2508302 100644 --- a/src/components/icons/package-plus.tsx +++ b/src/components/icons/package-plus.tsx @@ -7,9 +7,9 @@ const PackagePlus = createIcon({ , ], diff --git a/src/components/icons/package-search.tsx b/src/components/icons/package-search.tsx index 5fa278626..6ad1608a5 100644 --- a/src/components/icons/package-search.tsx +++ b/src/components/icons/package-search.tsx @@ -7,9 +7,9 @@ const PackageSearch = createIcon({ , ], diff --git a/src/components/icons/package-x.tsx b/src/components/icons/package-x.tsx index 1ac51db23..6c494c549 100644 --- a/src/components/icons/package-x.tsx +++ b/src/components/icons/package-x.tsx @@ -7,9 +7,9 @@ const PackageX = createIcon({ , ], diff --git a/src/components/icons/package.tsx b/src/components/icons/package.tsx index a6c2f28ae..d1ee0960c 100644 --- a/src/components/icons/package.tsx +++ b/src/components/icons/package.tsx @@ -7,17 +7,17 @@ const Package = createIcon({ , , ], diff --git a/src/components/icons/paint-pour.tsx b/src/components/icons/paint-pour.tsx index a1b596597..c7e3ff866 100644 --- a/src/components/icons/paint-pour.tsx +++ b/src/components/icons/paint-pour.tsx @@ -7,9 +7,9 @@ const PaintPour = createIcon({ , ], diff --git a/src/components/icons/paint.tsx b/src/components/icons/paint.tsx index 71077decc..8c898f052 100644 --- a/src/components/icons/paint.tsx +++ b/src/components/icons/paint.tsx @@ -7,9 +7,9 @@ const Paint = createIcon({ , ], diff --git a/src/components/icons/palette.tsx b/src/components/icons/palette.tsx index ca334585e..1b53fd076 100644 --- a/src/components/icons/palette.tsx +++ b/src/components/icons/palette.tsx @@ -7,33 +7,33 @@ const Palette = createIcon({ , , , , ], diff --git a/src/components/icons/paperclip.tsx b/src/components/icons/paperclip.tsx index e34a9271b..84b18f8b0 100644 --- a/src/components/icons/paperclip.tsx +++ b/src/components/icons/paperclip.tsx @@ -7,9 +7,9 @@ const Paperclip = createIcon({ , ], diff --git a/src/components/icons/paragraph-spacing.tsx b/src/components/icons/paragraph-spacing.tsx index f1ba99f88..49ac7e318 100644 --- a/src/components/icons/paragraph-spacing.tsx +++ b/src/components/icons/paragraph-spacing.tsx @@ -7,9 +7,9 @@ const ParagraphSpacing = createIcon({ , ], diff --git a/src/components/icons/paragraph-wrap.tsx b/src/components/icons/paragraph-wrap.tsx index cfdba9f49..e7dfa8637 100644 --- a/src/components/icons/paragraph-wrap.tsx +++ b/src/components/icons/paragraph-wrap.tsx @@ -7,9 +7,9 @@ const ParagraphWrap = createIcon({ , ], diff --git a/src/components/icons/passcode-lock.tsx b/src/components/icons/passcode-lock.tsx index a9db9353a..94afb1a73 100644 --- a/src/components/icons/passcode-lock.tsx +++ b/src/components/icons/passcode-lock.tsx @@ -7,9 +7,9 @@ const PasscodeLock = createIcon({ , ], diff --git a/src/components/icons/passcode.tsx b/src/components/icons/passcode.tsx index 7bbcf8f97..1956bc4b4 100644 --- a/src/components/icons/passcode.tsx +++ b/src/components/icons/passcode.tsx @@ -7,9 +7,9 @@ const Passcode = createIcon({ , ], diff --git a/src/components/icons/passport.tsx b/src/components/icons/passport.tsx index f4122af06..ff8509206 100644 --- a/src/components/icons/passport.tsx +++ b/src/components/icons/passport.tsx @@ -7,9 +7,9 @@ const Passport = createIcon({ , ], diff --git a/src/components/icons/pause-circle.tsx b/src/components/icons/pause-circle.tsx index 14d9a2f20..093305b60 100644 --- a/src/components/icons/pause-circle.tsx +++ b/src/components/icons/pause-circle.tsx @@ -7,9 +7,9 @@ const PauseCircle = createIcon({ , ], diff --git a/src/components/icons/pause-square.tsx b/src/components/icons/pause-square.tsx index a6bd3ce63..ef9340e50 100644 --- a/src/components/icons/pause-square.tsx +++ b/src/components/icons/pause-square.tsx @@ -7,9 +7,9 @@ const PauseSquare = createIcon({ , ], diff --git a/src/components/icons/pen-tool-01.tsx b/src/components/icons/pen-tool-01.tsx index 8718f2592..963829f73 100644 --- a/src/components/icons/pen-tool-01.tsx +++ b/src/components/icons/pen-tool-01.tsx @@ -7,9 +7,9 @@ const PenTool01 = createIcon({ , ], diff --git a/src/components/icons/pen-tool-02.tsx b/src/components/icons/pen-tool-02.tsx index 176632d94..ee297a3f0 100644 --- a/src/components/icons/pen-tool-02.tsx +++ b/src/components/icons/pen-tool-02.tsx @@ -7,9 +7,9 @@ const PenTool02 = createIcon({ , ], diff --git a/src/components/icons/pen-tool-minus.tsx b/src/components/icons/pen-tool-minus.tsx index 9b06360b7..a781b84c7 100644 --- a/src/components/icons/pen-tool-minus.tsx +++ b/src/components/icons/pen-tool-minus.tsx @@ -7,9 +7,9 @@ const PenToolMinus = createIcon({ , ], diff --git a/src/components/icons/pen-tool-plus.tsx b/src/components/icons/pen-tool-plus.tsx index 39526d7b2..ea8b19496 100644 --- a/src/components/icons/pen-tool-plus.tsx +++ b/src/components/icons/pen-tool-plus.tsx @@ -7,9 +7,9 @@ const PenToolPlus = createIcon({ , ], diff --git a/src/components/icons/pencil-01.tsx b/src/components/icons/pencil-01.tsx index b333c92ee..0743a737f 100644 --- a/src/components/icons/pencil-01.tsx +++ b/src/components/icons/pencil-01.tsx @@ -7,9 +7,9 @@ const Pencil01 = createIcon({ , ], diff --git a/src/components/icons/pencil-02.tsx b/src/components/icons/pencil-02.tsx index 53033a005..6baca18a1 100644 --- a/src/components/icons/pencil-02.tsx +++ b/src/components/icons/pencil-02.tsx @@ -7,9 +7,9 @@ const Pencil02 = createIcon({ , ], diff --git a/src/components/icons/pencil-line.tsx b/src/components/icons/pencil-line.tsx index c24dc57c5..58b35d3b0 100644 --- a/src/components/icons/pencil-line.tsx +++ b/src/components/icons/pencil-line.tsx @@ -7,9 +7,9 @@ const PencilLine = createIcon({ , ], diff --git a/src/components/icons/pentagon.tsx b/src/components/icons/pentagon.tsx index c90296677..0a76fc76e 100644 --- a/src/components/icons/pentagon.tsx +++ b/src/components/icons/pentagon.tsx @@ -7,9 +7,9 @@ const Pentagon = createIcon({ , ], diff --git a/src/components/icons/percent-01.tsx b/src/components/icons/percent-01.tsx index 977fe7685..ff762de5e 100644 --- a/src/components/icons/percent-01.tsx +++ b/src/components/icons/percent-01.tsx @@ -7,9 +7,9 @@ const Percent01 = createIcon({ , ], diff --git a/src/components/icons/percent-02.tsx b/src/components/icons/percent-02.tsx index 7126616c1..127b633c8 100644 --- a/src/components/icons/percent-02.tsx +++ b/src/components/icons/percent-02.tsx @@ -7,9 +7,9 @@ const Percent02 = createIcon({ , ], diff --git a/src/components/icons/percent-03.tsx b/src/components/icons/percent-03.tsx index 2bddfa2e0..d1f07fa64 100644 --- a/src/components/icons/percent-03.tsx +++ b/src/components/icons/percent-03.tsx @@ -7,9 +7,9 @@ const Percent03 = createIcon({ , ], diff --git a/src/components/icons/perspective-01.tsx b/src/components/icons/perspective-01.tsx index 82cfb12b8..aacf8dba8 100644 --- a/src/components/icons/perspective-01.tsx +++ b/src/components/icons/perspective-01.tsx @@ -7,9 +7,9 @@ const Perspective01 = createIcon({ , ], diff --git a/src/components/icons/perspective-02.tsx b/src/components/icons/perspective-02.tsx index 380367d70..464f3cf18 100644 --- a/src/components/icons/perspective-02.tsx +++ b/src/components/icons/perspective-02.tsx @@ -7,9 +7,9 @@ const Perspective02 = createIcon({ , ], diff --git a/src/components/icons/phone-01.tsx b/src/components/icons/phone-01.tsx index dc316ac5f..4665871c8 100644 --- a/src/components/icons/phone-01.tsx +++ b/src/components/icons/phone-01.tsx @@ -7,9 +7,9 @@ const Phone01 = createIcon({ , ], diff --git a/src/components/icons/phone-02.tsx b/src/components/icons/phone-02.tsx index fcf51c231..fef4cda82 100644 --- a/src/components/icons/phone-02.tsx +++ b/src/components/icons/phone-02.tsx @@ -7,9 +7,9 @@ const Phone02 = createIcon({ , ], diff --git a/src/components/icons/phone-call-01.tsx b/src/components/icons/phone-call-01.tsx index 0cf302e3f..1a7ea1675 100644 --- a/src/components/icons/phone-call-01.tsx +++ b/src/components/icons/phone-call-01.tsx @@ -7,9 +7,9 @@ const PhoneCall01 = createIcon({ , ], diff --git a/src/components/icons/phone-call-02.tsx b/src/components/icons/phone-call-02.tsx index 2b82f91de..72252805d 100644 --- a/src/components/icons/phone-call-02.tsx +++ b/src/components/icons/phone-call-02.tsx @@ -7,9 +7,9 @@ const PhoneCall02 = createIcon({ , ], diff --git a/src/components/icons/phone-hang-up.tsx b/src/components/icons/phone-hang-up.tsx index 8594a6148..773921fa9 100644 --- a/src/components/icons/phone-hang-up.tsx +++ b/src/components/icons/phone-hang-up.tsx @@ -7,9 +7,9 @@ const PhoneHangUp = createIcon({ , ], diff --git a/src/components/icons/phone-incoming-01.tsx b/src/components/icons/phone-incoming-01.tsx index 42e6d02a8..d7c7cc261 100644 --- a/src/components/icons/phone-incoming-01.tsx +++ b/src/components/icons/phone-incoming-01.tsx @@ -7,9 +7,9 @@ const PhoneIncoming01 = createIcon({ , ], diff --git a/src/components/icons/phone-incoming-02.tsx b/src/components/icons/phone-incoming-02.tsx index 273672991..f2f5ffa1a 100644 --- a/src/components/icons/phone-incoming-02.tsx +++ b/src/components/icons/phone-incoming-02.tsx @@ -7,9 +7,9 @@ const PhoneIncoming02 = createIcon({ , ], diff --git a/src/components/icons/phone-outgoing-01.tsx b/src/components/icons/phone-outgoing-01.tsx index 643f92713..bdbb739fe 100644 --- a/src/components/icons/phone-outgoing-01.tsx +++ b/src/components/icons/phone-outgoing-01.tsx @@ -7,9 +7,9 @@ const PhoneOutgoing01 = createIcon({ , ], diff --git a/src/components/icons/phone-outgoing-02.tsx b/src/components/icons/phone-outgoing-02.tsx index d8c757767..7dc82818c 100644 --- a/src/components/icons/phone-outgoing-02.tsx +++ b/src/components/icons/phone-outgoing-02.tsx @@ -7,9 +7,9 @@ const PhoneOutgoing02 = createIcon({ , ], diff --git a/src/components/icons/phone-pause.tsx b/src/components/icons/phone-pause.tsx index cff9288ae..bea297ad6 100644 --- a/src/components/icons/phone-pause.tsx +++ b/src/components/icons/phone-pause.tsx @@ -7,9 +7,9 @@ const PhonePause = createIcon({ , ], diff --git a/src/components/icons/phone-plus.tsx b/src/components/icons/phone-plus.tsx index 18dbaccec..3cf76121e 100644 --- a/src/components/icons/phone-plus.tsx +++ b/src/components/icons/phone-plus.tsx @@ -7,9 +7,9 @@ const PhonePlus = createIcon({ , ], diff --git a/src/components/icons/phone-x.tsx b/src/components/icons/phone-x.tsx index 2be6b1b1a..751f5d937 100644 --- a/src/components/icons/phone-x.tsx +++ b/src/components/icons/phone-x.tsx @@ -7,9 +7,9 @@ const PhoneX = createIcon({ , ], diff --git a/src/components/icons/phone.tsx b/src/components/icons/phone.tsx index afc67d54d..007a1b5d2 100644 --- a/src/components/icons/phone.tsx +++ b/src/components/icons/phone.tsx @@ -7,9 +7,9 @@ const Phone = createIcon({ , ], diff --git a/src/components/icons/pie-chart-01.tsx b/src/components/icons/pie-chart-01.tsx index 9a7ad9881..d8d5034a4 100644 --- a/src/components/icons/pie-chart-01.tsx +++ b/src/components/icons/pie-chart-01.tsx @@ -7,9 +7,9 @@ const PieChart01 = createIcon({ , ], diff --git a/src/components/icons/pie-chart-02.tsx b/src/components/icons/pie-chart-02.tsx index 0e11314f5..f6f0c447d 100644 --- a/src/components/icons/pie-chart-02.tsx +++ b/src/components/icons/pie-chart-02.tsx @@ -7,17 +7,17 @@ const PieChart02 = createIcon({ , , ], diff --git a/src/components/icons/pie-chart-03.tsx b/src/components/icons/pie-chart-03.tsx index 9e2d090ae..b4d4b9454 100644 --- a/src/components/icons/pie-chart-03.tsx +++ b/src/components/icons/pie-chart-03.tsx @@ -7,9 +7,9 @@ const PieChart03 = createIcon({ , ], diff --git a/src/components/icons/pie-chart-04.tsx b/src/components/icons/pie-chart-04.tsx index 8cdce987b..8f5eecbe1 100644 --- a/src/components/icons/pie-chart-04.tsx +++ b/src/components/icons/pie-chart-04.tsx @@ -7,9 +7,9 @@ const PieChart04 = createIcon({ , ], diff --git a/src/components/icons/piggy-bank-01.tsx b/src/components/icons/piggy-bank-01.tsx index 4bcb0a0e7..8c092bc1d 100644 --- a/src/components/icons/piggy-bank-01.tsx +++ b/src/components/icons/piggy-bank-01.tsx @@ -7,9 +7,9 @@ const PiggyBank01 = createIcon({ , ], diff --git a/src/components/icons/piggy-bank-02.tsx b/src/components/icons/piggy-bank-02.tsx index 9a0a047a3..f61ba564f 100644 --- a/src/components/icons/piggy-bank-02.tsx +++ b/src/components/icons/piggy-bank-02.tsx @@ -7,9 +7,9 @@ const PiggyBank02 = createIcon({ , ], diff --git a/src/components/icons/pilcrow-01.tsx b/src/components/icons/pilcrow-01.tsx index 7d9bd71fc..28a479434 100644 --- a/src/components/icons/pilcrow-01.tsx +++ b/src/components/icons/pilcrow-01.tsx @@ -7,9 +7,9 @@ const Pilcrow01 = createIcon({ , ], diff --git a/src/components/icons/pilcrow-02.tsx b/src/components/icons/pilcrow-02.tsx index 49259038e..1527eba15 100644 --- a/src/components/icons/pilcrow-02.tsx +++ b/src/components/icons/pilcrow-02.tsx @@ -7,9 +7,9 @@ const Pilcrow02 = createIcon({ , ], diff --git a/src/components/icons/pilcrow-square.tsx b/src/components/icons/pilcrow-square.tsx index b6e0d1574..6a7534110 100644 --- a/src/components/icons/pilcrow-square.tsx +++ b/src/components/icons/pilcrow-square.tsx @@ -7,9 +7,9 @@ const PilcrowSquare = createIcon({ , ], diff --git a/src/components/icons/pin-01.tsx b/src/components/icons/pin-01.tsx index 8ce072272..85e07f839 100644 --- a/src/components/icons/pin-01.tsx +++ b/src/components/icons/pin-01.tsx @@ -7,9 +7,9 @@ const Pin01 = createIcon({ , ], diff --git a/src/components/icons/pin-02.tsx b/src/components/icons/pin-02.tsx index aba1f0765..4fee43a8a 100644 --- a/src/components/icons/pin-02.tsx +++ b/src/components/icons/pin-02.tsx @@ -7,9 +7,9 @@ const Pin02 = createIcon({ , ], diff --git a/src/components/icons/placeholder.tsx b/src/components/icons/placeholder.tsx index 837208769..98bd8e358 100644 --- a/src/components/icons/placeholder.tsx +++ b/src/components/icons/placeholder.tsx @@ -7,9 +7,9 @@ const Placeholder = createIcon({ , ], diff --git a/src/components/icons/plane.tsx b/src/components/icons/plane.tsx index a2b1e3d66..79c9b0358 100644 --- a/src/components/icons/plane.tsx +++ b/src/components/icons/plane.tsx @@ -7,9 +7,9 @@ const Plane = createIcon({ , ], diff --git a/src/components/icons/play-circle.tsx b/src/components/icons/play-circle.tsx index 808a8896f..3d7f8ca7b 100644 --- a/src/components/icons/play-circle.tsx +++ b/src/components/icons/play-circle.tsx @@ -7,17 +7,17 @@ const PlayCircle = createIcon({ , , ], diff --git a/src/components/icons/play-square.tsx b/src/components/icons/play-square.tsx index 4f7cab1e4..2b902bd4e 100644 --- a/src/components/icons/play-square.tsx +++ b/src/components/icons/play-square.tsx @@ -7,17 +7,17 @@ const PlaySquare = createIcon({ , , ], diff --git a/src/components/icons/play.tsx b/src/components/icons/play.tsx index f4404895d..a3c9f6a9d 100644 --- a/src/components/icons/play.tsx +++ b/src/components/icons/play.tsx @@ -7,9 +7,9 @@ const Play = createIcon({ , ], diff --git a/src/components/icons/plus-circle.tsx b/src/components/icons/plus-circle.tsx index e374792c7..c6c4e9503 100644 --- a/src/components/icons/plus-circle.tsx +++ b/src/components/icons/plus-circle.tsx @@ -7,9 +7,9 @@ const PlusCircle = createIcon({ , ], diff --git a/src/components/icons/plus-square.tsx b/src/components/icons/plus-square.tsx index 1c3b10f2d..aa6d63bf0 100644 --- a/src/components/icons/plus-square.tsx +++ b/src/components/icons/plus-square.tsx @@ -7,9 +7,9 @@ const PlusSquare = createIcon({ , ], diff --git a/src/components/icons/plus.tsx b/src/components/icons/plus.tsx index fbdeba8ad..d2bfb73a7 100644 --- a/src/components/icons/plus.tsx +++ b/src/components/icons/plus.tsx @@ -7,9 +7,9 @@ const Plus = createIcon({ , ], diff --git a/src/components/icons/podcast.tsx b/src/components/icons/podcast.tsx index cc15cbab6..2effbc679 100644 --- a/src/components/icons/podcast.tsx +++ b/src/components/icons/podcast.tsx @@ -7,9 +7,9 @@ const Podcast = createIcon({ , ], diff --git a/src/components/icons/power-01.tsx b/src/components/icons/power-01.tsx index e043397b0..ef6dc6ebf 100644 --- a/src/components/icons/power-01.tsx +++ b/src/components/icons/power-01.tsx @@ -7,9 +7,9 @@ const Power01 = createIcon({ , ], diff --git a/src/components/icons/power-02.tsx b/src/components/icons/power-02.tsx index fa15d6871..268e00da8 100644 --- a/src/components/icons/power-02.tsx +++ b/src/components/icons/power-02.tsx @@ -7,9 +7,9 @@ const Power02 = createIcon({ , ], diff --git a/src/components/icons/power-03.tsx b/src/components/icons/power-03.tsx index 09048e27f..20d22fb13 100644 --- a/src/components/icons/power-03.tsx +++ b/src/components/icons/power-03.tsx @@ -7,9 +7,9 @@ const Power03 = createIcon({ , ], diff --git a/src/components/icons/presentation-chart-01.tsx b/src/components/icons/presentation-chart-01.tsx index 1d9ddb528..c45dd3405 100644 --- a/src/components/icons/presentation-chart-01.tsx +++ b/src/components/icons/presentation-chart-01.tsx @@ -7,9 +7,9 @@ const PresentationChart01 = createIcon({ , ], diff --git a/src/components/icons/presentation-chart-02.tsx b/src/components/icons/presentation-chart-02.tsx index c94edb434..4a5065977 100644 --- a/src/components/icons/presentation-chart-02.tsx +++ b/src/components/icons/presentation-chart-02.tsx @@ -7,9 +7,9 @@ const PresentationChart02 = createIcon({ , ], diff --git a/src/components/icons/presentation-chart-03.tsx b/src/components/icons/presentation-chart-03.tsx index db1b8dc34..e08fa3a65 100644 --- a/src/components/icons/presentation-chart-03.tsx +++ b/src/components/icons/presentation-chart-03.tsx @@ -7,9 +7,9 @@ const PresentationChart03 = createIcon({ , ], diff --git a/src/components/icons/printer.tsx b/src/components/icons/printer.tsx index 7cc3f44f5..a072361e2 100644 --- a/src/components/icons/printer.tsx +++ b/src/components/icons/printer.tsx @@ -7,9 +7,9 @@ const Printer = createIcon({ , ], diff --git a/src/components/icons/puzzle-piece-01.tsx b/src/components/icons/puzzle-piece-01.tsx index d97cdfd77..03f334fab 100644 --- a/src/components/icons/puzzle-piece-01.tsx +++ b/src/components/icons/puzzle-piece-01.tsx @@ -7,9 +7,9 @@ const PuzzlePiece01 = createIcon({ , ], diff --git a/src/components/icons/puzzle-piece-02.tsx b/src/components/icons/puzzle-piece-02.tsx index 5621807d3..d30bf56b1 100644 --- a/src/components/icons/puzzle-piece-02.tsx +++ b/src/components/icons/puzzle-piece-02.tsx @@ -7,9 +7,9 @@ const PuzzlePiece02 = createIcon({ , ], diff --git a/src/components/icons/qr-code-01.tsx b/src/components/icons/qr-code-01.tsx index 07cbd3724..477b2cb1e 100644 --- a/src/components/icons/qr-code-01.tsx +++ b/src/components/icons/qr-code-01.tsx @@ -7,9 +7,9 @@ const QrCode01 = createIcon({ , ], diff --git a/src/components/icons/qr-code-02.tsx b/src/components/icons/qr-code-02.tsx index 79fcf36cd..51925a820 100644 --- a/src/components/icons/qr-code-02.tsx +++ b/src/components/icons/qr-code-02.tsx @@ -7,9 +7,9 @@ const QrCode02 = createIcon({ , ], diff --git a/src/components/icons/receipt-check.tsx b/src/components/icons/receipt-check.tsx index da1859f0c..04684e14f 100644 --- a/src/components/icons/receipt-check.tsx +++ b/src/components/icons/receipt-check.tsx @@ -7,9 +7,9 @@ const ReceiptCheck = createIcon({ , ], diff --git a/src/components/icons/receipt.tsx b/src/components/icons/receipt.tsx index 0f115d21a..491ea67d6 100644 --- a/src/components/icons/receipt.tsx +++ b/src/components/icons/receipt.tsx @@ -7,9 +7,9 @@ const Receipt = createIcon({ , ], diff --git a/src/components/icons/recording-01.tsx b/src/components/icons/recording-01.tsx index a12072c39..ea224ea26 100644 --- a/src/components/icons/recording-01.tsx +++ b/src/components/icons/recording-01.tsx @@ -7,9 +7,9 @@ const Recording01 = createIcon({ , ], diff --git a/src/components/icons/recording-02.tsx b/src/components/icons/recording-02.tsx index 3be5924e6..4ec63db0d 100644 --- a/src/components/icons/recording-02.tsx +++ b/src/components/icons/recording-02.tsx @@ -7,9 +7,9 @@ const Recording02 = createIcon({ , ], diff --git a/src/components/icons/recording-03.tsx b/src/components/icons/recording-03.tsx index 974dad2c7..f8b756d1c 100644 --- a/src/components/icons/recording-03.tsx +++ b/src/components/icons/recording-03.tsx @@ -7,9 +7,9 @@ const Recording03 = createIcon({ , ], diff --git a/src/components/icons/reflect-01.tsx b/src/components/icons/reflect-01.tsx index bc8be0315..f9525c7f4 100644 --- a/src/components/icons/reflect-01.tsx +++ b/src/components/icons/reflect-01.tsx @@ -7,9 +7,9 @@ const Reflect01 = createIcon({ , ], diff --git a/src/components/icons/reflect-02.tsx b/src/components/icons/reflect-02.tsx index a166a4f84..0812094e0 100644 --- a/src/components/icons/reflect-02.tsx +++ b/src/components/icons/reflect-02.tsx @@ -7,9 +7,9 @@ const Reflect02 = createIcon({ , ], diff --git a/src/components/icons/refresh-ccw-01.tsx b/src/components/icons/refresh-ccw-01.tsx index 0cf760de6..b5833827d 100644 --- a/src/components/icons/refresh-ccw-01.tsx +++ b/src/components/icons/refresh-ccw-01.tsx @@ -7,9 +7,9 @@ const RefreshCcw01 = createIcon({ , ], diff --git a/src/components/icons/refresh-ccw-02.tsx b/src/components/icons/refresh-ccw-02.tsx index ff32ebe92..aa3b5c4fc 100644 --- a/src/components/icons/refresh-ccw-02.tsx +++ b/src/components/icons/refresh-ccw-02.tsx @@ -7,9 +7,9 @@ const RefreshCcw02 = createIcon({ , ], diff --git a/src/components/icons/refresh-ccw-03.tsx b/src/components/icons/refresh-ccw-03.tsx index 0df84742f..f7b1dc980 100644 --- a/src/components/icons/refresh-ccw-03.tsx +++ b/src/components/icons/refresh-ccw-03.tsx @@ -7,9 +7,9 @@ const RefreshCcw03 = createIcon({ , ], diff --git a/src/components/icons/refresh-ccw-04.tsx b/src/components/icons/refresh-ccw-04.tsx index 14df5499a..2478c7a5c 100644 --- a/src/components/icons/refresh-ccw-04.tsx +++ b/src/components/icons/refresh-ccw-04.tsx @@ -7,9 +7,9 @@ const RefreshCcw04 = createIcon({ , ], diff --git a/src/components/icons/refresh-ccw-05.tsx b/src/components/icons/refresh-ccw-05.tsx index d7a5ee101..c78766709 100644 --- a/src/components/icons/refresh-ccw-05.tsx +++ b/src/components/icons/refresh-ccw-05.tsx @@ -7,9 +7,9 @@ const RefreshCcw05 = createIcon({ , ], diff --git a/src/components/icons/refresh-cw-01.tsx b/src/components/icons/refresh-cw-01.tsx index 4ea317b11..b1850e092 100644 --- a/src/components/icons/refresh-cw-01.tsx +++ b/src/components/icons/refresh-cw-01.tsx @@ -7,9 +7,9 @@ const RefreshCw01 = createIcon({ , ], diff --git a/src/components/icons/refresh-cw-02.tsx b/src/components/icons/refresh-cw-02.tsx index 236c45bd4..a0052888b 100644 --- a/src/components/icons/refresh-cw-02.tsx +++ b/src/components/icons/refresh-cw-02.tsx @@ -7,9 +7,9 @@ const RefreshCw02 = createIcon({ , ], diff --git a/src/components/icons/refresh-cw-03.tsx b/src/components/icons/refresh-cw-03.tsx index e7ce3ba8e..a6168be3b 100644 --- a/src/components/icons/refresh-cw-03.tsx +++ b/src/components/icons/refresh-cw-03.tsx @@ -7,9 +7,9 @@ const RefreshCw03 = createIcon({ , ], diff --git a/src/components/icons/refresh-cw-04.tsx b/src/components/icons/refresh-cw-04.tsx index 0c13fb388..c6a5000ff 100644 --- a/src/components/icons/refresh-cw-04.tsx +++ b/src/components/icons/refresh-cw-04.tsx @@ -7,9 +7,9 @@ const RefreshCw04 = createIcon({ , ], diff --git a/src/components/icons/refresh-cw-05.tsx b/src/components/icons/refresh-cw-05.tsx index 5c9a236d7..9bc5af8e7 100644 --- a/src/components/icons/refresh-cw-05.tsx +++ b/src/components/icons/refresh-cw-05.tsx @@ -7,9 +7,9 @@ const RefreshCw05 = createIcon({ , ], diff --git a/src/components/icons/repeat-01.tsx b/src/components/icons/repeat-01.tsx index 3f0540e27..1dd25bdf9 100644 --- a/src/components/icons/repeat-01.tsx +++ b/src/components/icons/repeat-01.tsx @@ -7,9 +7,9 @@ const Repeat01 = createIcon({ , ], diff --git a/src/components/icons/repeat-02.tsx b/src/components/icons/repeat-02.tsx index b018c836b..0bfe51869 100644 --- a/src/components/icons/repeat-02.tsx +++ b/src/components/icons/repeat-02.tsx @@ -7,9 +7,9 @@ const Repeat02 = createIcon({ , ], diff --git a/src/components/icons/repeat-03.tsx b/src/components/icons/repeat-03.tsx index b60756188..d96910d53 100644 --- a/src/components/icons/repeat-03.tsx +++ b/src/components/icons/repeat-03.tsx @@ -7,9 +7,9 @@ const Repeat03 = createIcon({ , ], diff --git a/src/components/icons/repeat-04.tsx b/src/components/icons/repeat-04.tsx index 4962a9578..72552c1c7 100644 --- a/src/components/icons/repeat-04.tsx +++ b/src/components/icons/repeat-04.tsx @@ -7,9 +7,9 @@ const Repeat04 = createIcon({ , ], diff --git a/src/components/icons/reverse-left.tsx b/src/components/icons/reverse-left.tsx index 461c92f27..7d5cea332 100644 --- a/src/components/icons/reverse-left.tsx +++ b/src/components/icons/reverse-left.tsx @@ -7,9 +7,9 @@ const ReverseLeft = createIcon({ , ], diff --git a/src/components/icons/reverse-right.tsx b/src/components/icons/reverse-right.tsx index fc49d3fc6..19be09825 100644 --- a/src/components/icons/reverse-right.tsx +++ b/src/components/icons/reverse-right.tsx @@ -7,9 +7,9 @@ const ReverseRight = createIcon({ , ], diff --git a/src/components/icons/right-indent-01.tsx b/src/components/icons/right-indent-01.tsx index 355172b24..409437f66 100644 --- a/src/components/icons/right-indent-01.tsx +++ b/src/components/icons/right-indent-01.tsx @@ -7,9 +7,9 @@ const RightIndent01 = createIcon({ , ], diff --git a/src/components/icons/right-indent-02.tsx b/src/components/icons/right-indent-02.tsx index fb6d7ad55..a2ed621cb 100644 --- a/src/components/icons/right-indent-02.tsx +++ b/src/components/icons/right-indent-02.tsx @@ -7,9 +7,9 @@ const RightIndent02 = createIcon({ , ], diff --git a/src/components/icons/rocket-01.tsx b/src/components/icons/rocket-01.tsx index 4dc7e8575..692fe58cd 100644 --- a/src/components/icons/rocket-01.tsx +++ b/src/components/icons/rocket-01.tsx @@ -7,9 +7,9 @@ const Rocket01 = createIcon({ , ], diff --git a/src/components/icons/rocket-02.tsx b/src/components/icons/rocket-02.tsx index 91d45bbdc..75cab5974 100644 --- a/src/components/icons/rocket-02.tsx +++ b/src/components/icons/rocket-02.tsx @@ -7,9 +7,9 @@ const Rocket02 = createIcon({ , ], diff --git a/src/components/icons/roller-brush.tsx b/src/components/icons/roller-brush.tsx index 59533da65..02f49bd8b 100644 --- a/src/components/icons/roller-brush.tsx +++ b/src/components/icons/roller-brush.tsx @@ -7,9 +7,9 @@ const RollerBrush = createIcon({ , ], diff --git a/src/components/icons/route.tsx b/src/components/icons/route.tsx index 5ca5f1b69..8ea5fd332 100644 --- a/src/components/icons/route.tsx +++ b/src/components/icons/route.tsx @@ -7,9 +7,9 @@ const Route = createIcon({ , ], diff --git a/src/components/icons/rows-01.tsx b/src/components/icons/rows-01.tsx index 0102e4bc0..efc878e41 100644 --- a/src/components/icons/rows-01.tsx +++ b/src/components/icons/rows-01.tsx @@ -7,17 +7,17 @@ const Rows01 = createIcon({ , , ], diff --git a/src/components/icons/rows-02.tsx b/src/components/icons/rows-02.tsx index 6d7bad6cb..c9ee2c25b 100644 --- a/src/components/icons/rows-02.tsx +++ b/src/components/icons/rows-02.tsx @@ -7,9 +7,9 @@ const Rows02 = createIcon({ , ], diff --git a/src/components/icons/rows-03.tsx b/src/components/icons/rows-03.tsx index 5da12cf10..757becd57 100644 --- a/src/components/icons/rows-03.tsx +++ b/src/components/icons/rows-03.tsx @@ -7,9 +7,9 @@ const Rows03 = createIcon({ , ], diff --git a/src/components/icons/rss-01.tsx b/src/components/icons/rss-01.tsx index b7911e3f6..1217d56c6 100644 --- a/src/components/icons/rss-01.tsx +++ b/src/components/icons/rss-01.tsx @@ -7,9 +7,9 @@ const Rss01 = createIcon({ , ], diff --git a/src/components/icons/rss-02.tsx b/src/components/icons/rss-02.tsx index 8914f0d45..73b834632 100644 --- a/src/components/icons/rss-02.tsx +++ b/src/components/icons/rss-02.tsx @@ -7,9 +7,9 @@ const Rss02 = createIcon({ , ], diff --git a/src/components/icons/ruler.tsx b/src/components/icons/ruler.tsx index 7c01493a5..8d2e4637d 100644 --- a/src/components/icons/ruler.tsx +++ b/src/components/icons/ruler.tsx @@ -7,9 +7,9 @@ const Ruler = createIcon({ , ], diff --git a/src/components/icons/safe.tsx b/src/components/icons/safe.tsx index 9c9c4f133..2bbb6a4bc 100644 --- a/src/components/icons/safe.tsx +++ b/src/components/icons/safe.tsx @@ -7,9 +7,9 @@ const Safe = createIcon({ , ], diff --git a/src/components/icons/sale-01.tsx b/src/components/icons/sale-01.tsx index 828a517ae..26eedefd1 100644 --- a/src/components/icons/sale-01.tsx +++ b/src/components/icons/sale-01.tsx @@ -7,9 +7,9 @@ const Sale01 = createIcon({ , ], diff --git a/src/components/icons/sale-02.tsx b/src/components/icons/sale-02.tsx index 2e34c1efb..20d6f38f4 100644 --- a/src/components/icons/sale-02.tsx +++ b/src/components/icons/sale-02.tsx @@ -7,9 +7,9 @@ const Sale02 = createIcon({ , ], diff --git a/src/components/icons/sale-03.tsx b/src/components/icons/sale-03.tsx index b4f959689..c73071f86 100644 --- a/src/components/icons/sale-03.tsx +++ b/src/components/icons/sale-03.tsx @@ -7,9 +7,9 @@ const Sale03 = createIcon({ , ], diff --git a/src/components/icons/sale-04.tsx b/src/components/icons/sale-04.tsx index 6c76b94cc..8fdadc952 100644 --- a/src/components/icons/sale-04.tsx +++ b/src/components/icons/sale-04.tsx @@ -7,9 +7,9 @@ const Sale04 = createIcon({ , ], diff --git a/src/components/icons/save-01.tsx b/src/components/icons/save-01.tsx index 9ed661d8e..4c3de94d9 100644 --- a/src/components/icons/save-01.tsx +++ b/src/components/icons/save-01.tsx @@ -7,9 +7,9 @@ const Save01 = createIcon({ , ], diff --git a/src/components/icons/save-02.tsx b/src/components/icons/save-02.tsx index e615dcf1b..ec1fbe4ff 100644 --- a/src/components/icons/save-02.tsx +++ b/src/components/icons/save-02.tsx @@ -7,9 +7,9 @@ const Save02 = createIcon({ , ], diff --git a/src/components/icons/save-03.tsx b/src/components/icons/save-03.tsx index 1ba71eb46..396aa1543 100644 --- a/src/components/icons/save-03.tsx +++ b/src/components/icons/save-03.tsx @@ -7,9 +7,9 @@ const Save03 = createIcon({ , ], diff --git a/src/components/icons/scale-01.tsx b/src/components/icons/scale-01.tsx index 40612018e..0599205d2 100644 --- a/src/components/icons/scale-01.tsx +++ b/src/components/icons/scale-01.tsx @@ -7,9 +7,9 @@ const Scale01 = createIcon({ , ], diff --git a/src/components/icons/scale-02.tsx b/src/components/icons/scale-02.tsx index 10bddc2d7..4566ab71c 100644 --- a/src/components/icons/scale-02.tsx +++ b/src/components/icons/scale-02.tsx @@ -7,9 +7,9 @@ const Scale02 = createIcon({ , ], diff --git a/src/components/icons/scale-03.tsx b/src/components/icons/scale-03.tsx index 8e984aa1a..a06a81bcf 100644 --- a/src/components/icons/scale-03.tsx +++ b/src/components/icons/scale-03.tsx @@ -7,9 +7,9 @@ const Scale03 = createIcon({ , ], diff --git a/src/components/icons/scales-01.tsx b/src/components/icons/scales-01.tsx index 05168af3f..90e961f88 100644 --- a/src/components/icons/scales-01.tsx +++ b/src/components/icons/scales-01.tsx @@ -7,9 +7,9 @@ const Scales01 = createIcon({ , ], diff --git a/src/components/icons/scales-02.tsx b/src/components/icons/scales-02.tsx index 800c84811..1abac4462 100644 --- a/src/components/icons/scales-02.tsx +++ b/src/components/icons/scales-02.tsx @@ -7,9 +7,9 @@ const Scales02 = createIcon({ , ], diff --git a/src/components/icons/scan.tsx b/src/components/icons/scan.tsx index d04d73411..c2ffa5f25 100644 --- a/src/components/icons/scan.tsx +++ b/src/components/icons/scan.tsx @@ -7,9 +7,9 @@ const Scan = createIcon({ , ], diff --git a/src/components/icons/scissors-01.tsx b/src/components/icons/scissors-01.tsx index c09336ec5..01b9b432f 100644 --- a/src/components/icons/scissors-01.tsx +++ b/src/components/icons/scissors-01.tsx @@ -7,9 +7,9 @@ const Scissors01 = createIcon({ , ], diff --git a/src/components/icons/scissors-02.tsx b/src/components/icons/scissors-02.tsx index fa52ec86d..4fac47eeb 100644 --- a/src/components/icons/scissors-02.tsx +++ b/src/components/icons/scissors-02.tsx @@ -7,9 +7,9 @@ const Scissors02 = createIcon({ , ], diff --git a/src/components/icons/scissors-cut-01.tsx b/src/components/icons/scissors-cut-01.tsx index 6f2ba9644..cc4349d96 100644 --- a/src/components/icons/scissors-cut-01.tsx +++ b/src/components/icons/scissors-cut-01.tsx @@ -7,9 +7,9 @@ const ScissorsCut01 = createIcon({ , ], diff --git a/src/components/icons/scissors-cut-02.tsx b/src/components/icons/scissors-cut-02.tsx index c7b3dd8f7..e39d89db7 100644 --- a/src/components/icons/scissors-cut-02.tsx +++ b/src/components/icons/scissors-cut-02.tsx @@ -7,9 +7,9 @@ const ScissorsCut02 = createIcon({ , ], diff --git a/src/components/icons/search-lg.tsx b/src/components/icons/search-lg.tsx index 312674b0f..b916db890 100644 --- a/src/components/icons/search-lg.tsx +++ b/src/components/icons/search-lg.tsx @@ -7,9 +7,9 @@ const SearchLg = createIcon({ , ], diff --git a/src/components/icons/search-md.tsx b/src/components/icons/search-md.tsx index 8f87c1d60..eacd0f98b 100644 --- a/src/components/icons/search-md.tsx +++ b/src/components/icons/search-md.tsx @@ -7,9 +7,9 @@ const SearchMd = createIcon({ , ], diff --git a/src/components/icons/search-refraction.tsx b/src/components/icons/search-refraction.tsx index b400a6031..81d185380 100644 --- a/src/components/icons/search-refraction.tsx +++ b/src/components/icons/search-refraction.tsx @@ -7,9 +7,9 @@ const SearchRefraction = createIcon({ , ], diff --git a/src/components/icons/search-sm.tsx b/src/components/icons/search-sm.tsx index 4341c078e..9924bcb71 100644 --- a/src/components/icons/search-sm.tsx +++ b/src/components/icons/search-sm.tsx @@ -7,9 +7,9 @@ const SearchSm = createIcon({ , ], diff --git a/src/components/icons/send-01.tsx b/src/components/icons/send-01.tsx index 7863f70a7..12da48541 100644 --- a/src/components/icons/send-01.tsx +++ b/src/components/icons/send-01.tsx @@ -7,9 +7,9 @@ const Send01 = createIcon({ , ], diff --git a/src/components/icons/send-02.tsx b/src/components/icons/send-02.tsx index 9aca84ecd..6d08c4de4 100644 --- a/src/components/icons/send-02.tsx +++ b/src/components/icons/send-02.tsx @@ -7,9 +7,9 @@ const Send02 = createIcon({ , ], diff --git a/src/components/icons/send-03.tsx b/src/components/icons/send-03.tsx index 22a4cb7d6..76396115d 100644 --- a/src/components/icons/send-03.tsx +++ b/src/components/icons/send-03.tsx @@ -7,9 +7,9 @@ const Send03 = createIcon({ , ], diff --git a/src/components/icons/server-01.tsx b/src/components/icons/server-01.tsx index 2c96a86b0..c9c4fc995 100644 --- a/src/components/icons/server-01.tsx +++ b/src/components/icons/server-01.tsx @@ -7,9 +7,9 @@ const Server01 = createIcon({ , ], diff --git a/src/components/icons/server-02.tsx b/src/components/icons/server-02.tsx index 3ac901dbe..9bf265dc6 100644 --- a/src/components/icons/server-02.tsx +++ b/src/components/icons/server-02.tsx @@ -7,9 +7,9 @@ const Server02 = createIcon({ , ], diff --git a/src/components/icons/server-03.tsx b/src/components/icons/server-03.tsx index 0ece63b8d..143d799a8 100644 --- a/src/components/icons/server-03.tsx +++ b/src/components/icons/server-03.tsx @@ -7,9 +7,9 @@ const Server03 = createIcon({ , ], diff --git a/src/components/icons/server-04.tsx b/src/components/icons/server-04.tsx index 3d019d263..b9eca11bf 100644 --- a/src/components/icons/server-04.tsx +++ b/src/components/icons/server-04.tsx @@ -7,9 +7,9 @@ const Server04 = createIcon({ , ], diff --git a/src/components/icons/server-05.tsx b/src/components/icons/server-05.tsx index d1b7b0dd5..27bd1a1ff 100644 --- a/src/components/icons/server-05.tsx +++ b/src/components/icons/server-05.tsx @@ -7,9 +7,9 @@ const Server05 = createIcon({ , ], diff --git a/src/components/icons/server-06.tsx b/src/components/icons/server-06.tsx index 251ff26c0..2cfed634b 100644 --- a/src/components/icons/server-06.tsx +++ b/src/components/icons/server-06.tsx @@ -7,9 +7,9 @@ const Server06 = createIcon({ , ], diff --git a/src/components/icons/settings-01.tsx b/src/components/icons/settings-01.tsx index bb79710e8..24cdd5143 100644 --- a/src/components/icons/settings-01.tsx +++ b/src/components/icons/settings-01.tsx @@ -7,17 +7,17 @@ const Settings01 = createIcon({ , , ], diff --git a/src/components/icons/settings-02.tsx b/src/components/icons/settings-02.tsx index a44829396..81e00e9ec 100644 --- a/src/components/icons/settings-02.tsx +++ b/src/components/icons/settings-02.tsx @@ -7,17 +7,17 @@ const Settings02 = createIcon({ , , ], diff --git a/src/components/icons/settings-03.tsx b/src/components/icons/settings-03.tsx index 83263b808..7ad062f79 100644 --- a/src/components/icons/settings-03.tsx +++ b/src/components/icons/settings-03.tsx @@ -7,9 +7,9 @@ const Settings03 = createIcon({ , ], diff --git a/src/components/icons/settings-04.tsx b/src/components/icons/settings-04.tsx index 964eb1442..591018aab 100644 --- a/src/components/icons/settings-04.tsx +++ b/src/components/icons/settings-04.tsx @@ -7,9 +7,9 @@ const Settings04 = createIcon({ , ], diff --git a/src/components/icons/share-01.tsx b/src/components/icons/share-01.tsx index fb57f9280..a0b7dc4c6 100644 --- a/src/components/icons/share-01.tsx +++ b/src/components/icons/share-01.tsx @@ -7,9 +7,9 @@ const Share01 = createIcon({ , ], diff --git a/src/components/icons/share-02.tsx b/src/components/icons/share-02.tsx index 2c92019e1..4311d460d 100644 --- a/src/components/icons/share-02.tsx +++ b/src/components/icons/share-02.tsx @@ -7,9 +7,9 @@ const Share02 = createIcon({ , ], diff --git a/src/components/icons/share-03.tsx b/src/components/icons/share-03.tsx index 17633de7a..e3e39c816 100644 --- a/src/components/icons/share-03.tsx +++ b/src/components/icons/share-03.tsx @@ -7,9 +7,9 @@ const Share03 = createIcon({ , ], diff --git a/src/components/icons/share-04.tsx b/src/components/icons/share-04.tsx index baf69404e..73a61ca42 100644 --- a/src/components/icons/share-04.tsx +++ b/src/components/icons/share-04.tsx @@ -7,9 +7,9 @@ const Share04 = createIcon({ , ], diff --git a/src/components/icons/share-05.tsx b/src/components/icons/share-05.tsx index 5cfd9baa9..64e67ebcc 100644 --- a/src/components/icons/share-05.tsx +++ b/src/components/icons/share-05.tsx @@ -7,9 +7,9 @@ const Share05 = createIcon({ , ], diff --git a/src/components/icons/share-06.tsx b/src/components/icons/share-06.tsx index 9da3b1e4a..3b13446b1 100644 --- a/src/components/icons/share-06.tsx +++ b/src/components/icons/share-06.tsx @@ -7,9 +7,9 @@ const Share06 = createIcon({ , ], diff --git a/src/components/icons/share-07.tsx b/src/components/icons/share-07.tsx index 7960580cf..feab26e78 100644 --- a/src/components/icons/share-07.tsx +++ b/src/components/icons/share-07.tsx @@ -7,9 +7,9 @@ const Share07 = createIcon({ , ], diff --git a/src/components/icons/shield-01.tsx b/src/components/icons/shield-01.tsx index 33d37c1eb..7469c8878 100644 --- a/src/components/icons/shield-01.tsx +++ b/src/components/icons/shield-01.tsx @@ -7,9 +7,9 @@ const Shield01 = createIcon({ , ], diff --git a/src/components/icons/shield-02.tsx b/src/components/icons/shield-02.tsx index 0b0974679..7cdff47f8 100644 --- a/src/components/icons/shield-02.tsx +++ b/src/components/icons/shield-02.tsx @@ -7,9 +7,9 @@ const Shield02 = createIcon({ , ], diff --git a/src/components/icons/shield-03.tsx b/src/components/icons/shield-03.tsx index ff4a2368b..1f2dfac79 100644 --- a/src/components/icons/shield-03.tsx +++ b/src/components/icons/shield-03.tsx @@ -7,9 +7,9 @@ const Shield03 = createIcon({ , ], diff --git a/src/components/icons/shield-dollar.tsx b/src/components/icons/shield-dollar.tsx index 1f19590d8..b872356c9 100644 --- a/src/components/icons/shield-dollar.tsx +++ b/src/components/icons/shield-dollar.tsx @@ -7,9 +7,9 @@ const ShieldDollar = createIcon({ , ], diff --git a/src/components/icons/shield-off.tsx b/src/components/icons/shield-off.tsx index 67b6fdf07..7c3bb9572 100644 --- a/src/components/icons/shield-off.tsx +++ b/src/components/icons/shield-off.tsx @@ -7,9 +7,9 @@ const ShieldOff = createIcon({ , ], diff --git a/src/components/icons/shield-plus.tsx b/src/components/icons/shield-plus.tsx index b83d02ef4..987803146 100644 --- a/src/components/icons/shield-plus.tsx +++ b/src/components/icons/shield-plus.tsx @@ -7,9 +7,9 @@ const ShieldPlus = createIcon({ , ], diff --git a/src/components/icons/shield-tick.tsx b/src/components/icons/shield-tick.tsx index 3ac16c86d..d1fb1f924 100644 --- a/src/components/icons/shield-tick.tsx +++ b/src/components/icons/shield-tick.tsx @@ -7,9 +7,9 @@ const ShieldTick = createIcon({ , ], diff --git a/src/components/icons/shield-zap.tsx b/src/components/icons/shield-zap.tsx index f53934dd4..be7feae12 100644 --- a/src/components/icons/shield-zap.tsx +++ b/src/components/icons/shield-zap.tsx @@ -7,9 +7,9 @@ const ShieldZap = createIcon({ , ], diff --git a/src/components/icons/shopping-bag-01.tsx b/src/components/icons/shopping-bag-01.tsx index 4f6438da9..04ca1597a 100644 --- a/src/components/icons/shopping-bag-01.tsx +++ b/src/components/icons/shopping-bag-01.tsx @@ -7,9 +7,9 @@ const ShoppingBag01 = createIcon({ , ], diff --git a/src/components/icons/shopping-bag-02.tsx b/src/components/icons/shopping-bag-02.tsx index eb4226404..856947780 100644 --- a/src/components/icons/shopping-bag-02.tsx +++ b/src/components/icons/shopping-bag-02.tsx @@ -7,9 +7,9 @@ const ShoppingBag02 = createIcon({ , ], diff --git a/src/components/icons/shopping-bag-03.tsx b/src/components/icons/shopping-bag-03.tsx index b683cfa47..0c9e35b7c 100644 --- a/src/components/icons/shopping-bag-03.tsx +++ b/src/components/icons/shopping-bag-03.tsx @@ -7,9 +7,9 @@ const ShoppingBag03 = createIcon({ , ], diff --git a/src/components/icons/shopping-cart-01.tsx b/src/components/icons/shopping-cart-01.tsx index ed1d010ac..f8d7337a5 100644 --- a/src/components/icons/shopping-cart-01.tsx +++ b/src/components/icons/shopping-cart-01.tsx @@ -7,9 +7,9 @@ const ShoppingCart01 = createIcon({ , ], diff --git a/src/components/icons/shopping-cart-02.tsx b/src/components/icons/shopping-cart-02.tsx index f3d3b07d7..bdbf20623 100644 --- a/src/components/icons/shopping-cart-02.tsx +++ b/src/components/icons/shopping-cart-02.tsx @@ -7,9 +7,9 @@ const ShoppingCart02 = createIcon({ , ], diff --git a/src/components/icons/shopping-cart-03.tsx b/src/components/icons/shopping-cart-03.tsx index b647b831e..10298b681 100644 --- a/src/components/icons/shopping-cart-03.tsx +++ b/src/components/icons/shopping-cart-03.tsx @@ -7,9 +7,9 @@ const ShoppingCart03 = createIcon({ , ], diff --git a/src/components/icons/shuffle-01.tsx b/src/components/icons/shuffle-01.tsx index 8cf93c33f..84d852855 100644 --- a/src/components/icons/shuffle-01.tsx +++ b/src/components/icons/shuffle-01.tsx @@ -7,9 +7,9 @@ const Shuffle01 = createIcon({ , ], diff --git a/src/components/icons/shuffle-02.tsx b/src/components/icons/shuffle-02.tsx index 429a59bef..50d178719 100644 --- a/src/components/icons/shuffle-02.tsx +++ b/src/components/icons/shuffle-02.tsx @@ -7,9 +7,9 @@ const Shuffle02 = createIcon({ , ], diff --git a/src/components/icons/signal-01.tsx b/src/components/icons/signal-01.tsx index 5db520a75..cf656d19f 100644 --- a/src/components/icons/signal-01.tsx +++ b/src/components/icons/signal-01.tsx @@ -7,9 +7,9 @@ const Signal01 = createIcon({ , ], diff --git a/src/components/icons/signal-02.tsx b/src/components/icons/signal-02.tsx index 668f22bf8..6df01ab1d 100644 --- a/src/components/icons/signal-02.tsx +++ b/src/components/icons/signal-02.tsx @@ -7,9 +7,9 @@ const Signal02 = createIcon({ , ], diff --git a/src/components/icons/signal-03.tsx b/src/components/icons/signal-03.tsx index 6da98bab0..ac6f9a293 100644 --- a/src/components/icons/signal-03.tsx +++ b/src/components/icons/signal-03.tsx @@ -7,9 +7,9 @@ const Signal03 = createIcon({ , ], diff --git a/src/components/icons/simcard.tsx b/src/components/icons/simcard.tsx index ba95663f3..49824ec86 100644 --- a/src/components/icons/simcard.tsx +++ b/src/components/icons/simcard.tsx @@ -7,17 +7,17 @@ const Simcard = createIcon({ , , ], diff --git a/src/components/icons/skew.tsx b/src/components/icons/skew.tsx index b545ef1f8..453d3e09a 100644 --- a/src/components/icons/skew.tsx +++ b/src/components/icons/skew.tsx @@ -7,9 +7,9 @@ const Skew = createIcon({ , ], diff --git a/src/components/icons/skip-back.tsx b/src/components/icons/skip-back.tsx index 65bc9d74d..c618c6259 100644 --- a/src/components/icons/skip-back.tsx +++ b/src/components/icons/skip-back.tsx @@ -7,9 +7,9 @@ const SkipBack = createIcon({ , ], diff --git a/src/components/icons/skip-forward.tsx b/src/components/icons/skip-forward.tsx index fc9cbfac2..53bad260d 100644 --- a/src/components/icons/skip-forward.tsx +++ b/src/components/icons/skip-forward.tsx @@ -7,9 +7,9 @@ const SkipForward = createIcon({ , ], diff --git a/src/components/icons/slash-circle-01.tsx b/src/components/icons/slash-circle-01.tsx index fefff30b1..bf190b50e 100644 --- a/src/components/icons/slash-circle-01.tsx +++ b/src/components/icons/slash-circle-01.tsx @@ -7,9 +7,9 @@ const SlashCircle01 = createIcon({ , ], diff --git a/src/components/icons/slash-circle-02.tsx b/src/components/icons/slash-circle-02.tsx index d7946ae22..4e12edcd2 100644 --- a/src/components/icons/slash-circle-02.tsx +++ b/src/components/icons/slash-circle-02.tsx @@ -7,9 +7,9 @@ const SlashCircle02 = createIcon({ , ], diff --git a/src/components/icons/slash-divider.tsx b/src/components/icons/slash-divider.tsx index 61866e2b1..a961b839f 100644 --- a/src/components/icons/slash-divider.tsx +++ b/src/components/icons/slash-divider.tsx @@ -7,9 +7,9 @@ const SlashDivider = createIcon({ , ], diff --git a/src/components/icons/slash-octagon.tsx b/src/components/icons/slash-octagon.tsx index 0bdddd269..222fda500 100644 --- a/src/components/icons/slash-octagon.tsx +++ b/src/components/icons/slash-octagon.tsx @@ -7,9 +7,9 @@ const SlashOctagon = createIcon({ , ], diff --git a/src/components/icons/sliders-01.tsx b/src/components/icons/sliders-01.tsx index 53606497b..386dd629c 100644 --- a/src/components/icons/sliders-01.tsx +++ b/src/components/icons/sliders-01.tsx @@ -7,9 +7,9 @@ const Sliders01 = createIcon({ , ], diff --git a/src/components/icons/sliders-02.tsx b/src/components/icons/sliders-02.tsx index 74f3f4342..05e330bfc 100644 --- a/src/components/icons/sliders-02.tsx +++ b/src/components/icons/sliders-02.tsx @@ -7,9 +7,9 @@ const Sliders02 = createIcon({ , ], diff --git a/src/components/icons/sliders-03.tsx b/src/components/icons/sliders-03.tsx index 572616763..a41b097a8 100644 --- a/src/components/icons/sliders-03.tsx +++ b/src/components/icons/sliders-03.tsx @@ -7,9 +7,9 @@ const Sliders03 = createIcon({ , ], diff --git a/src/components/icons/sliders-04.tsx b/src/components/icons/sliders-04.tsx index 17abc806b..6b3e549ce 100644 --- a/src/components/icons/sliders-04.tsx +++ b/src/components/icons/sliders-04.tsx @@ -7,9 +7,9 @@ const Sliders04 = createIcon({ , ], diff --git a/src/components/icons/snowflake-01.tsx b/src/components/icons/snowflake-01.tsx index 5ed7083ea..5dd984493 100644 --- a/src/components/icons/snowflake-01.tsx +++ b/src/components/icons/snowflake-01.tsx @@ -7,9 +7,9 @@ const Snowflake01 = createIcon({ , ], diff --git a/src/components/icons/snowflake-02.tsx b/src/components/icons/snowflake-02.tsx index 0256dff26..633171644 100644 --- a/src/components/icons/snowflake-02.tsx +++ b/src/components/icons/snowflake-02.tsx @@ -7,9 +7,9 @@ const Snowflake02 = createIcon({ , ], diff --git a/src/components/icons/spacing-height-01.tsx b/src/components/icons/spacing-height-01.tsx index aaa3666ab..07dd897e7 100644 --- a/src/components/icons/spacing-height-01.tsx +++ b/src/components/icons/spacing-height-01.tsx @@ -7,9 +7,9 @@ const SpacingHeight01 = createIcon({ , ], diff --git a/src/components/icons/spacing-height-02.tsx b/src/components/icons/spacing-height-02.tsx index 74e5e6adf..caa24fed3 100644 --- a/src/components/icons/spacing-height-02.tsx +++ b/src/components/icons/spacing-height-02.tsx @@ -7,9 +7,9 @@ const SpacingHeight02 = createIcon({ , ], diff --git a/src/components/icons/spacing-width-01.tsx b/src/components/icons/spacing-width-01.tsx index ee335da85..582c1dcf1 100644 --- a/src/components/icons/spacing-width-01.tsx +++ b/src/components/icons/spacing-width-01.tsx @@ -7,9 +7,9 @@ const SpacingWidth01 = createIcon({ , ], diff --git a/src/components/icons/spacing-width-02.tsx b/src/components/icons/spacing-width-02.tsx index 05d20f1ef..d21b42ba8 100644 --- a/src/components/icons/spacing-width-02.tsx +++ b/src/components/icons/spacing-width-02.tsx @@ -7,9 +7,9 @@ const SpacingWidth02 = createIcon({ , ], diff --git a/src/components/icons/speaker-01.tsx b/src/components/icons/speaker-01.tsx index 5444756df..54145c050 100644 --- a/src/components/icons/speaker-01.tsx +++ b/src/components/icons/speaker-01.tsx @@ -7,9 +7,9 @@ const Speaker01 = createIcon({ , ], diff --git a/src/components/icons/speaker-02.tsx b/src/components/icons/speaker-02.tsx index 54cd65a06..c61dcf17b 100644 --- a/src/components/icons/speaker-02.tsx +++ b/src/components/icons/speaker-02.tsx @@ -7,9 +7,9 @@ const Speaker02 = createIcon({ , ], diff --git a/src/components/icons/speaker-03.tsx b/src/components/icons/speaker-03.tsx index dd846d156..570e824ca 100644 --- a/src/components/icons/speaker-03.tsx +++ b/src/components/icons/speaker-03.tsx @@ -7,9 +7,9 @@ const Speaker03 = createIcon({ , ], diff --git a/src/components/icons/speedometer-01.tsx b/src/components/icons/speedometer-01.tsx index 67f784a38..9ca5d6e09 100644 --- a/src/components/icons/speedometer-01.tsx +++ b/src/components/icons/speedometer-01.tsx @@ -7,9 +7,9 @@ const Speedometer01 = createIcon({ , ], diff --git a/src/components/icons/speedometer-02.tsx b/src/components/icons/speedometer-02.tsx index 7a1d21443..3a1bd6e1a 100644 --- a/src/components/icons/speedometer-02.tsx +++ b/src/components/icons/speedometer-02.tsx @@ -7,9 +7,9 @@ const Speedometer02 = createIcon({ , ], diff --git a/src/components/icons/speedometer-03.tsx b/src/components/icons/speedometer-03.tsx index 7ec7b9f16..ca11fa131 100644 --- a/src/components/icons/speedometer-03.tsx +++ b/src/components/icons/speedometer-03.tsx @@ -7,9 +7,9 @@ const Speedometer03 = createIcon({ , ], diff --git a/src/components/icons/speedometer-04.tsx b/src/components/icons/speedometer-04.tsx index ff18e20b5..767a7314e 100644 --- a/src/components/icons/speedometer-04.tsx +++ b/src/components/icons/speedometer-04.tsx @@ -7,9 +7,9 @@ const Speedometer04 = createIcon({ , ], diff --git a/src/components/icons/square.tsx b/src/components/icons/square.tsx index 06b8896d0..6bb8474e8 100644 --- a/src/components/icons/square.tsx +++ b/src/components/icons/square.tsx @@ -7,9 +7,9 @@ const Square = createIcon({ , ], diff --git a/src/components/icons/stand.tsx b/src/components/icons/stand.tsx index 8f61a907c..59306b1f8 100644 --- a/src/components/icons/stand.tsx +++ b/src/components/icons/stand.tsx @@ -7,9 +7,9 @@ const Stand = createIcon({ , ], diff --git a/src/components/icons/star-01.tsx b/src/components/icons/star-01.tsx index facbcc416..abe4085c3 100644 --- a/src/components/icons/star-01.tsx +++ b/src/components/icons/star-01.tsx @@ -7,9 +7,9 @@ const Star01 = createIcon({ , ], diff --git a/src/components/icons/star-02.tsx b/src/components/icons/star-02.tsx index 9b29e4f49..029f8c0b1 100644 --- a/src/components/icons/star-02.tsx +++ b/src/components/icons/star-02.tsx @@ -7,9 +7,9 @@ const Star02 = createIcon({ , ], diff --git a/src/components/icons/star-03.tsx b/src/components/icons/star-03.tsx index 90ca409fb..850621a52 100644 --- a/src/components/icons/star-03.tsx +++ b/src/components/icons/star-03.tsx @@ -7,9 +7,9 @@ const Star03 = createIcon({ , ], diff --git a/src/components/icons/star-04.tsx b/src/components/icons/star-04.tsx index ea4420286..b1aace080 100644 --- a/src/components/icons/star-04.tsx +++ b/src/components/icons/star-04.tsx @@ -7,9 +7,9 @@ const Star04 = createIcon({ , ], diff --git a/src/components/icons/star-05.tsx b/src/components/icons/star-05.tsx index 36979c467..e9fcfb494 100644 --- a/src/components/icons/star-05.tsx +++ b/src/components/icons/star-05.tsx @@ -7,9 +7,9 @@ const Star05 = createIcon({ , ], diff --git a/src/components/icons/star-06.tsx b/src/components/icons/star-06.tsx index e5e635041..9d0816985 100644 --- a/src/components/icons/star-06.tsx +++ b/src/components/icons/star-06.tsx @@ -7,9 +7,9 @@ const Star06 = createIcon({ , ], diff --git a/src/components/icons/star-07.tsx b/src/components/icons/star-07.tsx index e765b5180..cd278a2d6 100644 --- a/src/components/icons/star-07.tsx +++ b/src/components/icons/star-07.tsx @@ -7,9 +7,9 @@ const Star07 = createIcon({ , ], diff --git a/src/components/icons/stars-01.tsx b/src/components/icons/stars-01.tsx index 890fad270..021aadb42 100644 --- a/src/components/icons/stars-01.tsx +++ b/src/components/icons/stars-01.tsx @@ -7,17 +7,17 @@ const Stars01 = createIcon({ , , ], diff --git a/src/components/icons/stars-02.tsx b/src/components/icons/stars-02.tsx index b1540ee62..b3cd567b1 100644 --- a/src/components/icons/stars-02.tsx +++ b/src/components/icons/stars-02.tsx @@ -7,9 +7,9 @@ const Stars02 = createIcon({ , ], diff --git a/src/components/icons/stars-03.tsx b/src/components/icons/stars-03.tsx index adc9f2da8..67c13f4e5 100644 --- a/src/components/icons/stars-03.tsx +++ b/src/components/icons/stars-03.tsx @@ -7,9 +7,9 @@ const Stars03 = createIcon({ , ], diff --git a/src/components/icons/sticker-circle.tsx b/src/components/icons/sticker-circle.tsx index 07a8b203a..8ba3a8f12 100644 --- a/src/components/icons/sticker-circle.tsx +++ b/src/components/icons/sticker-circle.tsx @@ -7,17 +7,17 @@ const StickerCircle = createIcon({ , , ], diff --git a/src/components/icons/sticker-square.tsx b/src/components/icons/sticker-square.tsx index 2998f1de9..c5b9a8273 100644 --- a/src/components/icons/sticker-square.tsx +++ b/src/components/icons/sticker-square.tsx @@ -7,9 +7,9 @@ const StickerSquare = createIcon({ , ], diff --git a/src/components/icons/stop-circle.tsx b/src/components/icons/stop-circle.tsx index bdff1be84..617cb06cc 100644 --- a/src/components/icons/stop-circle.tsx +++ b/src/components/icons/stop-circle.tsx @@ -7,17 +7,17 @@ const StopCircle = createIcon({ , , ], diff --git a/src/components/icons/stop-square.tsx b/src/components/icons/stop-square.tsx index 10719fdca..69fd12866 100644 --- a/src/components/icons/stop-square.tsx +++ b/src/components/icons/stop-square.tsx @@ -7,17 +7,17 @@ const StopSquare = createIcon({ , , ], diff --git a/src/components/icons/stop.tsx b/src/components/icons/stop.tsx index be9a7c486..cf8c17ace 100644 --- a/src/components/icons/stop.tsx +++ b/src/components/icons/stop.tsx @@ -7,9 +7,9 @@ const Stop = createIcon({ , ], diff --git a/src/components/icons/strikethrough-01.tsx b/src/components/icons/strikethrough-01.tsx index c03da25d6..4259253b0 100644 --- a/src/components/icons/strikethrough-01.tsx +++ b/src/components/icons/strikethrough-01.tsx @@ -7,9 +7,9 @@ const Strikethrough01 = createIcon({ , ], diff --git a/src/components/icons/strikethrough-02.tsx b/src/components/icons/strikethrough-02.tsx index 6f97986b1..898874851 100644 --- a/src/components/icons/strikethrough-02.tsx +++ b/src/components/icons/strikethrough-02.tsx @@ -7,9 +7,9 @@ const Strikethrough02 = createIcon({ , ], diff --git a/src/components/icons/strikethrough-square.tsx b/src/components/icons/strikethrough-square.tsx index ce1b80883..1b96bba3d 100644 --- a/src/components/icons/strikethrough-square.tsx +++ b/src/components/icons/strikethrough-square.tsx @@ -7,9 +7,9 @@ const StrikethroughSquare = createIcon({ , ], diff --git a/src/components/icons/subscript.tsx b/src/components/icons/subscript.tsx index 1fc5ae573..3e916c158 100644 --- a/src/components/icons/subscript.tsx +++ b/src/components/icons/subscript.tsx @@ -7,9 +7,9 @@ const Subscript = createIcon({ , ], diff --git a/src/components/icons/sun-setting-01.tsx b/src/components/icons/sun-setting-01.tsx index 3f3e93626..7c2014f79 100644 --- a/src/components/icons/sun-setting-01.tsx +++ b/src/components/icons/sun-setting-01.tsx @@ -7,9 +7,9 @@ const SunSetting01 = createIcon({ , ], diff --git a/src/components/icons/sun-setting-02.tsx b/src/components/icons/sun-setting-02.tsx index 31f7c83f7..322d27995 100644 --- a/src/components/icons/sun-setting-02.tsx +++ b/src/components/icons/sun-setting-02.tsx @@ -7,9 +7,9 @@ const SunSetting02 = createIcon({ , ], diff --git a/src/components/icons/sun-setting-03.tsx b/src/components/icons/sun-setting-03.tsx index 93bfac450..7df60aba5 100644 --- a/src/components/icons/sun-setting-03.tsx +++ b/src/components/icons/sun-setting-03.tsx @@ -7,9 +7,9 @@ const SunSetting03 = createIcon({ , ], diff --git a/src/components/icons/sun.tsx b/src/components/icons/sun.tsx index f62559538..f7b2f71d1 100644 --- a/src/components/icons/sun.tsx +++ b/src/components/icons/sun.tsx @@ -7,9 +7,9 @@ const Sun = createIcon({ , ], diff --git a/src/components/icons/sunrise.tsx b/src/components/icons/sunrise.tsx index 9123ae532..2a7a2b31b 100644 --- a/src/components/icons/sunrise.tsx +++ b/src/components/icons/sunrise.tsx @@ -7,9 +7,9 @@ const Sunrise = createIcon({ , ], diff --git a/src/components/icons/sunset.tsx b/src/components/icons/sunset.tsx index 50e6710f7..9f8a87c0b 100644 --- a/src/components/icons/sunset.tsx +++ b/src/components/icons/sunset.tsx @@ -7,9 +7,9 @@ const Sunset = createIcon({ , ], diff --git a/src/components/icons/switch-horizontal-01.tsx b/src/components/icons/switch-horizontal-01.tsx index e13b0ae64..9917cfb7e 100644 --- a/src/components/icons/switch-horizontal-01.tsx +++ b/src/components/icons/switch-horizontal-01.tsx @@ -7,9 +7,9 @@ const SwitchHorizontal01 = createIcon({ , ], diff --git a/src/components/icons/switch-horizontal-02.tsx b/src/components/icons/switch-horizontal-02.tsx index 9ccc62a8d..6bfa5126f 100644 --- a/src/components/icons/switch-horizontal-02.tsx +++ b/src/components/icons/switch-horizontal-02.tsx @@ -7,9 +7,9 @@ const SwitchHorizontal02 = createIcon({ , ], diff --git a/src/components/icons/switch-vertical-01.tsx b/src/components/icons/switch-vertical-01.tsx index 43ad396b6..467f752b7 100644 --- a/src/components/icons/switch-vertical-01.tsx +++ b/src/components/icons/switch-vertical-01.tsx @@ -7,9 +7,9 @@ const SwitchVertical01 = createIcon({ , ], diff --git a/src/components/icons/switch-vertical-02.tsx b/src/components/icons/switch-vertical-02.tsx index ee2f11784..eae445ee3 100644 --- a/src/components/icons/switch-vertical-02.tsx +++ b/src/components/icons/switch-vertical-02.tsx @@ -7,9 +7,9 @@ const SwitchVertical02 = createIcon({ , ], diff --git a/src/components/icons/table.tsx b/src/components/icons/table.tsx index 07e70f8b7..4a2aaec25 100644 --- a/src/components/icons/table.tsx +++ b/src/components/icons/table.tsx @@ -7,9 +7,9 @@ const Table = createIcon({ , ], diff --git a/src/components/icons/tablet-01.tsx b/src/components/icons/tablet-01.tsx index 621b54132..a97955e4a 100644 --- a/src/components/icons/tablet-01.tsx +++ b/src/components/icons/tablet-01.tsx @@ -7,9 +7,9 @@ const Tablet01 = createIcon({ , ], diff --git a/src/components/icons/tablet-02.tsx b/src/components/icons/tablet-02.tsx index e6c629712..958756d81 100644 --- a/src/components/icons/tablet-02.tsx +++ b/src/components/icons/tablet-02.tsx @@ -7,9 +7,9 @@ const Tablet02 = createIcon({ , ], diff --git a/src/components/icons/tag-01.tsx b/src/components/icons/tag-01.tsx index 44fd097be..9af24a331 100644 --- a/src/components/icons/tag-01.tsx +++ b/src/components/icons/tag-01.tsx @@ -7,9 +7,9 @@ const Tag01 = createIcon({ , ], diff --git a/src/components/icons/tag-02.tsx b/src/components/icons/tag-02.tsx index 8d0badd0c..5ee951e7b 100644 --- a/src/components/icons/tag-02.tsx +++ b/src/components/icons/tag-02.tsx @@ -7,9 +7,9 @@ const Tag02 = createIcon({ , ], diff --git a/src/components/icons/tag-03.tsx b/src/components/icons/tag-03.tsx index 6f711deed..849738ddf 100644 --- a/src/components/icons/tag-03.tsx +++ b/src/components/icons/tag-03.tsx @@ -7,9 +7,9 @@ const Tag03 = createIcon({ , ], diff --git a/src/components/icons/target-01.tsx b/src/components/icons/target-01.tsx index 356f5ed60..46bc8bd62 100644 --- a/src/components/icons/target-01.tsx +++ b/src/components/icons/target-01.tsx @@ -7,9 +7,9 @@ const Target01 = createIcon({ , ], diff --git a/src/components/icons/target-02.tsx b/src/components/icons/target-02.tsx index 8ba498575..9f5f5ea07 100644 --- a/src/components/icons/target-02.tsx +++ b/src/components/icons/target-02.tsx @@ -7,9 +7,9 @@ const Target02 = createIcon({ , ], diff --git a/src/components/icons/target-03.tsx b/src/components/icons/target-03.tsx index 08530a89a..20290ea1b 100644 --- a/src/components/icons/target-03.tsx +++ b/src/components/icons/target-03.tsx @@ -7,9 +7,9 @@ const Target03 = createIcon({ , ], diff --git a/src/components/icons/target-04.tsx b/src/components/icons/target-04.tsx index 162d88a9c..f9763e4e8 100644 --- a/src/components/icons/target-04.tsx +++ b/src/components/icons/target-04.tsx @@ -7,9 +7,9 @@ const Target04 = createIcon({ , ], diff --git a/src/components/icons/target-05.tsx b/src/components/icons/target-05.tsx index 2f49790b8..662301af7 100644 --- a/src/components/icons/target-05.tsx +++ b/src/components/icons/target-05.tsx @@ -7,25 +7,25 @@ const Target05 = createIcon({ , , , ], diff --git a/src/components/icons/telescope.tsx b/src/components/icons/telescope.tsx index 005343719..12d473768 100644 --- a/src/components/icons/telescope.tsx +++ b/src/components/icons/telescope.tsx @@ -7,9 +7,9 @@ const Telescope = createIcon({ , ], diff --git a/src/components/icons/terminal-browser.tsx b/src/components/icons/terminal-browser.tsx index 42417a20b..381a73446 100644 --- a/src/components/icons/terminal-browser.tsx +++ b/src/components/icons/terminal-browser.tsx @@ -7,9 +7,9 @@ const TerminalBrowser = createIcon({ , ], diff --git a/src/components/icons/terminal-circle.tsx b/src/components/icons/terminal-circle.tsx index 0fa217d57..c4ea91de3 100644 --- a/src/components/icons/terminal-circle.tsx +++ b/src/components/icons/terminal-circle.tsx @@ -7,9 +7,9 @@ const TerminalCircle = createIcon({ , ], diff --git a/src/components/icons/terminal-square.tsx b/src/components/icons/terminal-square.tsx index 6d7a9e14e..dd5fe0100 100644 --- a/src/components/icons/terminal-square.tsx +++ b/src/components/icons/terminal-square.tsx @@ -7,9 +7,9 @@ const TerminalSquare = createIcon({ , ], diff --git a/src/components/icons/terminal.tsx b/src/components/icons/terminal.tsx index 6a9930e0d..f7919d8ba 100644 --- a/src/components/icons/terminal.tsx +++ b/src/components/icons/terminal.tsx @@ -7,9 +7,9 @@ const Terminal = createIcon({ , ], diff --git a/src/components/icons/text-input.tsx b/src/components/icons/text-input.tsx index 5ea09ec53..182fab0d6 100644 --- a/src/components/icons/text-input.tsx +++ b/src/components/icons/text-input.tsx @@ -7,9 +7,9 @@ const TextInput = createIcon({ , ], diff --git a/src/components/icons/thermometer-01.tsx b/src/components/icons/thermometer-01.tsx index b61548cbb..1691a404b 100644 --- a/src/components/icons/thermometer-01.tsx +++ b/src/components/icons/thermometer-01.tsx @@ -7,9 +7,9 @@ const Thermometer01 = createIcon({ , ], diff --git a/src/components/icons/thermometer-02.tsx b/src/components/icons/thermometer-02.tsx index cedb6a0bc..23b911f01 100644 --- a/src/components/icons/thermometer-02.tsx +++ b/src/components/icons/thermometer-02.tsx @@ -7,17 +7,17 @@ const Thermometer02 = createIcon({ , , ], diff --git a/src/components/icons/thermometer-03.tsx b/src/components/icons/thermometer-03.tsx index 0952f1eea..c4a786619 100644 --- a/src/components/icons/thermometer-03.tsx +++ b/src/components/icons/thermometer-03.tsx @@ -7,9 +7,9 @@ const Thermometer03 = createIcon({ , ], diff --git a/src/components/icons/thermometer-cold.tsx b/src/components/icons/thermometer-cold.tsx index 2ecd44725..ba8b75e6f 100644 --- a/src/components/icons/thermometer-cold.tsx +++ b/src/components/icons/thermometer-cold.tsx @@ -7,9 +7,9 @@ const ThermometerCold = createIcon({ , ], diff --git a/src/components/icons/thermometer-warm.tsx b/src/components/icons/thermometer-warm.tsx index 6d325eed2..ac6a5bb07 100644 --- a/src/components/icons/thermometer-warm.tsx +++ b/src/components/icons/thermometer-warm.tsx @@ -7,9 +7,9 @@ const ThermometerWarm = createIcon({ , ], diff --git a/src/components/icons/thumbs-down.tsx b/src/components/icons/thumbs-down.tsx index de72d2611..167c68e40 100644 --- a/src/components/icons/thumbs-down.tsx +++ b/src/components/icons/thumbs-down.tsx @@ -7,9 +7,9 @@ const ThumbsDown = createIcon({ , ], diff --git a/src/components/icons/thumbs-up.tsx b/src/components/icons/thumbs-up.tsx index f21f8c552..33b167a72 100644 --- a/src/components/icons/thumbs-up.tsx +++ b/src/components/icons/thumbs-up.tsx @@ -7,9 +7,9 @@ const ThumbsUp = createIcon({ , ], diff --git a/src/components/icons/ticket-01.tsx b/src/components/icons/ticket-01.tsx index 843b8944a..4fe94f576 100644 --- a/src/components/icons/ticket-01.tsx +++ b/src/components/icons/ticket-01.tsx @@ -7,9 +7,9 @@ const Ticket01 = createIcon({ , ], diff --git a/src/components/icons/ticket-02.tsx b/src/components/icons/ticket-02.tsx index 280debb63..5fb630c19 100644 --- a/src/components/icons/ticket-02.tsx +++ b/src/components/icons/ticket-02.tsx @@ -7,9 +7,9 @@ const Ticket02 = createIcon({ , ], diff --git a/src/components/icons/toggle-01-left.tsx b/src/components/icons/toggle-01-left.tsx index 08f4169f2..7149ebe7b 100644 --- a/src/components/icons/toggle-01-left.tsx +++ b/src/components/icons/toggle-01-left.tsx @@ -7,9 +7,9 @@ const Toggle01Left = createIcon({ , ], diff --git a/src/components/icons/toggle-01-right.tsx b/src/components/icons/toggle-01-right.tsx index a045c501d..6759a36e2 100644 --- a/src/components/icons/toggle-01-right.tsx +++ b/src/components/icons/toggle-01-right.tsx @@ -7,9 +7,9 @@ const Toggle01Right = createIcon({ , ], diff --git a/src/components/icons/toggle-02-left.tsx b/src/components/icons/toggle-02-left.tsx index 0a19fb2a4..cadbbed25 100644 --- a/src/components/icons/toggle-02-left.tsx +++ b/src/components/icons/toggle-02-left.tsx @@ -7,9 +7,9 @@ const Toggle02Left = createIcon({ , ], diff --git a/src/components/icons/toggle-02-right.tsx b/src/components/icons/toggle-02-right.tsx index 955223395..8436e844f 100644 --- a/src/components/icons/toggle-02-right.tsx +++ b/src/components/icons/toggle-02-right.tsx @@ -7,9 +7,9 @@ const Toggle02Right = createIcon({ , ], diff --git a/src/components/icons/toggle-03-left.tsx b/src/components/icons/toggle-03-left.tsx index feca40f17..3036caec6 100644 --- a/src/components/icons/toggle-03-left.tsx +++ b/src/components/icons/toggle-03-left.tsx @@ -7,17 +7,17 @@ const Toggle03Left = createIcon({ , , ], diff --git a/src/components/icons/toggle-03-right.tsx b/src/components/icons/toggle-03-right.tsx index 975857d6c..8e4960dff 100644 --- a/src/components/icons/toggle-03-right.tsx +++ b/src/components/icons/toggle-03-right.tsx @@ -7,17 +7,17 @@ const Toggle03Right = createIcon({ , , ], diff --git a/src/components/icons/tool-01.tsx b/src/components/icons/tool-01.tsx index 0d8d66f98..91c57e4ae 100644 --- a/src/components/icons/tool-01.tsx +++ b/src/components/icons/tool-01.tsx @@ -7,9 +7,9 @@ const Tool01 = createIcon({ , ], diff --git a/src/components/icons/tool-02.tsx b/src/components/icons/tool-02.tsx index 210bce5df..6233de9cf 100644 --- a/src/components/icons/tool-02.tsx +++ b/src/components/icons/tool-02.tsx @@ -7,9 +7,9 @@ const Tool02 = createIcon({ , ], diff --git a/src/components/icons/train.tsx b/src/components/icons/train.tsx index 73c129ea8..154eeba27 100644 --- a/src/components/icons/train.tsx +++ b/src/components/icons/train.tsx @@ -7,9 +7,9 @@ const Train = createIcon({ , ], diff --git a/src/components/icons/tram.tsx b/src/components/icons/tram.tsx index 83111c0ec..0dcd3ca1e 100644 --- a/src/components/icons/tram.tsx +++ b/src/components/icons/tram.tsx @@ -7,9 +7,9 @@ const Tram = createIcon({ , ], diff --git a/src/components/icons/transform.tsx b/src/components/icons/transform.tsx index bcb921dac..83947d281 100644 --- a/src/components/icons/transform.tsx +++ b/src/components/icons/transform.tsx @@ -7,9 +7,9 @@ const Transform = createIcon({ , ], diff --git a/src/components/icons/translate-01.tsx b/src/components/icons/translate-01.tsx index 1c30501bd..2f18c2ea8 100644 --- a/src/components/icons/translate-01.tsx +++ b/src/components/icons/translate-01.tsx @@ -7,9 +7,9 @@ const Translate01 = createIcon({ , ], diff --git a/src/components/icons/translate-02.tsx b/src/components/icons/translate-02.tsx index f807a7886..215fb1508 100644 --- a/src/components/icons/translate-02.tsx +++ b/src/components/icons/translate-02.tsx @@ -7,9 +7,9 @@ const Translate02 = createIcon({ , ], diff --git a/src/components/icons/trash-01.tsx b/src/components/icons/trash-01.tsx index 7f6b09a2a..cf6f96bf4 100644 --- a/src/components/icons/trash-01.tsx +++ b/src/components/icons/trash-01.tsx @@ -7,9 +7,9 @@ const Trash01 = createIcon({ , ], diff --git a/src/components/icons/trash-02.tsx b/src/components/icons/trash-02.tsx index 5ae3efa4a..528cbbcef 100644 --- a/src/components/icons/trash-02.tsx +++ b/src/components/icons/trash-02.tsx @@ -7,9 +7,9 @@ const Trash02 = createIcon({ , ], diff --git a/src/components/icons/trash-03.tsx b/src/components/icons/trash-03.tsx index 750030df8..e9a2c3cc5 100644 --- a/src/components/icons/trash-03.tsx +++ b/src/components/icons/trash-03.tsx @@ -7,9 +7,9 @@ const Trash03 = createIcon({ , ], diff --git a/src/components/icons/trash-04.tsx b/src/components/icons/trash-04.tsx index 3f8955b17..c24b4fc80 100644 --- a/src/components/icons/trash-04.tsx +++ b/src/components/icons/trash-04.tsx @@ -7,9 +7,9 @@ const Trash04 = createIcon({ , ], diff --git a/src/components/icons/trend-down-01.tsx b/src/components/icons/trend-down-01.tsx index 22a9db495..d735aa172 100644 --- a/src/components/icons/trend-down-01.tsx +++ b/src/components/icons/trend-down-01.tsx @@ -7,9 +7,9 @@ const TrendDown01 = createIcon({ , ], diff --git a/src/components/icons/trend-down-02.tsx b/src/components/icons/trend-down-02.tsx index 3b8fd5797..cda867d55 100644 --- a/src/components/icons/trend-down-02.tsx +++ b/src/components/icons/trend-down-02.tsx @@ -7,9 +7,9 @@ const TrendDown02 = createIcon({ , ], diff --git a/src/components/icons/trend-up-01.tsx b/src/components/icons/trend-up-01.tsx index 13043932d..b5943baf7 100644 --- a/src/components/icons/trend-up-01.tsx +++ b/src/components/icons/trend-up-01.tsx @@ -7,9 +7,9 @@ const TrendUp01 = createIcon({ , ], diff --git a/src/components/icons/trend-up-02.tsx b/src/components/icons/trend-up-02.tsx index 4e16a9ed4..58e751828 100644 --- a/src/components/icons/trend-up-02.tsx +++ b/src/components/icons/trend-up-02.tsx @@ -7,9 +7,9 @@ const TrendUp02 = createIcon({ , ], diff --git a/src/components/icons/triangle.tsx b/src/components/icons/triangle.tsx index 4d3531040..b5823d655 100644 --- a/src/components/icons/triangle.tsx +++ b/src/components/icons/triangle.tsx @@ -7,9 +7,9 @@ const Triangle = createIcon({ , ], diff --git a/src/components/icons/trophy-01.tsx b/src/components/icons/trophy-01.tsx index 59e45c271..6e68f9113 100644 --- a/src/components/icons/trophy-01.tsx +++ b/src/components/icons/trophy-01.tsx @@ -7,9 +7,9 @@ const Trophy01 = createIcon({ , ], diff --git a/src/components/icons/trophy-02.tsx b/src/components/icons/trophy-02.tsx index 7575848da..de8896f41 100644 --- a/src/components/icons/trophy-02.tsx +++ b/src/components/icons/trophy-02.tsx @@ -7,9 +7,9 @@ const Trophy02 = createIcon({ , ], diff --git a/src/components/icons/truck-01.tsx b/src/components/icons/truck-01.tsx index 6867c9b59..78a45e5bb 100644 --- a/src/components/icons/truck-01.tsx +++ b/src/components/icons/truck-01.tsx @@ -7,9 +7,9 @@ const Truck01 = createIcon({ , ], diff --git a/src/components/icons/truck-02.tsx b/src/components/icons/truck-02.tsx index b8cdffbf0..7a973dea4 100644 --- a/src/components/icons/truck-02.tsx +++ b/src/components/icons/truck-02.tsx @@ -7,9 +7,9 @@ const Truck02 = createIcon({ , ], diff --git a/src/components/icons/tv-01.tsx b/src/components/icons/tv-01.tsx index 39ba76e84..ad030c660 100644 --- a/src/components/icons/tv-01.tsx +++ b/src/components/icons/tv-01.tsx @@ -7,9 +7,9 @@ const Tv01 = createIcon({ , ], diff --git a/src/components/icons/tv-02.tsx b/src/components/icons/tv-02.tsx index 03d71714a..ec804bccd 100644 --- a/src/components/icons/tv-02.tsx +++ b/src/components/icons/tv-02.tsx @@ -7,9 +7,9 @@ const Tv02 = createIcon({ , ], diff --git a/src/components/icons/tv-03.tsx b/src/components/icons/tv-03.tsx index 7b4261bb7..3432ee94a 100644 --- a/src/components/icons/tv-03.tsx +++ b/src/components/icons/tv-03.tsx @@ -7,9 +7,9 @@ const Tv03 = createIcon({ , ], diff --git a/src/components/icons/type-01.tsx b/src/components/icons/type-01.tsx index 8bde43370..38eaa01f5 100644 --- a/src/components/icons/type-01.tsx +++ b/src/components/icons/type-01.tsx @@ -7,9 +7,9 @@ const Type01 = createIcon({ , ], diff --git a/src/components/icons/type-02.tsx b/src/components/icons/type-02.tsx index d57be1760..da2ce6486 100644 --- a/src/components/icons/type-02.tsx +++ b/src/components/icons/type-02.tsx @@ -7,9 +7,9 @@ const Type02 = createIcon({ , ], diff --git a/src/components/icons/type-square.tsx b/src/components/icons/type-square.tsx index 264634bd4..60378a13b 100644 --- a/src/components/icons/type-square.tsx +++ b/src/components/icons/type-square.tsx @@ -7,9 +7,9 @@ const TypeSquare = createIcon({ , ], diff --git a/src/components/icons/type-strikethrough-01.tsx b/src/components/icons/type-strikethrough-01.tsx index 10dcc3aa3..7683d9b9b 100644 --- a/src/components/icons/type-strikethrough-01.tsx +++ b/src/components/icons/type-strikethrough-01.tsx @@ -7,9 +7,9 @@ const TypeStrikethrough01 = createIcon({ , ], diff --git a/src/components/icons/type-strikethrough-02.tsx b/src/components/icons/type-strikethrough-02.tsx index 5482cce63..b205a6df9 100644 --- a/src/components/icons/type-strikethrough-02.tsx +++ b/src/components/icons/type-strikethrough-02.tsx @@ -7,9 +7,9 @@ const TypeStrikethrough02 = createIcon({ , ], diff --git a/src/components/icons/umbrella-01.tsx b/src/components/icons/umbrella-01.tsx index a6b427243..1f7b9a329 100644 --- a/src/components/icons/umbrella-01.tsx +++ b/src/components/icons/umbrella-01.tsx @@ -7,9 +7,9 @@ const Umbrella01 = createIcon({ , ], diff --git a/src/components/icons/umbrella-02.tsx b/src/components/icons/umbrella-02.tsx index 471a5597f..6e92e0a72 100644 --- a/src/components/icons/umbrella-02.tsx +++ b/src/components/icons/umbrella-02.tsx @@ -7,9 +7,9 @@ const Umbrella02 = createIcon({ , ], diff --git a/src/components/icons/umbrella-03.tsx b/src/components/icons/umbrella-03.tsx index a34ec1100..3fd95a50e 100644 --- a/src/components/icons/umbrella-03.tsx +++ b/src/components/icons/umbrella-03.tsx @@ -7,9 +7,9 @@ const Umbrella03 = createIcon({ , ], diff --git a/src/components/icons/underline-01.tsx b/src/components/icons/underline-01.tsx index e4e68d81b..fb514571f 100644 --- a/src/components/icons/underline-01.tsx +++ b/src/components/icons/underline-01.tsx @@ -7,9 +7,9 @@ const Underline01 = createIcon({ , ], diff --git a/src/components/icons/underline-02.tsx b/src/components/icons/underline-02.tsx index 9d1ef8162..b4111fcd8 100644 --- a/src/components/icons/underline-02.tsx +++ b/src/components/icons/underline-02.tsx @@ -7,9 +7,9 @@ const Underline02 = createIcon({ , ], diff --git a/src/components/icons/underline-square.tsx b/src/components/icons/underline-square.tsx index adfe8b56a..5da6b1f1b 100644 --- a/src/components/icons/underline-square.tsx +++ b/src/components/icons/underline-square.tsx @@ -7,9 +7,9 @@ const UnderlineSquare = createIcon({ , ], diff --git a/src/components/icons/upload-01.tsx b/src/components/icons/upload-01.tsx index 63ecdc46e..9db08b37b 100644 --- a/src/components/icons/upload-01.tsx +++ b/src/components/icons/upload-01.tsx @@ -7,9 +7,9 @@ const Upload01 = createIcon({ , ], diff --git a/src/components/icons/upload-02.tsx b/src/components/icons/upload-02.tsx index 7d35bfb16..600956a36 100644 --- a/src/components/icons/upload-02.tsx +++ b/src/components/icons/upload-02.tsx @@ -7,9 +7,9 @@ const Upload02 = createIcon({ , ], diff --git a/src/components/icons/upload-03.tsx b/src/components/icons/upload-03.tsx index 98334dabd..1512b8ad8 100644 --- a/src/components/icons/upload-03.tsx +++ b/src/components/icons/upload-03.tsx @@ -7,9 +7,9 @@ const Upload03 = createIcon({ , ], diff --git a/src/components/icons/upload-04.tsx b/src/components/icons/upload-04.tsx index 16b3855e4..6e22ce825 100644 --- a/src/components/icons/upload-04.tsx +++ b/src/components/icons/upload-04.tsx @@ -7,9 +7,9 @@ const Upload04 = createIcon({ , ], diff --git a/src/components/icons/upload-cloud-01.tsx b/src/components/icons/upload-cloud-01.tsx index 42f4c48c6..91280a7d6 100644 --- a/src/components/icons/upload-cloud-01.tsx +++ b/src/components/icons/upload-cloud-01.tsx @@ -7,9 +7,9 @@ const UploadCloud01 = createIcon({ , ], diff --git a/src/components/icons/upload-cloud-02.tsx b/src/components/icons/upload-cloud-02.tsx index c81c2d6f0..d059ca8dc 100644 --- a/src/components/icons/upload-cloud-02.tsx +++ b/src/components/icons/upload-cloud-02.tsx @@ -7,9 +7,9 @@ const UploadCloud02 = createIcon({ , ], diff --git a/src/components/icons/usb-flash-drive.tsx b/src/components/icons/usb-flash-drive.tsx index 075cd8511..60dd31e8d 100644 --- a/src/components/icons/usb-flash-drive.tsx +++ b/src/components/icons/usb-flash-drive.tsx @@ -7,9 +7,9 @@ const UsbFlashDrive = createIcon({ , ], diff --git a/src/components/icons/user-01.tsx b/src/components/icons/user-01.tsx index de84d9291..a42e43d6e 100644 --- a/src/components/icons/user-01.tsx +++ b/src/components/icons/user-01.tsx @@ -7,9 +7,9 @@ const User01 = createIcon({ , ], diff --git a/src/components/icons/user-02.tsx b/src/components/icons/user-02.tsx index fe90ef991..89cf04d15 100644 --- a/src/components/icons/user-02.tsx +++ b/src/components/icons/user-02.tsx @@ -7,17 +7,17 @@ const User02 = createIcon({ , , ], diff --git a/src/components/icons/user-03.tsx b/src/components/icons/user-03.tsx index 1871a763a..7282ff5dd 100644 --- a/src/components/icons/user-03.tsx +++ b/src/components/icons/user-03.tsx @@ -7,9 +7,9 @@ const User03 = createIcon({ , ], diff --git a/src/components/icons/user-check-01.tsx b/src/components/icons/user-check-01.tsx index 9417f8e13..50539e019 100644 --- a/src/components/icons/user-check-01.tsx +++ b/src/components/icons/user-check-01.tsx @@ -7,9 +7,9 @@ const UserCheck01 = createIcon({ , ], diff --git a/src/components/icons/user-check-02.tsx b/src/components/icons/user-check-02.tsx index fa7cb8211..6e9c2b694 100644 --- a/src/components/icons/user-check-02.tsx +++ b/src/components/icons/user-check-02.tsx @@ -7,9 +7,9 @@ const UserCheck02 = createIcon({ , ], diff --git a/src/components/icons/user-circle.tsx b/src/components/icons/user-circle.tsx index b8b963080..81172b266 100644 --- a/src/components/icons/user-circle.tsx +++ b/src/components/icons/user-circle.tsx @@ -7,9 +7,9 @@ const UserCircle = createIcon({ , ], diff --git a/src/components/icons/user-down-01.tsx b/src/components/icons/user-down-01.tsx index 214f58938..e757deac4 100644 --- a/src/components/icons/user-down-01.tsx +++ b/src/components/icons/user-down-01.tsx @@ -7,9 +7,9 @@ const UserDown01 = createIcon({ , ], diff --git a/src/components/icons/user-down-02.tsx b/src/components/icons/user-down-02.tsx index 7b488f263..937dcfa9b 100644 --- a/src/components/icons/user-down-02.tsx +++ b/src/components/icons/user-down-02.tsx @@ -7,9 +7,9 @@ const UserDown02 = createIcon({ , ], diff --git a/src/components/icons/user-edit.tsx b/src/components/icons/user-edit.tsx index e47f400c2..7a60fdac2 100644 --- a/src/components/icons/user-edit.tsx +++ b/src/components/icons/user-edit.tsx @@ -7,9 +7,9 @@ const UserEdit = createIcon({ , ], diff --git a/src/components/icons/user-left-01.tsx b/src/components/icons/user-left-01.tsx index ecb3f138b..68e761a5b 100644 --- a/src/components/icons/user-left-01.tsx +++ b/src/components/icons/user-left-01.tsx @@ -7,9 +7,9 @@ const UserLeft01 = createIcon({ , ], diff --git a/src/components/icons/user-left-02.tsx b/src/components/icons/user-left-02.tsx index 3d0c8b252..db8d17a21 100644 --- a/src/components/icons/user-left-02.tsx +++ b/src/components/icons/user-left-02.tsx @@ -7,9 +7,9 @@ const UserLeft02 = createIcon({ , ], diff --git a/src/components/icons/user-minus-01.tsx b/src/components/icons/user-minus-01.tsx index edc39f55f..602e18dc4 100644 --- a/src/components/icons/user-minus-01.tsx +++ b/src/components/icons/user-minus-01.tsx @@ -7,9 +7,9 @@ const UserMinus01 = createIcon({ , ], diff --git a/src/components/icons/user-minus-02.tsx b/src/components/icons/user-minus-02.tsx index bff30a95f..20a6e63fd 100644 --- a/src/components/icons/user-minus-02.tsx +++ b/src/components/icons/user-minus-02.tsx @@ -7,9 +7,9 @@ const UserMinus02 = createIcon({ , ], diff --git a/src/components/icons/user-plus-01.tsx b/src/components/icons/user-plus-01.tsx index 984488057..e106ecc84 100644 --- a/src/components/icons/user-plus-01.tsx +++ b/src/components/icons/user-plus-01.tsx @@ -7,9 +7,9 @@ const UserPlus01 = createIcon({ , ], diff --git a/src/components/icons/user-plus-02.tsx b/src/components/icons/user-plus-02.tsx index 7a43c8643..0224559c6 100644 --- a/src/components/icons/user-plus-02.tsx +++ b/src/components/icons/user-plus-02.tsx @@ -7,9 +7,9 @@ const UserPlus02 = createIcon({ , ], diff --git a/src/components/icons/user-right-01.tsx b/src/components/icons/user-right-01.tsx index 3ee1dd7b6..6c95e015b 100644 --- a/src/components/icons/user-right-01.tsx +++ b/src/components/icons/user-right-01.tsx @@ -7,9 +7,9 @@ const UserRight01 = createIcon({ , ], diff --git a/src/components/icons/user-right-02.tsx b/src/components/icons/user-right-02.tsx index 7609e1f1d..584160408 100644 --- a/src/components/icons/user-right-02.tsx +++ b/src/components/icons/user-right-02.tsx @@ -7,9 +7,9 @@ const UserRight02 = createIcon({ , ], diff --git a/src/components/icons/user-square.tsx b/src/components/icons/user-square.tsx index 880e91789..1024b17c6 100644 --- a/src/components/icons/user-square.tsx +++ b/src/components/icons/user-square.tsx @@ -7,9 +7,9 @@ const UserSquare = createIcon({ , ], diff --git a/src/components/icons/user-up-01.tsx b/src/components/icons/user-up-01.tsx index 150c4b99d..c1388c2cf 100644 --- a/src/components/icons/user-up-01.tsx +++ b/src/components/icons/user-up-01.tsx @@ -7,9 +7,9 @@ const UserUp01 = createIcon({ , ], diff --git a/src/components/icons/user-up-02.tsx b/src/components/icons/user-up-02.tsx index 6efa28e96..5f0f21333 100644 --- a/src/components/icons/user-up-02.tsx +++ b/src/components/icons/user-up-02.tsx @@ -7,9 +7,9 @@ const UserUp02 = createIcon({ , ], diff --git a/src/components/icons/user-x-01.tsx b/src/components/icons/user-x-01.tsx index d72eab405..8bbe70fc9 100644 --- a/src/components/icons/user-x-01.tsx +++ b/src/components/icons/user-x-01.tsx @@ -7,9 +7,9 @@ const UserX01 = createIcon({ , ], diff --git a/src/components/icons/user-x-02.tsx b/src/components/icons/user-x-02.tsx index 8862aabf6..26daafcbd 100644 --- a/src/components/icons/user-x-02.tsx +++ b/src/components/icons/user-x-02.tsx @@ -7,9 +7,9 @@ const UserX02 = createIcon({ , ], diff --git a/src/components/icons/users-01.tsx b/src/components/icons/users-01.tsx index 7bc9cef05..d1ecf96f6 100644 --- a/src/components/icons/users-01.tsx +++ b/src/components/icons/users-01.tsx @@ -7,9 +7,9 @@ const Users01 = createIcon({ , ], diff --git a/src/components/icons/users-02.tsx b/src/components/icons/users-02.tsx index 0fcbb459a..a02a7c0b9 100644 --- a/src/components/icons/users-02.tsx +++ b/src/components/icons/users-02.tsx @@ -7,9 +7,9 @@ const Users02 = createIcon({ , ], diff --git a/src/components/icons/users-03.tsx b/src/components/icons/users-03.tsx index bfe2dd71e..7d1534855 100644 --- a/src/components/icons/users-03.tsx +++ b/src/components/icons/users-03.tsx @@ -7,9 +7,9 @@ const Users03 = createIcon({ , ], diff --git a/src/components/icons/users-check.tsx b/src/components/icons/users-check.tsx index 4b81bd850..1dd0094f4 100644 --- a/src/components/icons/users-check.tsx +++ b/src/components/icons/users-check.tsx @@ -7,9 +7,9 @@ const UsersCheck = createIcon({ , ], diff --git a/src/components/icons/users-down.tsx b/src/components/icons/users-down.tsx index 8c97a99bf..45fea6abc 100644 --- a/src/components/icons/users-down.tsx +++ b/src/components/icons/users-down.tsx @@ -7,9 +7,9 @@ const UsersDown = createIcon({ , ], diff --git a/src/components/icons/users-edit.tsx b/src/components/icons/users-edit.tsx index 89eb58d02..b769c618e 100644 --- a/src/components/icons/users-edit.tsx +++ b/src/components/icons/users-edit.tsx @@ -7,9 +7,9 @@ const UsersEdit = createIcon({ , ], diff --git a/src/components/icons/users-left.tsx b/src/components/icons/users-left.tsx index b265493a6..b6dcccce5 100644 --- a/src/components/icons/users-left.tsx +++ b/src/components/icons/users-left.tsx @@ -7,9 +7,9 @@ const UsersLeft = createIcon({ , ], diff --git a/src/components/icons/users-minus.tsx b/src/components/icons/users-minus.tsx index 1771f5316..43e2eaf47 100644 --- a/src/components/icons/users-minus.tsx +++ b/src/components/icons/users-minus.tsx @@ -7,9 +7,9 @@ const UsersMinus = createIcon({ , ], diff --git a/src/components/icons/users-plus.tsx b/src/components/icons/users-plus.tsx index 48922b02c..1a7f1e8f6 100644 --- a/src/components/icons/users-plus.tsx +++ b/src/components/icons/users-plus.tsx @@ -7,9 +7,9 @@ const UsersPlus = createIcon({ , ], diff --git a/src/components/icons/users-right.tsx b/src/components/icons/users-right.tsx index 651d08faa..fee8aaf78 100644 --- a/src/components/icons/users-right.tsx +++ b/src/components/icons/users-right.tsx @@ -7,9 +7,9 @@ const UsersRight = createIcon({ , ], diff --git a/src/components/icons/users-up.tsx b/src/components/icons/users-up.tsx index fcb5d9ede..f2970cd00 100644 --- a/src/components/icons/users-up.tsx +++ b/src/components/icons/users-up.tsx @@ -7,9 +7,9 @@ const UsersUp = createIcon({ , ], diff --git a/src/components/icons/users-x.tsx b/src/components/icons/users-x.tsx index 350bb7c2b..fff67ea50 100644 --- a/src/components/icons/users-x.tsx +++ b/src/components/icons/users-x.tsx @@ -7,9 +7,9 @@ const UsersX = createIcon({ , ], diff --git a/src/components/icons/variable.tsx b/src/components/icons/variable.tsx index 7fe16a888..fd7c262ba 100644 --- a/src/components/icons/variable.tsx +++ b/src/components/icons/variable.tsx @@ -7,9 +7,9 @@ const Variable = createIcon({ , ], diff --git a/src/components/icons/video-recorder-off.tsx b/src/components/icons/video-recorder-off.tsx index bf13d61b2..12d82850d 100644 --- a/src/components/icons/video-recorder-off.tsx +++ b/src/components/icons/video-recorder-off.tsx @@ -7,9 +7,9 @@ const VideoRecorderOff = createIcon({ , ], diff --git a/src/components/icons/video-recorder.tsx b/src/components/icons/video-recorder.tsx index 4dda49839..bad539ab9 100644 --- a/src/components/icons/video-recorder.tsx +++ b/src/components/icons/video-recorder.tsx @@ -7,17 +7,17 @@ const VideoRecorder = createIcon({ , , ], diff --git a/src/components/icons/virus.tsx b/src/components/icons/virus.tsx index 4d3daf302..56308c0b7 100644 --- a/src/components/icons/virus.tsx +++ b/src/components/icons/virus.tsx @@ -7,9 +7,9 @@ const Virus = createIcon({ , ], diff --git a/src/components/icons/voicemail.tsx b/src/components/icons/voicemail.tsx index 6f6da26f1..19da695c3 100644 --- a/src/components/icons/voicemail.tsx +++ b/src/components/icons/voicemail.tsx @@ -7,9 +7,9 @@ const Voicemail = createIcon({ , ], diff --git a/src/components/icons/volume-max.tsx b/src/components/icons/volume-max.tsx index dac70e066..2d494306b 100644 --- a/src/components/icons/volume-max.tsx +++ b/src/components/icons/volume-max.tsx @@ -7,9 +7,9 @@ const VolumeMax = createIcon({ , ], diff --git a/src/components/icons/volume-min.tsx b/src/components/icons/volume-min.tsx index 66261362b..ab4660f0a 100644 --- a/src/components/icons/volume-min.tsx +++ b/src/components/icons/volume-min.tsx @@ -7,9 +7,9 @@ const VolumeMin = createIcon({ , ], diff --git a/src/components/icons/volume-minus.tsx b/src/components/icons/volume-minus.tsx index 310cc7da8..7f2fe1fec 100644 --- a/src/components/icons/volume-minus.tsx +++ b/src/components/icons/volume-minus.tsx @@ -7,9 +7,9 @@ const VolumeMinus = createIcon({ , ], diff --git a/src/components/icons/volume-plus.tsx b/src/components/icons/volume-plus.tsx index 966629b52..a63280bfb 100644 --- a/src/components/icons/volume-plus.tsx +++ b/src/components/icons/volume-plus.tsx @@ -7,9 +7,9 @@ const VolumePlus = createIcon({ , ], diff --git a/src/components/icons/volume-x.tsx b/src/components/icons/volume-x.tsx index a6568e861..bbe7252f7 100644 --- a/src/components/icons/volume-x.tsx +++ b/src/components/icons/volume-x.tsx @@ -7,9 +7,9 @@ const VolumeX = createIcon({ , ], diff --git a/src/components/icons/wallet-01.tsx b/src/components/icons/wallet-01.tsx index 0bd67dfea..211bbe0f7 100644 --- a/src/components/icons/wallet-01.tsx +++ b/src/components/icons/wallet-01.tsx @@ -7,9 +7,9 @@ const Wallet01 = createIcon({ , ], diff --git a/src/components/icons/wallet-02.tsx b/src/components/icons/wallet-02.tsx index b8559b8a7..f63cd2903 100644 --- a/src/components/icons/wallet-02.tsx +++ b/src/components/icons/wallet-02.tsx @@ -7,9 +7,9 @@ const Wallet02 = createIcon({ , ], diff --git a/src/components/icons/wallet-03.tsx b/src/components/icons/wallet-03.tsx index 5ce038653..56e293070 100644 --- a/src/components/icons/wallet-03.tsx +++ b/src/components/icons/wallet-03.tsx @@ -7,9 +7,9 @@ const Wallet03 = createIcon({ , ], diff --git a/src/components/icons/wallet-04.tsx b/src/components/icons/wallet-04.tsx index f800b7c9b..f2a549c91 100644 --- a/src/components/icons/wallet-04.tsx +++ b/src/components/icons/wallet-04.tsx @@ -7,9 +7,9 @@ const Wallet04 = createIcon({ , ], diff --git a/src/components/icons/wallet-05.tsx b/src/components/icons/wallet-05.tsx index e23b65a43..432a241e8 100644 --- a/src/components/icons/wallet-05.tsx +++ b/src/components/icons/wallet-05.tsx @@ -7,9 +7,9 @@ const Wallet05 = createIcon({ , ], diff --git a/src/components/icons/watch-circle.tsx b/src/components/icons/watch-circle.tsx index 71e7a55a7..463185f72 100644 --- a/src/components/icons/watch-circle.tsx +++ b/src/components/icons/watch-circle.tsx @@ -7,9 +7,9 @@ const WatchCircle = createIcon({ , ], diff --git a/src/components/icons/watch-square.tsx b/src/components/icons/watch-square.tsx index a35f3358e..8ba1cc03b 100644 --- a/src/components/icons/watch-square.tsx +++ b/src/components/icons/watch-square.tsx @@ -7,9 +7,9 @@ const WatchSquare = createIcon({ , ], diff --git a/src/components/icons/waves.tsx b/src/components/icons/waves.tsx index 7629fe398..71b4a6286 100644 --- a/src/components/icons/waves.tsx +++ b/src/components/icons/waves.tsx @@ -7,9 +7,9 @@ const Waves = createIcon({ , ], diff --git a/src/components/icons/webcam-01.tsx b/src/components/icons/webcam-01.tsx index e92932835..facbe9127 100644 --- a/src/components/icons/webcam-01.tsx +++ b/src/components/icons/webcam-01.tsx @@ -7,9 +7,9 @@ const Webcam01 = createIcon({ , ], diff --git a/src/components/icons/webcam-02.tsx b/src/components/icons/webcam-02.tsx index e354eeb40..a03f2a596 100644 --- a/src/components/icons/webcam-02.tsx +++ b/src/components/icons/webcam-02.tsx @@ -7,9 +7,9 @@ const Webcam02 = createIcon({ , ], diff --git a/src/components/icons/wifi-off.tsx b/src/components/icons/wifi-off.tsx index 7f922c033..66e0336c2 100644 --- a/src/components/icons/wifi-off.tsx +++ b/src/components/icons/wifi-off.tsx @@ -7,9 +7,9 @@ const WifiOff = createIcon({ , ], diff --git a/src/components/icons/wifi.tsx b/src/components/icons/wifi.tsx index 2b8ad15fe..75008fc0d 100644 --- a/src/components/icons/wifi.tsx +++ b/src/components/icons/wifi.tsx @@ -7,9 +7,9 @@ const Wifi = createIcon({ , ], diff --git a/src/components/icons/wind-01.tsx b/src/components/icons/wind-01.tsx index 143297b01..fde5354f0 100644 --- a/src/components/icons/wind-01.tsx +++ b/src/components/icons/wind-01.tsx @@ -7,9 +7,9 @@ const Wind01 = createIcon({ , ], diff --git a/src/components/icons/wind-02.tsx b/src/components/icons/wind-02.tsx index 7a48e1c2c..6a04004a6 100644 --- a/src/components/icons/wind-02.tsx +++ b/src/components/icons/wind-02.tsx @@ -7,9 +7,9 @@ const Wind02 = createIcon({ , ], diff --git a/src/components/icons/wind-03.tsx b/src/components/icons/wind-03.tsx index d6954b47f..1d60e3b57 100644 --- a/src/components/icons/wind-03.tsx +++ b/src/components/icons/wind-03.tsx @@ -7,9 +7,9 @@ const Wind03 = createIcon({ , ], diff --git a/src/components/icons/x-circle.tsx b/src/components/icons/x-circle.tsx index 61891e92f..29480d90b 100644 --- a/src/components/icons/x-circle.tsx +++ b/src/components/icons/x-circle.tsx @@ -7,9 +7,9 @@ const XCircle = createIcon({ , ], diff --git a/src/components/icons/x-close.tsx b/src/components/icons/x-close.tsx index 1276e0d60..2df40b42e 100644 --- a/src/components/icons/x-close.tsx +++ b/src/components/icons/x-close.tsx @@ -7,9 +7,9 @@ const XClose = createIcon({ , ], diff --git a/src/components/icons/x-square.tsx b/src/components/icons/x-square.tsx index fd59ae983..877e21f52 100644 --- a/src/components/icons/x-square.tsx +++ b/src/components/icons/x-square.tsx @@ -7,9 +7,9 @@ const XSquare = createIcon({ , ], diff --git a/src/components/icons/x.tsx b/src/components/icons/x.tsx index 28b1ee8f9..2fb2647db 100644 --- a/src/components/icons/x.tsx +++ b/src/components/icons/x.tsx @@ -7,9 +7,9 @@ const X = createIcon({ , ], diff --git a/src/components/icons/youtube.tsx b/src/components/icons/youtube.tsx index fc91cfc88..d18f5d0e2 100644 --- a/src/components/icons/youtube.tsx +++ b/src/components/icons/youtube.tsx @@ -7,17 +7,17 @@ const Youtube = createIcon({ , , ], diff --git a/src/components/icons/zap-circle.tsx b/src/components/icons/zap-circle.tsx index 66c023730..38aaa2c96 100644 --- a/src/components/icons/zap-circle.tsx +++ b/src/components/icons/zap-circle.tsx @@ -7,17 +7,17 @@ const ZapCircle = createIcon({ , , ], diff --git a/src/components/icons/zap-fast.tsx b/src/components/icons/zap-fast.tsx index 85c8e8826..2df009a18 100644 --- a/src/components/icons/zap-fast.tsx +++ b/src/components/icons/zap-fast.tsx @@ -7,9 +7,9 @@ const ZapFast = createIcon({ , ], diff --git a/src/components/icons/zap-off.tsx b/src/components/icons/zap-off.tsx index b2ac2f3b4..ed5ad95b8 100644 --- a/src/components/icons/zap-off.tsx +++ b/src/components/icons/zap-off.tsx @@ -7,9 +7,9 @@ const ZapOff = createIcon({ , ], diff --git a/src/components/icons/zap-square.tsx b/src/components/icons/zap-square.tsx index b5abeb8ce..5cb4d2157 100644 --- a/src/components/icons/zap-square.tsx +++ b/src/components/icons/zap-square.tsx @@ -7,17 +7,17 @@ const ZapSquare = createIcon({ , , ], diff --git a/src/components/icons/zap.tsx b/src/components/icons/zap.tsx index c2e94a39d..45aa2d821 100644 --- a/src/components/icons/zap.tsx +++ b/src/components/icons/zap.tsx @@ -7,9 +7,9 @@ const Zap = createIcon({ , ], diff --git a/src/components/icons/zoom-in.tsx b/src/components/icons/zoom-in.tsx index 8c68bcd00..17945a219 100644 --- a/src/components/icons/zoom-in.tsx +++ b/src/components/icons/zoom-in.tsx @@ -7,9 +7,9 @@ const ZoomIn = createIcon({ , ], diff --git a/src/components/icons/zoom-out.tsx b/src/components/icons/zoom-out.tsx index 44ed11a46..d080be903 100644 --- a/src/components/icons/zoom-out.tsx +++ b/src/components/icons/zoom-out.tsx @@ -7,9 +7,9 @@ const ZoomOut = createIcon({ , ], diff --git a/src/theme/default/components/button.ts b/src/theme/default/components/button.ts index 543cfa4e6..c667175d0 100644 --- a/src/theme/default/components/button.ts +++ b/src/theme/default/components/button.ts @@ -10,8 +10,29 @@ const variantLink = defineStyle((props) => { }; }); +const variantSolid = defineStyle((props) => { + const { colorScheme: c } = props; + + // copy of https://github.com/chakra-ui/chakra-ui/blob/main/packages/components/theme/src/components/button.ts#L94-L108 + if (c === "gray") { + const bg = mode(`gray.50`, `whiteAlpha.200`)(props); + + return { + bg, + _hover: { + bg: mode(`gray.100`, `whiteAlpha.300`)(props), + _disabled: { bg }, + }, + _active: { bg: mode(`gray.200`, `whiteAlpha.400`)(props) }, + }; + } + + return {}; +}); + export const buttonTheme = defineStyleConfig({ variants: { link: variantLink, + solid: variantSolid, }, });