diff --git a/scripts/assemble.ts b/scripts/assemble.ts
index ee0d9b299..c4b66d637 100644
--- a/scripts/assemble.ts
+++ b/scripts/assemble.ts
@@ -3,6 +3,7 @@ import fs from "node:fs";
import path from "node:path";
import chalk from "chalk";
import { exec } from "node:child_process";
+import { JSDOM } from "jsdom";
import {
ALIASES,
@@ -48,6 +49,8 @@ import {
function generateComponents(icons: AssetMap) {
let passes = 0;
let fails = 0;
+ const dom = new JSDOM(`
`);
+ const domParser = new dom.window.DOMParser();
if (fs.existsSync(CSR_PATH)) {
fs.rmSync(CSR_PATH, { recursive: true });
@@ -71,7 +74,16 @@ import { IconWeight } from "../lib";
export default new Map([
${Object.entries(icon)
- .map(([weight, { jsx }]) => `["${weight}", <>${jsx.trim()}>]`)
+ .map(([weight, { jsx }]) => {
+ const doc = domParser.parseFromString(
+ ``,
+ "image/svg+xml"
+ );
+ const svgElm = doc.querySelector("svg");
+ const normalizedJSX =
+ svgElm?.children?.length === 1 ? jsx.trim() : `<>${jsx.trim()}>`;
+ return `["${weight}", ${normalizedJSX}]`;
+ })
.join(",")}
]);
`;
diff --git a/src/defs/Acorn.tsx b/src/defs/Acorn.tsx
index 80e0e172e..1ae26b426 100644
--- a/src/defs/Acorn.tsx
+++ b/src/defs/Acorn.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AddressBook.tsx b/src/defs/AddressBook.tsx
index 6c5e813d1..f5c7cd1a6 100644
--- a/src/defs/AddressBook.tsx
+++ b/src/defs/AddressBook.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AddressBookTabs.tsx b/src/defs/AddressBookTabs.tsx
index e4e4e375a..95af7b239 100644
--- a/src/defs/AddressBookTabs.tsx
+++ b/src/defs/AddressBookTabs.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AirTrafficControl.tsx b/src/defs/AirTrafficControl.tsx
index 5ec4e5c15..b41fa0adf 100644
--- a/src/defs/AirTrafficControl.tsx
+++ b/src/defs/AirTrafficControl.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Airplane.tsx b/src/defs/Airplane.tsx
index dcc05c406..99632e9d0 100644
--- a/src/defs/Airplane.tsx
+++ b/src/defs/Airplane.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AirplaneInFlight.tsx b/src/defs/AirplaneInFlight.tsx
index 4d0a9c382..0b613499e 100644
--- a/src/defs/AirplaneInFlight.tsx
+++ b/src/defs/AirplaneInFlight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AirplaneLanding.tsx b/src/defs/AirplaneLanding.tsx
index 9872e0ea9..9b1d843cc 100644
--- a/src/defs/AirplaneLanding.tsx
+++ b/src/defs/AirplaneLanding.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AirplaneTakeoff.tsx b/src/defs/AirplaneTakeoff.tsx
index e1ed374a5..7212625c3 100644
--- a/src/defs/AirplaneTakeoff.tsx
+++ b/src/defs/AirplaneTakeoff.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AirplaneTaxiing.tsx b/src/defs/AirplaneTaxiing.tsx
index 77172df70..f66cd436a 100644
--- a/src/defs/AirplaneTaxiing.tsx
+++ b/src/defs/AirplaneTaxiing.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AirplaneTilt.tsx b/src/defs/AirplaneTilt.tsx
index 9c5a2cc85..bba5ec737 100644
--- a/src/defs/AirplaneTilt.tsx
+++ b/src/defs/AirplaneTilt.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Airplay.tsx b/src/defs/Airplay.tsx
index c30e82af9..66d0ea243 100644
--- a/src/defs/Airplay.tsx
+++ b/src/defs/Airplay.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Alarm.tsx b/src/defs/Alarm.tsx
index c81a88291..551e70fc0 100644
--- a/src/defs/Alarm.tsx
+++ b/src/defs/Alarm.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Alien.tsx b/src/defs/Alien.tsx
index 0f3a0e143..14094b289 100644
--- a/src/defs/Alien.tsx
+++ b/src/defs/Alien.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignBottom.tsx b/src/defs/AlignBottom.tsx
index a4c5668ed..0b44231d4 100644
--- a/src/defs/AlignBottom.tsx
+++ b/src/defs/AlignBottom.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignBottomSimple.tsx b/src/defs/AlignBottomSimple.tsx
index ef9223597..0db594be9 100644
--- a/src/defs/AlignBottomSimple.tsx
+++ b/src/defs/AlignBottomSimple.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignCenterHorizontal.tsx b/src/defs/AlignCenterHorizontal.tsx
index 084f48207..b86225ecb 100644
--- a/src/defs/AlignCenterHorizontal.tsx
+++ b/src/defs/AlignCenterHorizontal.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignCenterHorizontalSimple.tsx b/src/defs/AlignCenterHorizontalSimple.tsx
index 3eac5d538..e4ab2f09f 100644
--- a/src/defs/AlignCenterHorizontalSimple.tsx
+++ b/src/defs/AlignCenterHorizontalSimple.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignCenterVertical.tsx b/src/defs/AlignCenterVertical.tsx
index e7f0270ca..4180fd122 100644
--- a/src/defs/AlignCenterVertical.tsx
+++ b/src/defs/AlignCenterVertical.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignCenterVerticalSimple.tsx b/src/defs/AlignCenterVerticalSimple.tsx
index c6bcf3241..d39892222 100644
--- a/src/defs/AlignCenterVerticalSimple.tsx
+++ b/src/defs/AlignCenterVerticalSimple.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignLeft.tsx b/src/defs/AlignLeft.tsx
index c436ef65a..365a2397f 100644
--- a/src/defs/AlignLeft.tsx
+++ b/src/defs/AlignLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignLeftSimple.tsx b/src/defs/AlignLeftSimple.tsx
index 018f53d7d..8a526420f 100644
--- a/src/defs/AlignLeftSimple.tsx
+++ b/src/defs/AlignLeftSimple.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignRight.tsx b/src/defs/AlignRight.tsx
index c79a49f56..0496c4241 100644
--- a/src/defs/AlignRight.tsx
+++ b/src/defs/AlignRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignRightSimple.tsx b/src/defs/AlignRightSimple.tsx
index 16dabdec1..87403c5cb 100644
--- a/src/defs/AlignRightSimple.tsx
+++ b/src/defs/AlignRightSimple.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignTop.tsx b/src/defs/AlignTop.tsx
index bec80cf70..435d85c9b 100644
--- a/src/defs/AlignTop.tsx
+++ b/src/defs/AlignTop.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AlignTopSimple.tsx b/src/defs/AlignTopSimple.tsx
index 42b6b5bf9..924bec556 100644
--- a/src/defs/AlignTopSimple.tsx
+++ b/src/defs/AlignTopSimple.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AmazonLogo.tsx b/src/defs/AmazonLogo.tsx
index fe7412a13..361d1aad9 100644
--- a/src/defs/AmazonLogo.tsx
+++ b/src/defs/AmazonLogo.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Ambulance.tsx b/src/defs/Ambulance.tsx
index b36034fd8..9ccff9924 100644
--- a/src/defs/Ambulance.tsx
+++ b/src/defs/Ambulance.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Anchor.tsx b/src/defs/Anchor.tsx
index 8106c628e..e74f26ec4 100644
--- a/src/defs/Anchor.tsx
+++ b/src/defs/Anchor.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AnchorSimple.tsx b/src/defs/AnchorSimple.tsx
index 14196d23d..cf6c928e4 100644
--- a/src/defs/AnchorSimple.tsx
+++ b/src/defs/AnchorSimple.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AndroidLogo.tsx b/src/defs/AndroidLogo.tsx
index 47d4e36b3..3fb37ab2c 100644
--- a/src/defs/AndroidLogo.tsx
+++ b/src/defs/AndroidLogo.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Angle.tsx b/src/defs/Angle.tsx
index 3149473a9..cc29f613a 100644
--- a/src/defs/Angle.tsx
+++ b/src/defs/Angle.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AngularLogo.tsx b/src/defs/AngularLogo.tsx
index f4c4f8129..4a48ad0b9 100644
--- a/src/defs/AngularLogo.tsx
+++ b/src/defs/AngularLogo.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Aperture.tsx b/src/defs/Aperture.tsx
index 3dc241b4a..366c40bad 100644
--- a/src/defs/Aperture.tsx
+++ b/src/defs/Aperture.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AppStoreLogo.tsx b/src/defs/AppStoreLogo.tsx
index e40af646a..e225eb7ce 100644
--- a/src/defs/AppStoreLogo.tsx
+++ b/src/defs/AppStoreLogo.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AppWindow.tsx b/src/defs/AppWindow.tsx
index e680769d4..a5e3d05d4 100644
--- a/src/defs/AppWindow.tsx
+++ b/src/defs/AppWindow.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/AppleLogo.tsx b/src/defs/AppleLogo.tsx
index 101e5e453..5a18bf58c 100644
--- a/src/defs/AppleLogo.tsx
+++ b/src/defs/AppleLogo.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ApplePodcastsLogo.tsx b/src/defs/ApplePodcastsLogo.tsx
index e73328643..f65a7c176 100644
--- a/src/defs/ApplePodcastsLogo.tsx
+++ b/src/defs/ApplePodcastsLogo.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ApproximateEquals.tsx b/src/defs/ApproximateEquals.tsx
index 3fde8dd88..2bec660de 100644
--- a/src/defs/ApproximateEquals.tsx
+++ b/src/defs/ApproximateEquals.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Archive.tsx b/src/defs/Archive.tsx
index 413c9a9fe..5108106f7 100644
--- a/src/defs/Archive.tsx
+++ b/src/defs/Archive.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/Armchair.tsx b/src/defs/Armchair.tsx
index 5b64e192d..fa0ba349a 100644
--- a/src/defs/Armchair.tsx
+++ b/src/defs/Armchair.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowArcLeft.tsx b/src/defs/ArrowArcLeft.tsx
index 1fe0961bb..e22960d8e 100644
--- a/src/defs/ArrowArcLeft.tsx
+++ b/src/defs/ArrowArcLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowArcRight.tsx b/src/defs/ArrowArcRight.tsx
index 196c0925e..b2851bb1d 100644
--- a/src/defs/ArrowArcRight.tsx
+++ b/src/defs/ArrowArcRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendDoubleUpLeft.tsx b/src/defs/ArrowBendDoubleUpLeft.tsx
index aec7a11b4..f5eb579cb 100644
--- a/src/defs/ArrowBendDoubleUpLeft.tsx
+++ b/src/defs/ArrowBendDoubleUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendDoubleUpRight.tsx b/src/defs/ArrowBendDoubleUpRight.tsx
index 39d876ebf..fa2f0e3cd 100644
--- a/src/defs/ArrowBendDoubleUpRight.tsx
+++ b/src/defs/ArrowBendDoubleUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendDownLeft.tsx b/src/defs/ArrowBendDownLeft.tsx
index 141fe4258..88d85d7ac 100644
--- a/src/defs/ArrowBendDownLeft.tsx
+++ b/src/defs/ArrowBendDownLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendDownRight.tsx b/src/defs/ArrowBendDownRight.tsx
index 4c4b0193f..1fcbe6a84 100644
--- a/src/defs/ArrowBendDownRight.tsx
+++ b/src/defs/ArrowBendDownRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendLeftDown.tsx b/src/defs/ArrowBendLeftDown.tsx
index 4ad8f0d85..0100c4066 100644
--- a/src/defs/ArrowBendLeftDown.tsx
+++ b/src/defs/ArrowBendLeftDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendLeftUp.tsx b/src/defs/ArrowBendLeftUp.tsx
index 40ee0d409..01c526ebd 100644
--- a/src/defs/ArrowBendLeftUp.tsx
+++ b/src/defs/ArrowBendLeftUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendRightDown.tsx b/src/defs/ArrowBendRightDown.tsx
index 9d55b7a73..7929108f4 100644
--- a/src/defs/ArrowBendRightDown.tsx
+++ b/src/defs/ArrowBendRightDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendRightUp.tsx b/src/defs/ArrowBendRightUp.tsx
index 859d17fc6..fe9cc8341 100644
--- a/src/defs/ArrowBendRightUp.tsx
+++ b/src/defs/ArrowBendRightUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendUpLeft.tsx b/src/defs/ArrowBendUpLeft.tsx
index a353eb147..311edac6b 100644
--- a/src/defs/ArrowBendUpLeft.tsx
+++ b/src/defs/ArrowBendUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowBendUpRight.tsx b/src/defs/ArrowBendUpRight.tsx
index bb3674efe..8dcbcc305 100644
--- a/src/defs/ArrowBendUpRight.tsx
+++ b/src/defs/ArrowBendUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleDown.tsx b/src/defs/ArrowCircleDown.tsx
index 77008da73..c930a4805 100644
--- a/src/defs/ArrowCircleDown.tsx
+++ b/src/defs/ArrowCircleDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleDownLeft.tsx b/src/defs/ArrowCircleDownLeft.tsx
index 238aa17d2..810ac7ed8 100644
--- a/src/defs/ArrowCircleDownLeft.tsx
+++ b/src/defs/ArrowCircleDownLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleDownRight.tsx b/src/defs/ArrowCircleDownRight.tsx
index 913b29230..055a7808a 100644
--- a/src/defs/ArrowCircleDownRight.tsx
+++ b/src/defs/ArrowCircleDownRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleLeft.tsx b/src/defs/ArrowCircleLeft.tsx
index 0ae4b1925..edc8061e2 100644
--- a/src/defs/ArrowCircleLeft.tsx
+++ b/src/defs/ArrowCircleLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleRight.tsx b/src/defs/ArrowCircleRight.tsx
index 45f043af6..be65d8a14 100644
--- a/src/defs/ArrowCircleRight.tsx
+++ b/src/defs/ArrowCircleRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleUp.tsx b/src/defs/ArrowCircleUp.tsx
index 08e327b6a..4c877c9ca 100644
--- a/src/defs/ArrowCircleUp.tsx
+++ b/src/defs/ArrowCircleUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleUpLeft.tsx b/src/defs/ArrowCircleUpLeft.tsx
index 066c36cfa..fd37f2584 100644
--- a/src/defs/ArrowCircleUpLeft.tsx
+++ b/src/defs/ArrowCircleUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCircleUpRight.tsx b/src/defs/ArrowCircleUpRight.tsx
index 9eb751144..0dbc3fd11 100644
--- a/src/defs/ArrowCircleUpRight.tsx
+++ b/src/defs/ArrowCircleUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowClockwise.tsx b/src/defs/ArrowClockwise.tsx
index 2350631c3..9c7548ada 100644
--- a/src/defs/ArrowClockwise.tsx
+++ b/src/defs/ArrowClockwise.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowCounterClockwise.tsx b/src/defs/ArrowCounterClockwise.tsx
index 3bb2f42a4..53f5ba6b8 100644
--- a/src/defs/ArrowCounterClockwise.tsx
+++ b/src/defs/ArrowCounterClockwise.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowDown.tsx b/src/defs/ArrowDown.tsx
index df82e71d3..62c033cee 100644
--- a/src/defs/ArrowDown.tsx
+++ b/src/defs/ArrowDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowDownLeft.tsx b/src/defs/ArrowDownLeft.tsx
index 3c2828e1b..8648f6672 100644
--- a/src/defs/ArrowDownLeft.tsx
+++ b/src/defs/ArrowDownLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowDownRight.tsx b/src/defs/ArrowDownRight.tsx
index d99a1eb0e..27a0d5222 100644
--- a/src/defs/ArrowDownRight.tsx
+++ b/src/defs/ArrowDownRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowDownLeft.tsx b/src/defs/ArrowElbowDownLeft.tsx
index a66591434..2143c6ba7 100644
--- a/src/defs/ArrowElbowDownLeft.tsx
+++ b/src/defs/ArrowElbowDownLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowDownRight.tsx b/src/defs/ArrowElbowDownRight.tsx
index c6471b342..401d39347 100644
--- a/src/defs/ArrowElbowDownRight.tsx
+++ b/src/defs/ArrowElbowDownRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowLeft.tsx b/src/defs/ArrowElbowLeft.tsx
index 6ea6a2a79..d5badd3b1 100644
--- a/src/defs/ArrowElbowLeft.tsx
+++ b/src/defs/ArrowElbowLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowLeftDown.tsx b/src/defs/ArrowElbowLeftDown.tsx
index 057780dde..3bfe93636 100644
--- a/src/defs/ArrowElbowLeftDown.tsx
+++ b/src/defs/ArrowElbowLeftDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowLeftUp.tsx b/src/defs/ArrowElbowLeftUp.tsx
index 7eb47d5bc..a3e67feae 100644
--- a/src/defs/ArrowElbowLeftUp.tsx
+++ b/src/defs/ArrowElbowLeftUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowRight.tsx b/src/defs/ArrowElbowRight.tsx
index ffcd05270..cae797886 100644
--- a/src/defs/ArrowElbowRight.tsx
+++ b/src/defs/ArrowElbowRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowRightDown.tsx b/src/defs/ArrowElbowRightDown.tsx
index 7e28b7c53..f8fef64e6 100644
--- a/src/defs/ArrowElbowRightDown.tsx
+++ b/src/defs/ArrowElbowRightDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowRightUp.tsx b/src/defs/ArrowElbowRightUp.tsx
index ffe464371..32bcfe728 100644
--- a/src/defs/ArrowElbowRightUp.tsx
+++ b/src/defs/ArrowElbowRightUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowUpLeft.tsx b/src/defs/ArrowElbowUpLeft.tsx
index 0d0b64a71..621d8576e 100644
--- a/src/defs/ArrowElbowUpLeft.tsx
+++ b/src/defs/ArrowElbowUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowElbowUpRight.tsx b/src/defs/ArrowElbowUpRight.tsx
index 9dc2bdd9e..47a40341e 100644
--- a/src/defs/ArrowElbowUpRight.tsx
+++ b/src/defs/ArrowElbowUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatDown.tsx b/src/defs/ArrowFatDown.tsx
index cecfd44c3..c7ce0af52 100644
--- a/src/defs/ArrowFatDown.tsx
+++ b/src/defs/ArrowFatDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLeft.tsx b/src/defs/ArrowFatLeft.tsx
index a7aff89e2..5ac347721 100644
--- a/src/defs/ArrowFatLeft.tsx
+++ b/src/defs/ArrowFatLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLineDown.tsx b/src/defs/ArrowFatLineDown.tsx
index 112b5d207..14a0043bb 100644
--- a/src/defs/ArrowFatLineDown.tsx
+++ b/src/defs/ArrowFatLineDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLineLeft.tsx b/src/defs/ArrowFatLineLeft.tsx
index 460b4151b..6e71b02e9 100644
--- a/src/defs/ArrowFatLineLeft.tsx
+++ b/src/defs/ArrowFatLineLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLineRight.tsx b/src/defs/ArrowFatLineRight.tsx
index a68926c63..867bba97f 100644
--- a/src/defs/ArrowFatLineRight.tsx
+++ b/src/defs/ArrowFatLineRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLineUp.tsx b/src/defs/ArrowFatLineUp.tsx
index c35bf0424..dde27c5e6 100644
--- a/src/defs/ArrowFatLineUp.tsx
+++ b/src/defs/ArrowFatLineUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLinesDown.tsx b/src/defs/ArrowFatLinesDown.tsx
index b80cfc82b..ebe51d427 100644
--- a/src/defs/ArrowFatLinesDown.tsx
+++ b/src/defs/ArrowFatLinesDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLinesLeft.tsx b/src/defs/ArrowFatLinesLeft.tsx
index a866b5e8b..10328dc86 100644
--- a/src/defs/ArrowFatLinesLeft.tsx
+++ b/src/defs/ArrowFatLinesLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLinesRight.tsx b/src/defs/ArrowFatLinesRight.tsx
index 9ca7fe5f5..f57b0e983 100644
--- a/src/defs/ArrowFatLinesRight.tsx
+++ b/src/defs/ArrowFatLinesRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatLinesUp.tsx b/src/defs/ArrowFatLinesUp.tsx
index 7373142a7..98973f0bc 100644
--- a/src/defs/ArrowFatLinesUp.tsx
+++ b/src/defs/ArrowFatLinesUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatRight.tsx b/src/defs/ArrowFatRight.tsx
index 26a430c05..40c8a56a5 100644
--- a/src/defs/ArrowFatRight.tsx
+++ b/src/defs/ArrowFatRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowFatUp.tsx b/src/defs/ArrowFatUp.tsx
index 952d01124..2ef81da0d 100644
--- a/src/defs/ArrowFatUp.tsx
+++ b/src/defs/ArrowFatUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLeft.tsx b/src/defs/ArrowLeft.tsx
index ee0b97bcc..82b31b156 100644
--- a/src/defs/ArrowLeft.tsx
+++ b/src/defs/ArrowLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineDown.tsx b/src/defs/ArrowLineDown.tsx
index 934d1ff87..24f1ff7d1 100644
--- a/src/defs/ArrowLineDown.tsx
+++ b/src/defs/ArrowLineDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineDownLeft.tsx b/src/defs/ArrowLineDownLeft.tsx
index f398b9789..dcc6b312c 100644
--- a/src/defs/ArrowLineDownLeft.tsx
+++ b/src/defs/ArrowLineDownLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineDownRight.tsx b/src/defs/ArrowLineDownRight.tsx
index 46fc7432f..5b645bd1c 100644
--- a/src/defs/ArrowLineDownRight.tsx
+++ b/src/defs/ArrowLineDownRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineLeft.tsx b/src/defs/ArrowLineLeft.tsx
index 6b4f16252..0e5762108 100644
--- a/src/defs/ArrowLineLeft.tsx
+++ b/src/defs/ArrowLineLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineRight.tsx b/src/defs/ArrowLineRight.tsx
index 2b96885fa..c781ea685 100644
--- a/src/defs/ArrowLineRight.tsx
+++ b/src/defs/ArrowLineRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineUp.tsx b/src/defs/ArrowLineUp.tsx
index fc775a633..d5d30429f 100644
--- a/src/defs/ArrowLineUp.tsx
+++ b/src/defs/ArrowLineUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineUpLeft.tsx b/src/defs/ArrowLineUpLeft.tsx
index 622490330..68d414a0e 100644
--- a/src/defs/ArrowLineUpLeft.tsx
+++ b/src/defs/ArrowLineUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowLineUpRight.tsx b/src/defs/ArrowLineUpRight.tsx
index 89d6d0861..f0dc46b9f 100644
--- a/src/defs/ArrowLineUpRight.tsx
+++ b/src/defs/ArrowLineUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowRight.tsx b/src/defs/ArrowRight.tsx
index a4c9b9cc1..e405c11a4 100644
--- a/src/defs/ArrowRight.tsx
+++ b/src/defs/ArrowRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareDown.tsx b/src/defs/ArrowSquareDown.tsx
index 4c769ab3c..da84c1195 100644
--- a/src/defs/ArrowSquareDown.tsx
+++ b/src/defs/ArrowSquareDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareDownLeft.tsx b/src/defs/ArrowSquareDownLeft.tsx
index 6dfbc0a2a..5ecaa6bba 100644
--- a/src/defs/ArrowSquareDownLeft.tsx
+++ b/src/defs/ArrowSquareDownLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareDownRight.tsx b/src/defs/ArrowSquareDownRight.tsx
index dc88a79c4..da58696c8 100644
--- a/src/defs/ArrowSquareDownRight.tsx
+++ b/src/defs/ArrowSquareDownRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareIn.tsx b/src/defs/ArrowSquareIn.tsx
index b9338c62f..733d91dd0 100644
--- a/src/defs/ArrowSquareIn.tsx
+++ b/src/defs/ArrowSquareIn.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareLeft.tsx b/src/defs/ArrowSquareLeft.tsx
index 3d31a744d..957cd0698 100644
--- a/src/defs/ArrowSquareLeft.tsx
+++ b/src/defs/ArrowSquareLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareOut.tsx b/src/defs/ArrowSquareOut.tsx
index 35e911ffa..bba328ae4 100644
--- a/src/defs/ArrowSquareOut.tsx
+++ b/src/defs/ArrowSquareOut.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareRight.tsx b/src/defs/ArrowSquareRight.tsx
index 5d55a5ab6..e525f9c9f 100644
--- a/src/defs/ArrowSquareRight.tsx
+++ b/src/defs/ArrowSquareRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareUp.tsx b/src/defs/ArrowSquareUp.tsx
index d3c7a245a..fb03e9505 100644
--- a/src/defs/ArrowSquareUp.tsx
+++ b/src/defs/ArrowSquareUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareUpLeft.tsx b/src/defs/ArrowSquareUpLeft.tsx
index c72c608dd..8ac25d5e8 100644
--- a/src/defs/ArrowSquareUpLeft.tsx
+++ b/src/defs/ArrowSquareUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowSquareUpRight.tsx b/src/defs/ArrowSquareUpRight.tsx
index d7027b099..9d42fbff2 100644
--- a/src/defs/ArrowSquareUpRight.tsx
+++ b/src/defs/ArrowSquareUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowUDownLeft.tsx b/src/defs/ArrowUDownLeft.tsx
index 5b02699f7..6e5e5bc2f 100644
--- a/src/defs/ArrowUDownLeft.tsx
+++ b/src/defs/ArrowUDownLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowUDownRight.tsx b/src/defs/ArrowUDownRight.tsx
index 8ed5ed1cc..cc9e08d03 100644
--- a/src/defs/ArrowUDownRight.tsx
+++ b/src/defs/ArrowUDownRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowULeftDown.tsx b/src/defs/ArrowULeftDown.tsx
index 0fbaf4017..37a27618a 100644
--- a/src/defs/ArrowULeftDown.tsx
+++ b/src/defs/ArrowULeftDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowULeftUp.tsx b/src/defs/ArrowULeftUp.tsx
index 8092b5556..d6adf86ad 100644
--- a/src/defs/ArrowULeftUp.tsx
+++ b/src/defs/ArrowULeftUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowURightDown.tsx b/src/defs/ArrowURightDown.tsx
index 95561dfa7..c28e77c81 100644
--- a/src/defs/ArrowURightDown.tsx
+++ b/src/defs/ArrowURightDown.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowURightUp.tsx b/src/defs/ArrowURightUp.tsx
index eaf4c573d..e4392c2d6 100644
--- a/src/defs/ArrowURightUp.tsx
+++ b/src/defs/ArrowURightUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowUUpLeft.tsx b/src/defs/ArrowUUpLeft.tsx
index 7666e12e9..7055bbdcb 100644
--- a/src/defs/ArrowUUpLeft.tsx
+++ b/src/defs/ArrowUUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowUUpRight.tsx b/src/defs/ArrowUUpRight.tsx
index e2037a1b0..86b47aa6b 100644
--- a/src/defs/ArrowUUpRight.tsx
+++ b/src/defs/ArrowUUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowUp.tsx b/src/defs/ArrowUp.tsx
index 9f5804732..cc4ca3a54 100644
--- a/src/defs/ArrowUp.tsx
+++ b/src/defs/ArrowUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowUpLeft.tsx b/src/defs/ArrowUpLeft.tsx
index 4a5da6701..0a44ccdcb 100644
--- a/src/defs/ArrowUpLeft.tsx
+++ b/src/defs/ArrowUpLeft.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowUpRight.tsx b/src/defs/ArrowUpRight.tsx
index 4f7882ef2..58edc4b3f 100644
--- a/src/defs/ArrowUpRight.tsx
+++ b/src/defs/ArrowUpRight.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsClockwise.tsx b/src/defs/ArrowsClockwise.tsx
index 15d4dd370..7f79716af 100644
--- a/src/defs/ArrowsClockwise.tsx
+++ b/src/defs/ArrowsClockwise.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsCounterClockwise.tsx b/src/defs/ArrowsCounterClockwise.tsx
index 664a0ebca..5222cbfd7 100644
--- a/src/defs/ArrowsCounterClockwise.tsx
+++ b/src/defs/ArrowsCounterClockwise.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsDownUp.tsx b/src/defs/ArrowsDownUp.tsx
index 6da4a26bb..4c4a97248 100644
--- a/src/defs/ArrowsDownUp.tsx
+++ b/src/defs/ArrowsDownUp.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsHorizontal.tsx b/src/defs/ArrowsHorizontal.tsx
index c8952ac1b..9e9433404 100644
--- a/src/defs/ArrowsHorizontal.tsx
+++ b/src/defs/ArrowsHorizontal.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -19,26 +17,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsIn.tsx b/src/defs/ArrowsIn.tsx
index 372129f62..4cf210f1c 100644
--- a/src/defs/ArrowsIn.tsx
+++ b/src/defs/ArrowsIn.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsInCardinal.tsx b/src/defs/ArrowsInCardinal.tsx
index 388ba7adf..baefa983c 100644
--- a/src/defs/ArrowsInCardinal.tsx
+++ b/src/defs/ArrowsInCardinal.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsInLineHorizontal.tsx b/src/defs/ArrowsInLineHorizontal.tsx
index 17ac71509..91a43e7e3 100644
--- a/src/defs/ArrowsInLineHorizontal.tsx
+++ b/src/defs/ArrowsInLineHorizontal.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-
- >,
+ ,
],
[
"light",
- <>
-
- >,
+ ,
],
[
"regular",
- <>
-
- >,
+ ,
],
[
"thin",
- <>
-
- >,
+ ,
],
]);
diff --git a/src/defs/ArrowsInLineVertical.tsx b/src/defs/ArrowsInLineVertical.tsx
index 7ee52c6a0..04c9e16bb 100644
--- a/src/defs/ArrowsInLineVertical.tsx
+++ b/src/defs/ArrowsInLineVertical.tsx
@@ -6,9 +6,7 @@ import { IconWeight } from "../lib";
export default new Map([
[
"bold",
- <>
-
- >,
+ ,
],
[
"duotone",
@@ -22,26 +20,18 @@ export default new Map([
],
[
"fill",
- <>
-