diff --git a/README.md b/README.md
index 9c09a56c2..f5ea85c88 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-# phosphor-react
+# @phosphor-icons/react
Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really. Explore all our icons at [phosphoricons.com](https://phosphoricons.com).
diff --git a/bin/assemble.js b/bin/assemble.js
index bfb685a40..fc2763d49 100644
--- a/bin/assemble.js
+++ b/bin/assemble.js
@@ -14,7 +14,7 @@ main();
function main() {
exec(
- "git submodule update --remote --init --recursive",
+ "git submodule update --remote --init --force --recursive",
(err, stdout, stderr) => {
if (err) {
console.error(`${chalk.inverse.red(" ERR ")} ${err.message}`);
diff --git a/core b/core
index 60f32de10..c7b849d74 160000
--- a/core
+++ b/core
@@ -1 +1 @@
-Subproject commit 60f32de10dc4dc40859a0f33603538cce84d7c60
+Subproject commit c7b849d7490ebdb49833a8196be3f9d758001ca4
diff --git a/example/App.tsx b/example/App.tsx
index 3ab424461..acf5ac8ea 100644
--- a/example/App.tsx
+++ b/example/App.tsx
@@ -3,22 +3,22 @@ import { useState, useCallback } from "react";
import * as Icons from "../src";
import { IconContext } from "../src";
import type { IconWeight, Icon } from "../src";
+import { icons } from "../core/src/icons";
import "./index.css";
+const pascalNames = new Set(icons.map((entry) => entry.pascal_name));
+
const isIcon = (candidate: any): candidate is Icons.Icon =>
- "displayName" in candidate && candidate.displayName !== "IconBase";
+ "displayName" in candidate;
-const iconCount = Object.values(Icons).reduce((total, Icon) => {
- if (isIcon(Icon)) return total + 1;
- return total;
-}, 0);
+const allIcons: Icon[] = Object.entries(Icons)
+ .filter(([name, module]) => pascalNames.has(name) && isIcon(module))
+ .map(([_, module]) => module as Icon);
if (process.env.NODE_ENV === "development") {
- console.log(`${iconCount} icons`);
+ console.log(`${allIcons.length} icons`);
}
-const allIcons: Icon[] = Object.values(Icons).filter(isIcon);
-
const App = () => {
const [color, setColor] = useState("crimson");
const [weight, setWeight] = useState("regular");
diff --git a/package.json b/package.json
index 876a08fbb..219c90bd0 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@phosphor-icons/react",
- "version": "2.0.3",
+ "version": "2.0.4",
"description": "A clean and friendly icon family for React",
"author": {
"name": "Tobias Fried",
diff --git a/src/icons/Activity.tsx b/src/icons/Activity.tsx
deleted file mode 100644
index 5b405bf20..000000000
--- a/src/icons/Activity.tsx
+++ /dev/null
@@ -1,50 +0,0 @@
-/* GENERATED FILE */
-import { forwardRef, ReactElement } from "react";
-import { IconWeight, Icon, IconBase } from "../lib";
-
-const weights = new Map([
- [
- "bold",
- <>
-
- >,
- ],
- [
- "duotone",
- <>
-
- >,
- ],
- [
- "fill",
- <>
-
- >,
- ],
- [
- "light",
- <>
-
- >,
- ],
- [
- "regular",
- <>
-
- >,
- ],
- [
- "thin",
- <>
-
- >,
- ],
-]);
-
-const Activity: Icon = forwardRef((props, ref) => (
-
-));
-
-Activity.displayName = "Activity";
-
-export default Activity;
diff --git a/src/icons/AddressBook.tsx b/src/icons/AddressBook.tsx
index 23bc6063d..b02a32e1c 100644
--- a/src/icons/AddressBook.tsx
+++ b/src/icons/AddressBook.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M208,32H64a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H208a8,8,0,0,0,8-8V40A8,8,0,0,0,208,32ZM136,144a32,32,0,1,1,32-32A32,32,0,0,1,136,144Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AirTrafficControl.tsx b/src/icons/AirTrafficControl.tsx
new file mode 100644
index 000000000..69deb7dbb
--- /dev/null
+++ b/src/icons/AirTrafficControl.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const AirTrafficControl: Icon = forwardRef((props, ref) => (
+
+));
+
+AirTrafficControl.displayName = "AirTrafficControl";
+
+export default AirTrafficControl;
diff --git a/src/icons/Airplane.tsx b/src/icons/Airplane.tsx
index c734363e9..0f3856185 100644
--- a/src/icons/Airplane.tsx
+++ b/src/icons/Airplane.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AirplaneInFlight.tsx b/src/icons/AirplaneInFlight.tsx
index 6f7dda28e..31e230407 100644
--- a/src/icons/AirplaneInFlight.tsx
+++ b/src/icons/AirplaneInFlight.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AirplaneLanding.tsx b/src/icons/AirplaneLanding.tsx
index 6c2c281a9..8c9a7de10 100644
--- a/src/icons/AirplaneLanding.tsx
+++ b/src/icons/AirplaneLanding.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AirplaneTakeoff.tsx b/src/icons/AirplaneTakeoff.tsx
index 948cfa48b..50a9154bc 100644
--- a/src/icons/AirplaneTakeoff.tsx
+++ b/src/icons/AirplaneTakeoff.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AirplaneTilt.tsx b/src/icons/AirplaneTilt.tsx
index 66da5239d..780e9ed2f 100644
--- a/src/icons/AirplaneTilt.tsx
+++ b/src/icons/AirplaneTilt.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Airplay.tsx b/src/icons/Airplay.tsx
index 7d2d0fd55..d4be881bf 100644
--- a/src/icons/Airplay.tsx
+++ b/src/icons/Airplay.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Alarm.tsx b/src/icons/Alarm.tsx
index 6a1ceca57..1fd8d13af 100644
--- a/src/icons/Alarm.tsx
+++ b/src/icons/Alarm.tsx
@@ -6,43 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Alien.tsx b/src/icons/Alien.tsx
index e9c3a7511..15239dde1 100644
--- a/src/icons/Alien.tsx
+++ b/src/icons/Alien.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AlignBottom.tsx b/src/icons/AlignBottom.tsx
index 95538972a..e8fab1f86 100644
--- a/src/icons/AlignBottom.tsx
+++ b/src/icons/AlignBottom.tsx
@@ -6,26 +6,17 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
+
+
>,
],
[
diff --git a/src/icons/AlignBottomSimple.tsx b/src/icons/AlignBottomSimple.tsx
index ad03c1817..2e82fb70a 100644
--- a/src/icons/AlignBottomSimple.tsx
+++ b/src/icons/AlignBottomSimple.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
diff --git a/src/icons/AlignCenterHorizontal.tsx b/src/icons/AlignCenterHorizontal.tsx
index 26675ac16..21b89e88c 100644
--- a/src/icons/AlignCenterHorizontal.tsx
+++ b/src/icons/AlignCenterHorizontal.tsx
@@ -6,18 +6,16 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
+
>,
],
diff --git a/src/icons/AlignCenterHorizontalSimple.tsx b/src/icons/AlignCenterHorizontalSimple.tsx
index 0b6804b46..d58f210c8 100644
--- a/src/icons/AlignCenterHorizontalSimple.tsx
+++ b/src/icons/AlignCenterHorizontalSimple.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
diff --git a/src/icons/AlignCenterVertical.tsx b/src/icons/AlignCenterVertical.tsx
index f30b95fec..6190a1ba7 100644
--- a/src/icons/AlignCenterVertical.tsx
+++ b/src/icons/AlignCenterVertical.tsx
@@ -6,26 +6,17 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
+
+
>,
],
[
@@ -37,19 +28,19 @@ const weights = new Map([
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AlignCenterVerticalSimple.tsx b/src/icons/AlignCenterVerticalSimple.tsx
index bcd03dff0..2805f5db0 100644
--- a/src/icons/AlignCenterVerticalSimple.tsx
+++ b/src/icons/AlignCenterVerticalSimple.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
diff --git a/src/icons/AlignLeft.tsx b/src/icons/AlignLeft.tsx
index 639ea9385..d20129775 100644
--- a/src/icons/AlignLeft.tsx
+++ b/src/icons/AlignLeft.tsx
@@ -6,25 +6,23 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
@@ -36,7 +34,7 @@ const weights = new Map([
[
"regular",
<>
-
+
>,
],
[
diff --git a/src/icons/AlignLeftSimple.tsx b/src/icons/AlignLeftSimple.tsx
index 19bd3f85f..d8d3d0dd3 100644
--- a/src/icons/AlignLeftSimple.tsx
+++ b/src/icons/AlignLeftSimple.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,7 +16,7 @@ const weights = new Map([
d="M232,96v64a8,8,0,0,1-8,8H72a8,8,0,0,1-8-8V96a8,8,0,0,1,8-8H224A8,8,0,0,1,232,96Z"
opacity="0.2"
/>
-
+
>,
],
[
@@ -34,7 +34,7 @@ const weights = new Map([
[
"regular",
<>
-
+
>,
],
[
diff --git a/src/icons/AlignRight.tsx b/src/icons/AlignRight.tsx
index e95ba1a84..3c049827e 100644
--- a/src/icons/AlignRight.tsx
+++ b/src/icons/AlignRight.tsx
@@ -6,25 +6,16 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
+
>,
],
diff --git a/src/icons/AlignRightSimple.tsx b/src/icons/AlignRightSimple.tsx
index 25cc9d023..ff88ef913 100644
--- a/src/icons/AlignRightSimple.tsx
+++ b/src/icons/AlignRightSimple.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
diff --git a/src/icons/AlignTop.tsx b/src/icons/AlignTop.tsx
index b7a16727b..7d3258914 100644
--- a/src/icons/AlignTop.tsx
+++ b/src/icons/AlignTop.tsx
@@ -6,25 +6,16 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
+
>,
],
diff --git a/src/icons/AlignTopSimple.tsx b/src/icons/AlignTopSimple.tsx
index 4c2e705eb..e671403eb 100644
--- a/src/icons/AlignTopSimple.tsx
+++ b/src/icons/AlignTopSimple.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
diff --git a/src/icons/AmazonLogo.tsx b/src/icons/AmazonLogo.tsx
new file mode 100644
index 000000000..2006dc5d3
--- /dev/null
+++ b/src/icons/AmazonLogo.tsx
@@ -0,0 +1,51 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const AmazonLogo: Icon = forwardRef((props, ref) => (
+
+));
+
+AmazonLogo.displayName = "AmazonLogo";
+
+export default AmazonLogo;
diff --git a/src/icons/Anchor.tsx b/src/icons/Anchor.tsx
index e396b9b9f..0de456de8 100644
--- a/src/icons/Anchor.tsx
+++ b/src/icons/Anchor.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AnchorSimple.tsx b/src/icons/AnchorSimple.tsx
index b95d1b83a..9cb105cad 100644
--- a/src/icons/AnchorSimple.tsx
+++ b/src/icons/AnchorSimple.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AndroidLogo.tsx b/src/icons/AndroidLogo.tsx
index 7f7772bef..e9f5f7b7b 100644
--- a/src/icons/AndroidLogo.tsx
+++ b/src/icons/AndroidLogo.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AngularLogo.tsx b/src/icons/AngularLogo.tsx
index d75095be6..6a2c55549 100644
--- a/src/icons/AngularLogo.tsx
+++ b/src/icons/AngularLogo.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Aperture.tsx b/src/icons/Aperture.tsx
index dc5f6fff7..de8f18d90 100644
--- a/src/icons/Aperture.tsx
+++ b/src/icons/Aperture.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AppStoreLogo.tsx b/src/icons/AppStoreLogo.tsx
index 2c717f13d..e97f0df35 100644
--- a/src/icons/AppStoreLogo.tsx
+++ b/src/icons/AppStoreLogo.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AppWindow.tsx b/src/icons/AppWindow.tsx
index 16f70920e..7fd8e42a9 100644
--- a/src/icons/AppWindow.tsx
+++ b/src/icons/AppWindow.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
diff --git a/src/icons/AppleLogo.tsx b/src/icons/AppleLogo.tsx
index eb9b14f15..c9f3d1c8e 100644
--- a/src/icons/AppleLogo.tsx
+++ b/src/icons/AppleLogo.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ApplePodcastsLogo.tsx b/src/icons/ApplePodcastsLogo.tsx
index f41a62252..8e51ce6b2 100644
--- a/src/icons/ApplePodcastsLogo.tsx
+++ b/src/icons/ApplePodcastsLogo.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Archive.tsx b/src/icons/Archive.tsx
index 0addfa234..d13c188c7 100644
--- a/src/icons/Archive.tsx
+++ b/src/icons/Archive.tsx
@@ -6,15 +6,13 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
+
>,
],
diff --git a/src/icons/ArchiveBox.tsx b/src/icons/ArchiveBox.tsx
index bd7e827b5..7a8835a3e 100644
--- a/src/icons/ArchiveBox.tsx
+++ b/src/icons/ArchiveBox.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArchiveTray.tsx b/src/icons/ArchiveTray.tsx
index 906946890..5f7b9560d 100644
--- a/src/icons/ArchiveTray.tsx
+++ b/src/icons/ArchiveTray.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Armchair.tsx b/src/icons/Armchair.tsx
index 004f08c4d..e85ec1740 100644
--- a/src/icons/Armchair.tsx
+++ b/src/icons/Armchair.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M240,128a32,32,0,0,1-32,32v40a8,8,0,0,1-8,8H56a8,8,0,0,1-8-8V160a32,32,0,0,1,0-64V72A32,32,0,0,1,80,40h96a32,32,0,0,1,32,32V96A32,32,0,0,1,240,128Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowArcLeft.tsx b/src/icons/ArrowArcLeft.tsx
index 6b415a99b..2bd0483f0 100644
--- a/src/icons/ArrowArcLeft.tsx
+++ b/src/icons/ArrowArcLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowArcRight.tsx b/src/icons/ArrowArcRight.tsx
index 19adbdc2d..4665841ed 100644
--- a/src/icons/ArrowArcRight.tsx
+++ b/src/icons/ArrowArcRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendDoubleUpLeft.tsx b/src/icons/ArrowBendDoubleUpLeft.tsx
index 6f6921e25..c1687fdec 100644
--- a/src/icons/ArrowBendDoubleUpLeft.tsx
+++ b/src/icons/ArrowBendDoubleUpLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendDoubleUpRight.tsx b/src/icons/ArrowBendDoubleUpRight.tsx
index dc35efecf..491136050 100644
--- a/src/icons/ArrowBendDoubleUpRight.tsx
+++ b/src/icons/ArrowBendDoubleUpRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendDownLeft.tsx b/src/icons/ArrowBendDownLeft.tsx
index 23f3d99b6..a64d42022 100644
--- a/src/icons/ArrowBendDownLeft.tsx
+++ b/src/icons/ArrowBendDownLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendDownRight.tsx b/src/icons/ArrowBendDownRight.tsx
index ffcb54d8b..1bc8c5223 100644
--- a/src/icons/ArrowBendDownRight.tsx
+++ b/src/icons/ArrowBendDownRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendLeftDown.tsx b/src/icons/ArrowBendLeftDown.tsx
index 9fa924426..ff44d41d5 100644
--- a/src/icons/ArrowBendLeftDown.tsx
+++ b/src/icons/ArrowBendLeftDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendLeftUp.tsx b/src/icons/ArrowBendLeftUp.tsx
index df36f7bb3..f788bb74d 100644
--- a/src/icons/ArrowBendLeftUp.tsx
+++ b/src/icons/ArrowBendLeftUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendRightDown.tsx b/src/icons/ArrowBendRightDown.tsx
index 609328597..4d21c277c 100644
--- a/src/icons/ArrowBendRightDown.tsx
+++ b/src/icons/ArrowBendRightDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendRightUp.tsx b/src/icons/ArrowBendRightUp.tsx
index a7f28d5d9..fa97b1d53 100644
--- a/src/icons/ArrowBendRightUp.tsx
+++ b/src/icons/ArrowBendRightUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendUpLeft.tsx b/src/icons/ArrowBendUpLeft.tsx
index a547477f1..875830c63 100644
--- a/src/icons/ArrowBendUpLeft.tsx
+++ b/src/icons/ArrowBendUpLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowBendUpRight.tsx b/src/icons/ArrowBendUpRight.tsx
index fa7843502..8a256db43 100644
--- a/src/icons/ArrowBendUpRight.tsx
+++ b/src/icons/ArrowBendUpRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleDown.tsx b/src/icons/ArrowCircleDown.tsx
index b0c5fd479..349f0e0e4 100644
--- a/src/icons/ArrowCircleDown.tsx
+++ b/src/icons/ArrowCircleDown.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleDownLeft.tsx b/src/icons/ArrowCircleDownLeft.tsx
index be3aff09c..cfd207294 100644
--- a/src/icons/ArrowCircleDownLeft.tsx
+++ b/src/icons/ArrowCircleDownLeft.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleDownRight.tsx b/src/icons/ArrowCircleDownRight.tsx
index cf7199bbd..5f183bdef 100644
--- a/src/icons/ArrowCircleDownRight.tsx
+++ b/src/icons/ArrowCircleDownRight.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleLeft.tsx b/src/icons/ArrowCircleLeft.tsx
index 8881f76bd..8d58a0d12 100644
--- a/src/icons/ArrowCircleLeft.tsx
+++ b/src/icons/ArrowCircleLeft.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleRight.tsx b/src/icons/ArrowCircleRight.tsx
index c695611d1..960814cb8 100644
--- a/src/icons/ArrowCircleRight.tsx
+++ b/src/icons/ArrowCircleRight.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleUp.tsx b/src/icons/ArrowCircleUp.tsx
index 9f63de12e..00349e472 100644
--- a/src/icons/ArrowCircleUp.tsx
+++ b/src/icons/ArrowCircleUp.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleUpLeft.tsx b/src/icons/ArrowCircleUpLeft.tsx
index 87818d8c2..0d6de0fbc 100644
--- a/src/icons/ArrowCircleUpLeft.tsx
+++ b/src/icons/ArrowCircleUpLeft.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCircleUpRight.tsx b/src/icons/ArrowCircleUpRight.tsx
index 8a3455583..e3041c6a9 100644
--- a/src/icons/ArrowCircleUpRight.tsx
+++ b/src/icons/ArrowCircleUpRight.tsx
@@ -6,41 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowClockwise.tsx b/src/icons/ArrowClockwise.tsx
index e19fd3164..52ea93fc9 100644
--- a/src/icons/ArrowClockwise.tsx
+++ b/src/icons/ArrowClockwise.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowCounterClockwise.tsx b/src/icons/ArrowCounterClockwise.tsx
index 5e5e975b2..55225cebf 100644
--- a/src/icons/ArrowCounterClockwise.tsx
+++ b/src/icons/ArrowCounterClockwise.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowDown.tsx b/src/icons/ArrowDown.tsx
index f7248b943..ea76210b5 100644
--- a/src/icons/ArrowDown.tsx
+++ b/src/icons/ArrowDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowDownLeft.tsx b/src/icons/ArrowDownLeft.tsx
index a923ce158..2b74e66d6 100644
--- a/src/icons/ArrowDownLeft.tsx
+++ b/src/icons/ArrowDownLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowDownRight.tsx b/src/icons/ArrowDownRight.tsx
index 00d949e69..f800d6d56 100644
--- a/src/icons/ArrowDownRight.tsx
+++ b/src/icons/ArrowDownRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowDownLeft.tsx b/src/icons/ArrowElbowDownLeft.tsx
index 93e5d8f8d..e63d9c48e 100644
--- a/src/icons/ArrowElbowDownLeft.tsx
+++ b/src/icons/ArrowElbowDownLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowDownRight.tsx b/src/icons/ArrowElbowDownRight.tsx
index 313657d57..066628614 100644
--- a/src/icons/ArrowElbowDownRight.tsx
+++ b/src/icons/ArrowElbowDownRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowLeft.tsx b/src/icons/ArrowElbowLeft.tsx
index e3a75803d..9986292e0 100644
--- a/src/icons/ArrowElbowLeft.tsx
+++ b/src/icons/ArrowElbowLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowLeftDown.tsx b/src/icons/ArrowElbowLeftDown.tsx
index 3726b7b51..fe43811cd 100644
--- a/src/icons/ArrowElbowLeftDown.tsx
+++ b/src/icons/ArrowElbowLeftDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowLeftUp.tsx b/src/icons/ArrowElbowLeftUp.tsx
index 143fbaa36..34df7cfda 100644
--- a/src/icons/ArrowElbowLeftUp.tsx
+++ b/src/icons/ArrowElbowLeftUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowRight.tsx b/src/icons/ArrowElbowRight.tsx
index 5b2804010..e73ffa41c 100644
--- a/src/icons/ArrowElbowRight.tsx
+++ b/src/icons/ArrowElbowRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowRightDown.tsx b/src/icons/ArrowElbowRightDown.tsx
index f1649f0c4..cb1772565 100644
--- a/src/icons/ArrowElbowRightDown.tsx
+++ b/src/icons/ArrowElbowRightDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowRightUp.tsx b/src/icons/ArrowElbowRightUp.tsx
index 2fe4bb75a..eb48dae88 100644
--- a/src/icons/ArrowElbowRightUp.tsx
+++ b/src/icons/ArrowElbowRightUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowUpLeft.tsx b/src/icons/ArrowElbowUpLeft.tsx
index 0950dac39..61509144c 100644
--- a/src/icons/ArrowElbowUpLeft.tsx
+++ b/src/icons/ArrowElbowUpLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowElbowUpRight.tsx b/src/icons/ArrowElbowUpRight.tsx
index 8f02e713f..92c514607 100644
--- a/src/icons/ArrowElbowUpRight.tsx
+++ b/src/icons/ArrowElbowUpRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatDown.tsx b/src/icons/ArrowFatDown.tsx
index 3a0692b17..6d308e893 100644
--- a/src/icons/ArrowFatDown.tsx
+++ b/src/icons/ArrowFatDown.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLeft.tsx b/src/icons/ArrowFatLeft.tsx
index a25417939..db403e247 100644
--- a/src/icons/ArrowFatLeft.tsx
+++ b/src/icons/ArrowFatLeft.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLineDown.tsx b/src/icons/ArrowFatLineDown.tsx
index 87405d1c6..249bea0dc 100644
--- a/src/icons/ArrowFatLineDown.tsx
+++ b/src/icons/ArrowFatLineDown.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLineLeft.tsx b/src/icons/ArrowFatLineLeft.tsx
index 8f441ba88..c6eaa084a 100644
--- a/src/icons/ArrowFatLineLeft.tsx
+++ b/src/icons/ArrowFatLineLeft.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLineRight.tsx b/src/icons/ArrowFatLineRight.tsx
index 7de8c5770..25f1ec1fa 100644
--- a/src/icons/ArrowFatLineRight.tsx
+++ b/src/icons/ArrowFatLineRight.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLineUp.tsx b/src/icons/ArrowFatLineUp.tsx
index 78b066824..86175d3d6 100644
--- a/src/icons/ArrowFatLineUp.tsx
+++ b/src/icons/ArrowFatLineUp.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLinesDown.tsx b/src/icons/ArrowFatLinesDown.tsx
index b70efc1ad..fd34cf950 100644
--- a/src/icons/ArrowFatLinesDown.tsx
+++ b/src/icons/ArrowFatLinesDown.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLinesLeft.tsx b/src/icons/ArrowFatLinesLeft.tsx
index b90d2f2fd..45d2ba380 100644
--- a/src/icons/ArrowFatLinesLeft.tsx
+++ b/src/icons/ArrowFatLinesLeft.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLinesRight.tsx b/src/icons/ArrowFatLinesRight.tsx
index 260f00466..6601b7314 100644
--- a/src/icons/ArrowFatLinesRight.tsx
+++ b/src/icons/ArrowFatLinesRight.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatLinesUp.tsx b/src/icons/ArrowFatLinesUp.tsx
index cb267f9f5..19f2616cc 100644
--- a/src/icons/ArrowFatLinesUp.tsx
+++ b/src/icons/ArrowFatLinesUp.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatRight.tsx b/src/icons/ArrowFatRight.tsx
index 9a9ac6c9c..6812af611 100644
--- a/src/icons/ArrowFatRight.tsx
+++ b/src/icons/ArrowFatRight.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowFatUp.tsx b/src/icons/ArrowFatUp.tsx
index 3e348fb05..0c80c996f 100644
--- a/src/icons/ArrowFatUp.tsx
+++ b/src/icons/ArrowFatUp.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLeft.tsx b/src/icons/ArrowLeft.tsx
index 7386551a9..625a738c3 100644
--- a/src/icons/ArrowLeft.tsx
+++ b/src/icons/ArrowLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineDown.tsx b/src/icons/ArrowLineDown.tsx
index 7a637e869..bdef11e70 100644
--- a/src/icons/ArrowLineDown.tsx
+++ b/src/icons/ArrowLineDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineDownLeft.tsx b/src/icons/ArrowLineDownLeft.tsx
index b955e8d5f..103730825 100644
--- a/src/icons/ArrowLineDownLeft.tsx
+++ b/src/icons/ArrowLineDownLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineDownRight.tsx b/src/icons/ArrowLineDownRight.tsx
index e01f85dbd..64224af9e 100644
--- a/src/icons/ArrowLineDownRight.tsx
+++ b/src/icons/ArrowLineDownRight.tsx
@@ -6,37 +6,40 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineLeft.tsx b/src/icons/ArrowLineLeft.tsx
index 117ed2476..b3eae23e3 100644
--- a/src/icons/ArrowLineLeft.tsx
+++ b/src/icons/ArrowLineLeft.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineRight.tsx b/src/icons/ArrowLineRight.tsx
index 14f3228c7..0aba00988 100644
--- a/src/icons/ArrowLineRight.tsx
+++ b/src/icons/ArrowLineRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineUp.tsx b/src/icons/ArrowLineUp.tsx
index ed5af998b..0cef5efc1 100644
--- a/src/icons/ArrowLineUp.tsx
+++ b/src/icons/ArrowLineUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineUpLeft.tsx b/src/icons/ArrowLineUpLeft.tsx
index 54a6c5d9a..1dc9cf616 100644
--- a/src/icons/ArrowLineUpLeft.tsx
+++ b/src/icons/ArrowLineUpLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowLineUpRight.tsx b/src/icons/ArrowLineUpRight.tsx
index e2bb4f9c9..4cda8d393 100644
--- a/src/icons/ArrowLineUpRight.tsx
+++ b/src/icons/ArrowLineUpRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowRight.tsx b/src/icons/ArrowRight.tsx
index 2f3af85e0..185f986f7 100644
--- a/src/icons/ArrowRight.tsx
+++ b/src/icons/ArrowRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareDown.tsx b/src/icons/ArrowSquareDown.tsx
index 0e82b9f0d..f7e3ce2f0 100644
--- a/src/icons/ArrowSquareDown.tsx
+++ b/src/icons/ArrowSquareDown.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareDownLeft.tsx b/src/icons/ArrowSquareDownLeft.tsx
index 15bc0e93b..95003dbdc 100644
--- a/src/icons/ArrowSquareDownLeft.tsx
+++ b/src/icons/ArrowSquareDownLeft.tsx
@@ -6,48 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareDownRight.tsx b/src/icons/ArrowSquareDownRight.tsx
index 0682446a4..4a1d68b28 100644
--- a/src/icons/ArrowSquareDownRight.tsx
+++ b/src/icons/ArrowSquareDownRight.tsx
@@ -6,48 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareIn.tsx b/src/icons/ArrowSquareIn.tsx
index 6776b6c3c..24e7aea3f 100644
--- a/src/icons/ArrowSquareIn.tsx
+++ b/src/icons/ArrowSquareIn.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareLeft.tsx b/src/icons/ArrowSquareLeft.tsx
index f7b6e202a..5d4b5cc05 100644
--- a/src/icons/ArrowSquareLeft.tsx
+++ b/src/icons/ArrowSquareLeft.tsx
@@ -6,48 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareOut.tsx b/src/icons/ArrowSquareOut.tsx
index ef8f18d57..e8618c68f 100644
--- a/src/icons/ArrowSquareOut.tsx
+++ b/src/icons/ArrowSquareOut.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M184,80V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H176A8,8,0,0,1,184,80Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareRight.tsx b/src/icons/ArrowSquareRight.tsx
index 64f88c5ea..59540062a 100644
--- a/src/icons/ArrowSquareRight.tsx
+++ b/src/icons/ArrowSquareRight.tsx
@@ -6,48 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareUp.tsx b/src/icons/ArrowSquareUp.tsx
index 2044b7814..a3f39fbc7 100644
--- a/src/icons/ArrowSquareUp.tsx
+++ b/src/icons/ArrowSquareUp.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareUpLeft.tsx b/src/icons/ArrowSquareUpLeft.tsx
index d56e8f3d3..46b157d79 100644
--- a/src/icons/ArrowSquareUpLeft.tsx
+++ b/src/icons/ArrowSquareUpLeft.tsx
@@ -6,48 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowSquareUpRight.tsx b/src/icons/ArrowSquareUpRight.tsx
index 07b8cf3af..7962b8083 100644
--- a/src/icons/ArrowSquareUpRight.tsx
+++ b/src/icons/ArrowSquareUpRight.tsx
@@ -6,48 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowUDownLeft.tsx b/src/icons/ArrowUDownLeft.tsx
index 80aa0b8f0..ecd5cf4b3 100644
--- a/src/icons/ArrowUDownLeft.tsx
+++ b/src/icons/ArrowUDownLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowUDownRight.tsx b/src/icons/ArrowUDownRight.tsx
index 918848c84..a09010b25 100644
--- a/src/icons/ArrowUDownRight.tsx
+++ b/src/icons/ArrowUDownRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowULeftDown.tsx b/src/icons/ArrowULeftDown.tsx
index 78e15d5c4..210d27584 100644
--- a/src/icons/ArrowULeftDown.tsx
+++ b/src/icons/ArrowULeftDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowULeftUp.tsx b/src/icons/ArrowULeftUp.tsx
index 026075791..f70382d3e 100644
--- a/src/icons/ArrowULeftUp.tsx
+++ b/src/icons/ArrowULeftUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowURightDown.tsx b/src/icons/ArrowURightDown.tsx
index 9780aa1bf..06f67ee0e 100644
--- a/src/icons/ArrowURightDown.tsx
+++ b/src/icons/ArrowURightDown.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowURightUp.tsx b/src/icons/ArrowURightUp.tsx
index 10a68a37f..3b804b587 100644
--- a/src/icons/ArrowURightUp.tsx
+++ b/src/icons/ArrowURightUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowUUpLeft.tsx b/src/icons/ArrowUUpLeft.tsx
index a723bf158..bf1777cdf 100644
--- a/src/icons/ArrowUUpLeft.tsx
+++ b/src/icons/ArrowUUpLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowUUpRight.tsx b/src/icons/ArrowUUpRight.tsx
index 91016f636..49fe1f670 100644
--- a/src/icons/ArrowUUpRight.tsx
+++ b/src/icons/ArrowUUpRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowUp.tsx b/src/icons/ArrowUp.tsx
index 870890a67..50edc3173 100644
--- a/src/icons/ArrowUp.tsx
+++ b/src/icons/ArrowUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowUpLeft.tsx b/src/icons/ArrowUpLeft.tsx
index 3fb55a719..9bd994b94 100644
--- a/src/icons/ArrowUpLeft.tsx
+++ b/src/icons/ArrowUpLeft.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowUpRight.tsx b/src/icons/ArrowUpRight.tsx
index e7ae660f9..406150993 100644
--- a/src/icons/ArrowUpRight.tsx
+++ b/src/icons/ArrowUpRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsClockwise.tsx b/src/icons/ArrowsClockwise.tsx
index 3fedaf7cd..374ee6f45 100644
--- a/src/icons/ArrowsClockwise.tsx
+++ b/src/icons/ArrowsClockwise.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsCounterClockwise.tsx b/src/icons/ArrowsCounterClockwise.tsx
index c189feeb3..c3622c736 100644
--- a/src/icons/ArrowsCounterClockwise.tsx
+++ b/src/icons/ArrowsCounterClockwise.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsDownUp.tsx b/src/icons/ArrowsDownUp.tsx
index f8e106661..ba798c085 100644
--- a/src/icons/ArrowsDownUp.tsx
+++ b/src/icons/ArrowsDownUp.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsHorizontal.tsx b/src/icons/ArrowsHorizontal.tsx
index 6d71c2ca0..93a653d17 100644
--- a/src/icons/ArrowsHorizontal.tsx
+++ b/src/icons/ArrowsHorizontal.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsIn.tsx b/src/icons/ArrowsIn.tsx
index 3a01e5b6d..def916fb0 100644
--- a/src/icons/ArrowsIn.tsx
+++ b/src/icons/ArrowsIn.tsx
@@ -6,37 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsInCardinal.tsx b/src/icons/ArrowsInCardinal.tsx
index 7065e401b..c9fd3fffe 100644
--- a/src/icons/ArrowsInCardinal.tsx
+++ b/src/icons/ArrowsInCardinal.tsx
@@ -6,37 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsInLineHorizontal.tsx b/src/icons/ArrowsInLineHorizontal.tsx
index a23c94f96..7d5e91df6 100644
--- a/src/icons/ArrowsInLineHorizontal.tsx
+++ b/src/icons/ArrowsInLineHorizontal.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsInLineVertical.tsx b/src/icons/ArrowsInLineVertical.tsx
index 4a07c97da..d830bfee1 100644
--- a/src/icons/ArrowsInLineVertical.tsx
+++ b/src/icons/ArrowsInLineVertical.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsInSimple.tsx b/src/icons/ArrowsInSimple.tsx
index f7981c776..1068b267a 100644
--- a/src/icons/ArrowsInSimple.tsx
+++ b/src/icons/ArrowsInSimple.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsLeftRight.tsx b/src/icons/ArrowsLeftRight.tsx
index 95227ae29..cd13cf1d7 100644
--- a/src/icons/ArrowsLeftRight.tsx
+++ b/src/icons/ArrowsLeftRight.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsMerge.tsx b/src/icons/ArrowsMerge.tsx
new file mode 100644
index 000000000..a4bd1661b
--- /dev/null
+++ b/src/icons/ArrowsMerge.tsx
@@ -0,0 +1,51 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const ArrowsMerge: Icon = forwardRef((props, ref) => (
+
+));
+
+ArrowsMerge.displayName = "ArrowsMerge";
+
+export default ArrowsMerge;
diff --git a/src/icons/ArrowsOut.tsx b/src/icons/ArrowsOut.tsx
index d95b4aa59..374aea536 100644
--- a/src/icons/ArrowsOut.tsx
+++ b/src/icons/ArrowsOut.tsx
@@ -6,37 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsOutCardinal.tsx b/src/icons/ArrowsOutCardinal.tsx
index 133535ef0..2c64e99bf 100644
--- a/src/icons/ArrowsOutCardinal.tsx
+++ b/src/icons/ArrowsOutCardinal.tsx
@@ -6,37 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsOutLineHorizontal.tsx b/src/icons/ArrowsOutLineHorizontal.tsx
index 383cf9250..2c1369268 100644
--- a/src/icons/ArrowsOutLineHorizontal.tsx
+++ b/src/icons/ArrowsOutLineHorizontal.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsOutLineVertical.tsx b/src/icons/ArrowsOutLineVertical.tsx
index 41f6014d4..72da13d5d 100644
--- a/src/icons/ArrowsOutLineVertical.tsx
+++ b/src/icons/ArrowsOutLineVertical.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsOutSimple.tsx b/src/icons/ArrowsOutSimple.tsx
index b51c612c5..f2ceb8841 100644
--- a/src/icons/ArrowsOutSimple.tsx
+++ b/src/icons/ArrowsOutSimple.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArrowsSplit.tsx b/src/icons/ArrowsSplit.tsx
new file mode 100644
index 000000000..2bd34b7de
--- /dev/null
+++ b/src/icons/ArrowsSplit.tsx
@@ -0,0 +1,51 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const ArrowsSplit: Icon = forwardRef((props, ref) => (
+
+));
+
+ArrowsSplit.displayName = "ArrowsSplit";
+
+export default ArrowsSplit;
diff --git a/src/icons/ArrowsVertical.tsx b/src/icons/ArrowsVertical.tsx
index 5416737c2..3e93066e1 100644
--- a/src/icons/ArrowsVertical.tsx
+++ b/src/icons/ArrowsVertical.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Article.tsx b/src/icons/Article.tsx
index 6284f9042..bde5cc191 100644
--- a/src/icons/Article.tsx
+++ b/src/icons/Article.tsx
@@ -6,43 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArticleMedium.tsx b/src/icons/ArticleMedium.tsx
index 43f831145..97a477619 100644
--- a/src/icons/ArticleMedium.tsx
+++ b/src/icons/ArticleMedium.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/ArticleNyTimes.tsx b/src/icons/ArticleNyTimes.tsx
index b7249b92f..bc9cd6313 100644
--- a/src/icons/ArticleNyTimes.tsx
+++ b/src/icons/ArticleNyTimes.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Asterisk.tsx b/src/icons/Asterisk.tsx
index c43b88191..f3e9ba0c7 100644
--- a/src/icons/Asterisk.tsx
+++ b/src/icons/Asterisk.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/AsteriskSimple.tsx b/src/icons/AsteriskSimple.tsx
index e8aa41379..50df6dddc 100644
--- a/src/icons/AsteriskSimple.tsx
+++ b/src/icons/AsteriskSimple.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/At.tsx b/src/icons/At.tsx
index 45fe79197..5159833a6 100644
--- a/src/icons/At.tsx
+++ b/src/icons/At.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Atom.tsx b/src/icons/Atom.tsx
index dfb0af9cd..3fc60864e 100644
--- a/src/icons/Atom.tsx
+++ b/src/icons/Atom.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Baby.tsx b/src/icons/Baby.tsx
index 3c44baea4..a22ecc178 100644
--- a/src/icons/Baby.tsx
+++ b/src/icons/Baby.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Backpack.tsx b/src/icons/Backpack.tsx
index d35116263..98002fa2e 100644
--- a/src/icons/Backpack.tsx
+++ b/src/icons/Backpack.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M208,96V216a8,8,0,0,1-8,8H176V152a16,16,0,0,0-16-16H96a16,16,0,0,0-16,16v72H56a8,8,0,0,1-8-8V96A48,48,0,0,1,96,48h64A48,48,0,0,1,208,96Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Backspace.tsx b/src/icons/Backspace.tsx
index 21c48782c..c3c399f8a 100644
--- a/src/icons/Backspace.tsx
+++ b/src/icons/Backspace.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bag.tsx b/src/icons/Bag.tsx
index e1bd05057..dc2d900ff 100644
--- a/src/icons/Bag.tsx
+++ b/src/icons/Bag.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BagSimple.tsx b/src/icons/BagSimple.tsx
index 12d6d5292..38cf81c20 100644
--- a/src/icons/BagSimple.tsx
+++ b/src/icons/BagSimple.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Balloon.tsx b/src/icons/Balloon.tsx
index cdc574a76..552797b64 100644
--- a/src/icons/Balloon.tsx
+++ b/src/icons/Balloon.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bandaids.tsx b/src/icons/Bandaids.tsx
index 553dab828..f65a91809 100644
--- a/src/icons/Bandaids.tsx
+++ b/src/icons/Bandaids.tsx
@@ -6,50 +6,42 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bank.tsx b/src/icons/Bank.tsx
index 6fa9ceea0..1d25abe3b 100644
--- a/src/icons/Bank.tsx
+++ b/src/icons/Bank.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Barbell.tsx b/src/icons/Barbell.tsx
index 98592d5dd..d63f956a9 100644
--- a/src/icons/Barbell.tsx
+++ b/src/icons/Barbell.tsx
@@ -6,25 +6,23 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
@@ -36,7 +34,7 @@ const weights = new Map([
[
"regular",
<>
-
+
>,
],
[
diff --git a/src/icons/Barcode.tsx b/src/icons/Barcode.tsx
index 74aa6f95c..bd9241be7 100644
--- a/src/icons/Barcode.tsx
+++ b/src/icons/Barcode.tsx
@@ -12,20 +12,14 @@ const weights = new Map([
[
"duotone",
<>
-
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
diff --git a/src/icons/Barricade.tsx b/src/icons/Barricade.tsx
index abf4d595e..98d008e5d 100644
--- a/src/icons/Barricade.tsx
+++ b/src/icons/Barricade.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,7 +16,7 @@ const weights = new Map([
d="M232,80v68L156,72h68A8,8,0,0,1,232,80ZM32,72a8,8,0,0,0-8,8v4l76,76h72L84,72Z"
opacity="0.2"
/>
-
+
>,
],
[
@@ -28,19 +28,19 @@ const weights = new Map([
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Baseball.tsx b/src/icons/Baseball.tsx
index 13e2a7e55..20fbfd31d 100644
--- a/src/icons/Baseball.tsx
+++ b/src/icons/Baseball.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BaseballCap.tsx b/src/icons/BaseballCap.tsx
new file mode 100644
index 000000000..fa7193159
--- /dev/null
+++ b/src/icons/BaseballCap.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BaseballCap: Icon = forwardRef((props, ref) => (
+
+));
+
+BaseballCap.displayName = "BaseballCap";
+
+export default BaseballCap;
diff --git a/src/icons/Basket.tsx b/src/icons/Basket.tsx
new file mode 100644
index 000000000..d7540b41a
--- /dev/null
+++ b/src/icons/Basket.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const Basket: Icon = forwardRef((props, ref) => (
+
+));
+
+Basket.displayName = "Basket";
+
+export default Basket;
diff --git a/src/icons/Basketball.tsx b/src/icons/Basketball.tsx
index a44be88b3..8c8da13fa 100644
--- a/src/icons/Basketball.tsx
+++ b/src/icons/Basketball.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bathtub.tsx b/src/icons/Bathtub.tsx
index 287f61927..9a5c58292 100644
--- a/src/icons/Bathtub.tsx
+++ b/src/icons/Bathtub.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M240,112v32a48,48,0,0,1-48,48H64a48,48,0,0,1-48-48V112a8,8,0,0,1,8-8H136v40h64V104h32A8,8,0,0,1,240,112Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryCharging.tsx b/src/icons/BatteryCharging.tsx
index dc9759a28..c00aa51d0 100644
--- a/src/icons/BatteryCharging.tsx
+++ b/src/icons/BatteryCharging.tsx
@@ -6,47 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryChargingVertical.tsx b/src/icons/BatteryChargingVertical.tsx
index 226565d94..93c4dd926 100644
--- a/src/icons/BatteryChargingVertical.tsx
+++ b/src/icons/BatteryChargingVertical.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryEmpty.tsx b/src/icons/BatteryEmpty.tsx
index a9b3b14c1..0c76fb4be 100644
--- a/src/icons/BatteryEmpty.tsx
+++ b/src/icons/BatteryEmpty.tsx
@@ -6,47 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryFull.tsx b/src/icons/BatteryFull.tsx
index 5c9635bdf..7d9d9da83 100644
--- a/src/icons/BatteryFull.tsx
+++ b/src/icons/BatteryFull.tsx
@@ -6,47 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryHigh.tsx b/src/icons/BatteryHigh.tsx
index 1ccb8154f..fe3c999ad 100644
--- a/src/icons/BatteryHigh.tsx
+++ b/src/icons/BatteryHigh.tsx
@@ -6,47 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryLow.tsx b/src/icons/BatteryLow.tsx
index 541d399f0..9c62794c3 100644
--- a/src/icons/BatteryLow.tsx
+++ b/src/icons/BatteryLow.tsx
@@ -6,47 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryMedium.tsx b/src/icons/BatteryMedium.tsx
index 424819794..a2df26238 100644
--- a/src/icons/BatteryMedium.tsx
+++ b/src/icons/BatteryMedium.tsx
@@ -6,47 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryPlus.tsx b/src/icons/BatteryPlus.tsx
index 4b2603755..967510826 100644
--- a/src/icons/BatteryPlus.tsx
+++ b/src/icons/BatteryPlus.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryPlusVertical.tsx b/src/icons/BatteryPlusVertical.tsx
new file mode 100644
index 000000000..7f1712783
--- /dev/null
+++ b/src/icons/BatteryPlusVertical.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BatteryPlusVertical: Icon = forwardRef((props, ref) => (
+
+));
+
+BatteryPlusVertical.displayName = "BatteryPlusVertical";
+
+export default BatteryPlusVertical;
diff --git a/src/icons/BatteryVerticalEmpty.tsx b/src/icons/BatteryVerticalEmpty.tsx
new file mode 100644
index 000000000..070b74b75
--- /dev/null
+++ b/src/icons/BatteryVerticalEmpty.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BatteryVerticalEmpty: Icon = forwardRef((props, ref) => (
+
+));
+
+BatteryVerticalEmpty.displayName = "BatteryVerticalEmpty";
+
+export default BatteryVerticalEmpty;
diff --git a/src/icons/BatteryVerticalFull.tsx b/src/icons/BatteryVerticalFull.tsx
new file mode 100644
index 000000000..a11a7acf8
--- /dev/null
+++ b/src/icons/BatteryVerticalFull.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BatteryVerticalFull: Icon = forwardRef((props, ref) => (
+
+));
+
+BatteryVerticalFull.displayName = "BatteryVerticalFull";
+
+export default BatteryVerticalFull;
diff --git a/src/icons/BatteryVerticalHigh.tsx b/src/icons/BatteryVerticalHigh.tsx
new file mode 100644
index 000000000..74f96d081
--- /dev/null
+++ b/src/icons/BatteryVerticalHigh.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BatteryVerticalHigh: Icon = forwardRef((props, ref) => (
+
+));
+
+BatteryVerticalHigh.displayName = "BatteryVerticalHigh";
+
+export default BatteryVerticalHigh;
diff --git a/src/icons/BatteryVerticalLow.tsx b/src/icons/BatteryVerticalLow.tsx
new file mode 100644
index 000000000..d8d0eb699
--- /dev/null
+++ b/src/icons/BatteryVerticalLow.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BatteryVerticalLow: Icon = forwardRef((props, ref) => (
+
+));
+
+BatteryVerticalLow.displayName = "BatteryVerticalLow";
+
+export default BatteryVerticalLow;
diff --git a/src/icons/BatteryVerticalMedium.tsx b/src/icons/BatteryVerticalMedium.tsx
new file mode 100644
index 000000000..2fddf09d2
--- /dev/null
+++ b/src/icons/BatteryVerticalMedium.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BatteryVerticalMedium: Icon = forwardRef((props, ref) => (
+
+));
+
+BatteryVerticalMedium.displayName = "BatteryVerticalMedium";
+
+export default BatteryVerticalMedium;
diff --git a/src/icons/BatteryWarning.tsx b/src/icons/BatteryWarning.tsx
index 1a511be9a..8207f9a03 100644
--- a/src/icons/BatteryWarning.tsx
+++ b/src/icons/BatteryWarning.tsx
@@ -6,47 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BatteryWarningVertical.tsx b/src/icons/BatteryWarningVertical.tsx
index d03fd0ee3..181ab62b9 100644
--- a/src/icons/BatteryWarningVertical.tsx
+++ b/src/icons/BatteryWarningVertical.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bed.tsx b/src/icons/Bed.tsx
index 0f6463734..2d97495b3 100644
--- a/src/icons/Bed.tsx
+++ b/src/icons/Bed.tsx
@@ -6,16 +6,14 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
@@ -27,19 +25,19 @@ const weights = new Map([
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BeerBottle.tsx b/src/icons/BeerBottle.tsx
index 32b66cf21..0cdcaac3b 100644
--- a/src/icons/BeerBottle.tsx
+++ b/src/icons/BeerBottle.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BeerStein.tsx b/src/icons/BeerStein.tsx
new file mode 100644
index 000000000..2f9ef425e
--- /dev/null
+++ b/src/icons/BeerStein.tsx
@@ -0,0 +1,51 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BeerStein: Icon = forwardRef((props, ref) => (
+
+));
+
+BeerStein.displayName = "BeerStein";
+
+export default BeerStein;
diff --git a/src/icons/BehanceLogo.tsx b/src/icons/BehanceLogo.tsx
index 9f4808ea6..252e89051 100644
--- a/src/icons/BehanceLogo.tsx
+++ b/src/icons/BehanceLogo.tsx
@@ -6,37 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bell.tsx b/src/icons/Bell.tsx
index bc7a3a7ae..8c3f8376f 100644
--- a/src/icons/Bell.tsx
+++ b/src/icons/Bell.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BellRinging.tsx b/src/icons/BellRinging.tsx
index 3c4458ed6..0c864804f 100644
--- a/src/icons/BellRinging.tsx
+++ b/src/icons/BellRinging.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BellSimple.tsx b/src/icons/BellSimple.tsx
index 36a879132..d67733c17 100644
--- a/src/icons/BellSimple.tsx
+++ b/src/icons/BellSimple.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BellSimpleRinging.tsx b/src/icons/BellSimpleRinging.tsx
index d7b694b2f..e437f4746 100644
--- a/src/icons/BellSimpleRinging.tsx
+++ b/src/icons/BellSimpleRinging.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BellSimpleSlash.tsx b/src/icons/BellSimpleSlash.tsx
index 9b5492538..32ce42161 100644
--- a/src/icons/BellSimpleSlash.tsx
+++ b/src/icons/BellSimpleSlash.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BellSimpleZ.tsx b/src/icons/BellSimpleZ.tsx
index 72de15881..8a36aa21d 100644
--- a/src/icons/BellSimpleZ.tsx
+++ b/src/icons/BellSimpleZ.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BellSlash.tsx b/src/icons/BellSlash.tsx
index f860d8f04..e54d802a7 100644
--- a/src/icons/BellSlash.tsx
+++ b/src/icons/BellSlash.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BellZ.tsx b/src/icons/BellZ.tsx
index 667a6e3ec..dc29b7a3b 100644
--- a/src/icons/BellZ.tsx
+++ b/src/icons/BellZ.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BezierCurve.tsx b/src/icons/BezierCurve.tsx
index 4a4eefab6..fdf05daea 100644
--- a/src/icons/BezierCurve.tsx
+++ b/src/icons/BezierCurve.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bicycle.tsx b/src/icons/Bicycle.tsx
index eaf9c9f2a..e46d6850a 100644
--- a/src/icons/Bicycle.tsx
+++ b/src/icons/Bicycle.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M248,160a40,40,0,1,1-40-40A40,40,0,0,1,248,160ZM48,120a40,40,0,1,0,40,40A40,40,0,0,0,48,120Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Binoculars.tsx b/src/icons/Binoculars.tsx
index d41ebfd58..2cb19fdf3 100644
--- a/src/icons/Binoculars.tsx
+++ b/src/icons/Binoculars.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M104,168a40,40,0,1,1-40-40A40,40,0,0,1,104,168Zm88-40a40,40,0,1,0,40,40A40,40,0,0,0,192,128Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bird.tsx b/src/icons/Bird.tsx
index 37095e451..6252e2b30 100644
--- a/src/icons/Bird.tsx
+++ b/src/icons/Bird.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bluetooth.tsx b/src/icons/Bluetooth.tsx
index 562606181..7d282da2e 100644
--- a/src/icons/Bluetooth.tsx
+++ b/src/icons/Bluetooth.tsx
@@ -6,43 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BluetoothConnected.tsx b/src/icons/BluetoothConnected.tsx
index f77b289f2..ad4c57fe5 100644
--- a/src/icons/BluetoothConnected.tsx
+++ b/src/icons/BluetoothConnected.tsx
@@ -6,43 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BluetoothSlash.tsx b/src/icons/BluetoothSlash.tsx
index a0fcfed55..f83bf58d2 100644
--- a/src/icons/BluetoothSlash.tsx
+++ b/src/icons/BluetoothSlash.tsx
@@ -6,44 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BluetoothX.tsx b/src/icons/BluetoothX.tsx
index 5c144ed24..34b92de7d 100644
--- a/src/icons/BluetoothX.tsx
+++ b/src/icons/BluetoothX.tsx
@@ -6,44 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Boat.tsx b/src/icons/Boat.tsx
index 46e0a0549..053bbadd7 100644
--- a/src/icons/Boat.tsx
+++ b/src/icons/Boat.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bone.tsx b/src/icons/Bone.tsx
new file mode 100644
index 000000000..1a7e5023c
--- /dev/null
+++ b/src/icons/Bone.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const Bone: Icon = forwardRef((props, ref) => (
+
+));
+
+Bone.displayName = "Bone";
+
+export default Bone;
diff --git a/src/icons/Book.tsx b/src/icons/Book.tsx
index 4cdd4e672..34880b486 100644
--- a/src/icons/Book.tsx
+++ b/src/icons/Book.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BookBookmark.tsx b/src/icons/BookBookmark.tsx
index cec36b582..1a9871d25 100644
--- a/src/icons/BookBookmark.tsx
+++ b/src/icons/BookBookmark.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BookOpen.tsx b/src/icons/BookOpen.tsx
index cf4b3a0d9..6efd5a37a 100644
--- a/src/icons/BookOpen.tsx
+++ b/src/icons/BookOpen.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BookOpenText.tsx b/src/icons/BookOpenText.tsx
new file mode 100644
index 000000000..ffffcd423
--- /dev/null
+++ b/src/icons/BookOpenText.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BookOpenText: Icon = forwardRef((props, ref) => (
+
+));
+
+BookOpenText.displayName = "BookOpenText";
+
+export default BookOpenText;
diff --git a/src/icons/Bookmark.tsx b/src/icons/Bookmark.tsx
index 93ab81f0c..fa5e25089 100644
--- a/src/icons/Bookmark.tsx
+++ b/src/icons/Bookmark.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BookmarkSimple.tsx b/src/icons/BookmarkSimple.tsx
index 9bde6470d..b856ea462 100644
--- a/src/icons/BookmarkSimple.tsx
+++ b/src/icons/BookmarkSimple.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bookmarks.tsx b/src/icons/Bookmarks.tsx
index e0561ae7d..fbdcc1b36 100644
--- a/src/icons/Bookmarks.tsx
+++ b/src/icons/Bookmarks.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BookmarksSimple.tsx b/src/icons/BookmarksSimple.tsx
index 6f6d57901..ea21372e3 100644
--- a/src/icons/BookmarksSimple.tsx
+++ b/src/icons/BookmarksSimple.tsx
@@ -6,41 +6,42 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Books.tsx b/src/icons/Books.tsx
index c92c87a3b..d40d61607 100644
--- a/src/icons/Books.tsx
+++ b/src/icons/Books.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Boot.tsx b/src/icons/Boot.tsx
new file mode 100644
index 000000000..6028edac0
--- /dev/null
+++ b/src/icons/Boot.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const Boot: Icon = forwardRef((props, ref) => (
+
+));
+
+Boot.displayName = "Boot";
+
+export default Boot;
diff --git a/src/icons/BoundingBox.tsx b/src/icons/BoundingBox.tsx
index d785d875e..0d4e92997 100644
--- a/src/icons/BoundingBox.tsx
+++ b/src/icons/BoundingBox.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,7 +16,7 @@ const weights = new Map([
d="M216,48V80a8,8,0,0,1-8,8H176a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8h32A8,8,0,0,1,216,48ZM80,40H48a8,8,0,0,0-8,8V80a8,8,0,0,0,8,8H80a8,8,0,0,0,8-8V48A8,8,0,0,0,80,40ZM208,168H176a8,8,0,0,0-8,8v32a8,8,0,0,0,8,8h32a8,8,0,0,0,8-8V176A8,8,0,0,0,208,168ZM80,168H48a8,8,0,0,0-8,8v32a8,8,0,0,0,8,8H80a8,8,0,0,0,8-8V176A8,8,0,0,0,80,168Z"
opacity="0.2"
/>
-
+
>,
],
[
@@ -34,7 +34,7 @@ const weights = new Map([
[
"regular",
<>
-
+
>,
],
[
diff --git a/src/icons/BowlFood.tsx b/src/icons/BowlFood.tsx
new file mode 100644
index 000000000..9d363932f
--- /dev/null
+++ b/src/icons/BowlFood.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const BowlFood: Icon = forwardRef((props, ref) => (
+
+));
+
+BowlFood.displayName = "BowlFood";
+
+export default BowlFood;
diff --git a/src/icons/BracketsAngle.tsx b/src/icons/BracketsAngle.tsx
index 8ab1823a4..eff956303 100644
--- a/src/icons/BracketsAngle.tsx
+++ b/src/icons/BracketsAngle.tsx
@@ -6,37 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BracketsCurly.tsx b/src/icons/BracketsCurly.tsx
index 0f649f328..ebf0eaf89 100644
--- a/src/icons/BracketsCurly.tsx
+++ b/src/icons/BracketsCurly.tsx
@@ -6,37 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BracketsRound.tsx b/src/icons/BracketsRound.tsx
index cfe4267c1..e11c0e8af 100644
--- a/src/icons/BracketsRound.tsx
+++ b/src/icons/BracketsRound.tsx
@@ -6,37 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BracketsSquare.tsx b/src/icons/BracketsSquare.tsx
index f9ee3b233..7399f0d18 100644
--- a/src/icons/BracketsSquare.tsx
+++ b/src/icons/BracketsSquare.tsx
@@ -12,13 +12,14 @@ const weights = new Map([
[
"duotone",
<>
+
>,
],
[
"fill",
<>
-
+
>,
],
[
diff --git a/src/icons/Brain.tsx b/src/icons/Brain.tsx
index 839d3e594..708ebda63 100644
--- a/src/icons/Brain.tsx
+++ b/src/icons/Brain.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Brandy.tsx b/src/icons/Brandy.tsx
index 6e1a4eaa8..f2b37b7f7 100644
--- a/src/icons/Brandy.tsx
+++ b/src/icons/Brandy.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bridge.tsx b/src/icons/Bridge.tsx
new file mode 100644
index 000000000..c6067748c
--- /dev/null
+++ b/src/icons/Bridge.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const Bridge: Icon = forwardRef((props, ref) => (
+
+));
+
+Bridge.displayName = "Bridge";
+
+export default Bridge;
diff --git a/src/icons/Briefcase.tsx b/src/icons/Briefcase.tsx
index 8700fb7d4..46cc8f81a 100644
--- a/src/icons/Briefcase.tsx
+++ b/src/icons/Briefcase.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BriefcaseMetal.tsx b/src/icons/BriefcaseMetal.tsx
index 0f9102460..209427ef3 100644
--- a/src/icons/BriefcaseMetal.tsx
+++ b/src/icons/BriefcaseMetal.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Broadcast.tsx b/src/icons/Broadcast.tsx
index 9af860d8f..8349e1ca7 100644
--- a/src/icons/Broadcast.tsx
+++ b/src/icons/Broadcast.tsx
@@ -6,44 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Broom.tsx b/src/icons/Broom.tsx
new file mode 100644
index 000000000..771c7f781
--- /dev/null
+++ b/src/icons/Broom.tsx
@@ -0,0 +1,54 @@
+/* GENERATED FILE */
+import { forwardRef, ReactElement } from "react";
+import { IconWeight, Icon, IconBase } from "../lib";
+
+const weights = new Map([
+ [
+ "bold",
+ <>
+
+ >,
+ ],
+ [
+ "duotone",
+ <>
+
+
+ >,
+ ],
+ [
+ "fill",
+ <>
+
+ >,
+ ],
+ [
+ "light",
+ <>
+
+ >,
+ ],
+ [
+ "regular",
+ <>
+
+ >,
+ ],
+ [
+ "thin",
+ <>
+
+ >,
+ ],
+]);
+
+const Broom: Icon = forwardRef((props, ref) => (
+
+));
+
+Broom.displayName = "Broom";
+
+export default Broom;
diff --git a/src/icons/Browser.tsx b/src/icons/Browser.tsx
index 715df8af1..a11701cc9 100644
--- a/src/icons/Browser.tsx
+++ b/src/icons/Browser.tsx
@@ -6,15 +6,16 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
+
>,
],
@@ -39,7 +40,7 @@ const weights = new Map([
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Browsers.tsx b/src/icons/Browsers.tsx
index 4f11ba2ec..c64a0d8c0 100644
--- a/src/icons/Browsers.tsx
+++ b/src/icons/Browsers.tsx
@@ -6,16 +6,17 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
@@ -39,7 +40,7 @@ const weights = new Map([
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bug.tsx b/src/icons/Bug.tsx
index 2a9520896..c56aae01d 100644
--- a/src/icons/Bug.tsx
+++ b/src/icons/Bug.tsx
@@ -6,38 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BugBeetle.tsx b/src/icons/BugBeetle.tsx
index f0e0dc441..52a9702ef 100644
--- a/src/icons/BugBeetle.tsx
+++ b/src/icons/BugBeetle.tsx
@@ -6,7 +6,7 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
@@ -16,31 +16,31 @@ const weights = new Map([
d="M200,104v48a72,72,0,0,1-72,72h0a72,72,0,0,1-72-72V104Z"
opacity="0.2"
/>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/BugDroid.tsx b/src/icons/BugDroid.tsx
index 85d2f8592..6f964d7ae 100644
--- a/src/icons/BugDroid.tsx
+++ b/src/icons/BugDroid.tsx
@@ -6,40 +6,38 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Buildings.tsx b/src/icons/Buildings.tsx
index 84c76443b..405b0f396 100644
--- a/src/icons/Buildings.tsx
+++ b/src/icons/Buildings.tsx
@@ -6,40 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Bus.tsx b/src/icons/Bus.tsx
index d9081280b..cdb198732 100644
--- a/src/icons/Bus.tsx
+++ b/src/icons/Bus.tsx
@@ -6,48 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
-
-
-
-
-
-
-
-
+
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Butterfly.tsx b/src/icons/Butterfly.tsx
index 0632105b9..11beebd91 100644
--- a/src/icons/Butterfly.tsx
+++ b/src/icons/Butterfly.tsx
@@ -6,42 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Cactus.tsx b/src/icons/Cactus.tsx
index 0eee45f64..e985b4e6c 100644
--- a/src/icons/Cactus.tsx
+++ b/src/icons/Cactus.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Cake.tsx b/src/icons/Cake.tsx
index 2fb6d1e1d..b7e739bb3 100644
--- a/src/icons/Cake.tsx
+++ b/src/icons/Cake.tsx
@@ -6,41 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
+
>,
],
[
"fill",
<>
-
+
>,
],
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Calculator.tsx b/src/icons/Calculator.tsx
index f5d16b6c0..02989616e 100644
--- a/src/icons/Calculator.tsx
+++ b/src/icons/Calculator.tsx
@@ -6,16 +6,14 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-
-
-
+
+
>,
],
[
@@ -27,19 +25,19 @@ const weights = new Map([
[
"light",
<>
-
+
>,
],
[
"regular",
<>
-
+
>,
],
[
"thin",
<>
-
+
>,
],
]);
diff --git a/src/icons/Calendar.tsx b/src/icons/Calendar.tsx
index e6c477377..b5b81862f 100644
--- a/src/icons/Calendar.tsx
+++ b/src/icons/Calendar.tsx
@@ -6,42 +6,41 @@ const weights = new Map([
[
"bold",
<>
-
+
>,
],
[
"duotone",
<>
-
-