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( + `${jsx}`, + "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", - <> - - , + , ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/ArrowsInSimple.tsx b/src/defs/ArrowsInSimple.tsx index ecda34dab..57bb41d5a 100644 --- a/src/defs/ArrowsInSimple.tsx +++ b/src/defs/ArrowsInSimple.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/ArrowsLeftRight.tsx b/src/defs/ArrowsLeftRight.tsx index e319bb3c0..3dd3d863e 100644 --- a/src/defs/ArrowsLeftRight.tsx +++ b/src/defs/ArrowsLeftRight.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/ArrowsMerge.tsx b/src/defs/ArrowsMerge.tsx index 076613e45..59540df2b 100644 --- a/src/defs/ArrowsMerge.tsx +++ b/src/defs/ArrowsMerge.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/ArrowsOut.tsx b/src/defs/ArrowsOut.tsx index 35b08abdd..f7f913500 100644 --- a/src/defs/ArrowsOut.tsx +++ b/src/defs/ArrowsOut.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/ArrowsOutCardinal.tsx b/src/defs/ArrowsOutCardinal.tsx index 60707f2f5..8ef7b0136 100644 --- a/src/defs/ArrowsOutCardinal.tsx +++ b/src/defs/ArrowsOutCardinal.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/ArrowsOutLineHorizontal.tsx b/src/defs/ArrowsOutLineHorizontal.tsx index f48cc084f..b10f95195 100644 --- a/src/defs/ArrowsOutLineHorizontal.tsx +++ b/src/defs/ArrowsOutLineHorizontal.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/ArrowsOutLineVertical.tsx b/src/defs/ArrowsOutLineVertical.tsx index 680a6218b..4a3544755 100644 --- a/src/defs/ArrowsOutLineVertical.tsx +++ b/src/defs/ArrowsOutLineVertical.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/ArrowsOutSimple.tsx b/src/defs/ArrowsOutSimple.tsx index c9e8432fa..d18fbb03c 100644 --- a/src/defs/ArrowsOutSimple.tsx +++ b/src/defs/ArrowsOutSimple.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/ArrowsSplit.tsx b/src/defs/ArrowsSplit.tsx index 89ac6e716..c14b104d3 100644 --- a/src/defs/ArrowsSplit.tsx +++ b/src/defs/ArrowsSplit.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/ArrowsVertical.tsx b/src/defs/ArrowsVertical.tsx index 4697939f9..2349139e3 100644 --- a/src/defs/ArrowsVertical.tsx +++ b/src/defs/ArrowsVertical.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/Article.tsx b/src/defs/Article.tsx index 35c788bbc..443e62c50 100644 --- a/src/defs/Article.tsx +++ b/src/defs/Article.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/ArticleMedium.tsx b/src/defs/ArticleMedium.tsx index 2308e588d..838cbf6c8 100644 --- a/src/defs/ArticleMedium.tsx +++ b/src/defs/ArticleMedium.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/ArticleNyTimes.tsx b/src/defs/ArticleNyTimes.tsx index c2fea63d0..513250f05 100644 --- a/src/defs/ArticleNyTimes.tsx +++ b/src/defs/ArticleNyTimes.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/Asclepius.tsx b/src/defs/Asclepius.tsx index f037cbb69..9067ee5b4 100644 --- a/src/defs/Asclepius.tsx +++ b/src/defs/Asclepius.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/Asterisk.tsx b/src/defs/Asterisk.tsx index 804ecac42..e4d2137e2 100644 --- a/src/defs/Asterisk.tsx +++ b/src/defs/Asterisk.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/AsteriskSimple.tsx b/src/defs/AsteriskSimple.tsx index aff6e515e..de2f98290 100644 --- a/src/defs/AsteriskSimple.tsx +++ b/src/defs/AsteriskSimple.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/At.tsx b/src/defs/At.tsx index 6a7007892..5e3b289d8 100644 --- a/src/defs/At.tsx +++ b/src/defs/At.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/Atom.tsx b/src/defs/Atom.tsx index 16dc0a8a2..875a5e7fa 100644 --- a/src/defs/Atom.tsx +++ b/src/defs/Atom.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/Avocado.tsx b/src/defs/Avocado.tsx index ff4d03922..c55a6c754 100644 --- a/src/defs/Avocado.tsx +++ b/src/defs/Avocado.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/Axe.tsx b/src/defs/Axe.tsx index 244d2820a..bc025b68d 100644 --- a/src/defs/Axe.tsx +++ b/src/defs/Axe.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/Baby.tsx b/src/defs/Baby.tsx index 0652ce5dd..1e3869cf4 100644 --- a/src/defs/Baby.tsx +++ b/src/defs/Baby.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/BabyCarriage.tsx b/src/defs/BabyCarriage.tsx index d5df60777..461d69a89 100644 --- a/src/defs/BabyCarriage.tsx +++ b/src/defs/BabyCarriage.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/Backpack.tsx b/src/defs/Backpack.tsx index 85c23cf71..bc047bcdc 100644 --- a/src/defs/Backpack.tsx +++ b/src/defs/Backpack.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/Backspace.tsx b/src/defs/Backspace.tsx index 4b0d82e15..b043d81d1 100644 --- a/src/defs/Backspace.tsx +++ b/src/defs/Backspace.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/Bag.tsx b/src/defs/Bag.tsx index 4525933a5..20efdec3f 100644 --- a/src/defs/Bag.tsx +++ b/src/defs/Bag.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/BagSimple.tsx b/src/defs/BagSimple.tsx index 86ea4a61e..db2e6ebb3 100644 --- a/src/defs/BagSimple.tsx +++ b/src/defs/BagSimple.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/Balloon.tsx b/src/defs/Balloon.tsx index b759e8cd4..6ec2455e7 100644 --- a/src/defs/Balloon.tsx +++ b/src/defs/Balloon.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/Bandaids.tsx b/src/defs/Bandaids.tsx index 3f7c52627..c8161fc09 100644 --- a/src/defs/Bandaids.tsx +++ b/src/defs/Bandaids.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/Bank.tsx b/src/defs/Bank.tsx index fa71ff48a..7160fc012 100644 --- a/src/defs/Bank.tsx +++ b/src/defs/Bank.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/Barbell.tsx b/src/defs/Barbell.tsx index 8982fba05..5fce38be8 100644 --- a/src/defs/Barbell.tsx +++ b/src/defs/Barbell.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/Barcode.tsx b/src/defs/Barcode.tsx index 270a79cc5..597a9fed6 100644 --- a/src/defs/Barcode.tsx +++ b/src/defs/Barcode.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/Barn.tsx b/src/defs/Barn.tsx index f00fd04ac..c298ca614 100644 --- a/src/defs/Barn.tsx +++ b/src/defs/Barn.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/Barricade.tsx b/src/defs/Barricade.tsx index 36459effa..2b5b0a0bd 100644 --- a/src/defs/Barricade.tsx +++ b/src/defs/Barricade.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/Baseball.tsx b/src/defs/Baseball.tsx index 21b8eb377..45ca86f1b 100644 --- a/src/defs/Baseball.tsx +++ b/src/defs/Baseball.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/BaseballCap.tsx b/src/defs/BaseballCap.tsx index 77b726bc8..b6ae461d2 100644 --- a/src/defs/BaseballCap.tsx +++ b/src/defs/BaseballCap.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/BaseballHelmet.tsx b/src/defs/BaseballHelmet.tsx index 7382cac3f..582c1db67 100644 --- a/src/defs/BaseballHelmet.tsx +++ b/src/defs/BaseballHelmet.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/Basket.tsx b/src/defs/Basket.tsx index 7cb17008f..9152a506b 100644 --- a/src/defs/Basket.tsx +++ b/src/defs/Basket.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/Basketball.tsx b/src/defs/Basketball.tsx index 3197eed85..d4ae3a55f 100644 --- a/src/defs/Basketball.tsx +++ b/src/defs/Basketball.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/Bathtub.tsx b/src/defs/Bathtub.tsx index 7933babe4..96470647a 100644 --- a/src/defs/Bathtub.tsx +++ b/src/defs/Bathtub.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/BatteryCharging.tsx b/src/defs/BatteryCharging.tsx index 5b8b2a11b..2cbf93519 100644 --- a/src/defs/BatteryCharging.tsx +++ b/src/defs/BatteryCharging.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/BatteryChargingVertical.tsx b/src/defs/BatteryChargingVertical.tsx index 4f835a94a..0bc89f5b2 100644 --- a/src/defs/BatteryChargingVertical.tsx +++ b/src/defs/BatteryChargingVertical.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/BatteryEmpty.tsx b/src/defs/BatteryEmpty.tsx index 08759a4f3..10404e861 100644 --- a/src/defs/BatteryEmpty.tsx +++ b/src/defs/BatteryEmpty.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/BatteryFull.tsx b/src/defs/BatteryFull.tsx index a08418008..745f8b16a 100644 --- a/src/defs/BatteryFull.tsx +++ b/src/defs/BatteryFull.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/BatteryHigh.tsx b/src/defs/BatteryHigh.tsx index 89a4b7b37..cfe5dfdf4 100644 --- a/src/defs/BatteryHigh.tsx +++ b/src/defs/BatteryHigh.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/BatteryLow.tsx b/src/defs/BatteryLow.tsx index 757bdd940..da4ac0919 100644 --- a/src/defs/BatteryLow.tsx +++ b/src/defs/BatteryLow.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/BatteryMedium.tsx b/src/defs/BatteryMedium.tsx index 0cba5bcbb..16f200d56 100644 --- a/src/defs/BatteryMedium.tsx +++ b/src/defs/BatteryMedium.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/BatteryPlus.tsx b/src/defs/BatteryPlus.tsx index 6f519543a..71d31f847 100644 --- a/src/defs/BatteryPlus.tsx +++ b/src/defs/BatteryPlus.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/BatteryPlusVertical.tsx b/src/defs/BatteryPlusVertical.tsx index d7e2ce35b..e3c9d13f2 100644 --- a/src/defs/BatteryPlusVertical.tsx +++ b/src/defs/BatteryPlusVertical.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/BatteryVerticalEmpty.tsx b/src/defs/BatteryVerticalEmpty.tsx index aff4fd6cc..3d74bb3e1 100644 --- a/src/defs/BatteryVerticalEmpty.tsx +++ b/src/defs/BatteryVerticalEmpty.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/BatteryVerticalFull.tsx b/src/defs/BatteryVerticalFull.tsx index 4d5c432cb..b7bdfc94d 100644 --- a/src/defs/BatteryVerticalFull.tsx +++ b/src/defs/BatteryVerticalFull.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/BatteryVerticalHigh.tsx b/src/defs/BatteryVerticalHigh.tsx index 8ef7159bf..bb5ae253e 100644 --- a/src/defs/BatteryVerticalHigh.tsx +++ b/src/defs/BatteryVerticalHigh.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/BatteryVerticalLow.tsx b/src/defs/BatteryVerticalLow.tsx index 0a933d03b..7f6a577d0 100644 --- a/src/defs/BatteryVerticalLow.tsx +++ b/src/defs/BatteryVerticalLow.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/BatteryVerticalMedium.tsx b/src/defs/BatteryVerticalMedium.tsx index b7aa681c5..8e8d1ddf1 100644 --- a/src/defs/BatteryVerticalMedium.tsx +++ b/src/defs/BatteryVerticalMedium.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/BatteryWarning.tsx b/src/defs/BatteryWarning.tsx index 964bc1ca4..ea8e4a466 100644 --- a/src/defs/BatteryWarning.tsx +++ b/src/defs/BatteryWarning.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/BatteryWarningVertical.tsx b/src/defs/BatteryWarningVertical.tsx index 5d0678f9c..7ea8b6143 100644 --- a/src/defs/BatteryWarningVertical.tsx +++ b/src/defs/BatteryWarningVertical.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/BeachBall.tsx b/src/defs/BeachBall.tsx index 23b63e216..653cc64d7 100644 --- a/src/defs/BeachBall.tsx +++ b/src/defs/BeachBall.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/Beanie.tsx b/src/defs/Beanie.tsx index 1068cfeba..fac3538e6 100644 --- a/src/defs/Beanie.tsx +++ b/src/defs/Beanie.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/Bed.tsx b/src/defs/Bed.tsx index 710d9a6e9..3124be49b 100644 --- a/src/defs/Bed.tsx +++ b/src/defs/Bed.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/BeerBottle.tsx b/src/defs/BeerBottle.tsx index 3bcfd54aa..37ffe10c6 100644 --- a/src/defs/BeerBottle.tsx +++ b/src/defs/BeerBottle.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/BeerStein.tsx b/src/defs/BeerStein.tsx index ce95bd6b9..d33d602a5 100644 --- a/src/defs/BeerStein.tsx +++ b/src/defs/BeerStein.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/BehanceLogo.tsx b/src/defs/BehanceLogo.tsx index da46e9eee..79f5a4532 100644 --- a/src/defs/BehanceLogo.tsx +++ b/src/defs/BehanceLogo.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/Bell.tsx b/src/defs/Bell.tsx index b512667c6..902a18e50 100644 --- a/src/defs/Bell.tsx +++ b/src/defs/Bell.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/BellRinging.tsx b/src/defs/BellRinging.tsx index 373bf4e62..8f998c0ff 100644 --- a/src/defs/BellRinging.tsx +++ b/src/defs/BellRinging.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/BellSimple.tsx b/src/defs/BellSimple.tsx index d0f6e0f38..efd73e158 100644 --- a/src/defs/BellSimple.tsx +++ b/src/defs/BellSimple.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/BellSimpleRinging.tsx b/src/defs/BellSimpleRinging.tsx index 52a41be03..352c788b2 100644 --- a/src/defs/BellSimpleRinging.tsx +++ b/src/defs/BellSimpleRinging.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/BellSimpleSlash.tsx b/src/defs/BellSimpleSlash.tsx index e49fa6452..4c90b31ae 100644 --- a/src/defs/BellSimpleSlash.tsx +++ b/src/defs/BellSimpleSlash.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/BellSimpleZ.tsx b/src/defs/BellSimpleZ.tsx index 4ae8f007b..044ee5bba 100644 --- a/src/defs/BellSimpleZ.tsx +++ b/src/defs/BellSimpleZ.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/BellSlash.tsx b/src/defs/BellSlash.tsx index 618bf236f..4069fa69d 100644 --- a/src/defs/BellSlash.tsx +++ b/src/defs/BellSlash.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/BellZ.tsx b/src/defs/BellZ.tsx index 439772815..2a7a29b2f 100644 --- a/src/defs/BellZ.tsx +++ b/src/defs/BellZ.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/Belt.tsx b/src/defs/Belt.tsx index d902460fa..effbecb8c 100644 --- a/src/defs/Belt.tsx +++ b/src/defs/Belt.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/BezierCurve.tsx b/src/defs/BezierCurve.tsx index e2135f6a5..9853479de 100644 --- a/src/defs/BezierCurve.tsx +++ b/src/defs/BezierCurve.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/Bicycle.tsx b/src/defs/Bicycle.tsx index 9e91b187d..d41f83d68 100644 --- a/src/defs/Bicycle.tsx +++ b/src/defs/Bicycle.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/Binary.tsx b/src/defs/Binary.tsx index 07235dd99..554a1c616 100644 --- a/src/defs/Binary.tsx +++ b/src/defs/Binary.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/Binoculars.tsx b/src/defs/Binoculars.tsx index b94257fea..282bbd06c 100644 --- a/src/defs/Binoculars.tsx +++ b/src/defs/Binoculars.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/Biohazard.tsx b/src/defs/Biohazard.tsx index 529213ce4..b2b362336 100644 --- a/src/defs/Biohazard.tsx +++ b/src/defs/Biohazard.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/Bird.tsx b/src/defs/Bird.tsx index 3cb53892f..bf74a4325 100644 --- a/src/defs/Bird.tsx +++ b/src/defs/Bird.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/Blueprint.tsx b/src/defs/Blueprint.tsx index 90d4b9d75..fb0a4f9a7 100644 --- a/src/defs/Blueprint.tsx +++ b/src/defs/Blueprint.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/Bluetooth.tsx b/src/defs/Bluetooth.tsx index e27019051..7e6653b2a 100644 --- a/src/defs/Bluetooth.tsx +++ b/src/defs/Bluetooth.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/BluetoothConnected.tsx b/src/defs/BluetoothConnected.tsx index 20a7a897c..67f253dfa 100644 --- a/src/defs/BluetoothConnected.tsx +++ b/src/defs/BluetoothConnected.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/BluetoothSlash.tsx b/src/defs/BluetoothSlash.tsx index 17fdbf8e8..949ceaf4c 100644 --- a/src/defs/BluetoothSlash.tsx +++ b/src/defs/BluetoothSlash.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/BluetoothX.tsx b/src/defs/BluetoothX.tsx index a09aac2fb..a72d934b9 100644 --- a/src/defs/BluetoothX.tsx +++ b/src/defs/BluetoothX.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/Boat.tsx b/src/defs/Boat.tsx index 1f567540b..d7fd727dd 100644 --- a/src/defs/Boat.tsx +++ b/src/defs/Boat.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/Bomb.tsx b/src/defs/Bomb.tsx index 011c9c280..d65ec5f1b 100644 --- a/src/defs/Bomb.tsx +++ b/src/defs/Bomb.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/Bone.tsx b/src/defs/Bone.tsx index ea3b223d8..456254eab 100644 --- a/src/defs/Bone.tsx +++ b/src/defs/Bone.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/Book.tsx b/src/defs/Book.tsx index a317df114..21bbca406 100644 --- a/src/defs/Book.tsx +++ b/src/defs/Book.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/BookBookmark.tsx b/src/defs/BookBookmark.tsx index 4a17bdd70..fc94089e3 100644 --- a/src/defs/BookBookmark.tsx +++ b/src/defs/BookBookmark.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/BookOpen.tsx b/src/defs/BookOpen.tsx index 34dc0777e..b9ac99360 100644 --- a/src/defs/BookOpen.tsx +++ b/src/defs/BookOpen.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/BookOpenText.tsx b/src/defs/BookOpenText.tsx index fb7af85d1..c953bddf1 100644 --- a/src/defs/BookOpenText.tsx +++ b/src/defs/BookOpenText.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/BookOpenUser.tsx b/src/defs/BookOpenUser.tsx index d53863239..557763716 100644 --- a/src/defs/BookOpenUser.tsx +++ b/src/defs/BookOpenUser.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/Bookmark.tsx b/src/defs/Bookmark.tsx index c293f6bae..ac7feece3 100644 --- a/src/defs/Bookmark.tsx +++ b/src/defs/Bookmark.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/BookmarkSimple.tsx b/src/defs/BookmarkSimple.tsx index 309c8586b..481e4afa8 100644 --- a/src/defs/BookmarkSimple.tsx +++ b/src/defs/BookmarkSimple.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/Bookmarks.tsx b/src/defs/Bookmarks.tsx index 116c334ce..4a6270b68 100644 --- a/src/defs/Bookmarks.tsx +++ b/src/defs/Bookmarks.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/BookmarksSimple.tsx b/src/defs/BookmarksSimple.tsx index ffedb87c9..6e6c57bc0 100644 --- a/src/defs/BookmarksSimple.tsx +++ b/src/defs/BookmarksSimple.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -29,20 +27,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/Books.tsx b/src/defs/Books.tsx index e6b514588..0f72900c2 100644 --- a/src/defs/Books.tsx +++ b/src/defs/Books.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/Boot.tsx b/src/defs/Boot.tsx index aef4d09c9..7828a3c4c 100644 --- a/src/defs/Boot.tsx +++ b/src/defs/Boot.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/Boules.tsx b/src/defs/Boules.tsx index 7ef5f54ce..0ef5ed8db 100644 --- a/src/defs/Boules.tsx +++ b/src/defs/Boules.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/BoundingBox.tsx b/src/defs/BoundingBox.tsx index 44bb336a2..7944a2064 100644 --- a/src/defs/BoundingBox.tsx +++ b/src/defs/BoundingBox.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/BowlFood.tsx b/src/defs/BowlFood.tsx index feecb5741..d3201dd2d 100644 --- a/src/defs/BowlFood.tsx +++ b/src/defs/BowlFood.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/BowlSteam.tsx b/src/defs/BowlSteam.tsx index 605e1a483..f1ab1e758 100644 --- a/src/defs/BowlSteam.tsx +++ b/src/defs/BowlSteam.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/BowlingBall.tsx b/src/defs/BowlingBall.tsx index 824a95312..8c3ae34df 100644 --- a/src/defs/BowlingBall.tsx +++ b/src/defs/BowlingBall.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/BoxArrowDown.tsx b/src/defs/BoxArrowDown.tsx index 005000231..fd71860c3 100644 --- a/src/defs/BoxArrowDown.tsx +++ b/src/defs/BoxArrowDown.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/BoxArrowUp.tsx b/src/defs/BoxArrowUp.tsx index 20f8fda61..4dc10086a 100644 --- a/src/defs/BoxArrowUp.tsx +++ b/src/defs/BoxArrowUp.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/BoxingGlove.tsx b/src/defs/BoxingGlove.tsx index d2780fb7b..405a5f7ad 100644 --- a/src/defs/BoxingGlove.tsx +++ b/src/defs/BoxingGlove.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/BracketsAngle.tsx b/src/defs/BracketsAngle.tsx index a55618b2f..c30a2f9db 100644 --- a/src/defs/BracketsAngle.tsx +++ b/src/defs/BracketsAngle.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/BracketsCurly.tsx b/src/defs/BracketsCurly.tsx index e280c98e0..3e7b44d4e 100644 --- a/src/defs/BracketsCurly.tsx +++ b/src/defs/BracketsCurly.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/BracketsRound.tsx b/src/defs/BracketsRound.tsx index 63e8f1522..0efaf5e46 100644 --- a/src/defs/BracketsRound.tsx +++ b/src/defs/BracketsRound.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/BracketsSquare.tsx b/src/defs/BracketsSquare.tsx index 3b3ab1056..8dd182f92 100644 --- a/src/defs/BracketsSquare.tsx +++ b/src/defs/BracketsSquare.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/Brain.tsx b/src/defs/Brain.tsx index 892e399df..768db2eae 100644 --- a/src/defs/Brain.tsx +++ b/src/defs/Brain.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/Brandy.tsx b/src/defs/Brandy.tsx index 43f307280..9d1f1fc2e 100644 --- a/src/defs/Brandy.tsx +++ b/src/defs/Brandy.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/Bread.tsx b/src/defs/Bread.tsx index e31cb45b9..ec89d2ef3 100644 --- a/src/defs/Bread.tsx +++ b/src/defs/Bread.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/Bridge.tsx b/src/defs/Bridge.tsx index d88015997..f95ecd67b 100644 --- a/src/defs/Bridge.tsx +++ b/src/defs/Bridge.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/Briefcase.tsx b/src/defs/Briefcase.tsx index 4d03ddb94..9061eca02 100644 --- a/src/defs/Briefcase.tsx +++ b/src/defs/Briefcase.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/BriefcaseMetal.tsx b/src/defs/BriefcaseMetal.tsx index 06ff4c01d..6826a4c25 100644 --- a/src/defs/BriefcaseMetal.tsx +++ b/src/defs/BriefcaseMetal.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/Broadcast.tsx b/src/defs/Broadcast.tsx index 8013ef667..999556c18 100644 --- a/src/defs/Broadcast.tsx +++ b/src/defs/Broadcast.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/Broom.tsx b/src/defs/Broom.tsx index ba8a47c06..3ecdcb49a 100644 --- a/src/defs/Broom.tsx +++ b/src/defs/Broom.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/Browser.tsx b/src/defs/Browser.tsx index 650901aa9..dbd85bbdd 100644 --- a/src/defs/Browser.tsx +++ b/src/defs/Browser.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/Browsers.tsx b/src/defs/Browsers.tsx index bd99a37c8..4a67aacf0 100644 --- a/src/defs/Browsers.tsx +++ b/src/defs/Browsers.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/Bug.tsx b/src/defs/Bug.tsx index 3ecb97639..a650b63e9 100644 --- a/src/defs/Bug.tsx +++ b/src/defs/Bug.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/BugBeetle.tsx b/src/defs/BugBeetle.tsx index b9e552df9..d0216d141 100644 --- a/src/defs/BugBeetle.tsx +++ b/src/defs/BugBeetle.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/BugDroid.tsx b/src/defs/BugDroid.tsx index 1191e4637..69165dd72 100644 --- a/src/defs/BugDroid.tsx +++ b/src/defs/BugDroid.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/Building.tsx b/src/defs/Building.tsx index a79525951..ed3c2cbf4 100644 --- a/src/defs/Building.tsx +++ b/src/defs/Building.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/BuildingApartment.tsx b/src/defs/BuildingApartment.tsx index 7f09eef86..4bb4c7b15 100644 --- a/src/defs/BuildingApartment.tsx +++ b/src/defs/BuildingApartment.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/BuildingOffice.tsx b/src/defs/BuildingOffice.tsx index a5b859436..76d20f644 100644 --- a/src/defs/BuildingOffice.tsx +++ b/src/defs/BuildingOffice.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/Buildings.tsx b/src/defs/Buildings.tsx index 43d91f53c..e53d0ee00 100644 --- a/src/defs/Buildings.tsx +++ b/src/defs/Buildings.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/Bulldozer.tsx b/src/defs/Bulldozer.tsx index 49a877507..5d4d9d6fa 100644 --- a/src/defs/Bulldozer.tsx +++ b/src/defs/Bulldozer.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/Bus.tsx b/src/defs/Bus.tsx index 2f9fd8906..e33f9cfc9 100644 --- a/src/defs/Bus.tsx +++ b/src/defs/Bus.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/Butterfly.tsx b/src/defs/Butterfly.tsx index cfb8237aa..1cb44c533 100644 --- a/src/defs/Butterfly.tsx +++ b/src/defs/Butterfly.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/CableCar.tsx b/src/defs/CableCar.tsx index fca3a6b1d..5b376e2a3 100644 --- a/src/defs/CableCar.tsx +++ b/src/defs/CableCar.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/Cactus.tsx b/src/defs/Cactus.tsx index df11e6c2d..9e60f97ee 100644 --- a/src/defs/Cactus.tsx +++ b/src/defs/Cactus.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/Cake.tsx b/src/defs/Cake.tsx index 583b53f21..c447b1294 100644 --- a/src/defs/Cake.tsx +++ b/src/defs/Cake.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/Calculator.tsx b/src/defs/Calculator.tsx index 6dd07e390..c798fe493 100644 --- a/src/defs/Calculator.tsx +++ b/src/defs/Calculator.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/Calendar.tsx b/src/defs/Calendar.tsx index abae92669..bd7e09b20 100644 --- a/src/defs/Calendar.tsx +++ b/src/defs/Calendar.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/CalendarBlank.tsx b/src/defs/CalendarBlank.tsx index 27a9f622b..17a17b1a4 100644 --- a/src/defs/CalendarBlank.tsx +++ b/src/defs/CalendarBlank.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/CalendarCheck.tsx b/src/defs/CalendarCheck.tsx index b44d92251..ed0d2de11 100644 --- a/src/defs/CalendarCheck.tsx +++ b/src/defs/CalendarCheck.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/CalendarDot.tsx b/src/defs/CalendarDot.tsx index ad0001c12..d32d71386 100644 --- a/src/defs/CalendarDot.tsx +++ b/src/defs/CalendarDot.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/CalendarDots.tsx b/src/defs/CalendarDots.tsx index 97a8d8118..8f5b6366c 100644 --- a/src/defs/CalendarDots.tsx +++ b/src/defs/CalendarDots.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/CalendarHeart.tsx b/src/defs/CalendarHeart.tsx index f856a17fc..31d88ff53 100644 --- a/src/defs/CalendarHeart.tsx +++ b/src/defs/CalendarHeart.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/CalendarMinus.tsx b/src/defs/CalendarMinus.tsx index 5c3eacceb..d2e6f30b7 100644 --- a/src/defs/CalendarMinus.tsx +++ b/src/defs/CalendarMinus.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/CalendarPlus.tsx b/src/defs/CalendarPlus.tsx index c1262edec..70e0c19f0 100644 --- a/src/defs/CalendarPlus.tsx +++ b/src/defs/CalendarPlus.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/CalendarSlash.tsx b/src/defs/CalendarSlash.tsx index f4c5be0c5..d07508ea8 100644 --- a/src/defs/CalendarSlash.tsx +++ b/src/defs/CalendarSlash.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/CalendarStar.tsx b/src/defs/CalendarStar.tsx index 5f0380e5e..c5aebf8e0 100644 --- a/src/defs/CalendarStar.tsx +++ b/src/defs/CalendarStar.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/CalendarX.tsx b/src/defs/CalendarX.tsx index 4cc525a37..88ec82b88 100644 --- a/src/defs/CalendarX.tsx +++ b/src/defs/CalendarX.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/CallBell.tsx b/src/defs/CallBell.tsx index 8657db474..13c27a655 100644 --- a/src/defs/CallBell.tsx +++ b/src/defs/CallBell.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/Camera.tsx b/src/defs/Camera.tsx index d3aebb39b..856a0cc90 100644 --- a/src/defs/Camera.tsx +++ b/src/defs/Camera.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/CameraPlus.tsx b/src/defs/CameraPlus.tsx index fdf47d54a..a078e59e1 100644 --- a/src/defs/CameraPlus.tsx +++ b/src/defs/CameraPlus.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/CameraRotate.tsx b/src/defs/CameraRotate.tsx index c5b3ecbc2..4fd775450 100644 --- a/src/defs/CameraRotate.tsx +++ b/src/defs/CameraRotate.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/CameraSlash.tsx b/src/defs/CameraSlash.tsx index 79eb090ba..a0ecedd60 100644 --- a/src/defs/CameraSlash.tsx +++ b/src/defs/CameraSlash.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/Campfire.tsx b/src/defs/Campfire.tsx index 01c322eec..0321cb7ec 100644 --- a/src/defs/Campfire.tsx +++ b/src/defs/Campfire.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/Car.tsx b/src/defs/Car.tsx index 200a8ba81..88dd12793 100644 --- a/src/defs/Car.tsx +++ b/src/defs/Car.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/CarBattery.tsx b/src/defs/CarBattery.tsx index 822ce8377..52ab536aa 100644 --- a/src/defs/CarBattery.tsx +++ b/src/defs/CarBattery.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/CarProfile.tsx b/src/defs/CarProfile.tsx index debda5aa3..64ba9b305 100644 --- a/src/defs/CarProfile.tsx +++ b/src/defs/CarProfile.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/CarSimple.tsx b/src/defs/CarSimple.tsx index 0c5bc58e5..e4cfb954e 100644 --- a/src/defs/CarSimple.tsx +++ b/src/defs/CarSimple.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/Cardholder.tsx b/src/defs/Cardholder.tsx index 2893410fe..ded33bdc1 100644 --- a/src/defs/Cardholder.tsx +++ b/src/defs/Cardholder.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/Cards.tsx b/src/defs/Cards.tsx index 0fb223c27..e5a0d0509 100644 --- a/src/defs/Cards.tsx +++ b/src/defs/Cards.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/CardsThree.tsx b/src/defs/CardsThree.tsx index 93ebebebc..75e573122 100644 --- a/src/defs/CardsThree.tsx +++ b/src/defs/CardsThree.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/CaretCircleDoubleDown.tsx b/src/defs/CaretCircleDoubleDown.tsx index 992134781..1517dfe64 100644 --- a/src/defs/CaretCircleDoubleDown.tsx +++ b/src/defs/CaretCircleDoubleDown.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/CaretCircleDoubleLeft.tsx b/src/defs/CaretCircleDoubleLeft.tsx index fd28f1a2d..ceebc03c8 100644 --- a/src/defs/CaretCircleDoubleLeft.tsx +++ b/src/defs/CaretCircleDoubleLeft.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/CaretCircleDoubleRight.tsx b/src/defs/CaretCircleDoubleRight.tsx index 47d1577d8..61b982577 100644 --- a/src/defs/CaretCircleDoubleRight.tsx +++ b/src/defs/CaretCircleDoubleRight.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/CaretCircleDoubleUp.tsx b/src/defs/CaretCircleDoubleUp.tsx index 6c67f75b3..c6d15d131 100644 --- a/src/defs/CaretCircleDoubleUp.tsx +++ b/src/defs/CaretCircleDoubleUp.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/CaretCircleDown.tsx b/src/defs/CaretCircleDown.tsx index 9b7986837..10e009b4a 100644 --- a/src/defs/CaretCircleDown.tsx +++ b/src/defs/CaretCircleDown.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/CaretCircleLeft.tsx b/src/defs/CaretCircleLeft.tsx index b4b649132..3e5381d2b 100644 --- a/src/defs/CaretCircleLeft.tsx +++ b/src/defs/CaretCircleLeft.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/CaretCircleRight.tsx b/src/defs/CaretCircleRight.tsx index e262163fc..ea54794af 100644 --- a/src/defs/CaretCircleRight.tsx +++ b/src/defs/CaretCircleRight.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/CaretCircleUp.tsx b/src/defs/CaretCircleUp.tsx index 433d84810..6c26b3688 100644 --- a/src/defs/CaretCircleUp.tsx +++ b/src/defs/CaretCircleUp.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/CaretCircleUpDown.tsx b/src/defs/CaretCircleUpDown.tsx index 910b42669..a04dce21a 100644 --- a/src/defs/CaretCircleUpDown.tsx +++ b/src/defs/CaretCircleUpDown.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/CaretDoubleDown.tsx b/src/defs/CaretDoubleDown.tsx index b63888e47..3bfbe8673 100644 --- a/src/defs/CaretDoubleDown.tsx +++ b/src/defs/CaretDoubleDown.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/CaretDoubleLeft.tsx b/src/defs/CaretDoubleLeft.tsx index 4f66258f9..b0bd07e46 100644 --- a/src/defs/CaretDoubleLeft.tsx +++ b/src/defs/CaretDoubleLeft.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/CaretDoubleRight.tsx b/src/defs/CaretDoubleRight.tsx index c6061f054..e67d8fddc 100644 --- a/src/defs/CaretDoubleRight.tsx +++ b/src/defs/CaretDoubleRight.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/CaretDoubleUp.tsx b/src/defs/CaretDoubleUp.tsx index 00bc80d2b..424b2b0a5 100644 --- a/src/defs/CaretDoubleUp.tsx +++ b/src/defs/CaretDoubleUp.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/CaretDown.tsx b/src/defs/CaretDown.tsx index 1a4fe7e1e..161105b53 100644 --- a/src/defs/CaretDown.tsx +++ b/src/defs/CaretDown.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/CaretLeft.tsx b/src/defs/CaretLeft.tsx index d503dee9c..173f57b19 100644 --- a/src/defs/CaretLeft.tsx +++ b/src/defs/CaretLeft.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/CaretLineDown.tsx b/src/defs/CaretLineDown.tsx index 21e03ff30..8a1fbfdc7 100644 --- a/src/defs/CaretLineDown.tsx +++ b/src/defs/CaretLineDown.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/CaretLineLeft.tsx b/src/defs/CaretLineLeft.tsx index 200f382e4..a3d145f08 100644 --- a/src/defs/CaretLineLeft.tsx +++ b/src/defs/CaretLineLeft.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/CaretLineRight.tsx b/src/defs/CaretLineRight.tsx index 4eb7b4985..8a7828231 100644 --- a/src/defs/CaretLineRight.tsx +++ b/src/defs/CaretLineRight.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/CaretLineUp.tsx b/src/defs/CaretLineUp.tsx index 014532b75..c5bc07870 100644 --- a/src/defs/CaretLineUp.tsx +++ b/src/defs/CaretLineUp.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/CaretRight.tsx b/src/defs/CaretRight.tsx index 67114e8aa..4c0ae4b4a 100644 --- a/src/defs/CaretRight.tsx +++ b/src/defs/CaretRight.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/CaretUp.tsx b/src/defs/CaretUp.tsx index 026b5105c..db4bea392 100644 --- a/src/defs/CaretUp.tsx +++ b/src/defs/CaretUp.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/CaretUpDown.tsx b/src/defs/CaretUpDown.tsx index 9981d867c..5c7593274 100644 --- a/src/defs/CaretUpDown.tsx +++ b/src/defs/CaretUpDown.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/Carrot.tsx b/src/defs/Carrot.tsx index d53299446..9fa665eaa 100644 --- a/src/defs/Carrot.tsx +++ b/src/defs/Carrot.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/CashRegister.tsx b/src/defs/CashRegister.tsx index 9a2d45fed..0254e5507 100644 --- a/src/defs/CashRegister.tsx +++ b/src/defs/CashRegister.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/CassetteTape.tsx b/src/defs/CassetteTape.tsx index 0c061fa61..fb1b87ecd 100644 --- a/src/defs/CassetteTape.tsx +++ b/src/defs/CassetteTape.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/CastleTurret.tsx b/src/defs/CastleTurret.tsx index 4513ac882..cf7ba210e 100644 --- a/src/defs/CastleTurret.tsx +++ b/src/defs/CastleTurret.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/Cat.tsx b/src/defs/Cat.tsx index 5b424237c..e29c2d553 100644 --- a/src/defs/Cat.tsx +++ b/src/defs/Cat.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/CellSignalFull.tsx b/src/defs/CellSignalFull.tsx index 79def508a..927c4fc44 100644 --- a/src/defs/CellSignalFull.tsx +++ b/src/defs/CellSignalFull.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/CellSignalHigh.tsx b/src/defs/CellSignalHigh.tsx index 91a2e31a8..5831f26c3 100644 --- a/src/defs/CellSignalHigh.tsx +++ b/src/defs/CellSignalHigh.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/CellSignalLow.tsx b/src/defs/CellSignalLow.tsx index 780cb8951..a73f2e449 100644 --- a/src/defs/CellSignalLow.tsx +++ b/src/defs/CellSignalLow.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/CellSignalMedium.tsx b/src/defs/CellSignalMedium.tsx index 9930f42c7..90df7aad8 100644 --- a/src/defs/CellSignalMedium.tsx +++ b/src/defs/CellSignalMedium.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/CellSignalNone.tsx b/src/defs/CellSignalNone.tsx index 134f7f51e..d30275645 100644 --- a/src/defs/CellSignalNone.tsx +++ b/src/defs/CellSignalNone.tsx @@ -4,40 +4,16 @@ import type { ReactElement } from "react"; import { IconWeight } from "../lib"; export default new Map([ - [ - "bold", - <> - - , - ], + ["bold", ], [ "duotone", - <> - - , + , ], [ "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , + , ], + ["light", ], + ["regular", ], + ["thin", ], ]); diff --git a/src/defs/CellSignalSlash.tsx b/src/defs/CellSignalSlash.tsx index 115cfb8c5..b9f0c4ff6 100644 --- a/src/defs/CellSignalSlash.tsx +++ b/src/defs/CellSignalSlash.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/CellSignalX.tsx b/src/defs/CellSignalX.tsx index 4cf14f2bf..5fe637870 100644 --- a/src/defs/CellSignalX.tsx +++ b/src/defs/CellSignalX.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/CellTower.tsx b/src/defs/CellTower.tsx index 4466a1423..b83670a42 100644 --- a/src/defs/CellTower.tsx +++ b/src/defs/CellTower.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/Certificate.tsx b/src/defs/Certificate.tsx index 537dae290..cf3d3b0f6 100644 --- a/src/defs/Certificate.tsx +++ b/src/defs/Certificate.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/Chair.tsx b/src/defs/Chair.tsx index f558d70d1..609806c95 100644 --- a/src/defs/Chair.tsx +++ b/src/defs/Chair.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/Chalkboard.tsx b/src/defs/Chalkboard.tsx index 23b5e7aa6..fdea24f8a 100644 --- a/src/defs/Chalkboard.tsx +++ b/src/defs/Chalkboard.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/ChalkboardSimple.tsx b/src/defs/ChalkboardSimple.tsx index adc6c904e..9f44835d0 100644 --- a/src/defs/ChalkboardSimple.tsx +++ b/src/defs/ChalkboardSimple.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/ChalkboardTeacher.tsx b/src/defs/ChalkboardTeacher.tsx index 2a6e432ec..bfa8a74d3 100644 --- a/src/defs/ChalkboardTeacher.tsx +++ b/src/defs/ChalkboardTeacher.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/Champagne.tsx b/src/defs/Champagne.tsx index 091717707..d21ed7daa 100644 --- a/src/defs/Champagne.tsx +++ b/src/defs/Champagne.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/ChargingStation.tsx b/src/defs/ChargingStation.tsx index bc5ff2b8b..b29b4c405 100644 --- a/src/defs/ChargingStation.tsx +++ b/src/defs/ChargingStation.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/ChartBar.tsx b/src/defs/ChartBar.tsx index 805f68fd4..67b410cb6 100644 --- a/src/defs/ChartBar.tsx +++ b/src/defs/ChartBar.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/ChartBarHorizontal.tsx b/src/defs/ChartBarHorizontal.tsx index adb89125f..efc5e5070 100644 --- a/src/defs/ChartBarHorizontal.tsx +++ b/src/defs/ChartBarHorizontal.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/ChartDonut.tsx b/src/defs/ChartDonut.tsx index 6ad2f8501..465dffa61 100644 --- a/src/defs/ChartDonut.tsx +++ b/src/defs/ChartDonut.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/ChartLine.tsx b/src/defs/ChartLine.tsx index 7e6e26718..d27b3a1f7 100644 --- a/src/defs/ChartLine.tsx +++ b/src/defs/ChartLine.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/ChartLineDown.tsx b/src/defs/ChartLineDown.tsx index 473518edd..9046870f1 100644 --- a/src/defs/ChartLineDown.tsx +++ b/src/defs/ChartLineDown.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/ChartLineUp.tsx b/src/defs/ChartLineUp.tsx index 6196fa7f9..f56ef9def 100644 --- a/src/defs/ChartLineUp.tsx +++ b/src/defs/ChartLineUp.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/ChartPie.tsx b/src/defs/ChartPie.tsx index b54be82e6..8da21a85b 100644 --- a/src/defs/ChartPie.tsx +++ b/src/defs/ChartPie.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/ChartPieSlice.tsx b/src/defs/ChartPieSlice.tsx index 7df9d513f..d804b3800 100644 --- a/src/defs/ChartPieSlice.tsx +++ b/src/defs/ChartPieSlice.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/ChartPolar.tsx b/src/defs/ChartPolar.tsx index 90b607c34..c873eedfe 100644 --- a/src/defs/ChartPolar.tsx +++ b/src/defs/ChartPolar.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/ChartScatter.tsx b/src/defs/ChartScatter.tsx index afff6ef80..a3ad8ccc7 100644 --- a/src/defs/ChartScatter.tsx +++ b/src/defs/ChartScatter.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/Chat.tsx b/src/defs/Chat.tsx index 01acfdb30..268d5146f 100644 --- a/src/defs/Chat.tsx +++ b/src/defs/Chat.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/ChatCentered.tsx b/src/defs/ChatCentered.tsx index 07a20f2a6..1543878c8 100644 --- a/src/defs/ChatCentered.tsx +++ b/src/defs/ChatCentered.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/ChatCenteredDots.tsx b/src/defs/ChatCenteredDots.tsx index 18c610a08..191f49941 100644 --- a/src/defs/ChatCenteredDots.tsx +++ b/src/defs/ChatCenteredDots.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/ChatCenteredSlash.tsx b/src/defs/ChatCenteredSlash.tsx index ae9e8abe3..435725053 100644 --- a/src/defs/ChatCenteredSlash.tsx +++ b/src/defs/ChatCenteredSlash.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/ChatCenteredText.tsx b/src/defs/ChatCenteredText.tsx index 86da4d07e..a794e333d 100644 --- a/src/defs/ChatCenteredText.tsx +++ b/src/defs/ChatCenteredText.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/ChatCircle.tsx b/src/defs/ChatCircle.tsx index 73ac35da0..14e242163 100644 --- a/src/defs/ChatCircle.tsx +++ b/src/defs/ChatCircle.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/ChatCircleDots.tsx b/src/defs/ChatCircleDots.tsx index 666b25e91..89cca34bb 100644 --- a/src/defs/ChatCircleDots.tsx +++ b/src/defs/ChatCircleDots.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/ChatCircleSlash.tsx b/src/defs/ChatCircleSlash.tsx index cd97d3953..79c7f819b 100644 --- a/src/defs/ChatCircleSlash.tsx +++ b/src/defs/ChatCircleSlash.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/ChatCircleText.tsx b/src/defs/ChatCircleText.tsx index 3391b54b5..4565ed33c 100644 --- a/src/defs/ChatCircleText.tsx +++ b/src/defs/ChatCircleText.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/ChatDots.tsx b/src/defs/ChatDots.tsx index 59159a3b9..6d1d2ef92 100644 --- a/src/defs/ChatDots.tsx +++ b/src/defs/ChatDots.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/ChatSlash.tsx b/src/defs/ChatSlash.tsx index 20eb45465..b53ceab2a 100644 --- a/src/defs/ChatSlash.tsx +++ b/src/defs/ChatSlash.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/ChatTeardrop.tsx b/src/defs/ChatTeardrop.tsx index 5d56bafdd..2ad840f44 100644 --- a/src/defs/ChatTeardrop.tsx +++ b/src/defs/ChatTeardrop.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/ChatTeardropDots.tsx b/src/defs/ChatTeardropDots.tsx index 089021b54..cec1588ad 100644 --- a/src/defs/ChatTeardropDots.tsx +++ b/src/defs/ChatTeardropDots.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/ChatTeardropSlash.tsx b/src/defs/ChatTeardropSlash.tsx index 624afcc76..655027250 100644 --- a/src/defs/ChatTeardropSlash.tsx +++ b/src/defs/ChatTeardropSlash.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/ChatTeardropText.tsx b/src/defs/ChatTeardropText.tsx index 811d3d14f..bae9a145c 100644 --- a/src/defs/ChatTeardropText.tsx +++ b/src/defs/ChatTeardropText.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/ChatText.tsx b/src/defs/ChatText.tsx index ab2831c34..2fa03305a 100644 --- a/src/defs/ChatText.tsx +++ b/src/defs/ChatText.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/Chats.tsx b/src/defs/Chats.tsx index 625b01ab8..3b155aae3 100644 --- a/src/defs/Chats.tsx +++ b/src/defs/Chats.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/ChatsCircle.tsx b/src/defs/ChatsCircle.tsx index 661bd8502..8aac2b26b 100644 --- a/src/defs/ChatsCircle.tsx +++ b/src/defs/ChatsCircle.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/ChatsTeardrop.tsx b/src/defs/ChatsTeardrop.tsx index 19e96d177..515eb9a0f 100644 --- a/src/defs/ChatsTeardrop.tsx +++ b/src/defs/ChatsTeardrop.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/Check.tsx b/src/defs/Check.tsx index c25d7a9c1..a0c7ca70b 100644 --- a/src/defs/Check.tsx +++ b/src/defs/Check.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/CheckCircle.tsx b/src/defs/CheckCircle.tsx index e3df97da9..0b34ab273 100644 --- a/src/defs/CheckCircle.tsx +++ b/src/defs/CheckCircle.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/CheckFat.tsx b/src/defs/CheckFat.tsx index 7185e700a..7eeb2a675 100644 --- a/src/defs/CheckFat.tsx +++ b/src/defs/CheckFat.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/CheckSquare.tsx b/src/defs/CheckSquare.tsx index cb80cae3e..ad525fc54 100644 --- a/src/defs/CheckSquare.tsx +++ b/src/defs/CheckSquare.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/CheckSquareOffset.tsx b/src/defs/CheckSquareOffset.tsx index 52651b3e4..dff6bb3a2 100644 --- a/src/defs/CheckSquareOffset.tsx +++ b/src/defs/CheckSquareOffset.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/Checkerboard.tsx b/src/defs/Checkerboard.tsx index ebc6f000b..122abb551 100644 --- a/src/defs/Checkerboard.tsx +++ b/src/defs/Checkerboard.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/Checks.tsx b/src/defs/Checks.tsx index 2e380578d..427616e85 100644 --- a/src/defs/Checks.tsx +++ b/src/defs/Checks.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/Cheers.tsx b/src/defs/Cheers.tsx index 9ed1613ad..1af562110 100644 --- a/src/defs/Cheers.tsx +++ b/src/defs/Cheers.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/Cheese.tsx b/src/defs/Cheese.tsx index 7234723ec..21e9ae286 100644 --- a/src/defs/Cheese.tsx +++ b/src/defs/Cheese.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/ChefHat.tsx b/src/defs/ChefHat.tsx index 6a43f2f79..f728726cb 100644 --- a/src/defs/ChefHat.tsx +++ b/src/defs/ChefHat.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/Cherries.tsx b/src/defs/Cherries.tsx index 3a32925c6..d27537cc7 100644 --- a/src/defs/Cherries.tsx +++ b/src/defs/Cherries.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/Church.tsx b/src/defs/Church.tsx index ea5cfeefe..1748445be 100644 --- a/src/defs/Church.tsx +++ b/src/defs/Church.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/Cigarette.tsx b/src/defs/Cigarette.tsx index c7c51bc4a..0c2518fc2 100644 --- a/src/defs/Cigarette.tsx +++ b/src/defs/Cigarette.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/CigaretteSlash.tsx b/src/defs/CigaretteSlash.tsx index 4b0c750e2..5e602554f 100644 --- a/src/defs/CigaretteSlash.tsx +++ b/src/defs/CigaretteSlash.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/Circle.tsx b/src/defs/Circle.tsx index e0aa53f82..e98d98724 100644 --- a/src/defs/Circle.tsx +++ b/src/defs/Circle.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/CircleDashed.tsx b/src/defs/CircleDashed.tsx index 7640c517f..e8508e02c 100644 --- a/src/defs/CircleDashed.tsx +++ b/src/defs/CircleDashed.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/CircleHalf.tsx b/src/defs/CircleHalf.tsx index 17251119d..c2e134e79 100644 --- a/src/defs/CircleHalf.tsx +++ b/src/defs/CircleHalf.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/CircleHalfTilt.tsx b/src/defs/CircleHalfTilt.tsx index b1b20d1e5..03d4e42b5 100644 --- a/src/defs/CircleHalfTilt.tsx +++ b/src/defs/CircleHalfTilt.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/CircleNotch.tsx b/src/defs/CircleNotch.tsx index 3a1151fca..dac828b29 100644 --- a/src/defs/CircleNotch.tsx +++ b/src/defs/CircleNotch.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/CirclesFour.tsx b/src/defs/CirclesFour.tsx index e6a662427..63a1dcebe 100644 --- a/src/defs/CirclesFour.tsx +++ b/src/defs/CirclesFour.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/CirclesThree.tsx b/src/defs/CirclesThree.tsx index d7a87c3d1..407b1bd62 100644 --- a/src/defs/CirclesThree.tsx +++ b/src/defs/CirclesThree.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/CirclesThreePlus.tsx b/src/defs/CirclesThreePlus.tsx index 201d43b21..0d6ed9b01 100644 --- a/src/defs/CirclesThreePlus.tsx +++ b/src/defs/CirclesThreePlus.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/Circuitry.tsx b/src/defs/Circuitry.tsx index ce432b7eb..68f306bb8 100644 --- a/src/defs/Circuitry.tsx +++ b/src/defs/Circuitry.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/City.tsx b/src/defs/City.tsx index 54e124f45..11804adbf 100644 --- a/src/defs/City.tsx +++ b/src/defs/City.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/Clipboard.tsx b/src/defs/Clipboard.tsx index d681e9338..cd22f1d7e 100644 --- a/src/defs/Clipboard.tsx +++ b/src/defs/Clipboard.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/ClipboardText.tsx b/src/defs/ClipboardText.tsx index 7770fb79f..217f24b28 100644 --- a/src/defs/ClipboardText.tsx +++ b/src/defs/ClipboardText.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/Clock.tsx b/src/defs/Clock.tsx index c778d6342..2f4f88935 100644 --- a/src/defs/Clock.tsx +++ b/src/defs/Clock.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/ClockAfternoon.tsx b/src/defs/ClockAfternoon.tsx index b40a0f742..31f3d2d7d 100644 --- a/src/defs/ClockAfternoon.tsx +++ b/src/defs/ClockAfternoon.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/ClockClockwise.tsx b/src/defs/ClockClockwise.tsx index 55767c254..45118f315 100644 --- a/src/defs/ClockClockwise.tsx +++ b/src/defs/ClockClockwise.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/ClockCountdown.tsx b/src/defs/ClockCountdown.tsx index d7c147ef4..8cd475a15 100644 --- a/src/defs/ClockCountdown.tsx +++ b/src/defs/ClockCountdown.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/ClockCounterClockwise.tsx b/src/defs/ClockCounterClockwise.tsx index ee06cc252..cb610ff76 100644 --- a/src/defs/ClockCounterClockwise.tsx +++ b/src/defs/ClockCounterClockwise.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/ClockUser.tsx b/src/defs/ClockUser.tsx index dd4e9d3e2..5c7ecaa54 100644 --- a/src/defs/ClockUser.tsx +++ b/src/defs/ClockUser.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/ClosedCaptioning.tsx b/src/defs/ClosedCaptioning.tsx index c4c800925..293138dc0 100644 --- a/src/defs/ClosedCaptioning.tsx +++ b/src/defs/ClosedCaptioning.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/Cloud.tsx b/src/defs/Cloud.tsx index d1e2be235..31d8fb417 100644 --- a/src/defs/Cloud.tsx +++ b/src/defs/Cloud.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/CloudArrowDown.tsx b/src/defs/CloudArrowDown.tsx index 9bbab3614..f34d9cab4 100644 --- a/src/defs/CloudArrowDown.tsx +++ b/src/defs/CloudArrowDown.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/CloudArrowUp.tsx b/src/defs/CloudArrowUp.tsx index 5e9e98b0b..e86abfc9b 100644 --- a/src/defs/CloudArrowUp.tsx +++ b/src/defs/CloudArrowUp.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/CloudCheck.tsx b/src/defs/CloudCheck.tsx index c12745c5a..713a1ca47 100644 --- a/src/defs/CloudCheck.tsx +++ b/src/defs/CloudCheck.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/CloudFog.tsx b/src/defs/CloudFog.tsx index 6c45355ca..c0bf08709 100644 --- a/src/defs/CloudFog.tsx +++ b/src/defs/CloudFog.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/CloudLightning.tsx b/src/defs/CloudLightning.tsx index 9402f3836..cf7c80b1e 100644 --- a/src/defs/CloudLightning.tsx +++ b/src/defs/CloudLightning.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/CloudMoon.tsx b/src/defs/CloudMoon.tsx index 4df62a3ca..e450367ed 100644 --- a/src/defs/CloudMoon.tsx +++ b/src/defs/CloudMoon.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/CloudRain.tsx b/src/defs/CloudRain.tsx index 8898e6f87..5939057fd 100644 --- a/src/defs/CloudRain.tsx +++ b/src/defs/CloudRain.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/CloudSlash.tsx b/src/defs/CloudSlash.tsx index a70497e40..1597062f9 100644 --- a/src/defs/CloudSlash.tsx +++ b/src/defs/CloudSlash.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/CloudSnow.tsx b/src/defs/CloudSnow.tsx index 0bd7ca044..37b9e0c9a 100644 --- a/src/defs/CloudSnow.tsx +++ b/src/defs/CloudSnow.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/CloudSun.tsx b/src/defs/CloudSun.tsx index 6eb44e4a8..a952aa141 100644 --- a/src/defs/CloudSun.tsx +++ b/src/defs/CloudSun.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/CloudWarning.tsx b/src/defs/CloudWarning.tsx index b190c81ce..3f309c3df 100644 --- a/src/defs/CloudWarning.tsx +++ b/src/defs/CloudWarning.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/CloudX.tsx b/src/defs/CloudX.tsx index 487554bc9..7c81caaef 100644 --- a/src/defs/CloudX.tsx +++ b/src/defs/CloudX.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/Clover.tsx b/src/defs/Clover.tsx index 9346f57e3..5523932be 100644 --- a/src/defs/Clover.tsx +++ b/src/defs/Clover.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/Club.tsx b/src/defs/Club.tsx index b08412ecb..e649f907d 100644 --- a/src/defs/Club.tsx +++ b/src/defs/Club.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/CoatHanger.tsx b/src/defs/CoatHanger.tsx index 72bd5978f..8a0a2612f 100644 --- a/src/defs/CoatHanger.tsx +++ b/src/defs/CoatHanger.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/CodaLogo.tsx b/src/defs/CodaLogo.tsx index 966583348..641d2978d 100644 --- a/src/defs/CodaLogo.tsx +++ b/src/defs/CodaLogo.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/Code.tsx b/src/defs/Code.tsx index f7c2291ce..1cf199a1e 100644 --- a/src/defs/Code.tsx +++ b/src/defs/Code.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/CodeBlock.tsx b/src/defs/CodeBlock.tsx index e13d35269..8eebc8401 100644 --- a/src/defs/CodeBlock.tsx +++ b/src/defs/CodeBlock.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/CodeSimple.tsx b/src/defs/CodeSimple.tsx index f2c58cd6e..c970eab56 100644 --- a/src/defs/CodeSimple.tsx +++ b/src/defs/CodeSimple.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/CodepenLogo.tsx b/src/defs/CodepenLogo.tsx index a9d1e054b..958279627 100644 --- a/src/defs/CodepenLogo.tsx +++ b/src/defs/CodepenLogo.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/CodesandboxLogo.tsx b/src/defs/CodesandboxLogo.tsx index 2ca808522..ed6b29f53 100644 --- a/src/defs/CodesandboxLogo.tsx +++ b/src/defs/CodesandboxLogo.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/Coffee.tsx b/src/defs/Coffee.tsx index b0b46ad3c..6ba45209c 100644 --- a/src/defs/Coffee.tsx +++ b/src/defs/Coffee.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/CoffeeBean.tsx b/src/defs/CoffeeBean.tsx index bd610f342..906efc652 100644 --- a/src/defs/CoffeeBean.tsx +++ b/src/defs/CoffeeBean.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/Coin.tsx b/src/defs/Coin.tsx index e65266b39..1beed65e5 100644 --- a/src/defs/Coin.tsx +++ b/src/defs/Coin.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/CoinVertical.tsx b/src/defs/CoinVertical.tsx index 35913ca04..b7b286650 100644 --- a/src/defs/CoinVertical.tsx +++ b/src/defs/CoinVertical.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/Coins.tsx b/src/defs/Coins.tsx index d236f632d..b00e4c147 100644 --- a/src/defs/Coins.tsx +++ b/src/defs/Coins.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/Columns.tsx b/src/defs/Columns.tsx index 9f421f1c2..95883270c 100644 --- a/src/defs/Columns.tsx +++ b/src/defs/Columns.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/ColumnsPlusLeft.tsx b/src/defs/ColumnsPlusLeft.tsx index 9587f2a42..e55cedb5e 100644 --- a/src/defs/ColumnsPlusLeft.tsx +++ b/src/defs/ColumnsPlusLeft.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/ColumnsPlusRight.tsx b/src/defs/ColumnsPlusRight.tsx index 5396d88e8..1d97d0c21 100644 --- a/src/defs/ColumnsPlusRight.tsx +++ b/src/defs/ColumnsPlusRight.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/Command.tsx b/src/defs/Command.tsx index 7a204598d..4dea9544b 100644 --- a/src/defs/Command.tsx +++ b/src/defs/Command.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/Compass.tsx b/src/defs/Compass.tsx index c303cf563..09ba24f9f 100644 --- a/src/defs/Compass.tsx +++ b/src/defs/Compass.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/CompassRose.tsx b/src/defs/CompassRose.tsx index 47553107d..d188a803f 100644 --- a/src/defs/CompassRose.tsx +++ b/src/defs/CompassRose.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/CompassTool.tsx b/src/defs/CompassTool.tsx index bddebca1a..3f0f95398 100644 --- a/src/defs/CompassTool.tsx +++ b/src/defs/CompassTool.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/ComputerTower.tsx b/src/defs/ComputerTower.tsx index a4ed045d3..0973171d5 100644 --- a/src/defs/ComputerTower.tsx +++ b/src/defs/ComputerTower.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/Confetti.tsx b/src/defs/Confetti.tsx index 0fe0bd46a..64bd87302 100644 --- a/src/defs/Confetti.tsx +++ b/src/defs/Confetti.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/ContactlessPayment.tsx b/src/defs/ContactlessPayment.tsx index 844299c64..809525e6e 100644 --- a/src/defs/ContactlessPayment.tsx +++ b/src/defs/ContactlessPayment.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/Control.tsx b/src/defs/Control.tsx index 706ab03d9..748ad9943 100644 --- a/src/defs/Control.tsx +++ b/src/defs/Control.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/Cookie.tsx b/src/defs/Cookie.tsx index 6ed7efd55..b3193b20d 100644 --- a/src/defs/Cookie.tsx +++ b/src/defs/Cookie.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/CookingPot.tsx b/src/defs/CookingPot.tsx index 060a07b84..a30770449 100644 --- a/src/defs/CookingPot.tsx +++ b/src/defs/CookingPot.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/Copy.tsx b/src/defs/Copy.tsx index d7e692348..ef0d64f96 100644 --- a/src/defs/Copy.tsx +++ b/src/defs/Copy.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/CopySimple.tsx b/src/defs/CopySimple.tsx index 57b208f18..a3fc5b2b6 100644 --- a/src/defs/CopySimple.tsx +++ b/src/defs/CopySimple.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/Copyleft.tsx b/src/defs/Copyleft.tsx index dcbc62550..c9c711438 100644 --- a/src/defs/Copyleft.tsx +++ b/src/defs/Copyleft.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/Copyright.tsx b/src/defs/Copyright.tsx index 6db2a8167..01620835f 100644 --- a/src/defs/Copyright.tsx +++ b/src/defs/Copyright.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/CornersIn.tsx b/src/defs/CornersIn.tsx index e7f56d189..b4e217f04 100644 --- a/src/defs/CornersIn.tsx +++ b/src/defs/CornersIn.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/CornersOut.tsx b/src/defs/CornersOut.tsx index 502c81ece..3d8172ecd 100644 --- a/src/defs/CornersOut.tsx +++ b/src/defs/CornersOut.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/Couch.tsx b/src/defs/Couch.tsx index 21aab8379..c701879bc 100644 --- a/src/defs/Couch.tsx +++ b/src/defs/Couch.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/CourtBasketball.tsx b/src/defs/CourtBasketball.tsx index 5766cc921..d3ef1bea1 100644 --- a/src/defs/CourtBasketball.tsx +++ b/src/defs/CourtBasketball.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/Cow.tsx b/src/defs/Cow.tsx index 96d19fbe4..9ba006198 100644 --- a/src/defs/Cow.tsx +++ b/src/defs/Cow.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/CowboyHat.tsx b/src/defs/CowboyHat.tsx index da3dd5911..1eeee8fff 100644 --- a/src/defs/CowboyHat.tsx +++ b/src/defs/CowboyHat.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/Cpu.tsx b/src/defs/Cpu.tsx index 25ff85c8e..9cf2a700b 100644 --- a/src/defs/Cpu.tsx +++ b/src/defs/Cpu.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/Crane.tsx b/src/defs/Crane.tsx index 8c5c73c36..dbeed2112 100644 --- a/src/defs/Crane.tsx +++ b/src/defs/Crane.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/CraneTower.tsx b/src/defs/CraneTower.tsx index 23f210ed2..d2c5a5009 100644 --- a/src/defs/CraneTower.tsx +++ b/src/defs/CraneTower.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -26,20 +24,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/CreditCard.tsx b/src/defs/CreditCard.tsx index 204cd2d72..ac8cb72f4 100644 --- a/src/defs/CreditCard.tsx +++ b/src/defs/CreditCard.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/Cricket.tsx b/src/defs/Cricket.tsx index 4f901c583..d91fc55d9 100644 --- a/src/defs/Cricket.tsx +++ b/src/defs/Cricket.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/Crop.tsx b/src/defs/Crop.tsx index b526fa6b6..dd67be1d8 100644 --- a/src/defs/Crop.tsx +++ b/src/defs/Crop.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/Cross.tsx b/src/defs/Cross.tsx index d3bd6e8e3..32fe42b2d 100644 --- a/src/defs/Cross.tsx +++ b/src/defs/Cross.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/Crosshair.tsx b/src/defs/Crosshair.tsx index e1616f31a..5856a4eea 100644 --- a/src/defs/Crosshair.tsx +++ b/src/defs/Crosshair.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/CrosshairSimple.tsx b/src/defs/CrosshairSimple.tsx index a04dd323d..c63ad097f 100644 --- a/src/defs/CrosshairSimple.tsx +++ b/src/defs/CrosshairSimple.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/Crown.tsx b/src/defs/Crown.tsx index c110880e8..8158ce93a 100644 --- a/src/defs/Crown.tsx +++ b/src/defs/Crown.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/CrownCross.tsx b/src/defs/CrownCross.tsx index e7e242b1a..1206ffa7f 100644 --- a/src/defs/CrownCross.tsx +++ b/src/defs/CrownCross.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/CrownSimple.tsx b/src/defs/CrownSimple.tsx index db6ee57b3..14274fccc 100644 --- a/src/defs/CrownSimple.tsx +++ b/src/defs/CrownSimple.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/Cube.tsx b/src/defs/Cube.tsx index 628ae7023..cd21555f5 100644 --- a/src/defs/Cube.tsx +++ b/src/defs/Cube.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/CubeFocus.tsx b/src/defs/CubeFocus.tsx index e924afe6a..3bc7abd5f 100644 --- a/src/defs/CubeFocus.tsx +++ b/src/defs/CubeFocus.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/CubeTransparent.tsx b/src/defs/CubeTransparent.tsx index 078787995..75c545ace 100644 --- a/src/defs/CubeTransparent.tsx +++ b/src/defs/CubeTransparent.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/CurrencyBtc.tsx b/src/defs/CurrencyBtc.tsx index 40ea925e7..77ebd54fb 100644 --- a/src/defs/CurrencyBtc.tsx +++ b/src/defs/CurrencyBtc.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/CurrencyCircleDollar.tsx b/src/defs/CurrencyCircleDollar.tsx index 950132c68..816be729d 100644 --- a/src/defs/CurrencyCircleDollar.tsx +++ b/src/defs/CurrencyCircleDollar.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/CurrencyCny.tsx b/src/defs/CurrencyCny.tsx index 4b2633973..445e1fffa 100644 --- a/src/defs/CurrencyCny.tsx +++ b/src/defs/CurrencyCny.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/CurrencyDollar.tsx b/src/defs/CurrencyDollar.tsx index ae7d131ae..d93a78f17 100644 --- a/src/defs/CurrencyDollar.tsx +++ b/src/defs/CurrencyDollar.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/CurrencyDollarSimple.tsx b/src/defs/CurrencyDollarSimple.tsx index 3c810969f..c1805bd47 100644 --- a/src/defs/CurrencyDollarSimple.tsx +++ b/src/defs/CurrencyDollarSimple.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/CurrencyEth.tsx b/src/defs/CurrencyEth.tsx index 8d067706f..5f82bfe0b 100644 --- a/src/defs/CurrencyEth.tsx +++ b/src/defs/CurrencyEth.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/CurrencyEur.tsx b/src/defs/CurrencyEur.tsx index 756f19c1b..13f195208 100644 --- a/src/defs/CurrencyEur.tsx +++ b/src/defs/CurrencyEur.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/CurrencyGbp.tsx b/src/defs/CurrencyGbp.tsx index 608e93aa4..57ba2c70b 100644 --- a/src/defs/CurrencyGbp.tsx +++ b/src/defs/CurrencyGbp.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/CurrencyInr.tsx b/src/defs/CurrencyInr.tsx index e2909f4e9..93d3262cd 100644 --- a/src/defs/CurrencyInr.tsx +++ b/src/defs/CurrencyInr.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/CurrencyJpy.tsx b/src/defs/CurrencyJpy.tsx index f197d13d3..61e5672ba 100644 --- a/src/defs/CurrencyJpy.tsx +++ b/src/defs/CurrencyJpy.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/CurrencyKrw.tsx b/src/defs/CurrencyKrw.tsx index 2f75c33bd..e9ce218f4 100644 --- a/src/defs/CurrencyKrw.tsx +++ b/src/defs/CurrencyKrw.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/CurrencyKzt.tsx b/src/defs/CurrencyKzt.tsx index f396f9f2c..5247d9a95 100644 --- a/src/defs/CurrencyKzt.tsx +++ b/src/defs/CurrencyKzt.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/CurrencyNgn.tsx b/src/defs/CurrencyNgn.tsx index 04264cf82..6268bb82b 100644 --- a/src/defs/CurrencyNgn.tsx +++ b/src/defs/CurrencyNgn.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/CurrencyRub.tsx b/src/defs/CurrencyRub.tsx index f534db970..0ed706516 100644 --- a/src/defs/CurrencyRub.tsx +++ b/src/defs/CurrencyRub.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/Cursor.tsx b/src/defs/Cursor.tsx index 0da7ca1de..a2a3377a6 100644 --- a/src/defs/Cursor.tsx +++ b/src/defs/Cursor.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/CursorClick.tsx b/src/defs/CursorClick.tsx index 81186abcc..2ab472b6a 100644 --- a/src/defs/CursorClick.tsx +++ b/src/defs/CursorClick.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/CursorText.tsx b/src/defs/CursorText.tsx index 3f9518cba..6bd8e99b3 100644 --- a/src/defs/CursorText.tsx +++ b/src/defs/CursorText.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/Cylinder.tsx b/src/defs/Cylinder.tsx index d0e0f2f8c..26d4f54a9 100644 --- a/src/defs/Cylinder.tsx +++ b/src/defs/Cylinder.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/Database.tsx b/src/defs/Database.tsx index 53fc1edee..c1176ad0e 100644 --- a/src/defs/Database.tsx +++ b/src/defs/Database.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/Desk.tsx b/src/defs/Desk.tsx index 35c3a65cc..521502e4d 100644 --- a/src/defs/Desk.tsx +++ b/src/defs/Desk.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/Desktop.tsx b/src/defs/Desktop.tsx index e337c95b1..74006c9fd 100644 --- a/src/defs/Desktop.tsx +++ b/src/defs/Desktop.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/DesktopTower.tsx b/src/defs/DesktopTower.tsx index db600531b..0802ef34d 100644 --- a/src/defs/DesktopTower.tsx +++ b/src/defs/DesktopTower.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/Detective.tsx b/src/defs/Detective.tsx index 7f0bc5361..9f00b4baa 100644 --- a/src/defs/Detective.tsx +++ b/src/defs/Detective.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/DevToLogo.tsx b/src/defs/DevToLogo.tsx index 4108a2725..df4385462 100644 --- a/src/defs/DevToLogo.tsx +++ b/src/defs/DevToLogo.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/DeviceMobile.tsx b/src/defs/DeviceMobile.tsx index 610710c3b..cbc50df6f 100644 --- a/src/defs/DeviceMobile.tsx +++ b/src/defs/DeviceMobile.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/DeviceMobileCamera.tsx b/src/defs/DeviceMobileCamera.tsx index ba6668c7a..655c23407 100644 --- a/src/defs/DeviceMobileCamera.tsx +++ b/src/defs/DeviceMobileCamera.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/DeviceMobileSlash.tsx b/src/defs/DeviceMobileSlash.tsx index 3aae52f91..8cb0abcc5 100644 --- a/src/defs/DeviceMobileSlash.tsx +++ b/src/defs/DeviceMobileSlash.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/DeviceMobileSpeaker.tsx b/src/defs/DeviceMobileSpeaker.tsx index 95e6bff79..a63ad1e94 100644 --- a/src/defs/DeviceMobileSpeaker.tsx +++ b/src/defs/DeviceMobileSpeaker.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/DeviceRotate.tsx b/src/defs/DeviceRotate.tsx index 3a547e151..912059be6 100644 --- a/src/defs/DeviceRotate.tsx +++ b/src/defs/DeviceRotate.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/DeviceTablet.tsx b/src/defs/DeviceTablet.tsx index 7a6276a8b..25bda8f37 100644 --- a/src/defs/DeviceTablet.tsx +++ b/src/defs/DeviceTablet.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/DeviceTabletCamera.tsx b/src/defs/DeviceTabletCamera.tsx index 45fa7cdea..8e1ad5fe4 100644 --- a/src/defs/DeviceTabletCamera.tsx +++ b/src/defs/DeviceTabletCamera.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/DeviceTabletSpeaker.tsx b/src/defs/DeviceTabletSpeaker.tsx index 1c7e81196..15e5573af 100644 --- a/src/defs/DeviceTabletSpeaker.tsx +++ b/src/defs/DeviceTabletSpeaker.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/Devices.tsx b/src/defs/Devices.tsx index 2546d218c..0cc106ffa 100644 --- a/src/defs/Devices.tsx +++ b/src/defs/Devices.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/Diamond.tsx b/src/defs/Diamond.tsx index 445d32564..529f10b3e 100644 --- a/src/defs/Diamond.tsx +++ b/src/defs/Diamond.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/DiamondsFour.tsx b/src/defs/DiamondsFour.tsx index 7f660fab4..ed940b537 100644 --- a/src/defs/DiamondsFour.tsx +++ b/src/defs/DiamondsFour.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/DiceFive.tsx b/src/defs/DiceFive.tsx index a04d8fbfc..e23028914 100644 --- a/src/defs/DiceFive.tsx +++ b/src/defs/DiceFive.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/DiceFour.tsx b/src/defs/DiceFour.tsx index 037709ea2..bb7c5b7e9 100644 --- a/src/defs/DiceFour.tsx +++ b/src/defs/DiceFour.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/DiceOne.tsx b/src/defs/DiceOne.tsx index 7ed7542b1..44eb6d27c 100644 --- a/src/defs/DiceOne.tsx +++ b/src/defs/DiceOne.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/DiceSix.tsx b/src/defs/DiceSix.tsx index f09250416..14c620e54 100644 --- a/src/defs/DiceSix.tsx +++ b/src/defs/DiceSix.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/DiceThree.tsx b/src/defs/DiceThree.tsx index 7052b4843..f4b2f26f0 100644 --- a/src/defs/DiceThree.tsx +++ b/src/defs/DiceThree.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/DiceTwo.tsx b/src/defs/DiceTwo.tsx index 33872881e..171ab90f1 100644 --- a/src/defs/DiceTwo.tsx +++ b/src/defs/DiceTwo.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/Disc.tsx b/src/defs/Disc.tsx index 71b7d95af..6088dffa0 100644 --- a/src/defs/Disc.tsx +++ b/src/defs/Disc.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/DiscoBall.tsx b/src/defs/DiscoBall.tsx index 08b27f2bb..833da8686 100644 --- a/src/defs/DiscoBall.tsx +++ b/src/defs/DiscoBall.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/DiscordLogo.tsx b/src/defs/DiscordLogo.tsx index ed4b036cb..97389a3df 100644 --- a/src/defs/DiscordLogo.tsx +++ b/src/defs/DiscordLogo.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/Divide.tsx b/src/defs/Divide.tsx index 586ccc6f5..3c65a0bbb 100644 --- a/src/defs/Divide.tsx +++ b/src/defs/Divide.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/Dna.tsx b/src/defs/Dna.tsx index cbba45685..bec24c9d0 100644 --- a/src/defs/Dna.tsx +++ b/src/defs/Dna.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/Dog.tsx b/src/defs/Dog.tsx index 8f4adf1d9..2a7c837c9 100644 --- a/src/defs/Dog.tsx +++ b/src/defs/Dog.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/Door.tsx b/src/defs/Door.tsx index 92324b357..d86d9c6b8 100644 --- a/src/defs/Door.tsx +++ b/src/defs/Door.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/DoorOpen.tsx b/src/defs/DoorOpen.tsx index 48c3202b2..d4fe8eca0 100644 --- a/src/defs/DoorOpen.tsx +++ b/src/defs/DoorOpen.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/Dot.tsx b/src/defs/Dot.tsx index 45ac8cea3..a08ecaa59 100644 --- a/src/defs/Dot.tsx +++ b/src/defs/Dot.tsx @@ -4,12 +4,7 @@ import type { ReactElement } from "react"; import { IconWeight } from "../lib"; export default new Map([ - [ - "bold", - <> - - , - ], + ["bold", ], [ "duotone", <> @@ -19,26 +14,9 @@ export default new Map([ ], [ "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , + , ], + ["light", ], + ["regular", ], + ["thin", ], ]); diff --git a/src/defs/DotOutline.tsx b/src/defs/DotOutline.tsx index 0f7489847..6f565adbe 100644 --- a/src/defs/DotOutline.tsx +++ b/src/defs/DotOutline.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -17,28 +15,17 @@ export default new Map([ , ], - [ - "fill", - <> - - , - ], + ["fill", ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/DotsNine.tsx b/src/defs/DotsNine.tsx index c575f9631..151935593 100644 --- a/src/defs/DotsNine.tsx +++ b/src/defs/DotsNine.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/DotsSix.tsx b/src/defs/DotsSix.tsx index 898b629dc..cf8fed642 100644 --- a/src/defs/DotsSix.tsx +++ b/src/defs/DotsSix.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/DotsSixVertical.tsx b/src/defs/DotsSixVertical.tsx index 54f087435..4e82f64ef 100644 --- a/src/defs/DotsSixVertical.tsx +++ b/src/defs/DotsSixVertical.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/DotsThree.tsx b/src/defs/DotsThree.tsx index abd2df33b..aee5eb4af 100644 --- a/src/defs/DotsThree.tsx +++ b/src/defs/DotsThree.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/DotsThreeCircle.tsx b/src/defs/DotsThreeCircle.tsx index c6c71e815..e61a04a6d 100644 --- a/src/defs/DotsThreeCircle.tsx +++ b/src/defs/DotsThreeCircle.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/DotsThreeCircleVertical.tsx b/src/defs/DotsThreeCircleVertical.tsx index 8515826f0..068d76bf4 100644 --- a/src/defs/DotsThreeCircleVertical.tsx +++ b/src/defs/DotsThreeCircleVertical.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/DotsThreeOutline.tsx b/src/defs/DotsThreeOutline.tsx index 4bd17fcc5..44596af9c 100644 --- a/src/defs/DotsThreeOutline.tsx +++ b/src/defs/DotsThreeOutline.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/DotsThreeOutlineVertical.tsx b/src/defs/DotsThreeOutlineVertical.tsx index b47d328b2..4714571b0 100644 --- a/src/defs/DotsThreeOutlineVertical.tsx +++ b/src/defs/DotsThreeOutlineVertical.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/DotsThreeVertical.tsx b/src/defs/DotsThreeVertical.tsx index 20b3c09df..e52bc9847 100644 --- a/src/defs/DotsThreeVertical.tsx +++ b/src/defs/DotsThreeVertical.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/Download.tsx b/src/defs/Download.tsx index 0b5558a75..326d5660b 100644 --- a/src/defs/Download.tsx +++ b/src/defs/Download.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/DownloadSimple.tsx b/src/defs/DownloadSimple.tsx index 24e3e51a4..a0583e9e7 100644 --- a/src/defs/DownloadSimple.tsx +++ b/src/defs/DownloadSimple.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/Dress.tsx b/src/defs/Dress.tsx index 34d5c836e..5bbf23a31 100644 --- a/src/defs/Dress.tsx +++ b/src/defs/Dress.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/Dresser.tsx b/src/defs/Dresser.tsx index 3d658da27..f9c5d78d5 100644 --- a/src/defs/Dresser.tsx +++ b/src/defs/Dresser.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/DribbbleLogo.tsx b/src/defs/DribbbleLogo.tsx index 75a953d49..19c42791c 100644 --- a/src/defs/DribbbleLogo.tsx +++ b/src/defs/DribbbleLogo.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/Drone.tsx b/src/defs/Drone.tsx index 397ddf0e9..3c0f974ac 100644 --- a/src/defs/Drone.tsx +++ b/src/defs/Drone.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/Drop.tsx b/src/defs/Drop.tsx index 100beade1..7879f387f 100644 --- a/src/defs/Drop.tsx +++ b/src/defs/Drop.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/DropHalf.tsx b/src/defs/DropHalf.tsx index 2d3ccf389..cde2d67d2 100644 --- a/src/defs/DropHalf.tsx +++ b/src/defs/DropHalf.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/DropHalfBottom.tsx b/src/defs/DropHalfBottom.tsx index 0caa03bdf..e1066a011 100644 --- a/src/defs/DropHalfBottom.tsx +++ b/src/defs/DropHalfBottom.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/DropSimple.tsx b/src/defs/DropSimple.tsx index af8a9046b..1a9d04da1 100644 --- a/src/defs/DropSimple.tsx +++ b/src/defs/DropSimple.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/DropSlash.tsx b/src/defs/DropSlash.tsx index b700b0995..eb187975a 100644 --- a/src/defs/DropSlash.tsx +++ b/src/defs/DropSlash.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/DropboxLogo.tsx b/src/defs/DropboxLogo.tsx index c4fef0097..8df851d18 100644 --- a/src/defs/DropboxLogo.tsx +++ b/src/defs/DropboxLogo.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/Ear.tsx b/src/defs/Ear.tsx index be5f25471..dd9b7f6c0 100644 --- a/src/defs/Ear.tsx +++ b/src/defs/Ear.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/EarSlash.tsx b/src/defs/EarSlash.tsx index 1946fdbfc..841a2b69a 100644 --- a/src/defs/EarSlash.tsx +++ b/src/defs/EarSlash.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/Egg.tsx b/src/defs/Egg.tsx index 54c9da216..b72cbe059 100644 --- a/src/defs/Egg.tsx +++ b/src/defs/Egg.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/EggCrack.tsx b/src/defs/EggCrack.tsx index 45025f420..6a9c1213f 100644 --- a/src/defs/EggCrack.tsx +++ b/src/defs/EggCrack.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/Eject.tsx b/src/defs/Eject.tsx index f5415c43a..b39f428bc 100644 --- a/src/defs/Eject.tsx +++ b/src/defs/Eject.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/EjectSimple.tsx b/src/defs/EjectSimple.tsx index 48a7daabe..21686b4ad 100644 --- a/src/defs/EjectSimple.tsx +++ b/src/defs/EjectSimple.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/Elevator.tsx b/src/defs/Elevator.tsx index 758fd0a4e..1263ce14c 100644 --- a/src/defs/Elevator.tsx +++ b/src/defs/Elevator.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/Empty.tsx b/src/defs/Empty.tsx index d4adc24a1..8833c03f1 100644 --- a/src/defs/Empty.tsx +++ b/src/defs/Empty.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/Engine.tsx b/src/defs/Engine.tsx index 49fac0a8f..0ec1a19f4 100644 --- a/src/defs/Engine.tsx +++ b/src/defs/Engine.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/Envelope.tsx b/src/defs/Envelope.tsx index 210bd0f30..1f8877f7b 100644 --- a/src/defs/Envelope.tsx +++ b/src/defs/Envelope.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/EnvelopeOpen.tsx b/src/defs/EnvelopeOpen.tsx index 78f7d19d3..65efb24b2 100644 --- a/src/defs/EnvelopeOpen.tsx +++ b/src/defs/EnvelopeOpen.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/EnvelopeSimple.tsx b/src/defs/EnvelopeSimple.tsx index 10a4bfdcd..b69626e53 100644 --- a/src/defs/EnvelopeSimple.tsx +++ b/src/defs/EnvelopeSimple.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/EnvelopeSimpleOpen.tsx b/src/defs/EnvelopeSimpleOpen.tsx index 129f970cb..07bf7a33c 100644 --- a/src/defs/EnvelopeSimpleOpen.tsx +++ b/src/defs/EnvelopeSimpleOpen.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/Equalizer.tsx b/src/defs/Equalizer.tsx index 7df2a1136..261d54a21 100644 --- a/src/defs/Equalizer.tsx +++ b/src/defs/Equalizer.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/Equals.tsx b/src/defs/Equals.tsx index 384b4ae79..10238699e 100644 --- a/src/defs/Equals.tsx +++ b/src/defs/Equals.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/Eraser.tsx b/src/defs/Eraser.tsx index f6caab712..2080b0819 100644 --- a/src/defs/Eraser.tsx +++ b/src/defs/Eraser.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/EscalatorDown.tsx b/src/defs/EscalatorDown.tsx index 227596b30..549dda985 100644 --- a/src/defs/EscalatorDown.tsx +++ b/src/defs/EscalatorDown.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/EscalatorUp.tsx b/src/defs/EscalatorUp.tsx index 5fea6d6c8..915e7620b 100644 --- a/src/defs/EscalatorUp.tsx +++ b/src/defs/EscalatorUp.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/Exam.tsx b/src/defs/Exam.tsx index e21a046ad..c2cea3ae4 100644 --- a/src/defs/Exam.tsx +++ b/src/defs/Exam.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/ExclamationMark.tsx b/src/defs/ExclamationMark.tsx index 1bd152a8d..a370cc3b1 100644 --- a/src/defs/ExclamationMark.tsx +++ b/src/defs/ExclamationMark.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/Exclude.tsx b/src/defs/Exclude.tsx index 885666e46..b7e1c1b09 100644 --- a/src/defs/Exclude.tsx +++ b/src/defs/Exclude.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/ExcludeSquare.tsx b/src/defs/ExcludeSquare.tsx index ffacbb286..a02dab65c 100644 --- a/src/defs/ExcludeSquare.tsx +++ b/src/defs/ExcludeSquare.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/Export.tsx b/src/defs/Export.tsx index 4e70c533a..ff378664d 100644 --- a/src/defs/Export.tsx +++ b/src/defs/Export.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/Eye.tsx b/src/defs/Eye.tsx index ce6708c46..d9531a3f8 100644 --- a/src/defs/Eye.tsx +++ b/src/defs/Eye.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/EyeClosed.tsx b/src/defs/EyeClosed.tsx index a9b069a37..051de350b 100644 --- a/src/defs/EyeClosed.tsx +++ b/src/defs/EyeClosed.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/EyeSlash.tsx b/src/defs/EyeSlash.tsx index cd8c5b491..fd584eab8 100644 --- a/src/defs/EyeSlash.tsx +++ b/src/defs/EyeSlash.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/Eyedropper.tsx b/src/defs/Eyedropper.tsx index 936fc0864..c7f73118b 100644 --- a/src/defs/Eyedropper.tsx +++ b/src/defs/Eyedropper.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/EyedropperSample.tsx b/src/defs/EyedropperSample.tsx index 18d3866db..e3c205570 100644 --- a/src/defs/EyedropperSample.tsx +++ b/src/defs/EyedropperSample.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/Eyeglasses.tsx b/src/defs/Eyeglasses.tsx index 7771771a7..74f7bb2e0 100644 --- a/src/defs/Eyeglasses.tsx +++ b/src/defs/Eyeglasses.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/Eyes.tsx b/src/defs/Eyes.tsx index e227df1f9..a787eb598 100644 --- a/src/defs/Eyes.tsx +++ b/src/defs/Eyes.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/FaceMask.tsx b/src/defs/FaceMask.tsx index 1c012780c..74eed8396 100644 --- a/src/defs/FaceMask.tsx +++ b/src/defs/FaceMask.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/FacebookLogo.tsx b/src/defs/FacebookLogo.tsx index 9cd56f178..ff8497476 100644 --- a/src/defs/FacebookLogo.tsx +++ b/src/defs/FacebookLogo.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/Factory.tsx b/src/defs/Factory.tsx index 839733aca..d75be68ea 100644 --- a/src/defs/Factory.tsx +++ b/src/defs/Factory.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/Faders.tsx b/src/defs/Faders.tsx index c4bf184d3..a561e91b4 100644 --- a/src/defs/Faders.tsx +++ b/src/defs/Faders.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/FadersHorizontal.tsx b/src/defs/FadersHorizontal.tsx index 144db3a7c..2c0266842 100644 --- a/src/defs/FadersHorizontal.tsx +++ b/src/defs/FadersHorizontal.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/FalloutShelter.tsx b/src/defs/FalloutShelter.tsx index b7089329d..246698ebc 100644 --- a/src/defs/FalloutShelter.tsx +++ b/src/defs/FalloutShelter.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/Fan.tsx b/src/defs/Fan.tsx index 0010f121e..7ad5bef0c 100644 --- a/src/defs/Fan.tsx +++ b/src/defs/Fan.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/Farm.tsx b/src/defs/Farm.tsx index 050563989..aaacbf160 100644 --- a/src/defs/Farm.tsx +++ b/src/defs/Farm.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/FastForward.tsx b/src/defs/FastForward.tsx index 53eac79a2..3b4029bc8 100644 --- a/src/defs/FastForward.tsx +++ b/src/defs/FastForward.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/FastForwardCircle.tsx b/src/defs/FastForwardCircle.tsx index 6b4d58546..85dbc9ea3 100644 --- a/src/defs/FastForwardCircle.tsx +++ b/src/defs/FastForwardCircle.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/Feather.tsx b/src/defs/Feather.tsx index 672bd8a81..81b7f7220 100644 --- a/src/defs/Feather.tsx +++ b/src/defs/Feather.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/FediverseLogo.tsx b/src/defs/FediverseLogo.tsx index fcdd350cd..64d71986b 100644 --- a/src/defs/FediverseLogo.tsx +++ b/src/defs/FediverseLogo.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/FigmaLogo.tsx b/src/defs/FigmaLogo.tsx index e2907b459..6d1de142d 100644 --- a/src/defs/FigmaLogo.tsx +++ b/src/defs/FigmaLogo.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/File.tsx b/src/defs/File.tsx index 2d2d62e71..9e0d07afa 100644 --- a/src/defs/File.tsx +++ b/src/defs/File.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/FileArchive.tsx b/src/defs/FileArchive.tsx index 5e69c7c68..926ea3459 100644 --- a/src/defs/FileArchive.tsx +++ b/src/defs/FileArchive.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/FileArrowDown.tsx b/src/defs/FileArrowDown.tsx index 6da159997..cc341d373 100644 --- a/src/defs/FileArrowDown.tsx +++ b/src/defs/FileArrowDown.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/FileArrowUp.tsx b/src/defs/FileArrowUp.tsx index 694144e4a..bfc4ef2e6 100644 --- a/src/defs/FileArrowUp.tsx +++ b/src/defs/FileArrowUp.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/FileAudio.tsx b/src/defs/FileAudio.tsx index b716ea18b..730663049 100644 --- a/src/defs/FileAudio.tsx +++ b/src/defs/FileAudio.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/FileC.tsx b/src/defs/FileC.tsx index 022a55160..b16f4e721 100644 --- a/src/defs/FileC.tsx +++ b/src/defs/FileC.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/FileCSharp.tsx b/src/defs/FileCSharp.tsx index 2be132c82..de9aa8dad 100644 --- a/src/defs/FileCSharp.tsx +++ b/src/defs/FileCSharp.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/FileCloud.tsx b/src/defs/FileCloud.tsx index 024acd09f..8351a1bad 100644 --- a/src/defs/FileCloud.tsx +++ b/src/defs/FileCloud.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/FileCode.tsx b/src/defs/FileCode.tsx index 0de9faca6..7c44098e4 100644 --- a/src/defs/FileCode.tsx +++ b/src/defs/FileCode.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/FileCpp.tsx b/src/defs/FileCpp.tsx index d28a20bbf..ee300918d 100644 --- a/src/defs/FileCpp.tsx +++ b/src/defs/FileCpp.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/FileCss.tsx b/src/defs/FileCss.tsx index 25bb4fb77..eb3f8c439 100644 --- a/src/defs/FileCss.tsx +++ b/src/defs/FileCss.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/FileCsv.tsx b/src/defs/FileCsv.tsx index 877b36196..e835e055d 100644 --- a/src/defs/FileCsv.tsx +++ b/src/defs/FileCsv.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/FileDashed.tsx b/src/defs/FileDashed.tsx index 025a95e3b..2f6be0fdd 100644 --- a/src/defs/FileDashed.tsx +++ b/src/defs/FileDashed.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/FileDoc.tsx b/src/defs/FileDoc.tsx index d9ae1905c..e8b56f322 100644 --- a/src/defs/FileDoc.tsx +++ b/src/defs/FileDoc.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/FileHtml.tsx b/src/defs/FileHtml.tsx index b920076e3..cc8e9f4a4 100644 --- a/src/defs/FileHtml.tsx +++ b/src/defs/FileHtml.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/FileImage.tsx b/src/defs/FileImage.tsx index a9f831264..54dfa5e0e 100644 --- a/src/defs/FileImage.tsx +++ b/src/defs/FileImage.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/FileIni.tsx b/src/defs/FileIni.tsx index 8c3d12ad4..3325abe1d 100644 --- a/src/defs/FileIni.tsx +++ b/src/defs/FileIni.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/FileJpg.tsx b/src/defs/FileJpg.tsx index 2f8a692a4..840c090e0 100644 --- a/src/defs/FileJpg.tsx +++ b/src/defs/FileJpg.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/FileJs.tsx b/src/defs/FileJs.tsx index 3b7080b0f..b347c527e 100644 --- a/src/defs/FileJs.tsx +++ b/src/defs/FileJs.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/FileJsx.tsx b/src/defs/FileJsx.tsx index 20b0e0246..2cfd99cd5 100644 --- a/src/defs/FileJsx.tsx +++ b/src/defs/FileJsx.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/FileLock.tsx b/src/defs/FileLock.tsx index 4e4615c36..3a0e2b736 100644 --- a/src/defs/FileLock.tsx +++ b/src/defs/FileLock.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/FileMagnifyingGlass.tsx b/src/defs/FileMagnifyingGlass.tsx index 5773b3368..cb56074d1 100644 --- a/src/defs/FileMagnifyingGlass.tsx +++ b/src/defs/FileMagnifyingGlass.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/FileMd.tsx b/src/defs/FileMd.tsx index 25efe146c..708a0cac2 100644 --- a/src/defs/FileMd.tsx +++ b/src/defs/FileMd.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/FileMinus.tsx b/src/defs/FileMinus.tsx index 65027af7a..f80fc1c57 100644 --- a/src/defs/FileMinus.tsx +++ b/src/defs/FileMinus.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/FilePdf.tsx b/src/defs/FilePdf.tsx index eda23d5c2..4d0b86af4 100644 --- a/src/defs/FilePdf.tsx +++ b/src/defs/FilePdf.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/FilePlus.tsx b/src/defs/FilePlus.tsx index 9cd4b5497..67e43011a 100644 --- a/src/defs/FilePlus.tsx +++ b/src/defs/FilePlus.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/FilePng.tsx b/src/defs/FilePng.tsx index fc971b7b8..59c1a43f1 100644 --- a/src/defs/FilePng.tsx +++ b/src/defs/FilePng.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/FilePpt.tsx b/src/defs/FilePpt.tsx index 1c040db60..dbb8f8f31 100644 --- a/src/defs/FilePpt.tsx +++ b/src/defs/FilePpt.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/FilePy.tsx b/src/defs/FilePy.tsx index 029998c33..1d1694072 100644 --- a/src/defs/FilePy.tsx +++ b/src/defs/FilePy.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/FileRs.tsx b/src/defs/FileRs.tsx index 4a25ac22d..c45f3cc40 100644 --- a/src/defs/FileRs.tsx +++ b/src/defs/FileRs.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/FileSql.tsx b/src/defs/FileSql.tsx index f50a91dff..1a5e7f479 100644 --- a/src/defs/FileSql.tsx +++ b/src/defs/FileSql.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/FileSvg.tsx b/src/defs/FileSvg.tsx index d4592d616..6d6e0585a 100644 --- a/src/defs/FileSvg.tsx +++ b/src/defs/FileSvg.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/FileText.tsx b/src/defs/FileText.tsx index 578fd42e3..6135bb0f9 100644 --- a/src/defs/FileText.tsx +++ b/src/defs/FileText.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/FileTs.tsx b/src/defs/FileTs.tsx index dda195211..5110f3ab0 100644 --- a/src/defs/FileTs.tsx +++ b/src/defs/FileTs.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/FileTsx.tsx b/src/defs/FileTsx.tsx index 12c04b739..0ad331a82 100644 --- a/src/defs/FileTsx.tsx +++ b/src/defs/FileTsx.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/FileTxt.tsx b/src/defs/FileTxt.tsx index 5f64ae8ef..5a4e09a2c 100644 --- a/src/defs/FileTxt.tsx +++ b/src/defs/FileTxt.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/FileVideo.tsx b/src/defs/FileVideo.tsx index 4109e2aeb..2e4aac47e 100644 --- a/src/defs/FileVideo.tsx +++ b/src/defs/FileVideo.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/FileVue.tsx b/src/defs/FileVue.tsx index 307486249..05f02d5c0 100644 --- a/src/defs/FileVue.tsx +++ b/src/defs/FileVue.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/FileX.tsx b/src/defs/FileX.tsx index c3810f300..606c2efc2 100644 --- a/src/defs/FileX.tsx +++ b/src/defs/FileX.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/FileXls.tsx b/src/defs/FileXls.tsx index 36fcf2f91..bdb1c86d9 100644 --- a/src/defs/FileXls.tsx +++ b/src/defs/FileXls.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/FileZip.tsx b/src/defs/FileZip.tsx index a4973623f..c1af2e7bd 100644 --- a/src/defs/FileZip.tsx +++ b/src/defs/FileZip.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/Files.tsx b/src/defs/Files.tsx index 6cb8b97e2..e37143f61 100644 --- a/src/defs/Files.tsx +++ b/src/defs/Files.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/FilmReel.tsx b/src/defs/FilmReel.tsx index a3e9314d6..ba863b7f7 100644 --- a/src/defs/FilmReel.tsx +++ b/src/defs/FilmReel.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/FilmScript.tsx b/src/defs/FilmScript.tsx index 646d5b5d0..ff7961044 100644 --- a/src/defs/FilmScript.tsx +++ b/src/defs/FilmScript.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/FilmSlate.tsx b/src/defs/FilmSlate.tsx index 4cc6b529a..682d37e2e 100644 --- a/src/defs/FilmSlate.tsx +++ b/src/defs/FilmSlate.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/FilmStrip.tsx b/src/defs/FilmStrip.tsx index 4bedd2699..40d30c0ad 100644 --- a/src/defs/FilmStrip.tsx +++ b/src/defs/FilmStrip.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/Fingerprint.tsx b/src/defs/Fingerprint.tsx index 765f2b2eb..9ed4779f4 100644 --- a/src/defs/Fingerprint.tsx +++ b/src/defs/Fingerprint.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/FingerprintSimple.tsx b/src/defs/FingerprintSimple.tsx index edb7d75b2..360cdaf6f 100644 --- a/src/defs/FingerprintSimple.tsx +++ b/src/defs/FingerprintSimple.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/FinnTheHuman.tsx b/src/defs/FinnTheHuman.tsx index 84227f369..9de853c14 100644 --- a/src/defs/FinnTheHuman.tsx +++ b/src/defs/FinnTheHuman.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/Fire.tsx b/src/defs/Fire.tsx index 5bfbf8c9d..82d94f48e 100644 --- a/src/defs/Fire.tsx +++ b/src/defs/Fire.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/FireExtinguisher.tsx b/src/defs/FireExtinguisher.tsx index b16ece275..a990097ee 100644 --- a/src/defs/FireExtinguisher.tsx +++ b/src/defs/FireExtinguisher.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/FireSimple.tsx b/src/defs/FireSimple.tsx index f464110aa..8526d7445 100644 --- a/src/defs/FireSimple.tsx +++ b/src/defs/FireSimple.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/FireTruck.tsx b/src/defs/FireTruck.tsx index 13430e0f7..87374d973 100644 --- a/src/defs/FireTruck.tsx +++ b/src/defs/FireTruck.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/FirstAid.tsx b/src/defs/FirstAid.tsx index 94bd46904..ecb4feef6 100644 --- a/src/defs/FirstAid.tsx +++ b/src/defs/FirstAid.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/FirstAidKit.tsx b/src/defs/FirstAidKit.tsx index a0e68d7f5..d34976be5 100644 --- a/src/defs/FirstAidKit.tsx +++ b/src/defs/FirstAidKit.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/Fish.tsx b/src/defs/Fish.tsx index c57e7adc9..b1ab6bed1 100644 --- a/src/defs/Fish.tsx +++ b/src/defs/Fish.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/FishSimple.tsx b/src/defs/FishSimple.tsx index c0ec6d7f7..a0f748ffc 100644 --- a/src/defs/FishSimple.tsx +++ b/src/defs/FishSimple.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/Flag.tsx b/src/defs/Flag.tsx index 9c2966599..cd2baf9b1 100644 --- a/src/defs/Flag.tsx +++ b/src/defs/Flag.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/FlagBanner.tsx b/src/defs/FlagBanner.tsx index 17ff37794..29a9ce758 100644 --- a/src/defs/FlagBanner.tsx +++ b/src/defs/FlagBanner.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/FlagBannerFold.tsx b/src/defs/FlagBannerFold.tsx index 714282249..afa635bf6 100644 --- a/src/defs/FlagBannerFold.tsx +++ b/src/defs/FlagBannerFold.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/FlagCheckered.tsx b/src/defs/FlagCheckered.tsx index 66c9f7b2c..a0c4a5cbf 100644 --- a/src/defs/FlagCheckered.tsx +++ b/src/defs/FlagCheckered.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/FlagPennant.tsx b/src/defs/FlagPennant.tsx index 1eebe2b80..60103e22a 100644 --- a/src/defs/FlagPennant.tsx +++ b/src/defs/FlagPennant.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/Flame.tsx b/src/defs/Flame.tsx index 0ffcf9730..3627ec99e 100644 --- a/src/defs/Flame.tsx +++ b/src/defs/Flame.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/Flashlight.tsx b/src/defs/Flashlight.tsx index 148f977df..3b29eb603 100644 --- a/src/defs/Flashlight.tsx +++ b/src/defs/Flashlight.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/Flask.tsx b/src/defs/Flask.tsx index e53bb42a6..1518f1636 100644 --- a/src/defs/Flask.tsx +++ b/src/defs/Flask.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/FlipHorizontal.tsx b/src/defs/FlipHorizontal.tsx index 216086d86..ab1591db0 100644 --- a/src/defs/FlipHorizontal.tsx +++ b/src/defs/FlipHorizontal.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/FlipVertical.tsx b/src/defs/FlipVertical.tsx index 079f3c8b0..619966fde 100644 --- a/src/defs/FlipVertical.tsx +++ b/src/defs/FlipVertical.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/FloppyDisk.tsx b/src/defs/FloppyDisk.tsx index b5131c1b3..0f8ef76bf 100644 --- a/src/defs/FloppyDisk.tsx +++ b/src/defs/FloppyDisk.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/FloppyDiskBack.tsx b/src/defs/FloppyDiskBack.tsx index 46cc4edc6..bf6020ccf 100644 --- a/src/defs/FloppyDiskBack.tsx +++ b/src/defs/FloppyDiskBack.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/FlowArrow.tsx b/src/defs/FlowArrow.tsx index 34cf66a45..6569d6960 100644 --- a/src/defs/FlowArrow.tsx +++ b/src/defs/FlowArrow.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/Flower.tsx b/src/defs/Flower.tsx index 1e9f04340..7c40a8b53 100644 --- a/src/defs/Flower.tsx +++ b/src/defs/Flower.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/FlowerLotus.tsx b/src/defs/FlowerLotus.tsx index 325e41d04..2db465aca 100644 --- a/src/defs/FlowerLotus.tsx +++ b/src/defs/FlowerLotus.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/FlowerTulip.tsx b/src/defs/FlowerTulip.tsx index 94f82f936..f5b442c42 100644 --- a/src/defs/FlowerTulip.tsx +++ b/src/defs/FlowerTulip.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/FlyingSaucer.tsx b/src/defs/FlyingSaucer.tsx index 8ae68f0a0..40c197cf9 100644 --- a/src/defs/FlyingSaucer.tsx +++ b/src/defs/FlyingSaucer.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/Folder.tsx b/src/defs/Folder.tsx index 425a9a5ff..a3e0f80a1 100644 --- a/src/defs/Folder.tsx +++ b/src/defs/Folder.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/FolderDashed.tsx b/src/defs/FolderDashed.tsx index 6364aaad1..572bf5c0b 100644 --- a/src/defs/FolderDashed.tsx +++ b/src/defs/FolderDashed.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/FolderLock.tsx b/src/defs/FolderLock.tsx index e87f75a48..926d123d6 100644 --- a/src/defs/FolderLock.tsx +++ b/src/defs/FolderLock.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/FolderMinus.tsx b/src/defs/FolderMinus.tsx index 595f8666b..fc75c962b 100644 --- a/src/defs/FolderMinus.tsx +++ b/src/defs/FolderMinus.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/FolderOpen.tsx b/src/defs/FolderOpen.tsx index a80867a78..571888c34 100644 --- a/src/defs/FolderOpen.tsx +++ b/src/defs/FolderOpen.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/FolderPlus.tsx b/src/defs/FolderPlus.tsx index 626fc87e7..1615326ba 100644 --- a/src/defs/FolderPlus.tsx +++ b/src/defs/FolderPlus.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/FolderSimple.tsx b/src/defs/FolderSimple.tsx index 92e6d2aa9..50da79973 100644 --- a/src/defs/FolderSimple.tsx +++ b/src/defs/FolderSimple.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/FolderSimpleDashed.tsx b/src/defs/FolderSimpleDashed.tsx index 9568e8ef2..f7cb35b69 100644 --- a/src/defs/FolderSimpleDashed.tsx +++ b/src/defs/FolderSimpleDashed.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/FolderSimpleLock.tsx b/src/defs/FolderSimpleLock.tsx index 4e8fdc7b0..928a06334 100644 --- a/src/defs/FolderSimpleLock.tsx +++ b/src/defs/FolderSimpleLock.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/FolderSimpleMinus.tsx b/src/defs/FolderSimpleMinus.tsx index d21306c93..5e25d5391 100644 --- a/src/defs/FolderSimpleMinus.tsx +++ b/src/defs/FolderSimpleMinus.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/FolderSimplePlus.tsx b/src/defs/FolderSimplePlus.tsx index dcd3b7a80..5cbc9cfcb 100644 --- a/src/defs/FolderSimplePlus.tsx +++ b/src/defs/FolderSimplePlus.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/FolderSimpleStar.tsx b/src/defs/FolderSimpleStar.tsx index a33ae8b35..15cf4577f 100644 --- a/src/defs/FolderSimpleStar.tsx +++ b/src/defs/FolderSimpleStar.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/FolderSimpleUser.tsx b/src/defs/FolderSimpleUser.tsx index 87108cdb2..70154569c 100644 --- a/src/defs/FolderSimpleUser.tsx +++ b/src/defs/FolderSimpleUser.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/FolderStar.tsx b/src/defs/FolderStar.tsx index 3f5e24e97..5069a303a 100644 --- a/src/defs/FolderStar.tsx +++ b/src/defs/FolderStar.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/FolderUser.tsx b/src/defs/FolderUser.tsx index 6b690a812..d9633efce 100644 --- a/src/defs/FolderUser.tsx +++ b/src/defs/FolderUser.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/Folders.tsx b/src/defs/Folders.tsx index e28fb059b..d37eac941 100644 --- a/src/defs/Folders.tsx +++ b/src/defs/Folders.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/Football.tsx b/src/defs/Football.tsx index 4166cf826..c5fd189aa 100644 --- a/src/defs/Football.tsx +++ b/src/defs/Football.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/FootballHelmet.tsx b/src/defs/FootballHelmet.tsx index 8d1f585fd..942f2544a 100644 --- a/src/defs/FootballHelmet.tsx +++ b/src/defs/FootballHelmet.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/Footprints.tsx b/src/defs/Footprints.tsx index be1c46189..bb74641d5 100644 --- a/src/defs/Footprints.tsx +++ b/src/defs/Footprints.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/ForkKnife.tsx b/src/defs/ForkKnife.tsx index b0776bfe5..1aa37afc6 100644 --- a/src/defs/ForkKnife.tsx +++ b/src/defs/ForkKnife.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/FourK.tsx b/src/defs/FourK.tsx index 1ae7a52c1..75f469a31 100644 --- a/src/defs/FourK.tsx +++ b/src/defs/FourK.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/FrameCorners.tsx b/src/defs/FrameCorners.tsx index f97f3ea79..cdffc02f9 100644 --- a/src/defs/FrameCorners.tsx +++ b/src/defs/FrameCorners.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/FramerLogo.tsx b/src/defs/FramerLogo.tsx index 82d003434..05479d12d 100644 --- a/src/defs/FramerLogo.tsx +++ b/src/defs/FramerLogo.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/Function.tsx b/src/defs/Function.tsx index c30990bbc..572ff2b80 100644 --- a/src/defs/Function.tsx +++ b/src/defs/Function.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/Funnel.tsx b/src/defs/Funnel.tsx index 0559c5f6c..e1917ab62 100644 --- a/src/defs/Funnel.tsx +++ b/src/defs/Funnel.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/FunnelSimple.tsx b/src/defs/FunnelSimple.tsx index b6a0e7321..ef40d5c29 100644 --- a/src/defs/FunnelSimple.tsx +++ b/src/defs/FunnelSimple.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/FunnelSimpleX.tsx b/src/defs/FunnelSimpleX.tsx index 34c1acf68..cdcdca0fd 100644 --- a/src/defs/FunnelSimpleX.tsx +++ b/src/defs/FunnelSimpleX.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/FunnelX.tsx b/src/defs/FunnelX.tsx index f46452b0d..c38bd7347 100644 --- a/src/defs/FunnelX.tsx +++ b/src/defs/FunnelX.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/GameController.tsx b/src/defs/GameController.tsx index 638252bb1..46500b467 100644 --- a/src/defs/GameController.tsx +++ b/src/defs/GameController.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/Garage.tsx b/src/defs/Garage.tsx index 468ecbddf..17f5b0a74 100644 --- a/src/defs/Garage.tsx +++ b/src/defs/Garage.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/GasCan.tsx b/src/defs/GasCan.tsx index ef9978ab4..ea8736595 100644 --- a/src/defs/GasCan.tsx +++ b/src/defs/GasCan.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/GasPump.tsx b/src/defs/GasPump.tsx index b0db53997..171e91414 100644 --- a/src/defs/GasPump.tsx +++ b/src/defs/GasPump.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/Gauge.tsx b/src/defs/Gauge.tsx index e8c8c9872..6e98939ca 100644 --- a/src/defs/Gauge.tsx +++ b/src/defs/Gauge.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/Gavel.tsx b/src/defs/Gavel.tsx index 9431ef4b5..c43298728 100644 --- a/src/defs/Gavel.tsx +++ b/src/defs/Gavel.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/Gear.tsx b/src/defs/Gear.tsx index fb2798065..1f041843f 100644 --- a/src/defs/Gear.tsx +++ b/src/defs/Gear.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/GearFine.tsx b/src/defs/GearFine.tsx index 5a6908ce2..53d1738ff 100644 --- a/src/defs/GearFine.tsx +++ b/src/defs/GearFine.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/GearSix.tsx b/src/defs/GearSix.tsx index e67db3279..e433b980b 100644 --- a/src/defs/GearSix.tsx +++ b/src/defs/GearSix.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/GenderFemale.tsx b/src/defs/GenderFemale.tsx index 7e1896630..b249314f3 100644 --- a/src/defs/GenderFemale.tsx +++ b/src/defs/GenderFemale.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/GenderIntersex.tsx b/src/defs/GenderIntersex.tsx index b1ae73f06..ebc5548d8 100644 --- a/src/defs/GenderIntersex.tsx +++ b/src/defs/GenderIntersex.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/GenderMale.tsx b/src/defs/GenderMale.tsx index 868e4ca7a..8d0604629 100644 --- a/src/defs/GenderMale.tsx +++ b/src/defs/GenderMale.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/GenderNeuter.tsx b/src/defs/GenderNeuter.tsx index 1c4e96062..adad72142 100644 --- a/src/defs/GenderNeuter.tsx +++ b/src/defs/GenderNeuter.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/GenderNonbinary.tsx b/src/defs/GenderNonbinary.tsx index 89b9eb2c4..f2d623e9c 100644 --- a/src/defs/GenderNonbinary.tsx +++ b/src/defs/GenderNonbinary.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/GenderTransgender.tsx b/src/defs/GenderTransgender.tsx index d50729856..473e1db74 100644 --- a/src/defs/GenderTransgender.tsx +++ b/src/defs/GenderTransgender.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/Ghost.tsx b/src/defs/Ghost.tsx index 26db60ef8..f8aa561a4 100644 --- a/src/defs/Ghost.tsx +++ b/src/defs/Ghost.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/Gif.tsx b/src/defs/Gif.tsx index 55a6f8ebd..18cd1c223 100644 --- a/src/defs/Gif.tsx +++ b/src/defs/Gif.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/Gift.tsx b/src/defs/Gift.tsx index 64f769ff5..1e298851e 100644 --- a/src/defs/Gift.tsx +++ b/src/defs/Gift.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/GitBranch.tsx b/src/defs/GitBranch.tsx index 375f2ea2d..e8f82a8b0 100644 --- a/src/defs/GitBranch.tsx +++ b/src/defs/GitBranch.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/GitCommit.tsx b/src/defs/GitCommit.tsx index 225897118..13ebf2771 100644 --- a/src/defs/GitCommit.tsx +++ b/src/defs/GitCommit.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/GitDiff.tsx b/src/defs/GitDiff.tsx index c0a98e33e..1c918bbcd 100644 --- a/src/defs/GitDiff.tsx +++ b/src/defs/GitDiff.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/GitFork.tsx b/src/defs/GitFork.tsx index da4043ad1..0b4d26e0f 100644 --- a/src/defs/GitFork.tsx +++ b/src/defs/GitFork.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/GitMerge.tsx b/src/defs/GitMerge.tsx index dacaed6db..32b727bd7 100644 --- a/src/defs/GitMerge.tsx +++ b/src/defs/GitMerge.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/GitPullRequest.tsx b/src/defs/GitPullRequest.tsx index 900401883..2f57eaa7b 100644 --- a/src/defs/GitPullRequest.tsx +++ b/src/defs/GitPullRequest.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/GithubLogo.tsx b/src/defs/GithubLogo.tsx index 13a32b55b..ad662b405 100644 --- a/src/defs/GithubLogo.tsx +++ b/src/defs/GithubLogo.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/GitlabLogo.tsx b/src/defs/GitlabLogo.tsx index 2ee190c5d..6ce30df47 100644 --- a/src/defs/GitlabLogo.tsx +++ b/src/defs/GitlabLogo.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/GitlabLogoSimple.tsx b/src/defs/GitlabLogoSimple.tsx index 50d391c8a..ad2fa2753 100644 --- a/src/defs/GitlabLogoSimple.tsx +++ b/src/defs/GitlabLogoSimple.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/Globe.tsx b/src/defs/Globe.tsx index 1fcf26b73..46b771796 100644 --- a/src/defs/Globe.tsx +++ b/src/defs/Globe.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/GlobeHemisphereEast.tsx b/src/defs/GlobeHemisphereEast.tsx index 9e5228529..ee9073a5f 100644 --- a/src/defs/GlobeHemisphereEast.tsx +++ b/src/defs/GlobeHemisphereEast.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/GlobeHemisphereWest.tsx b/src/defs/GlobeHemisphereWest.tsx index 8202dd873..be99c3990 100644 --- a/src/defs/GlobeHemisphereWest.tsx +++ b/src/defs/GlobeHemisphereWest.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/GlobeSimple.tsx b/src/defs/GlobeSimple.tsx index f4f0623a5..4a7009c1f 100644 --- a/src/defs/GlobeSimple.tsx +++ b/src/defs/GlobeSimple.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/GlobeSimpleX.tsx b/src/defs/GlobeSimpleX.tsx index f2f4e3a93..240af441b 100644 --- a/src/defs/GlobeSimpleX.tsx +++ b/src/defs/GlobeSimpleX.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/GlobeStand.tsx b/src/defs/GlobeStand.tsx index efe1cb9e1..e3e9c400a 100644 --- a/src/defs/GlobeStand.tsx +++ b/src/defs/GlobeStand.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/GlobeX.tsx b/src/defs/GlobeX.tsx index 1eaa495ca..99e2be2f2 100644 --- a/src/defs/GlobeX.tsx +++ b/src/defs/GlobeX.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/Goggles.tsx b/src/defs/Goggles.tsx index 185c9715b..bef1bbf25 100644 --- a/src/defs/Goggles.tsx +++ b/src/defs/Goggles.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/Golf.tsx b/src/defs/Golf.tsx index 474f13467..b212f8e4a 100644 --- a/src/defs/Golf.tsx +++ b/src/defs/Golf.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/GoodreadsLogo.tsx b/src/defs/GoodreadsLogo.tsx index 72a8cbd4a..3d8454a5d 100644 --- a/src/defs/GoodreadsLogo.tsx +++ b/src/defs/GoodreadsLogo.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/GoogleCardboardLogo.tsx b/src/defs/GoogleCardboardLogo.tsx index c9a6ca6da..27b875089 100644 --- a/src/defs/GoogleCardboardLogo.tsx +++ b/src/defs/GoogleCardboardLogo.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/GoogleChromeLogo.tsx b/src/defs/GoogleChromeLogo.tsx index 8a1a4592e..ded2d3e10 100644 --- a/src/defs/GoogleChromeLogo.tsx +++ b/src/defs/GoogleChromeLogo.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/GoogleDriveLogo.tsx b/src/defs/GoogleDriveLogo.tsx index cf3251265..369ec9150 100644 --- a/src/defs/GoogleDriveLogo.tsx +++ b/src/defs/GoogleDriveLogo.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/GoogleLogo.tsx b/src/defs/GoogleLogo.tsx index f615341a8..340b29396 100644 --- a/src/defs/GoogleLogo.tsx +++ b/src/defs/GoogleLogo.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/GooglePhotosLogo.tsx b/src/defs/GooglePhotosLogo.tsx index 76363b877..c6efc32fe 100644 --- a/src/defs/GooglePhotosLogo.tsx +++ b/src/defs/GooglePhotosLogo.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/GooglePlayLogo.tsx b/src/defs/GooglePlayLogo.tsx index f1c4aac34..f50223672 100644 --- a/src/defs/GooglePlayLogo.tsx +++ b/src/defs/GooglePlayLogo.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/GooglePodcastsLogo.tsx b/src/defs/GooglePodcastsLogo.tsx index 20de02c70..5fb2a4af3 100644 --- a/src/defs/GooglePodcastsLogo.tsx +++ b/src/defs/GooglePodcastsLogo.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/Gps.tsx b/src/defs/Gps.tsx index 51924b37f..1e46334ff 100644 --- a/src/defs/Gps.tsx +++ b/src/defs/Gps.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/GpsFix.tsx b/src/defs/GpsFix.tsx index 71754ff57..8d1c0ec13 100644 --- a/src/defs/GpsFix.tsx +++ b/src/defs/GpsFix.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/GpsSlash.tsx b/src/defs/GpsSlash.tsx index 0245849f5..8ba0bee63 100644 --- a/src/defs/GpsSlash.tsx +++ b/src/defs/GpsSlash.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/Gradient.tsx b/src/defs/Gradient.tsx index 66214aaaa..cf51d95d3 100644 --- a/src/defs/Gradient.tsx +++ b/src/defs/Gradient.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/GraduationCap.tsx b/src/defs/GraduationCap.tsx index eb456d6b1..8ef557cee 100644 --- a/src/defs/GraduationCap.tsx +++ b/src/defs/GraduationCap.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/Grains.tsx b/src/defs/Grains.tsx index c7ce6c1f8..7e22dbfbf 100644 --- a/src/defs/Grains.tsx +++ b/src/defs/Grains.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/GrainsSlash.tsx b/src/defs/GrainsSlash.tsx index 96b8a2907..e8053ddd3 100644 --- a/src/defs/GrainsSlash.tsx +++ b/src/defs/GrainsSlash.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/Graph.tsx b/src/defs/Graph.tsx index fbdf0358c..e5ce35861 100644 --- a/src/defs/Graph.tsx +++ b/src/defs/Graph.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/GraphicsCard.tsx b/src/defs/GraphicsCard.tsx index fe144931e..cd1281fa3 100644 --- a/src/defs/GraphicsCard.tsx +++ b/src/defs/GraphicsCard.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/GreaterThan.tsx b/src/defs/GreaterThan.tsx index 6586de8af..ca53a0394 100644 --- a/src/defs/GreaterThan.tsx +++ b/src/defs/GreaterThan.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/GreaterThanOrEqual.tsx b/src/defs/GreaterThanOrEqual.tsx index dd2c53799..c4f0d3291 100644 --- a/src/defs/GreaterThanOrEqual.tsx +++ b/src/defs/GreaterThanOrEqual.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/GridFour.tsx b/src/defs/GridFour.tsx index eeb9773dc..665b80300 100644 --- a/src/defs/GridFour.tsx +++ b/src/defs/GridFour.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/GridNine.tsx b/src/defs/GridNine.tsx index 70bc3cfbf..bd54264c3 100644 --- a/src/defs/GridNine.tsx +++ b/src/defs/GridNine.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/Guitar.tsx b/src/defs/Guitar.tsx index 399432a8d..a43b80174 100644 --- a/src/defs/Guitar.tsx +++ b/src/defs/Guitar.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/HairDryer.tsx b/src/defs/HairDryer.tsx index 945fb95fc..e24814a6c 100644 --- a/src/defs/HairDryer.tsx +++ b/src/defs/HairDryer.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/Hamburger.tsx b/src/defs/Hamburger.tsx index 061539568..c2167f90d 100644 --- a/src/defs/Hamburger.tsx +++ b/src/defs/Hamburger.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/Hammer.tsx b/src/defs/Hammer.tsx index d906b9534..c97b13d09 100644 --- a/src/defs/Hammer.tsx +++ b/src/defs/Hammer.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/Hand.tsx b/src/defs/Hand.tsx index 452bc45dd..b43442ddc 100644 --- a/src/defs/Hand.tsx +++ b/src/defs/Hand.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/HandArrowDown.tsx b/src/defs/HandArrowDown.tsx index d2c2df4d4..080a82f47 100644 --- a/src/defs/HandArrowDown.tsx +++ b/src/defs/HandArrowDown.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/HandArrowUp.tsx b/src/defs/HandArrowUp.tsx index 3f71f0be8..071a3742d 100644 --- a/src/defs/HandArrowUp.tsx +++ b/src/defs/HandArrowUp.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/HandCoins.tsx b/src/defs/HandCoins.tsx index 0bfe3d661..cb3f359c3 100644 --- a/src/defs/HandCoins.tsx +++ b/src/defs/HandCoins.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/HandDeposit.tsx b/src/defs/HandDeposit.tsx index 3fea5c4c2..c39761d23 100644 --- a/src/defs/HandDeposit.tsx +++ b/src/defs/HandDeposit.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/HandEye.tsx b/src/defs/HandEye.tsx index 81a8cb780..eabff6d5f 100644 --- a/src/defs/HandEye.tsx +++ b/src/defs/HandEye.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/HandFist.tsx b/src/defs/HandFist.tsx index 3799b7727..508a5f48e 100644 --- a/src/defs/HandFist.tsx +++ b/src/defs/HandFist.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/HandGrabbing.tsx b/src/defs/HandGrabbing.tsx index 83dd037a0..c1bb55691 100644 --- a/src/defs/HandGrabbing.tsx +++ b/src/defs/HandGrabbing.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/HandHeart.tsx b/src/defs/HandHeart.tsx index 4a271ef7e..225266256 100644 --- a/src/defs/HandHeart.tsx +++ b/src/defs/HandHeart.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/HandPalm.tsx b/src/defs/HandPalm.tsx index 940959c7b..f167cc2c0 100644 --- a/src/defs/HandPalm.tsx +++ b/src/defs/HandPalm.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/HandPeace.tsx b/src/defs/HandPeace.tsx index bd51e7169..a9016b347 100644 --- a/src/defs/HandPeace.tsx +++ b/src/defs/HandPeace.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/HandPointing.tsx b/src/defs/HandPointing.tsx index f8c2297d4..874d5c94a 100644 --- a/src/defs/HandPointing.tsx +++ b/src/defs/HandPointing.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/HandSoap.tsx b/src/defs/HandSoap.tsx index 7d02a74c6..c3e7260b3 100644 --- a/src/defs/HandSoap.tsx +++ b/src/defs/HandSoap.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/HandSwipeLeft.tsx b/src/defs/HandSwipeLeft.tsx index 6bd8fb9d6..e3e025b21 100644 --- a/src/defs/HandSwipeLeft.tsx +++ b/src/defs/HandSwipeLeft.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/HandSwipeRight.tsx b/src/defs/HandSwipeRight.tsx index 835a768ee..fd0b4eea3 100644 --- a/src/defs/HandSwipeRight.tsx +++ b/src/defs/HandSwipeRight.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/HandTap.tsx b/src/defs/HandTap.tsx index 015351897..72e1e4834 100644 --- a/src/defs/HandTap.tsx +++ b/src/defs/HandTap.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/HandWaving.tsx b/src/defs/HandWaving.tsx index 6082fd20b..b8cf84350 100644 --- a/src/defs/HandWaving.tsx +++ b/src/defs/HandWaving.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/HandWithdraw.tsx b/src/defs/HandWithdraw.tsx index 59f82084c..92faa0d12 100644 --- a/src/defs/HandWithdraw.tsx +++ b/src/defs/HandWithdraw.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/Handbag.tsx b/src/defs/Handbag.tsx index 50df48ac8..7a33061c0 100644 --- a/src/defs/Handbag.tsx +++ b/src/defs/Handbag.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/HandbagSimple.tsx b/src/defs/HandbagSimple.tsx index f862ed8c0..230bb19f2 100644 --- a/src/defs/HandbagSimple.tsx +++ b/src/defs/HandbagSimple.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/HandsClapping.tsx b/src/defs/HandsClapping.tsx index 2e5db29e3..d963659a3 100644 --- a/src/defs/HandsClapping.tsx +++ b/src/defs/HandsClapping.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/HandsPraying.tsx b/src/defs/HandsPraying.tsx index c99e9fa02..d90bad88c 100644 --- a/src/defs/HandsPraying.tsx +++ b/src/defs/HandsPraying.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/Handshake.tsx b/src/defs/Handshake.tsx index 177cc36d6..a30f20b36 100644 --- a/src/defs/Handshake.tsx +++ b/src/defs/Handshake.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/HardDrive.tsx b/src/defs/HardDrive.tsx index 1f07cd21d..49a869d24 100644 --- a/src/defs/HardDrive.tsx +++ b/src/defs/HardDrive.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/HardDrives.tsx b/src/defs/HardDrives.tsx index 7dd8c58b7..0d630650a 100644 --- a/src/defs/HardDrives.tsx +++ b/src/defs/HardDrives.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -29,20 +27,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/HardHat.tsx b/src/defs/HardHat.tsx index 66cba8600..46e45b7a5 100644 --- a/src/defs/HardHat.tsx +++ b/src/defs/HardHat.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/Hash.tsx b/src/defs/Hash.tsx index 67c52924d..797614e0a 100644 --- a/src/defs/Hash.tsx +++ b/src/defs/Hash.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/HashStraight.tsx b/src/defs/HashStraight.tsx index 54445b805..9f6e095e3 100644 --- a/src/defs/HashStraight.tsx +++ b/src/defs/HashStraight.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/HeadCircuit.tsx b/src/defs/HeadCircuit.tsx index 75afe3159..5b1a68736 100644 --- a/src/defs/HeadCircuit.tsx +++ b/src/defs/HeadCircuit.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/Headlights.tsx b/src/defs/Headlights.tsx index 09738bbd5..e0dad19fb 100644 --- a/src/defs/Headlights.tsx +++ b/src/defs/Headlights.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/Headphones.tsx b/src/defs/Headphones.tsx index 6e05c5b82..dad781103 100644 --- a/src/defs/Headphones.tsx +++ b/src/defs/Headphones.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/Headset.tsx b/src/defs/Headset.tsx index 166ab884c..62df7d4d6 100644 --- a/src/defs/Headset.tsx +++ b/src/defs/Headset.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/Heart.tsx b/src/defs/Heart.tsx index 7266f0497..c148400dd 100644 --- a/src/defs/Heart.tsx +++ b/src/defs/Heart.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/HeartBreak.tsx b/src/defs/HeartBreak.tsx index 8a356c2f0..e4408faf8 100644 --- a/src/defs/HeartBreak.tsx +++ b/src/defs/HeartBreak.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/HeartHalf.tsx b/src/defs/HeartHalf.tsx index b94404d48..fc90617ae 100644 --- a/src/defs/HeartHalf.tsx +++ b/src/defs/HeartHalf.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/HeartStraight.tsx b/src/defs/HeartStraight.tsx index 90db4ead1..828e5703a 100644 --- a/src/defs/HeartStraight.tsx +++ b/src/defs/HeartStraight.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/HeartStraightBreak.tsx b/src/defs/HeartStraightBreak.tsx index 521198649..8428600cd 100644 --- a/src/defs/HeartStraightBreak.tsx +++ b/src/defs/HeartStraightBreak.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/Heartbeat.tsx b/src/defs/Heartbeat.tsx index 78d1256a3..2b1a17731 100644 --- a/src/defs/Heartbeat.tsx +++ b/src/defs/Heartbeat.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/Hexagon.tsx b/src/defs/Hexagon.tsx index 52fe506c0..9a339b90b 100644 --- a/src/defs/Hexagon.tsx +++ b/src/defs/Hexagon.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/HighDefinition.tsx b/src/defs/HighDefinition.tsx index 7130f852b..a8ce57d12 100644 --- a/src/defs/HighDefinition.tsx +++ b/src/defs/HighDefinition.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/HighHeel.tsx b/src/defs/HighHeel.tsx index 8aea64ab1..49357081a 100644 --- a/src/defs/HighHeel.tsx +++ b/src/defs/HighHeel.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/Highlighter.tsx b/src/defs/Highlighter.tsx index 8b280adf7..b8c52bc61 100644 --- a/src/defs/Highlighter.tsx +++ b/src/defs/Highlighter.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/HighlighterCircle.tsx b/src/defs/HighlighterCircle.tsx index d1ce6fc0c..8dfce0340 100644 --- a/src/defs/HighlighterCircle.tsx +++ b/src/defs/HighlighterCircle.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/Hockey.tsx b/src/defs/Hockey.tsx index df1abfb23..80de515e4 100644 --- a/src/defs/Hockey.tsx +++ b/src/defs/Hockey.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/Hoodie.tsx b/src/defs/Hoodie.tsx index 3f19028aa..9d4340954 100644 --- a/src/defs/Hoodie.tsx +++ b/src/defs/Hoodie.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/Horse.tsx b/src/defs/Horse.tsx index 2613029ea..d3fa8a56e 100644 --- a/src/defs/Horse.tsx +++ b/src/defs/Horse.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/Hospital.tsx b/src/defs/Hospital.tsx index 6acf1e66f..0ad9cd90f 100644 --- a/src/defs/Hospital.tsx +++ b/src/defs/Hospital.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/Hourglass.tsx b/src/defs/Hourglass.tsx index 093ee7e8e..a165dc498 100644 --- a/src/defs/Hourglass.tsx +++ b/src/defs/Hourglass.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/HourglassHigh.tsx b/src/defs/HourglassHigh.tsx index 4232e9330..0a69ce259 100644 --- a/src/defs/HourglassHigh.tsx +++ b/src/defs/HourglassHigh.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/HourglassLow.tsx b/src/defs/HourglassLow.tsx index 2cb2fa9e4..8743856c9 100644 --- a/src/defs/HourglassLow.tsx +++ b/src/defs/HourglassLow.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/HourglassMedium.tsx b/src/defs/HourglassMedium.tsx index 204f204d5..98da6494c 100644 --- a/src/defs/HourglassMedium.tsx +++ b/src/defs/HourglassMedium.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/HourglassSimple.tsx b/src/defs/HourglassSimple.tsx index ad2bfa05e..f1bd9b700 100644 --- a/src/defs/HourglassSimple.tsx +++ b/src/defs/HourglassSimple.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/HourglassSimpleHigh.tsx b/src/defs/HourglassSimpleHigh.tsx index 99d78f451..5656ed1ab 100644 --- a/src/defs/HourglassSimpleHigh.tsx +++ b/src/defs/HourglassSimpleHigh.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/HourglassSimpleLow.tsx b/src/defs/HourglassSimpleLow.tsx index 17524f48a..17a355fdf 100644 --- a/src/defs/HourglassSimpleLow.tsx +++ b/src/defs/HourglassSimpleLow.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/HourglassSimpleMedium.tsx b/src/defs/HourglassSimpleMedium.tsx index fb9b4bacd..4d2e8ac2f 100644 --- a/src/defs/HourglassSimpleMedium.tsx +++ b/src/defs/HourglassSimpleMedium.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/House.tsx b/src/defs/House.tsx index ec3ba9ae4..297952086 100644 --- a/src/defs/House.tsx +++ b/src/defs/House.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/HouseLine.tsx b/src/defs/HouseLine.tsx index 3b2632524..043c93b2d 100644 --- a/src/defs/HouseLine.tsx +++ b/src/defs/HouseLine.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/HouseSimple.tsx b/src/defs/HouseSimple.tsx index 4d069dedb..6a2df7fcd 100644 --- a/src/defs/HouseSimple.tsx +++ b/src/defs/HouseSimple.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/Hurricane.tsx b/src/defs/Hurricane.tsx index 63cf0a656..9be696768 100644 --- a/src/defs/Hurricane.tsx +++ b/src/defs/Hurricane.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/IceCream.tsx b/src/defs/IceCream.tsx index b8c62ae59..5b190d3d1 100644 --- a/src/defs/IceCream.tsx +++ b/src/defs/IceCream.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/IdentificationBadge.tsx b/src/defs/IdentificationBadge.tsx index 78e7ce462..89856b537 100644 --- a/src/defs/IdentificationBadge.tsx +++ b/src/defs/IdentificationBadge.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/IdentificationCard.tsx b/src/defs/IdentificationCard.tsx index 185169875..37d56c2a0 100644 --- a/src/defs/IdentificationCard.tsx +++ b/src/defs/IdentificationCard.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/Image.tsx b/src/defs/Image.tsx index 12f5c8270..ce5ead7b5 100644 --- a/src/defs/Image.tsx +++ b/src/defs/Image.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/ImageBroken.tsx b/src/defs/ImageBroken.tsx index f22c6db6c..ffc2381d2 100644 --- a/src/defs/ImageBroken.tsx +++ b/src/defs/ImageBroken.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/ImageSquare.tsx b/src/defs/ImageSquare.tsx index c832be072..3582bd7be 100644 --- a/src/defs/ImageSquare.tsx +++ b/src/defs/ImageSquare.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/Images.tsx b/src/defs/Images.tsx index 800e2421a..b55790c22 100644 --- a/src/defs/Images.tsx +++ b/src/defs/Images.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/ImagesSquare.tsx b/src/defs/ImagesSquare.tsx index d29c8de82..bfdd62bc7 100644 --- a/src/defs/ImagesSquare.tsx +++ b/src/defs/ImagesSquare.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/Infinity.tsx b/src/defs/Infinity.tsx index 83c5d5195..3520a6018 100644 --- a/src/defs/Infinity.tsx +++ b/src/defs/Infinity.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/Info.tsx b/src/defs/Info.tsx index 37e175b64..628e795fd 100644 --- a/src/defs/Info.tsx +++ b/src/defs/Info.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/InstagramLogo.tsx b/src/defs/InstagramLogo.tsx index d09535bbd..e18db6fda 100644 --- a/src/defs/InstagramLogo.tsx +++ b/src/defs/InstagramLogo.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/Intersect.tsx b/src/defs/Intersect.tsx index 34817e1e1..9905a132f 100644 --- a/src/defs/Intersect.tsx +++ b/src/defs/Intersect.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/IntersectSquare.tsx b/src/defs/IntersectSquare.tsx index f3cbc234f..6f14bd0df 100644 --- a/src/defs/IntersectSquare.tsx +++ b/src/defs/IntersectSquare.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/IntersectThree.tsx b/src/defs/IntersectThree.tsx index fb36603c5..52c2f42c6 100644 --- a/src/defs/IntersectThree.tsx +++ b/src/defs/IntersectThree.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/Intersection.tsx b/src/defs/Intersection.tsx index 99c200d18..c1be119ee 100644 --- a/src/defs/Intersection.tsx +++ b/src/defs/Intersection.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/Invoice.tsx b/src/defs/Invoice.tsx index 0d72d852e..b827b70a3 100644 --- a/src/defs/Invoice.tsx +++ b/src/defs/Invoice.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/Island.tsx b/src/defs/Island.tsx index 8876e8cf6..57c51d047 100644 --- a/src/defs/Island.tsx +++ b/src/defs/Island.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/Jar.tsx b/src/defs/Jar.tsx index a45b65fd8..05cef4129 100644 --- a/src/defs/Jar.tsx +++ b/src/defs/Jar.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/JarLabel.tsx b/src/defs/JarLabel.tsx index 91972cae9..dc52ee7cf 100644 --- a/src/defs/JarLabel.tsx +++ b/src/defs/JarLabel.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/Jeep.tsx b/src/defs/Jeep.tsx index 4ac2a72d9..2296e1b1b 100644 --- a/src/defs/Jeep.tsx +++ b/src/defs/Jeep.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/Joystick.tsx b/src/defs/Joystick.tsx index ebc7a52a3..54ca9f4fa 100644 --- a/src/defs/Joystick.tsx +++ b/src/defs/Joystick.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/Kanban.tsx b/src/defs/Kanban.tsx index 69595831b..7092fc0c8 100644 --- a/src/defs/Kanban.tsx +++ b/src/defs/Kanban.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/Key.tsx b/src/defs/Key.tsx index 429a5f7b5..32dbaca39 100644 --- a/src/defs/Key.tsx +++ b/src/defs/Key.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/KeyReturn.tsx b/src/defs/KeyReturn.tsx index 73612b6c1..bbfa4af89 100644 --- a/src/defs/KeyReturn.tsx +++ b/src/defs/KeyReturn.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/Keyboard.tsx b/src/defs/Keyboard.tsx index e863e307e..2883373a4 100644 --- a/src/defs/Keyboard.tsx +++ b/src/defs/Keyboard.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/Keyhole.tsx b/src/defs/Keyhole.tsx index d3720fb9b..b5225a9f6 100644 --- a/src/defs/Keyhole.tsx +++ b/src/defs/Keyhole.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/Knife.tsx b/src/defs/Knife.tsx index ce72d72a6..ce291fb06 100644 --- a/src/defs/Knife.tsx +++ b/src/defs/Knife.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/Ladder.tsx b/src/defs/Ladder.tsx index 38075f5f9..ebcb26eb0 100644 --- a/src/defs/Ladder.tsx +++ b/src/defs/Ladder.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/LadderSimple.tsx b/src/defs/LadderSimple.tsx index d4c67f1d6..ea626064b 100644 --- a/src/defs/LadderSimple.tsx +++ b/src/defs/LadderSimple.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/Lamp.tsx b/src/defs/Lamp.tsx index 13fc0a536..4094309de 100644 --- a/src/defs/Lamp.tsx +++ b/src/defs/Lamp.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/LampPendant.tsx b/src/defs/LampPendant.tsx index c16a80ee2..319e18480 100644 --- a/src/defs/LampPendant.tsx +++ b/src/defs/LampPendant.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/Laptop.tsx b/src/defs/Laptop.tsx index 817dd98b0..a214c7bb2 100644 --- a/src/defs/Laptop.tsx +++ b/src/defs/Laptop.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/Lasso.tsx b/src/defs/Lasso.tsx index e68504892..b674c1bd2 100644 --- a/src/defs/Lasso.tsx +++ b/src/defs/Lasso.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -29,20 +27,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/LastfmLogo.tsx b/src/defs/LastfmLogo.tsx index c38b59446..2aa121560 100644 --- a/src/defs/LastfmLogo.tsx +++ b/src/defs/LastfmLogo.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/Layout.tsx b/src/defs/Layout.tsx index c586885fe..fe9dff671 100644 --- a/src/defs/Layout.tsx +++ b/src/defs/Layout.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/Leaf.tsx b/src/defs/Leaf.tsx index 5fd1a1e3c..6c2c75c00 100644 --- a/src/defs/Leaf.tsx +++ b/src/defs/Leaf.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/Lectern.tsx b/src/defs/Lectern.tsx index 26dd45095..1e844453e 100644 --- a/src/defs/Lectern.tsx +++ b/src/defs/Lectern.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/Lego.tsx b/src/defs/Lego.tsx index 358b6343a..5fe808f17 100644 --- a/src/defs/Lego.tsx +++ b/src/defs/Lego.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/LegoSmiley.tsx b/src/defs/LegoSmiley.tsx index 6ded58d5b..98c04cda9 100644 --- a/src/defs/LegoSmiley.tsx +++ b/src/defs/LegoSmiley.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/LessThan.tsx b/src/defs/LessThan.tsx index e61ae4016..1af22b9ee 100644 --- a/src/defs/LessThan.tsx +++ b/src/defs/LessThan.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/LessThanOrEqual.tsx b/src/defs/LessThanOrEqual.tsx index 411ec389f..0405e53b7 100644 --- a/src/defs/LessThanOrEqual.tsx +++ b/src/defs/LessThanOrEqual.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/LetterCircleH.tsx b/src/defs/LetterCircleH.tsx index 5fd265148..09dd1aad3 100644 --- a/src/defs/LetterCircleH.tsx +++ b/src/defs/LetterCircleH.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/LetterCircleP.tsx b/src/defs/LetterCircleP.tsx index 6ff24f33b..72bdd0205 100644 --- a/src/defs/LetterCircleP.tsx +++ b/src/defs/LetterCircleP.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/LetterCircleV.tsx b/src/defs/LetterCircleV.tsx index 2ae646104..fc1d6851d 100644 --- a/src/defs/LetterCircleV.tsx +++ b/src/defs/LetterCircleV.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/Lifebuoy.tsx b/src/defs/Lifebuoy.tsx index 42174b15b..07a13d0f9 100644 --- a/src/defs/Lifebuoy.tsx +++ b/src/defs/Lifebuoy.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/Lightbulb.tsx b/src/defs/Lightbulb.tsx index e7481c87d..afb234a33 100644 --- a/src/defs/Lightbulb.tsx +++ b/src/defs/Lightbulb.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/LightbulbFilament.tsx b/src/defs/LightbulbFilament.tsx index 44d36caa2..119041053 100644 --- a/src/defs/LightbulbFilament.tsx +++ b/src/defs/LightbulbFilament.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/Lighthouse.tsx b/src/defs/Lighthouse.tsx index a42b82727..7b8d15855 100644 --- a/src/defs/Lighthouse.tsx +++ b/src/defs/Lighthouse.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/Lightning.tsx b/src/defs/Lightning.tsx index 1bc47d727..d64908fc6 100644 --- a/src/defs/Lightning.tsx +++ b/src/defs/Lightning.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/LightningA.tsx b/src/defs/LightningA.tsx index bce2b250d..bd59989ae 100644 --- a/src/defs/LightningA.tsx +++ b/src/defs/LightningA.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/LightningSlash.tsx b/src/defs/LightningSlash.tsx index 0eb72e5f7..a44f18194 100644 --- a/src/defs/LightningSlash.tsx +++ b/src/defs/LightningSlash.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/LineSegment.tsx b/src/defs/LineSegment.tsx index b34a28888..ac359a334 100644 --- a/src/defs/LineSegment.tsx +++ b/src/defs/LineSegment.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/LineSegments.tsx b/src/defs/LineSegments.tsx index 8e377a664..ff5d53633 100644 --- a/src/defs/LineSegments.tsx +++ b/src/defs/LineSegments.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/LineVertical.tsx b/src/defs/LineVertical.tsx index 849988125..8d6a2e3ae 100644 --- a/src/defs/LineVertical.tsx +++ b/src/defs/LineVertical.tsx @@ -4,12 +4,7 @@ import type { ReactElement } from "react"; import { IconWeight } from "../lib"; export default new Map([ - [ - "bold", - <> - - , - ], + ["bold", ], [ "duotone", <> @@ -22,26 +17,9 @@ export default new Map([ ], [ "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , + , ], + ["light", ], + ["regular", ], + ["thin", ], ]); diff --git a/src/defs/Link.tsx b/src/defs/Link.tsx index 9e3d4db43..9afb7b6bb 100644 --- a/src/defs/Link.tsx +++ b/src/defs/Link.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/LinkBreak.tsx b/src/defs/LinkBreak.tsx index b0a11ec10..5efe6547d 100644 --- a/src/defs/LinkBreak.tsx +++ b/src/defs/LinkBreak.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/LinkSimple.tsx b/src/defs/LinkSimple.tsx index 16230346b..90a697e16 100644 --- a/src/defs/LinkSimple.tsx +++ b/src/defs/LinkSimple.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/LinkSimpleBreak.tsx b/src/defs/LinkSimpleBreak.tsx index d507f2a3d..058ff67f5 100644 --- a/src/defs/LinkSimpleBreak.tsx +++ b/src/defs/LinkSimpleBreak.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/LinkSimpleHorizontal.tsx b/src/defs/LinkSimpleHorizontal.tsx index ce1ef12b8..84b669d93 100644 --- a/src/defs/LinkSimpleHorizontal.tsx +++ b/src/defs/LinkSimpleHorizontal.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/LinkSimpleHorizontalBreak.tsx b/src/defs/LinkSimpleHorizontalBreak.tsx index 493f1df36..ec3b6c128 100644 --- a/src/defs/LinkSimpleHorizontalBreak.tsx +++ b/src/defs/LinkSimpleHorizontalBreak.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/LinkedinLogo.tsx b/src/defs/LinkedinLogo.tsx index 169306be0..c30e7cd01 100644 --- a/src/defs/LinkedinLogo.tsx +++ b/src/defs/LinkedinLogo.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/LinktreeLogo.tsx b/src/defs/LinktreeLogo.tsx index 83b27a3d3..aa724d3cb 100644 --- a/src/defs/LinktreeLogo.tsx +++ b/src/defs/LinktreeLogo.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/LinuxLogo.tsx b/src/defs/LinuxLogo.tsx index 742d4276b..a8d87eb18 100644 --- a/src/defs/LinuxLogo.tsx +++ b/src/defs/LinuxLogo.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/List.tsx b/src/defs/List.tsx index ed20381e4..7d7c7ef81 100644 --- a/src/defs/List.tsx +++ b/src/defs/List.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/ListBullets.tsx b/src/defs/ListBullets.tsx index 4cb767a70..e6e61f4aa 100644 --- a/src/defs/ListBullets.tsx +++ b/src/defs/ListBullets.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/ListChecks.tsx b/src/defs/ListChecks.tsx index 270394b3c..311b20813 100644 --- a/src/defs/ListChecks.tsx +++ b/src/defs/ListChecks.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/ListDashes.tsx b/src/defs/ListDashes.tsx index 364a2682c..a64d4de62 100644 --- a/src/defs/ListDashes.tsx +++ b/src/defs/ListDashes.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/ListHeart.tsx b/src/defs/ListHeart.tsx index 81c0bb913..02fe5d946 100644 --- a/src/defs/ListHeart.tsx +++ b/src/defs/ListHeart.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/ListMagnifyingGlass.tsx b/src/defs/ListMagnifyingGlass.tsx index 366e23a6e..3196fce09 100644 --- a/src/defs/ListMagnifyingGlass.tsx +++ b/src/defs/ListMagnifyingGlass.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/ListNumbers.tsx b/src/defs/ListNumbers.tsx index 33a19aa28..fe4099611 100644 --- a/src/defs/ListNumbers.tsx +++ b/src/defs/ListNumbers.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/ListPlus.tsx b/src/defs/ListPlus.tsx index 1d5626a27..3cf4a422e 100644 --- a/src/defs/ListPlus.tsx +++ b/src/defs/ListPlus.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/ListStar.tsx b/src/defs/ListStar.tsx index 214f04254..e71cd4da9 100644 --- a/src/defs/ListStar.tsx +++ b/src/defs/ListStar.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/Lock.tsx b/src/defs/Lock.tsx index 89206b025..4edf54594 100644 --- a/src/defs/Lock.tsx +++ b/src/defs/Lock.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/LockKey.tsx b/src/defs/LockKey.tsx index faaf0025d..a7e2e9424 100644 --- a/src/defs/LockKey.tsx +++ b/src/defs/LockKey.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/LockKeyOpen.tsx b/src/defs/LockKeyOpen.tsx index e768789b4..a61c0a4da 100644 --- a/src/defs/LockKeyOpen.tsx +++ b/src/defs/LockKeyOpen.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/LockLaminated.tsx b/src/defs/LockLaminated.tsx index df0bd10aa..77fa78b39 100644 --- a/src/defs/LockLaminated.tsx +++ b/src/defs/LockLaminated.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/LockLaminatedOpen.tsx b/src/defs/LockLaminatedOpen.tsx index 0b4e5a42d..909c05e12 100644 --- a/src/defs/LockLaminatedOpen.tsx +++ b/src/defs/LockLaminatedOpen.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/LockOpen.tsx b/src/defs/LockOpen.tsx index 78978e547..23a2f18ef 100644 --- a/src/defs/LockOpen.tsx +++ b/src/defs/LockOpen.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/LockSimple.tsx b/src/defs/LockSimple.tsx index af5a49d81..f28f7cc01 100644 --- a/src/defs/LockSimple.tsx +++ b/src/defs/LockSimple.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/LockSimpleOpen.tsx b/src/defs/LockSimpleOpen.tsx index 2e5c26ccd..895cc4723 100644 --- a/src/defs/LockSimpleOpen.tsx +++ b/src/defs/LockSimpleOpen.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/Lockers.tsx b/src/defs/Lockers.tsx index 619d6d828..f2e32b26d 100644 --- a/src/defs/Lockers.tsx +++ b/src/defs/Lockers.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/Log.tsx b/src/defs/Log.tsx index 262e69c7a..95168f73b 100644 --- a/src/defs/Log.tsx +++ b/src/defs/Log.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/MagicWand.tsx b/src/defs/MagicWand.tsx index 08529c885..e090c9897 100644 --- a/src/defs/MagicWand.tsx +++ b/src/defs/MagicWand.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/Magnet.tsx b/src/defs/Magnet.tsx index d0aefcdc9..87b602576 100644 --- a/src/defs/Magnet.tsx +++ b/src/defs/Magnet.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/MagnetStraight.tsx b/src/defs/MagnetStraight.tsx index 1e4ece095..2660763d0 100644 --- a/src/defs/MagnetStraight.tsx +++ b/src/defs/MagnetStraight.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/MagnifyingGlass.tsx b/src/defs/MagnifyingGlass.tsx index 9cff83a36..8f4955d26 100644 --- a/src/defs/MagnifyingGlass.tsx +++ b/src/defs/MagnifyingGlass.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/MagnifyingGlassMinus.tsx b/src/defs/MagnifyingGlassMinus.tsx index be02dfc62..8fd820d1b 100644 --- a/src/defs/MagnifyingGlassMinus.tsx +++ b/src/defs/MagnifyingGlassMinus.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/MagnifyingGlassPlus.tsx b/src/defs/MagnifyingGlassPlus.tsx index 3013c0aa8..d32cf443b 100644 --- a/src/defs/MagnifyingGlassPlus.tsx +++ b/src/defs/MagnifyingGlassPlus.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/Mailbox.tsx b/src/defs/Mailbox.tsx index 521b11d43..218b7a55a 100644 --- a/src/defs/Mailbox.tsx +++ b/src/defs/Mailbox.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/MapPin.tsx b/src/defs/MapPin.tsx index dc8010bb1..13c4d4e23 100644 --- a/src/defs/MapPin.tsx +++ b/src/defs/MapPin.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/MapPinArea.tsx b/src/defs/MapPinArea.tsx index 78b1e5542..5074aefa1 100644 --- a/src/defs/MapPinArea.tsx +++ b/src/defs/MapPinArea.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/MapPinLine.tsx b/src/defs/MapPinLine.tsx index 468137ef0..3807c4455 100644 --- a/src/defs/MapPinLine.tsx +++ b/src/defs/MapPinLine.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/MapPinPlus.tsx b/src/defs/MapPinPlus.tsx index 4ed322fa7..9fcab07e3 100644 --- a/src/defs/MapPinPlus.tsx +++ b/src/defs/MapPinPlus.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/MapPinSimple.tsx b/src/defs/MapPinSimple.tsx index c6d6f2537..9fbf2db00 100644 --- a/src/defs/MapPinSimple.tsx +++ b/src/defs/MapPinSimple.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/MapPinSimpleArea.tsx b/src/defs/MapPinSimpleArea.tsx index 996cd1089..daeabb445 100644 --- a/src/defs/MapPinSimpleArea.tsx +++ b/src/defs/MapPinSimpleArea.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/MapPinSimpleLine.tsx b/src/defs/MapPinSimpleLine.tsx index 6dbd6d286..81e44305b 100644 --- a/src/defs/MapPinSimpleLine.tsx +++ b/src/defs/MapPinSimpleLine.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/MapTrifold.tsx b/src/defs/MapTrifold.tsx index 4f952e81b..119b9c548 100644 --- a/src/defs/MapTrifold.tsx +++ b/src/defs/MapTrifold.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/MarkdownLogo.tsx b/src/defs/MarkdownLogo.tsx index 17c0d955d..f044b3023 100644 --- a/src/defs/MarkdownLogo.tsx +++ b/src/defs/MarkdownLogo.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/MarkerCircle.tsx b/src/defs/MarkerCircle.tsx index ed8a21d55..7fb74b45d 100644 --- a/src/defs/MarkerCircle.tsx +++ b/src/defs/MarkerCircle.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/Martini.tsx b/src/defs/Martini.tsx index beccb541f..d01494d59 100644 --- a/src/defs/Martini.tsx +++ b/src/defs/Martini.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/MaskHappy.tsx b/src/defs/MaskHappy.tsx index 801c1824b..c8bec973c 100644 --- a/src/defs/MaskHappy.tsx +++ b/src/defs/MaskHappy.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/MaskSad.tsx b/src/defs/MaskSad.tsx index e277fead0..7602b3b01 100644 --- a/src/defs/MaskSad.tsx +++ b/src/defs/MaskSad.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/MastodonLogo.tsx b/src/defs/MastodonLogo.tsx index f82a839fd..6eee603b0 100644 --- a/src/defs/MastodonLogo.tsx +++ b/src/defs/MastodonLogo.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/MathOperations.tsx b/src/defs/MathOperations.tsx index 9664993c7..80e9cfeca 100644 --- a/src/defs/MathOperations.tsx +++ b/src/defs/MathOperations.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/MatrixLogo.tsx b/src/defs/MatrixLogo.tsx index a9a372b72..f72655386 100644 --- a/src/defs/MatrixLogo.tsx +++ b/src/defs/MatrixLogo.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/Medal.tsx b/src/defs/Medal.tsx index e8451a55a..5c7116840 100644 --- a/src/defs/Medal.tsx +++ b/src/defs/Medal.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/MedalMilitary.tsx b/src/defs/MedalMilitary.tsx index 77501d96b..c17989125 100644 --- a/src/defs/MedalMilitary.tsx +++ b/src/defs/MedalMilitary.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/MediumLogo.tsx b/src/defs/MediumLogo.tsx index 5f3c72cb7..d14d715c4 100644 --- a/src/defs/MediumLogo.tsx +++ b/src/defs/MediumLogo.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/Megaphone.tsx b/src/defs/Megaphone.tsx index d10a37bb3..0581c5833 100644 --- a/src/defs/Megaphone.tsx +++ b/src/defs/Megaphone.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/MegaphoneSimple.tsx b/src/defs/MegaphoneSimple.tsx index 6562137c7..fc589ccc7 100644 --- a/src/defs/MegaphoneSimple.tsx +++ b/src/defs/MegaphoneSimple.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/MemberOf.tsx b/src/defs/MemberOf.tsx index 95762c180..de39b9e24 100644 --- a/src/defs/MemberOf.tsx +++ b/src/defs/MemberOf.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/Memory.tsx b/src/defs/Memory.tsx index 297f71d36..cf9c19698 100644 --- a/src/defs/Memory.tsx +++ b/src/defs/Memory.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/MessengerLogo.tsx b/src/defs/MessengerLogo.tsx index 24dcf25d7..d37240f14 100644 --- a/src/defs/MessengerLogo.tsx +++ b/src/defs/MessengerLogo.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/MetaLogo.tsx b/src/defs/MetaLogo.tsx index 9043a328b..ece0ee4c4 100644 --- a/src/defs/MetaLogo.tsx +++ b/src/defs/MetaLogo.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/Meteor.tsx b/src/defs/Meteor.tsx index 3aa62d7b9..f12af3e5c 100644 --- a/src/defs/Meteor.tsx +++ b/src/defs/Meteor.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/Metronome.tsx b/src/defs/Metronome.tsx index 1018ef9ea..98745c76d 100644 --- a/src/defs/Metronome.tsx +++ b/src/defs/Metronome.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/Microphone.tsx b/src/defs/Microphone.tsx index 7c8e4a9c3..109d57d8a 100644 --- a/src/defs/Microphone.tsx +++ b/src/defs/Microphone.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/MicrophoneSlash.tsx b/src/defs/MicrophoneSlash.tsx index 542d882f0..9d9126064 100644 --- a/src/defs/MicrophoneSlash.tsx +++ b/src/defs/MicrophoneSlash.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/MicrophoneStage.tsx b/src/defs/MicrophoneStage.tsx index fafb6b934..62d9c9578 100644 --- a/src/defs/MicrophoneStage.tsx +++ b/src/defs/MicrophoneStage.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/Microscope.tsx b/src/defs/Microscope.tsx index e2e69a8f7..0d22b45d9 100644 --- a/src/defs/Microscope.tsx +++ b/src/defs/Microscope.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/MicrosoftExcelLogo.tsx b/src/defs/MicrosoftExcelLogo.tsx index 80dbbf0fa..8018bf90d 100644 --- a/src/defs/MicrosoftExcelLogo.tsx +++ b/src/defs/MicrosoftExcelLogo.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/MicrosoftOutlookLogo.tsx b/src/defs/MicrosoftOutlookLogo.tsx index 477973d9d..cfa044aca 100644 --- a/src/defs/MicrosoftOutlookLogo.tsx +++ b/src/defs/MicrosoftOutlookLogo.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/MicrosoftPowerpointLogo.tsx b/src/defs/MicrosoftPowerpointLogo.tsx index 99c1d34ef..cdd944c82 100644 --- a/src/defs/MicrosoftPowerpointLogo.tsx +++ b/src/defs/MicrosoftPowerpointLogo.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/MicrosoftTeamsLogo.tsx b/src/defs/MicrosoftTeamsLogo.tsx index 99bf849c1..a48fcffad 100644 --- a/src/defs/MicrosoftTeamsLogo.tsx +++ b/src/defs/MicrosoftTeamsLogo.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/MicrosoftWordLogo.tsx b/src/defs/MicrosoftWordLogo.tsx index e17bbc629..5cafad1a4 100644 --- a/src/defs/MicrosoftWordLogo.tsx +++ b/src/defs/MicrosoftWordLogo.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/Minus.tsx b/src/defs/Minus.tsx index 77da79585..e6db25b26 100644 --- a/src/defs/Minus.tsx +++ b/src/defs/Minus.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/MinusCircle.tsx b/src/defs/MinusCircle.tsx index 1f0f5bab0..3fb5fddc4 100644 --- a/src/defs/MinusCircle.tsx +++ b/src/defs/MinusCircle.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/MinusSquare.tsx b/src/defs/MinusSquare.tsx index 33f5e7c99..4fde97184 100644 --- a/src/defs/MinusSquare.tsx +++ b/src/defs/MinusSquare.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/Money.tsx b/src/defs/Money.tsx index c9613bfaf..26fb17930 100644 --- a/src/defs/Money.tsx +++ b/src/defs/Money.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/MoneyWavy.tsx b/src/defs/MoneyWavy.tsx index 566fef5d7..2b906748a 100644 --- a/src/defs/MoneyWavy.tsx +++ b/src/defs/MoneyWavy.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/Monitor.tsx b/src/defs/Monitor.tsx index 129948481..61c0709ad 100644 --- a/src/defs/Monitor.tsx +++ b/src/defs/Monitor.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/MonitorArrowUp.tsx b/src/defs/MonitorArrowUp.tsx index 69c3b5463..d4fd12e6d 100644 --- a/src/defs/MonitorArrowUp.tsx +++ b/src/defs/MonitorArrowUp.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/MonitorPlay.tsx b/src/defs/MonitorPlay.tsx index 1cb40e40c..576bc281a 100644 --- a/src/defs/MonitorPlay.tsx +++ b/src/defs/MonitorPlay.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/Moon.tsx b/src/defs/Moon.tsx index 9db4a62de..35fccfecb 100644 --- a/src/defs/Moon.tsx +++ b/src/defs/Moon.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/MoonStars.tsx b/src/defs/MoonStars.tsx index 2656e7994..085ab7d8d 100644 --- a/src/defs/MoonStars.tsx +++ b/src/defs/MoonStars.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/Moped.tsx b/src/defs/Moped.tsx index 6a966be29..5877c2e07 100644 --- a/src/defs/Moped.tsx +++ b/src/defs/Moped.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/MopedFront.tsx b/src/defs/MopedFront.tsx index 70ee3b7ad..69877d0bd 100644 --- a/src/defs/MopedFront.tsx +++ b/src/defs/MopedFront.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/Mosque.tsx b/src/defs/Mosque.tsx index b69c3810d..ea6ac4c28 100644 --- a/src/defs/Mosque.tsx +++ b/src/defs/Mosque.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/Motorcycle.tsx b/src/defs/Motorcycle.tsx index 9e2f03f7d..037b2cc61 100644 --- a/src/defs/Motorcycle.tsx +++ b/src/defs/Motorcycle.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/Mountains.tsx b/src/defs/Mountains.tsx index 36f2945cd..26bd9b404 100644 --- a/src/defs/Mountains.tsx +++ b/src/defs/Mountains.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/Mouse.tsx b/src/defs/Mouse.tsx index 7939be899..359af630f 100644 --- a/src/defs/Mouse.tsx +++ b/src/defs/Mouse.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/MouseLeftClick.tsx b/src/defs/MouseLeftClick.tsx index c31b04c08..c6b719e5f 100644 --- a/src/defs/MouseLeftClick.tsx +++ b/src/defs/MouseLeftClick.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/MouseMiddleClick.tsx b/src/defs/MouseMiddleClick.tsx index b21f422e4..c70957978 100644 --- a/src/defs/MouseMiddleClick.tsx +++ b/src/defs/MouseMiddleClick.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/MouseRightClick.tsx b/src/defs/MouseRightClick.tsx index 1359cbd25..e4c90138e 100644 --- a/src/defs/MouseRightClick.tsx +++ b/src/defs/MouseRightClick.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/MouseScroll.tsx b/src/defs/MouseScroll.tsx index a52cdc22c..924ef72f3 100644 --- a/src/defs/MouseScroll.tsx +++ b/src/defs/MouseScroll.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/MouseSimple.tsx b/src/defs/MouseSimple.tsx index 25517bedf..bd83cbd7d 100644 --- a/src/defs/MouseSimple.tsx +++ b/src/defs/MouseSimple.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/MusicNote.tsx b/src/defs/MusicNote.tsx index 6431f6424..6300cca5f 100644 --- a/src/defs/MusicNote.tsx +++ b/src/defs/MusicNote.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/MusicNoteSimple.tsx b/src/defs/MusicNoteSimple.tsx index efd98a74d..f4c31ce17 100644 --- a/src/defs/MusicNoteSimple.tsx +++ b/src/defs/MusicNoteSimple.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/MusicNotes.tsx b/src/defs/MusicNotes.tsx index 3fffb2774..e82dd3000 100644 --- a/src/defs/MusicNotes.tsx +++ b/src/defs/MusicNotes.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/MusicNotesMinus.tsx b/src/defs/MusicNotesMinus.tsx index 99d75d5c3..83ef62bcd 100644 --- a/src/defs/MusicNotesMinus.tsx +++ b/src/defs/MusicNotesMinus.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -30,20 +28,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/MusicNotesPlus.tsx b/src/defs/MusicNotesPlus.tsx index bc572b391..e25801692 100644 --- a/src/defs/MusicNotesPlus.tsx +++ b/src/defs/MusicNotesPlus.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/MusicNotesSimple.tsx b/src/defs/MusicNotesSimple.tsx index 3e661b88d..42de4a9da 100644 --- a/src/defs/MusicNotesSimple.tsx +++ b/src/defs/MusicNotesSimple.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/NavigationArrow.tsx b/src/defs/NavigationArrow.tsx index 918936380..937f89978 100644 --- a/src/defs/NavigationArrow.tsx +++ b/src/defs/NavigationArrow.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/Needle.tsx b/src/defs/Needle.tsx index cfedb9679..d784d716d 100644 --- a/src/defs/Needle.tsx +++ b/src/defs/Needle.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/Network.tsx b/src/defs/Network.tsx index 58f70ba88..21f504184 100644 --- a/src/defs/Network.tsx +++ b/src/defs/Network.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/NetworkSlash.tsx b/src/defs/NetworkSlash.tsx index 4661786ab..a190731db 100644 --- a/src/defs/NetworkSlash.tsx +++ b/src/defs/NetworkSlash.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/NetworkX.tsx b/src/defs/NetworkX.tsx index e03aaf830..3ffb1a6c2 100644 --- a/src/defs/NetworkX.tsx +++ b/src/defs/NetworkX.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/Newspaper.tsx b/src/defs/Newspaper.tsx index d4d1d27b0..c96fec477 100644 --- a/src/defs/Newspaper.tsx +++ b/src/defs/Newspaper.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/NewspaperClipping.tsx b/src/defs/NewspaperClipping.tsx index 43b882022..08e253f6f 100644 --- a/src/defs/NewspaperClipping.tsx +++ b/src/defs/NewspaperClipping.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/NotEquals.tsx b/src/defs/NotEquals.tsx index f9f333517..f991b0293 100644 --- a/src/defs/NotEquals.tsx +++ b/src/defs/NotEquals.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/NotMemberOf.tsx b/src/defs/NotMemberOf.tsx index c7aa60c46..4b6e5997a 100644 --- a/src/defs/NotMemberOf.tsx +++ b/src/defs/NotMemberOf.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/NotSubsetOf.tsx b/src/defs/NotSubsetOf.tsx index bde88df46..bd4aedf58 100644 --- a/src/defs/NotSubsetOf.tsx +++ b/src/defs/NotSubsetOf.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/NotSupersetOf.tsx b/src/defs/NotSupersetOf.tsx index 3a46c6577..5385d8797 100644 --- a/src/defs/NotSupersetOf.tsx +++ b/src/defs/NotSupersetOf.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/Notches.tsx b/src/defs/Notches.tsx index 12f6c5e53..c7084b23f 100644 --- a/src/defs/Notches.tsx +++ b/src/defs/Notches.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/Note.tsx b/src/defs/Note.tsx index a306e85b0..c7ce80bc2 100644 --- a/src/defs/Note.tsx +++ b/src/defs/Note.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/NoteBlank.tsx b/src/defs/NoteBlank.tsx index 2fae1fae3..1f63fa6f4 100644 --- a/src/defs/NoteBlank.tsx +++ b/src/defs/NoteBlank.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/NotePencil.tsx b/src/defs/NotePencil.tsx index bc89538b4..233157e71 100644 --- a/src/defs/NotePencil.tsx +++ b/src/defs/NotePencil.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/Notebook.tsx b/src/defs/Notebook.tsx index b23100f63..70f970a6d 100644 --- a/src/defs/Notebook.tsx +++ b/src/defs/Notebook.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/Notepad.tsx b/src/defs/Notepad.tsx index 4b9d880c4..104ef79e6 100644 --- a/src/defs/Notepad.tsx +++ b/src/defs/Notepad.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/Notification.tsx b/src/defs/Notification.tsx index 80ac8ec50..fd301194e 100644 --- a/src/defs/Notification.tsx +++ b/src/defs/Notification.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/NotionLogo.tsx b/src/defs/NotionLogo.tsx index 0aca18aee..871c4c200 100644 --- a/src/defs/NotionLogo.tsx +++ b/src/defs/NotionLogo.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/NuclearPlant.tsx b/src/defs/NuclearPlant.tsx index 6fa5216af..985e1643e 100644 --- a/src/defs/NuclearPlant.tsx +++ b/src/defs/NuclearPlant.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/NumberCircleEight.tsx b/src/defs/NumberCircleEight.tsx index abb7ede38..b28d24c39 100644 --- a/src/defs/NumberCircleEight.tsx +++ b/src/defs/NumberCircleEight.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/NumberCircleFive.tsx b/src/defs/NumberCircleFive.tsx index 97329842d..83323530c 100644 --- a/src/defs/NumberCircleFive.tsx +++ b/src/defs/NumberCircleFive.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/NumberCircleFour.tsx b/src/defs/NumberCircleFour.tsx index 6509dd3af..f31498121 100644 --- a/src/defs/NumberCircleFour.tsx +++ b/src/defs/NumberCircleFour.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/NumberCircleNine.tsx b/src/defs/NumberCircleNine.tsx index 9f89451ed..9563f43d2 100644 --- a/src/defs/NumberCircleNine.tsx +++ b/src/defs/NumberCircleNine.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/NumberCircleOne.tsx b/src/defs/NumberCircleOne.tsx index 38df82a1a..b3250fb1a 100644 --- a/src/defs/NumberCircleOne.tsx +++ b/src/defs/NumberCircleOne.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/NumberCircleSeven.tsx b/src/defs/NumberCircleSeven.tsx index 8f7fbe6f3..27aff0fed 100644 --- a/src/defs/NumberCircleSeven.tsx +++ b/src/defs/NumberCircleSeven.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/NumberCircleSix.tsx b/src/defs/NumberCircleSix.tsx index e75824036..84d753777 100644 --- a/src/defs/NumberCircleSix.tsx +++ b/src/defs/NumberCircleSix.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/NumberCircleThree.tsx b/src/defs/NumberCircleThree.tsx index b8d579b50..fd9528ff4 100644 --- a/src/defs/NumberCircleThree.tsx +++ b/src/defs/NumberCircleThree.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/NumberCircleTwo.tsx b/src/defs/NumberCircleTwo.tsx index de3c4ca52..e5181f3a7 100644 --- a/src/defs/NumberCircleTwo.tsx +++ b/src/defs/NumberCircleTwo.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/NumberCircleZero.tsx b/src/defs/NumberCircleZero.tsx index df364dd6c..918cce31c 100644 --- a/src/defs/NumberCircleZero.tsx +++ b/src/defs/NumberCircleZero.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/NumberEight.tsx b/src/defs/NumberEight.tsx index 849d81ae5..be6ce484a 100644 --- a/src/defs/NumberEight.tsx +++ b/src/defs/NumberEight.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/NumberFive.tsx b/src/defs/NumberFive.tsx index b60d47fca..65aa7687b 100644 --- a/src/defs/NumberFive.tsx +++ b/src/defs/NumberFive.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/NumberFour.tsx b/src/defs/NumberFour.tsx index bbdca2147..1394cac8c 100644 --- a/src/defs/NumberFour.tsx +++ b/src/defs/NumberFour.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/NumberNine.tsx b/src/defs/NumberNine.tsx index ffc02c5ee..f5aba3387 100644 --- a/src/defs/NumberNine.tsx +++ b/src/defs/NumberNine.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/NumberOne.tsx b/src/defs/NumberOne.tsx index 4b5428381..9b5243255 100644 --- a/src/defs/NumberOne.tsx +++ b/src/defs/NumberOne.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/NumberSeven.tsx b/src/defs/NumberSeven.tsx index 1d81e72c9..43033ec4b 100644 --- a/src/defs/NumberSeven.tsx +++ b/src/defs/NumberSeven.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/NumberSix.tsx b/src/defs/NumberSix.tsx index e30c4922a..01f70baf9 100644 --- a/src/defs/NumberSix.tsx +++ b/src/defs/NumberSix.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/NumberSquareEight.tsx b/src/defs/NumberSquareEight.tsx index 9ef33f65c..95994be42 100644 --- a/src/defs/NumberSquareEight.tsx +++ b/src/defs/NumberSquareEight.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/NumberSquareFive.tsx b/src/defs/NumberSquareFive.tsx index f22a94a7b..611e13f31 100644 --- a/src/defs/NumberSquareFive.tsx +++ b/src/defs/NumberSquareFive.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/NumberSquareFour.tsx b/src/defs/NumberSquareFour.tsx index efcd919dd..927c60144 100644 --- a/src/defs/NumberSquareFour.tsx +++ b/src/defs/NumberSquareFour.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/NumberSquareNine.tsx b/src/defs/NumberSquareNine.tsx index c9eb31f57..55436d0c9 100644 --- a/src/defs/NumberSquareNine.tsx +++ b/src/defs/NumberSquareNine.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/NumberSquareOne.tsx b/src/defs/NumberSquareOne.tsx index 0aef2c343..45b8a25c6 100644 --- a/src/defs/NumberSquareOne.tsx +++ b/src/defs/NumberSquareOne.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/NumberSquareSeven.tsx b/src/defs/NumberSquareSeven.tsx index e3ebfc808..69406cb87 100644 --- a/src/defs/NumberSquareSeven.tsx +++ b/src/defs/NumberSquareSeven.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/NumberSquareSix.tsx b/src/defs/NumberSquareSix.tsx index db3836e54..1db1da659 100644 --- a/src/defs/NumberSquareSix.tsx +++ b/src/defs/NumberSquareSix.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/NumberSquareThree.tsx b/src/defs/NumberSquareThree.tsx index edc7b5193..741841489 100644 --- a/src/defs/NumberSquareThree.tsx +++ b/src/defs/NumberSquareThree.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/NumberSquareTwo.tsx b/src/defs/NumberSquareTwo.tsx index 2d4885990..e984c6349 100644 --- a/src/defs/NumberSquareTwo.tsx +++ b/src/defs/NumberSquareTwo.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/NumberSquareZero.tsx b/src/defs/NumberSquareZero.tsx index 69f0e3281..ac75da0e1 100644 --- a/src/defs/NumberSquareZero.tsx +++ b/src/defs/NumberSquareZero.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/NumberThree.tsx b/src/defs/NumberThree.tsx index 54efe2126..477ef3754 100644 --- a/src/defs/NumberThree.tsx +++ b/src/defs/NumberThree.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/NumberTwo.tsx b/src/defs/NumberTwo.tsx index c3d80d60d..0aaf544ae 100644 --- a/src/defs/NumberTwo.tsx +++ b/src/defs/NumberTwo.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/NumberZero.tsx b/src/defs/NumberZero.tsx index 168824667..00e3f16de 100644 --- a/src/defs/NumberZero.tsx +++ b/src/defs/NumberZero.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/Numpad.tsx b/src/defs/Numpad.tsx index 84db0e08c..7397a610c 100644 --- a/src/defs/Numpad.tsx +++ b/src/defs/Numpad.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/Nut.tsx b/src/defs/Nut.tsx index 7b69ffaa1..505f1272c 100644 --- a/src/defs/Nut.tsx +++ b/src/defs/Nut.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/NyTimesLogo.tsx b/src/defs/NyTimesLogo.tsx index 023be97ab..f9580bf1e 100644 --- a/src/defs/NyTimesLogo.tsx +++ b/src/defs/NyTimesLogo.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/Octagon.tsx b/src/defs/Octagon.tsx index add1edd4e..0526b8f36 100644 --- a/src/defs/Octagon.tsx +++ b/src/defs/Octagon.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/OfficeChair.tsx b/src/defs/OfficeChair.tsx index 79bd490a8..f76362521 100644 --- a/src/defs/OfficeChair.tsx +++ b/src/defs/OfficeChair.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/Onigiri.tsx b/src/defs/Onigiri.tsx index f672fe15e..4295ff27e 100644 --- a/src/defs/Onigiri.tsx +++ b/src/defs/Onigiri.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/OpenAiLogo.tsx b/src/defs/OpenAiLogo.tsx index 699eba40c..0076ea919 100644 --- a/src/defs/OpenAiLogo.tsx +++ b/src/defs/OpenAiLogo.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/Option.tsx b/src/defs/Option.tsx index e65da6cec..df5a5d72a 100644 --- a/src/defs/Option.tsx +++ b/src/defs/Option.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/Orange.tsx b/src/defs/Orange.tsx index 3b0f1e106..939c7d716 100644 --- a/src/defs/Orange.tsx +++ b/src/defs/Orange.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/OrangeSlice.tsx b/src/defs/OrangeSlice.tsx index 25399798c..f4e320cb2 100644 --- a/src/defs/OrangeSlice.tsx +++ b/src/defs/OrangeSlice.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/Oven.tsx b/src/defs/Oven.tsx index ec757ac75..9ecab15b0 100644 --- a/src/defs/Oven.tsx +++ b/src/defs/Oven.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/Package.tsx b/src/defs/Package.tsx index 4a6361652..241d92aa3 100644 --- a/src/defs/Package.tsx +++ b/src/defs/Package.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/PaintBrush.tsx b/src/defs/PaintBrush.tsx index e84c66e59..1f5aa0a12 100644 --- a/src/defs/PaintBrush.tsx +++ b/src/defs/PaintBrush.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/PaintBrushBroad.tsx b/src/defs/PaintBrushBroad.tsx index d9ab6288e..c343558f4 100644 --- a/src/defs/PaintBrushBroad.tsx +++ b/src/defs/PaintBrushBroad.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/PaintBrushHousehold.tsx b/src/defs/PaintBrushHousehold.tsx index a1619571e..0180ef73e 100644 --- a/src/defs/PaintBrushHousehold.tsx +++ b/src/defs/PaintBrushHousehold.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/PaintBucket.tsx b/src/defs/PaintBucket.tsx index 7883c760c..6a0c06d05 100644 --- a/src/defs/PaintBucket.tsx +++ b/src/defs/PaintBucket.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/PaintRoller.tsx b/src/defs/PaintRoller.tsx index d461ba7a2..9e1e92d6d 100644 --- a/src/defs/PaintRoller.tsx +++ b/src/defs/PaintRoller.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/Palette.tsx b/src/defs/Palette.tsx index ceb98c90f..30b706e9b 100644 --- a/src/defs/Palette.tsx +++ b/src/defs/Palette.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/Panorama.tsx b/src/defs/Panorama.tsx index be7cd675d..421ff6d82 100644 --- a/src/defs/Panorama.tsx +++ b/src/defs/Panorama.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/Pants.tsx b/src/defs/Pants.tsx index e3cac6422..6c4f87aed 100644 --- a/src/defs/Pants.tsx +++ b/src/defs/Pants.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/PaperPlane.tsx b/src/defs/PaperPlane.tsx index b2eccdd96..5f5c2d4c5 100644 --- a/src/defs/PaperPlane.tsx +++ b/src/defs/PaperPlane.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/PaperPlaneRight.tsx b/src/defs/PaperPlaneRight.tsx index 443cdd4a8..397cefd32 100644 --- a/src/defs/PaperPlaneRight.tsx +++ b/src/defs/PaperPlaneRight.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/PaperPlaneTilt.tsx b/src/defs/PaperPlaneTilt.tsx index 4b73d5ebf..147a8ef3e 100644 --- a/src/defs/PaperPlaneTilt.tsx +++ b/src/defs/PaperPlaneTilt.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/Paperclip.tsx b/src/defs/Paperclip.tsx index f551dd77f..1b8ead476 100644 --- a/src/defs/Paperclip.tsx +++ b/src/defs/Paperclip.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/PaperclipHorizontal.tsx b/src/defs/PaperclipHorizontal.tsx index c89717dbd..aaaf5e7c0 100644 --- a/src/defs/PaperclipHorizontal.tsx +++ b/src/defs/PaperclipHorizontal.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/Parachute.tsx b/src/defs/Parachute.tsx index a68306458..d807fda01 100644 --- a/src/defs/Parachute.tsx +++ b/src/defs/Parachute.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/Paragraph.tsx b/src/defs/Paragraph.tsx index 7c95f84b8..e3caf8a17 100644 --- a/src/defs/Paragraph.tsx +++ b/src/defs/Paragraph.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/Parallelogram.tsx b/src/defs/Parallelogram.tsx index 75cc0ea21..bf7694b7f 100644 --- a/src/defs/Parallelogram.tsx +++ b/src/defs/Parallelogram.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/Park.tsx b/src/defs/Park.tsx index 04607bc61..6eb46fae7 100644 --- a/src/defs/Park.tsx +++ b/src/defs/Park.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/Password.tsx b/src/defs/Password.tsx index d824be64d..569f5a3c2 100644 --- a/src/defs/Password.tsx +++ b/src/defs/Password.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/Path.tsx b/src/defs/Path.tsx index 77bae85ac..0f0e4e595 100644 --- a/src/defs/Path.tsx +++ b/src/defs/Path.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/PatreonLogo.tsx b/src/defs/PatreonLogo.tsx index 85d91a96f..c6aec1284 100644 --- a/src/defs/PatreonLogo.tsx +++ b/src/defs/PatreonLogo.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/Pause.tsx b/src/defs/Pause.tsx index 243144a69..30ca415f2 100644 --- a/src/defs/Pause.tsx +++ b/src/defs/Pause.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/PauseCircle.tsx b/src/defs/PauseCircle.tsx index 56c965cc9..17cc4793b 100644 --- a/src/defs/PauseCircle.tsx +++ b/src/defs/PauseCircle.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/PawPrint.tsx b/src/defs/PawPrint.tsx index 06a2d48a6..5510862ee 100644 --- a/src/defs/PawPrint.tsx +++ b/src/defs/PawPrint.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/PaypalLogo.tsx b/src/defs/PaypalLogo.tsx index ced82734c..42e4b29c1 100644 --- a/src/defs/PaypalLogo.tsx +++ b/src/defs/PaypalLogo.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/Peace.tsx b/src/defs/Peace.tsx index af65311aa..df1ea7e5e 100644 --- a/src/defs/Peace.tsx +++ b/src/defs/Peace.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/Pen.tsx b/src/defs/Pen.tsx index e16015983..544e90ffa 100644 --- a/src/defs/Pen.tsx +++ b/src/defs/Pen.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/PenNib.tsx b/src/defs/PenNib.tsx index 1eecbd3e1..7633d24da 100644 --- a/src/defs/PenNib.tsx +++ b/src/defs/PenNib.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/PenNibStraight.tsx b/src/defs/PenNibStraight.tsx index 5a5b789e1..2dbe0b018 100644 --- a/src/defs/PenNibStraight.tsx +++ b/src/defs/PenNibStraight.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/Pencil.tsx b/src/defs/Pencil.tsx index 93b59daa4..69f5f0993 100644 --- a/src/defs/Pencil.tsx +++ b/src/defs/Pencil.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/PencilCircle.tsx b/src/defs/PencilCircle.tsx index cf1560f35..29ebbfcea 100644 --- a/src/defs/PencilCircle.tsx +++ b/src/defs/PencilCircle.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/PencilLine.tsx b/src/defs/PencilLine.tsx index 8c00da072..2a308c10a 100644 --- a/src/defs/PencilLine.tsx +++ b/src/defs/PencilLine.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/PencilRuler.tsx b/src/defs/PencilRuler.tsx index fb93a6b94..0c30e1d0a 100644 --- a/src/defs/PencilRuler.tsx +++ b/src/defs/PencilRuler.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/PencilSimple.tsx b/src/defs/PencilSimple.tsx index eb976ed93..a205f0f1a 100644 --- a/src/defs/PencilSimple.tsx +++ b/src/defs/PencilSimple.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/PencilSimpleLine.tsx b/src/defs/PencilSimpleLine.tsx index 811a7383a..71f23c0f2 100644 --- a/src/defs/PencilSimpleLine.tsx +++ b/src/defs/PencilSimpleLine.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/PencilSimpleSlash.tsx b/src/defs/PencilSimpleSlash.tsx index 312cf1a4a..def863e99 100644 --- a/src/defs/PencilSimpleSlash.tsx +++ b/src/defs/PencilSimpleSlash.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/PencilSlash.tsx b/src/defs/PencilSlash.tsx index 1a09364f8..7c293a62e 100644 --- a/src/defs/PencilSlash.tsx +++ b/src/defs/PencilSlash.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/Pentagon.tsx b/src/defs/Pentagon.tsx index f7dbf331a..c845b9220 100644 --- a/src/defs/Pentagon.tsx +++ b/src/defs/Pentagon.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/Pentagram.tsx b/src/defs/Pentagram.tsx index 74c9bf8e4..74f87e44b 100644 --- a/src/defs/Pentagram.tsx +++ b/src/defs/Pentagram.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/Pepper.tsx b/src/defs/Pepper.tsx index fb6778b4b..c8389760e 100644 --- a/src/defs/Pepper.tsx +++ b/src/defs/Pepper.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/Percent.tsx b/src/defs/Percent.tsx index a054bfe0d..9fa0edeba 100644 --- a/src/defs/Percent.tsx +++ b/src/defs/Percent.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/Person.tsx b/src/defs/Person.tsx index 89c8d639f..5c4a9de22 100644 --- a/src/defs/Person.tsx +++ b/src/defs/Person.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/PersonArmsSpread.tsx b/src/defs/PersonArmsSpread.tsx index e79a5ec21..d62aff84f 100644 --- a/src/defs/PersonArmsSpread.tsx +++ b/src/defs/PersonArmsSpread.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/PersonSimple.tsx b/src/defs/PersonSimple.tsx index cd4ddd6a6..b62022475 100644 --- a/src/defs/PersonSimple.tsx +++ b/src/defs/PersonSimple.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/PersonSimpleBike.tsx b/src/defs/PersonSimpleBike.tsx index 5cd4bb90f..3d219e53c 100644 --- a/src/defs/PersonSimpleBike.tsx +++ b/src/defs/PersonSimpleBike.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/PersonSimpleCircle.tsx b/src/defs/PersonSimpleCircle.tsx index 98804495d..be8960683 100644 --- a/src/defs/PersonSimpleCircle.tsx +++ b/src/defs/PersonSimpleCircle.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/PersonSimpleHike.tsx b/src/defs/PersonSimpleHike.tsx index cd528fc80..a2008b555 100644 --- a/src/defs/PersonSimpleHike.tsx +++ b/src/defs/PersonSimpleHike.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/PersonSimpleRun.tsx b/src/defs/PersonSimpleRun.tsx index 71bb0c1da..a99f00184 100644 --- a/src/defs/PersonSimpleRun.tsx +++ b/src/defs/PersonSimpleRun.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/PersonSimpleSki.tsx b/src/defs/PersonSimpleSki.tsx index 806cfaa83..38c592a6f 100644 --- a/src/defs/PersonSimpleSki.tsx +++ b/src/defs/PersonSimpleSki.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/PersonSimpleSnowboard.tsx b/src/defs/PersonSimpleSnowboard.tsx index d250bd275..2db9090ad 100644 --- a/src/defs/PersonSimpleSnowboard.tsx +++ b/src/defs/PersonSimpleSnowboard.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/PersonSimpleSwim.tsx b/src/defs/PersonSimpleSwim.tsx index 466a61a19..70d539566 100644 --- a/src/defs/PersonSimpleSwim.tsx +++ b/src/defs/PersonSimpleSwim.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/PersonSimpleTaiChi.tsx b/src/defs/PersonSimpleTaiChi.tsx index f6905d8a2..24bceceef 100644 --- a/src/defs/PersonSimpleTaiChi.tsx +++ b/src/defs/PersonSimpleTaiChi.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/PersonSimpleThrow.tsx b/src/defs/PersonSimpleThrow.tsx index 48e3e0a94..3104c0b0c 100644 --- a/src/defs/PersonSimpleThrow.tsx +++ b/src/defs/PersonSimpleThrow.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/PersonSimpleWalk.tsx b/src/defs/PersonSimpleWalk.tsx index c10d0bca2..13cb461db 100644 --- a/src/defs/PersonSimpleWalk.tsx +++ b/src/defs/PersonSimpleWalk.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/Perspective.tsx b/src/defs/Perspective.tsx index 3f98b0340..33cda2fe5 100644 --- a/src/defs/Perspective.tsx +++ b/src/defs/Perspective.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/Phone.tsx b/src/defs/Phone.tsx index 355ca0a8b..2d6a7a14f 100644 --- a/src/defs/Phone.tsx +++ b/src/defs/Phone.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/PhoneCall.tsx b/src/defs/PhoneCall.tsx index acd7e92cb..b95f57519 100644 --- a/src/defs/PhoneCall.tsx +++ b/src/defs/PhoneCall.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/PhoneDisconnect.tsx b/src/defs/PhoneDisconnect.tsx index 728a495de..bf733191f 100644 --- a/src/defs/PhoneDisconnect.tsx +++ b/src/defs/PhoneDisconnect.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/PhoneIncoming.tsx b/src/defs/PhoneIncoming.tsx index 787fb9fe4..63ac58bd2 100644 --- a/src/defs/PhoneIncoming.tsx +++ b/src/defs/PhoneIncoming.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/PhoneList.tsx b/src/defs/PhoneList.tsx index 5cc24680e..3654176f1 100644 --- a/src/defs/PhoneList.tsx +++ b/src/defs/PhoneList.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/PhoneOutgoing.tsx b/src/defs/PhoneOutgoing.tsx index 499e7ed93..bb8b82a71 100644 --- a/src/defs/PhoneOutgoing.tsx +++ b/src/defs/PhoneOutgoing.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/PhonePause.tsx b/src/defs/PhonePause.tsx index ec8752f37..6a0a0f272 100644 --- a/src/defs/PhonePause.tsx +++ b/src/defs/PhonePause.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/PhonePlus.tsx b/src/defs/PhonePlus.tsx index 299aa1d65..a21dc6e4c 100644 --- a/src/defs/PhonePlus.tsx +++ b/src/defs/PhonePlus.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/PhoneSlash.tsx b/src/defs/PhoneSlash.tsx index ba7663dfe..97df80197 100644 --- a/src/defs/PhoneSlash.tsx +++ b/src/defs/PhoneSlash.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/PhoneTransfer.tsx b/src/defs/PhoneTransfer.tsx index 22f91e8cf..9528c68de 100644 --- a/src/defs/PhoneTransfer.tsx +++ b/src/defs/PhoneTransfer.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/PhoneX.tsx b/src/defs/PhoneX.tsx index 3e9b3dbbc..f0a9b20bb 100644 --- a/src/defs/PhoneX.tsx +++ b/src/defs/PhoneX.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/PhosphorLogo.tsx b/src/defs/PhosphorLogo.tsx index 19abf025e..0cf762d3a 100644 --- a/src/defs/PhosphorLogo.tsx +++ b/src/defs/PhosphorLogo.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/Pi.tsx b/src/defs/Pi.tsx index 2d82c063a..b36a77e10 100644 --- a/src/defs/Pi.tsx +++ b/src/defs/Pi.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/PianoKeys.tsx b/src/defs/PianoKeys.tsx index 772ee2859..0272880c6 100644 --- a/src/defs/PianoKeys.tsx +++ b/src/defs/PianoKeys.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/PicnicTable.tsx b/src/defs/PicnicTable.tsx index 3f965ef60..c784dfd16 100644 --- a/src/defs/PicnicTable.tsx +++ b/src/defs/PicnicTable.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/PictureInPicture.tsx b/src/defs/PictureInPicture.tsx index 969e47657..b26b18c52 100644 --- a/src/defs/PictureInPicture.tsx +++ b/src/defs/PictureInPicture.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/PiggyBank.tsx b/src/defs/PiggyBank.tsx index a3b0be944..763979946 100644 --- a/src/defs/PiggyBank.tsx +++ b/src/defs/PiggyBank.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/Pill.tsx b/src/defs/Pill.tsx index 9e35cb24f..7846ddf7a 100644 --- a/src/defs/Pill.tsx +++ b/src/defs/Pill.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/PingPong.tsx b/src/defs/PingPong.tsx index 2a8f1c704..0bed30e48 100644 --- a/src/defs/PingPong.tsx +++ b/src/defs/PingPong.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/PintGlass.tsx b/src/defs/PintGlass.tsx index 3a959a996..5a05b42f7 100644 --- a/src/defs/PintGlass.tsx +++ b/src/defs/PintGlass.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/PinterestLogo.tsx b/src/defs/PinterestLogo.tsx index 5e3e5fb25..03f6c2b45 100644 --- a/src/defs/PinterestLogo.tsx +++ b/src/defs/PinterestLogo.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/Pinwheel.tsx b/src/defs/Pinwheel.tsx index 6b66c73d9..8ea10e099 100644 --- a/src/defs/Pinwheel.tsx +++ b/src/defs/Pinwheel.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/Pipe.tsx b/src/defs/Pipe.tsx index 7e70a04e5..6a134bdf0 100644 --- a/src/defs/Pipe.tsx +++ b/src/defs/Pipe.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/PipeWrench.tsx b/src/defs/PipeWrench.tsx index 170d4a898..cf8af9a91 100644 --- a/src/defs/PipeWrench.tsx +++ b/src/defs/PipeWrench.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/PixLogo.tsx b/src/defs/PixLogo.tsx index 5407dc6e2..833a8d595 100644 --- a/src/defs/PixLogo.tsx +++ b/src/defs/PixLogo.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/Pizza.tsx b/src/defs/Pizza.tsx index dad7e24f7..d83ea7e02 100644 --- a/src/defs/Pizza.tsx +++ b/src/defs/Pizza.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/Placeholder.tsx b/src/defs/Placeholder.tsx index b90c1c10e..cc064b168 100644 --- a/src/defs/Placeholder.tsx +++ b/src/defs/Placeholder.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/Planet.tsx b/src/defs/Planet.tsx index fd7a9e6af..d64b40f7a 100644 --- a/src/defs/Planet.tsx +++ b/src/defs/Planet.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/Plant.tsx b/src/defs/Plant.tsx index f36b73fe0..b64beedd7 100644 --- a/src/defs/Plant.tsx +++ b/src/defs/Plant.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/Play.tsx b/src/defs/Play.tsx index 817b849cc..1f441561c 100644 --- a/src/defs/Play.tsx +++ b/src/defs/Play.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/PlayCircle.tsx b/src/defs/PlayCircle.tsx index d68482c9c..dd16d8cd9 100644 --- a/src/defs/PlayCircle.tsx +++ b/src/defs/PlayCircle.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/PlayPause.tsx b/src/defs/PlayPause.tsx index 8d1c04eb0..3c714d9f4 100644 --- a/src/defs/PlayPause.tsx +++ b/src/defs/PlayPause.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/Playlist.tsx b/src/defs/Playlist.tsx index 6b75ba6b3..fdaffb64e 100644 --- a/src/defs/Playlist.tsx +++ b/src/defs/Playlist.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/Plug.tsx b/src/defs/Plug.tsx index 149222c8c..547d993c1 100644 --- a/src/defs/Plug.tsx +++ b/src/defs/Plug.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/PlugCharging.tsx b/src/defs/PlugCharging.tsx index 4e80615de..b5eb2b2a1 100644 --- a/src/defs/PlugCharging.tsx +++ b/src/defs/PlugCharging.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/Plugs.tsx b/src/defs/Plugs.tsx index 09d71fb98..786d35c7d 100644 --- a/src/defs/Plugs.tsx +++ b/src/defs/Plugs.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/PlugsConnected.tsx b/src/defs/PlugsConnected.tsx index 8896e2188..0204ea292 100644 --- a/src/defs/PlugsConnected.tsx +++ b/src/defs/PlugsConnected.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/Plus.tsx b/src/defs/Plus.tsx index 31b0045d4..6446feb03 100644 --- a/src/defs/Plus.tsx +++ b/src/defs/Plus.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/PlusCircle.tsx b/src/defs/PlusCircle.tsx index 1ac8d52cb..b426ece96 100644 --- a/src/defs/PlusCircle.tsx +++ b/src/defs/PlusCircle.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/PlusMinus.tsx b/src/defs/PlusMinus.tsx index 5ffd442c9..562b0eb5c 100644 --- a/src/defs/PlusMinus.tsx +++ b/src/defs/PlusMinus.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/PlusSquare.tsx b/src/defs/PlusSquare.tsx index a561f7751..901dc9852 100644 --- a/src/defs/PlusSquare.tsx +++ b/src/defs/PlusSquare.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/PokerChip.tsx b/src/defs/PokerChip.tsx index fd04b4c60..ba51b2fa9 100644 --- a/src/defs/PokerChip.tsx +++ b/src/defs/PokerChip.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/PoliceCar.tsx b/src/defs/PoliceCar.tsx index ca8616e7a..a25e70db9 100644 --- a/src/defs/PoliceCar.tsx +++ b/src/defs/PoliceCar.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/Polygon.tsx b/src/defs/Polygon.tsx index b4f1e755f..e958c2d4e 100644 --- a/src/defs/Polygon.tsx +++ b/src/defs/Polygon.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/Popcorn.tsx b/src/defs/Popcorn.tsx index 0c5c330e4..dcecdefd8 100644 --- a/src/defs/Popcorn.tsx +++ b/src/defs/Popcorn.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/Popsicle.tsx b/src/defs/Popsicle.tsx index 280f2cdba..e924172d1 100644 --- a/src/defs/Popsicle.tsx +++ b/src/defs/Popsicle.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/PottedPlant.tsx b/src/defs/PottedPlant.tsx index f4d8b77ea..4b7ecadfa 100644 --- a/src/defs/PottedPlant.tsx +++ b/src/defs/PottedPlant.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/Power.tsx b/src/defs/Power.tsx index 1f6ab603f..aedbe64e8 100644 --- a/src/defs/Power.tsx +++ b/src/defs/Power.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/Prescription.tsx b/src/defs/Prescription.tsx index 1de76ff45..5cf2a6e89 100644 --- a/src/defs/Prescription.tsx +++ b/src/defs/Prescription.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/Presentation.tsx b/src/defs/Presentation.tsx index fb8e30d3d..a2f75ddd4 100644 --- a/src/defs/Presentation.tsx +++ b/src/defs/Presentation.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/PresentationChart.tsx b/src/defs/PresentationChart.tsx index a4fbf4566..e641881dd 100644 --- a/src/defs/PresentationChart.tsx +++ b/src/defs/PresentationChart.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/Printer.tsx b/src/defs/Printer.tsx index db64b74f3..36ecb4695 100644 --- a/src/defs/Printer.tsx +++ b/src/defs/Printer.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/Prohibit.tsx b/src/defs/Prohibit.tsx index 67c0cb999..b566fe66e 100644 --- a/src/defs/Prohibit.tsx +++ b/src/defs/Prohibit.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/ProhibitInset.tsx b/src/defs/ProhibitInset.tsx index b3456b992..0f3fa3832 100644 --- a/src/defs/ProhibitInset.tsx +++ b/src/defs/ProhibitInset.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/ProjectorScreen.tsx b/src/defs/ProjectorScreen.tsx index 6cff3ac79..af954120a 100644 --- a/src/defs/ProjectorScreen.tsx +++ b/src/defs/ProjectorScreen.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/ProjectorScreenChart.tsx b/src/defs/ProjectorScreenChart.tsx index 1de2d98ae..d4655c468 100644 --- a/src/defs/ProjectorScreenChart.tsx +++ b/src/defs/ProjectorScreenChart.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/Pulse.tsx b/src/defs/Pulse.tsx index d9950fcd7..09c4cf1cb 100644 --- a/src/defs/Pulse.tsx +++ b/src/defs/Pulse.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/PushPin.tsx b/src/defs/PushPin.tsx index b3dfcfaba..e0d089862 100644 --- a/src/defs/PushPin.tsx +++ b/src/defs/PushPin.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/PushPinSimple.tsx b/src/defs/PushPinSimple.tsx index 975f71344..2a4889a17 100644 --- a/src/defs/PushPinSimple.tsx +++ b/src/defs/PushPinSimple.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/PushPinSimpleSlash.tsx b/src/defs/PushPinSimpleSlash.tsx index 1faf05da0..2149e5b46 100644 --- a/src/defs/PushPinSimpleSlash.tsx +++ b/src/defs/PushPinSimpleSlash.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/PushPinSlash.tsx b/src/defs/PushPinSlash.tsx index 21bb54a4c..8b286edf8 100644 --- a/src/defs/PushPinSlash.tsx +++ b/src/defs/PushPinSlash.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/PuzzlePiece.tsx b/src/defs/PuzzlePiece.tsx index 0883b6ce8..53375867f 100644 --- a/src/defs/PuzzlePiece.tsx +++ b/src/defs/PuzzlePiece.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/QrCode.tsx b/src/defs/QrCode.tsx index 049123621..f41a308af 100644 --- a/src/defs/QrCode.tsx +++ b/src/defs/QrCode.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/Question.tsx b/src/defs/Question.tsx index a70c1eab1..2f4326d70 100644 --- a/src/defs/Question.tsx +++ b/src/defs/Question.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/QuestionMark.tsx b/src/defs/QuestionMark.tsx index aac4345c8..03d4bf16b 100644 --- a/src/defs/QuestionMark.tsx +++ b/src/defs/QuestionMark.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/Queue.tsx b/src/defs/Queue.tsx index 2a665bc00..2d7a0c510 100644 --- a/src/defs/Queue.tsx +++ b/src/defs/Queue.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/Quotes.tsx b/src/defs/Quotes.tsx index e87076d1a..b7434b07d 100644 --- a/src/defs/Quotes.tsx +++ b/src/defs/Quotes.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/Rabbit.tsx b/src/defs/Rabbit.tsx index 943a52866..e6dada532 100644 --- a/src/defs/Rabbit.tsx +++ b/src/defs/Rabbit.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/Racquet.tsx b/src/defs/Racquet.tsx index 68e02ebc9..ff5b21872 100644 --- a/src/defs/Racquet.tsx +++ b/src/defs/Racquet.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/Radical.tsx b/src/defs/Radical.tsx index 465d64ff6..0f8c5c24d 100644 --- a/src/defs/Radical.tsx +++ b/src/defs/Radical.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/Radio.tsx b/src/defs/Radio.tsx index fb13cf9af..033edecbf 100644 --- a/src/defs/Radio.tsx +++ b/src/defs/Radio.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/RadioButton.tsx b/src/defs/RadioButton.tsx index c2d38f820..56df8fe63 100644 --- a/src/defs/RadioButton.tsx +++ b/src/defs/RadioButton.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/Radioactive.tsx b/src/defs/Radioactive.tsx index 450901531..9d5475c76 100644 --- a/src/defs/Radioactive.tsx +++ b/src/defs/Radioactive.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/Rainbow.tsx b/src/defs/Rainbow.tsx index 73fb622cc..7906e3b95 100644 --- a/src/defs/Rainbow.tsx +++ b/src/defs/Rainbow.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/RainbowCloud.tsx b/src/defs/RainbowCloud.tsx index 693d7be8a..d1d9a6e1d 100644 --- a/src/defs/RainbowCloud.tsx +++ b/src/defs/RainbowCloud.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/Ranking.tsx b/src/defs/Ranking.tsx index b6a6ae764..adb600342 100644 --- a/src/defs/Ranking.tsx +++ b/src/defs/Ranking.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/ReadCvLogo.tsx b/src/defs/ReadCvLogo.tsx index 03adb4918..b5ca13f53 100644 --- a/src/defs/ReadCvLogo.tsx +++ b/src/defs/ReadCvLogo.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/Receipt.tsx b/src/defs/Receipt.tsx index e8da09214..657521023 100644 --- a/src/defs/Receipt.tsx +++ b/src/defs/Receipt.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/ReceiptX.tsx b/src/defs/ReceiptX.tsx index 3dd3bb01b..63b075bc5 100644 --- a/src/defs/ReceiptX.tsx +++ b/src/defs/ReceiptX.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/Record.tsx b/src/defs/Record.tsx index 42ad810ab..41d52b64e 100644 --- a/src/defs/Record.tsx +++ b/src/defs/Record.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/Rectangle.tsx b/src/defs/Rectangle.tsx index bae45b796..b046ed8b3 100644 --- a/src/defs/Rectangle.tsx +++ b/src/defs/Rectangle.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/RectangleDashed.tsx b/src/defs/RectangleDashed.tsx index 12e383771..75c5831fe 100644 --- a/src/defs/RectangleDashed.tsx +++ b/src/defs/RectangleDashed.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/Recycle.tsx b/src/defs/Recycle.tsx index 61f5b4e46..31d7ef684 100644 --- a/src/defs/Recycle.tsx +++ b/src/defs/Recycle.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/RedditLogo.tsx b/src/defs/RedditLogo.tsx index 22164f522..507067cfc 100644 --- a/src/defs/RedditLogo.tsx +++ b/src/defs/RedditLogo.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/Repeat.tsx b/src/defs/Repeat.tsx index a0f7451fc..c45d4e30a 100644 --- a/src/defs/Repeat.tsx +++ b/src/defs/Repeat.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/RepeatOnce.tsx b/src/defs/RepeatOnce.tsx index 54350aa8b..89516aab9 100644 --- a/src/defs/RepeatOnce.tsx +++ b/src/defs/RepeatOnce.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/ReplitLogo.tsx b/src/defs/ReplitLogo.tsx index d72fead7a..bd25eed9a 100644 --- a/src/defs/ReplitLogo.tsx +++ b/src/defs/ReplitLogo.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/Resize.tsx b/src/defs/Resize.tsx index 2ef5f62d6..e998b357e 100644 --- a/src/defs/Resize.tsx +++ b/src/defs/Resize.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/Rewind.tsx b/src/defs/Rewind.tsx index ae7e56ba1..5e0ab3a3e 100644 --- a/src/defs/Rewind.tsx +++ b/src/defs/Rewind.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/RewindCircle.tsx b/src/defs/RewindCircle.tsx index c7584936f..3b72ca6d7 100644 --- a/src/defs/RewindCircle.tsx +++ b/src/defs/RewindCircle.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/RoadHorizon.tsx b/src/defs/RoadHorizon.tsx index 18dfdb330..d616b2059 100644 --- a/src/defs/RoadHorizon.tsx +++ b/src/defs/RoadHorizon.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/Robot.tsx b/src/defs/Robot.tsx index fdfb4cc7d..ff9983ec7 100644 --- a/src/defs/Robot.tsx +++ b/src/defs/Robot.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/Rocket.tsx b/src/defs/Rocket.tsx index 311d35550..c2fec74c9 100644 --- a/src/defs/Rocket.tsx +++ b/src/defs/Rocket.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/RocketLaunch.tsx b/src/defs/RocketLaunch.tsx index fbb41d72c..f9c43a16e 100644 --- a/src/defs/RocketLaunch.tsx +++ b/src/defs/RocketLaunch.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/Rows.tsx b/src/defs/Rows.tsx index 5f7a82f26..2afd63f02 100644 --- a/src/defs/Rows.tsx +++ b/src/defs/Rows.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/RowsPlusBottom.tsx b/src/defs/RowsPlusBottom.tsx index 40684213e..7d414a284 100644 --- a/src/defs/RowsPlusBottom.tsx +++ b/src/defs/RowsPlusBottom.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/RowsPlusTop.tsx b/src/defs/RowsPlusTop.tsx index 3a3771599..a62e29cf6 100644 --- a/src/defs/RowsPlusTop.tsx +++ b/src/defs/RowsPlusTop.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/Rss.tsx b/src/defs/Rss.tsx index 8773d1be0..9d70d947f 100644 --- a/src/defs/Rss.tsx +++ b/src/defs/Rss.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/RssSimple.tsx b/src/defs/RssSimple.tsx index cfb4b526f..6d6211017 100644 --- a/src/defs/RssSimple.tsx +++ b/src/defs/RssSimple.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/Rug.tsx b/src/defs/Rug.tsx index 0d6735a48..accaa9ab8 100644 --- a/src/defs/Rug.tsx +++ b/src/defs/Rug.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/Ruler.tsx b/src/defs/Ruler.tsx index e44c43bb1..0a3b35bab 100644 --- a/src/defs/Ruler.tsx +++ b/src/defs/Ruler.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/Sailboat.tsx b/src/defs/Sailboat.tsx index 26f83b69c..1f7b0ad45 100644 --- a/src/defs/Sailboat.tsx +++ b/src/defs/Sailboat.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/Scales.tsx b/src/defs/Scales.tsx index 0800d27a6..0e21084b2 100644 --- a/src/defs/Scales.tsx +++ b/src/defs/Scales.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/Scan.tsx b/src/defs/Scan.tsx index 24ff4c805..c5006bdb0 100644 --- a/src/defs/Scan.tsx +++ b/src/defs/Scan.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/ScanSmiley.tsx b/src/defs/ScanSmiley.tsx index 3651e2de4..d59e06699 100644 --- a/src/defs/ScanSmiley.tsx +++ b/src/defs/ScanSmiley.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/Scissors.tsx b/src/defs/Scissors.tsx index 9da98dcee..0ce6efbac 100644 --- a/src/defs/Scissors.tsx +++ b/src/defs/Scissors.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/Scooter.tsx b/src/defs/Scooter.tsx index 88525dbb1..65fc7c418 100644 --- a/src/defs/Scooter.tsx +++ b/src/defs/Scooter.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/Screencast.tsx b/src/defs/Screencast.tsx index 22897f931..45297855e 100644 --- a/src/defs/Screencast.tsx +++ b/src/defs/Screencast.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/Screwdriver.tsx b/src/defs/Screwdriver.tsx index 1a1f657d7..a5965bca1 100644 --- a/src/defs/Screwdriver.tsx +++ b/src/defs/Screwdriver.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/Scribble.tsx b/src/defs/Scribble.tsx index a306ee1d7..a40fadd52 100644 --- a/src/defs/Scribble.tsx +++ b/src/defs/Scribble.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/ScribbleLoop.tsx b/src/defs/ScribbleLoop.tsx index 9dda00d74..56cd64e20 100644 --- a/src/defs/ScribbleLoop.tsx +++ b/src/defs/ScribbleLoop.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/Scroll.tsx b/src/defs/Scroll.tsx index 1a91098fa..0149f3494 100644 --- a/src/defs/Scroll.tsx +++ b/src/defs/Scroll.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/Seal.tsx b/src/defs/Seal.tsx index 3d5fe6007..623a8b007 100644 --- a/src/defs/Seal.tsx +++ b/src/defs/Seal.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/SealCheck.tsx b/src/defs/SealCheck.tsx index bf6d5bc21..7ad173683 100644 --- a/src/defs/SealCheck.tsx +++ b/src/defs/SealCheck.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/SealPercent.tsx b/src/defs/SealPercent.tsx index dfa67b34b..4fac304d4 100644 --- a/src/defs/SealPercent.tsx +++ b/src/defs/SealPercent.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/SealQuestion.tsx b/src/defs/SealQuestion.tsx index c5cc61260..329d95bea 100644 --- a/src/defs/SealQuestion.tsx +++ b/src/defs/SealQuestion.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/SealWarning.tsx b/src/defs/SealWarning.tsx index 23b0f8ca3..9d31410a7 100644 --- a/src/defs/SealWarning.tsx +++ b/src/defs/SealWarning.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/Seat.tsx b/src/defs/Seat.tsx index d962acbd9..825a3484a 100644 --- a/src/defs/Seat.tsx +++ b/src/defs/Seat.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/Seatbelt.tsx b/src/defs/Seatbelt.tsx index 2fcc34f51..0388769bf 100644 --- a/src/defs/Seatbelt.tsx +++ b/src/defs/Seatbelt.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/SecurityCamera.tsx b/src/defs/SecurityCamera.tsx index 297251f8e..75a966552 100644 --- a/src/defs/SecurityCamera.tsx +++ b/src/defs/SecurityCamera.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/Selection.tsx b/src/defs/Selection.tsx index 2e6f90d64..bc271e90f 100644 --- a/src/defs/Selection.tsx +++ b/src/defs/Selection.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/SelectionAll.tsx b/src/defs/SelectionAll.tsx index 36ed074e6..76f6f743a 100644 --- a/src/defs/SelectionAll.tsx +++ b/src/defs/SelectionAll.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/SelectionBackground.tsx b/src/defs/SelectionBackground.tsx index d5ab88a18..fd7df9b8d 100644 --- a/src/defs/SelectionBackground.tsx +++ b/src/defs/SelectionBackground.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/SelectionForeground.tsx b/src/defs/SelectionForeground.tsx index 98b1bda83..9538d8f99 100644 --- a/src/defs/SelectionForeground.tsx +++ b/src/defs/SelectionForeground.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/SelectionInverse.tsx b/src/defs/SelectionInverse.tsx index bf073287f..d1b45ec8a 100644 --- a/src/defs/SelectionInverse.tsx +++ b/src/defs/SelectionInverse.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/SelectionPlus.tsx b/src/defs/SelectionPlus.tsx index d887e55fd..17d303d8b 100644 --- a/src/defs/SelectionPlus.tsx +++ b/src/defs/SelectionPlus.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/SelectionSlash.tsx b/src/defs/SelectionSlash.tsx index a661c658e..7792bc8a0 100644 --- a/src/defs/SelectionSlash.tsx +++ b/src/defs/SelectionSlash.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/Shapes.tsx b/src/defs/Shapes.tsx index 7313fc87c..069be9257 100644 --- a/src/defs/Shapes.tsx +++ b/src/defs/Shapes.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/Share.tsx b/src/defs/Share.tsx index 5508d77cd..d171293d5 100644 --- a/src/defs/Share.tsx +++ b/src/defs/Share.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/ShareFat.tsx b/src/defs/ShareFat.tsx index 127a00dab..cd8e777cf 100644 --- a/src/defs/ShareFat.tsx +++ b/src/defs/ShareFat.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/ShareNetwork.tsx b/src/defs/ShareNetwork.tsx index a51155c36..7663de3d5 100644 --- a/src/defs/ShareNetwork.tsx +++ b/src/defs/ShareNetwork.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/Shield.tsx b/src/defs/Shield.tsx index 87a14380a..3f28bcb9a 100644 --- a/src/defs/Shield.tsx +++ b/src/defs/Shield.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/ShieldCheck.tsx b/src/defs/ShieldCheck.tsx index 2ebccfb99..2693cab97 100644 --- a/src/defs/ShieldCheck.tsx +++ b/src/defs/ShieldCheck.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/ShieldCheckered.tsx b/src/defs/ShieldCheckered.tsx index 3b792281c..da406a15d 100644 --- a/src/defs/ShieldCheckered.tsx +++ b/src/defs/ShieldCheckered.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/ShieldChevron.tsx b/src/defs/ShieldChevron.tsx index 2d8163bb0..8fb429e4b 100644 --- a/src/defs/ShieldChevron.tsx +++ b/src/defs/ShieldChevron.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/ShieldPlus.tsx b/src/defs/ShieldPlus.tsx index b18869385..e6771a87b 100644 --- a/src/defs/ShieldPlus.tsx +++ b/src/defs/ShieldPlus.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/ShieldSlash.tsx b/src/defs/ShieldSlash.tsx index 2c28b650c..911145471 100644 --- a/src/defs/ShieldSlash.tsx +++ b/src/defs/ShieldSlash.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/ShieldStar.tsx b/src/defs/ShieldStar.tsx index 8215c1c0a..97c47012f 100644 --- a/src/defs/ShieldStar.tsx +++ b/src/defs/ShieldStar.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/ShieldWarning.tsx b/src/defs/ShieldWarning.tsx index 6f3128288..e1cc8f522 100644 --- a/src/defs/ShieldWarning.tsx +++ b/src/defs/ShieldWarning.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/ShippingContainer.tsx b/src/defs/ShippingContainer.tsx index 337c0aedd..e3147f2cb 100644 --- a/src/defs/ShippingContainer.tsx +++ b/src/defs/ShippingContainer.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/ShirtFolded.tsx b/src/defs/ShirtFolded.tsx index cd75a65cb..c5d99a62a 100644 --- a/src/defs/ShirtFolded.tsx +++ b/src/defs/ShirtFolded.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/ShootingStar.tsx b/src/defs/ShootingStar.tsx index a986ad812..1a27f1dc9 100644 --- a/src/defs/ShootingStar.tsx +++ b/src/defs/ShootingStar.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/ShoppingBag.tsx b/src/defs/ShoppingBag.tsx index 3e8716aa8..0493a1712 100644 --- a/src/defs/ShoppingBag.tsx +++ b/src/defs/ShoppingBag.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/ShoppingBagOpen.tsx b/src/defs/ShoppingBagOpen.tsx index 5817f2de2..5ccf5fbb9 100644 --- a/src/defs/ShoppingBagOpen.tsx +++ b/src/defs/ShoppingBagOpen.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/ShoppingCart.tsx b/src/defs/ShoppingCart.tsx index 953f63bea..66dd2ba04 100644 --- a/src/defs/ShoppingCart.tsx +++ b/src/defs/ShoppingCart.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/ShoppingCartSimple.tsx b/src/defs/ShoppingCartSimple.tsx index 524b79865..f8057ae28 100644 --- a/src/defs/ShoppingCartSimple.tsx +++ b/src/defs/ShoppingCartSimple.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/Shovel.tsx b/src/defs/Shovel.tsx index ea3152cb6..9fa039ee3 100644 --- a/src/defs/Shovel.tsx +++ b/src/defs/Shovel.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/Shower.tsx b/src/defs/Shower.tsx index 76931bbe2..b4ad4543b 100644 --- a/src/defs/Shower.tsx +++ b/src/defs/Shower.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/Shrimp.tsx b/src/defs/Shrimp.tsx index d957abd1c..96d2de368 100644 --- a/src/defs/Shrimp.tsx +++ b/src/defs/Shrimp.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/Shuffle.tsx b/src/defs/Shuffle.tsx index 28b345555..d2ac0ed04 100644 --- a/src/defs/Shuffle.tsx +++ b/src/defs/Shuffle.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/ShuffleAngular.tsx b/src/defs/ShuffleAngular.tsx index cc261613c..ebd67800e 100644 --- a/src/defs/ShuffleAngular.tsx +++ b/src/defs/ShuffleAngular.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/ShuffleSimple.tsx b/src/defs/ShuffleSimple.tsx index a3ff1a325..f8413b6e7 100644 --- a/src/defs/ShuffleSimple.tsx +++ b/src/defs/ShuffleSimple.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/Sidebar.tsx b/src/defs/Sidebar.tsx index 12c5aea44..47807b7c8 100644 --- a/src/defs/Sidebar.tsx +++ b/src/defs/Sidebar.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/SidebarSimple.tsx b/src/defs/SidebarSimple.tsx index c0edc2b93..d630c5b2d 100644 --- a/src/defs/SidebarSimple.tsx +++ b/src/defs/SidebarSimple.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/Sigma.tsx b/src/defs/Sigma.tsx index 2e94ce1c5..7836cf348 100644 --- a/src/defs/Sigma.tsx +++ b/src/defs/Sigma.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/SignIn.tsx b/src/defs/SignIn.tsx index 5f49c0bf2..051cd7d7f 100644 --- a/src/defs/SignIn.tsx +++ b/src/defs/SignIn.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/SignOut.tsx b/src/defs/SignOut.tsx index 763c12c8d..cccdc56b6 100644 --- a/src/defs/SignOut.tsx +++ b/src/defs/SignOut.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/Signature.tsx b/src/defs/Signature.tsx index 303e42147..f84566fa5 100644 --- a/src/defs/Signature.tsx +++ b/src/defs/Signature.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/Signpost.tsx b/src/defs/Signpost.tsx index eb152ab77..9ca43b642 100644 --- a/src/defs/Signpost.tsx +++ b/src/defs/Signpost.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/SimCard.tsx b/src/defs/SimCard.tsx index 4bb61b5e4..427396f91 100644 --- a/src/defs/SimCard.tsx +++ b/src/defs/SimCard.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/Siren.tsx b/src/defs/Siren.tsx index 9f7f2ad8f..0fd6b04df 100644 --- a/src/defs/Siren.tsx +++ b/src/defs/Siren.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/SketchLogo.tsx b/src/defs/SketchLogo.tsx index 26461aa4b..abe21016f 100644 --- a/src/defs/SketchLogo.tsx +++ b/src/defs/SketchLogo.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/SkipBack.tsx b/src/defs/SkipBack.tsx index a1b2b4918..e66829cf3 100644 --- a/src/defs/SkipBack.tsx +++ b/src/defs/SkipBack.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/SkipBackCircle.tsx b/src/defs/SkipBackCircle.tsx index c8ce155f0..69ec7331f 100644 --- a/src/defs/SkipBackCircle.tsx +++ b/src/defs/SkipBackCircle.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/SkipForward.tsx b/src/defs/SkipForward.tsx index 5e6588f95..7df57c776 100644 --- a/src/defs/SkipForward.tsx +++ b/src/defs/SkipForward.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/SkipForwardCircle.tsx b/src/defs/SkipForwardCircle.tsx index ddc8df8a5..8352ad78e 100644 --- a/src/defs/SkipForwardCircle.tsx +++ b/src/defs/SkipForwardCircle.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/Skull.tsx b/src/defs/Skull.tsx index dec6aaf80..2bb1fb38e 100644 --- a/src/defs/Skull.tsx +++ b/src/defs/Skull.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/SkypeLogo.tsx b/src/defs/SkypeLogo.tsx index 9ec8b303c..e43bbe088 100644 --- a/src/defs/SkypeLogo.tsx +++ b/src/defs/SkypeLogo.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/SlackLogo.tsx b/src/defs/SlackLogo.tsx index fa28ee468..ea09adff8 100644 --- a/src/defs/SlackLogo.tsx +++ b/src/defs/SlackLogo.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/Sliders.tsx b/src/defs/Sliders.tsx index 20b53d205..1ab28a877 100644 --- a/src/defs/Sliders.tsx +++ b/src/defs/Sliders.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/SlidersHorizontal.tsx b/src/defs/SlidersHorizontal.tsx index 9ec57987e..97b0081bf 100644 --- a/src/defs/SlidersHorizontal.tsx +++ b/src/defs/SlidersHorizontal.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/Slideshow.tsx b/src/defs/Slideshow.tsx index 3324d4d24..227b5ab13 100644 --- a/src/defs/Slideshow.tsx +++ b/src/defs/Slideshow.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/Smiley.tsx b/src/defs/Smiley.tsx index 9b87319d7..071edfdd4 100644 --- a/src/defs/Smiley.tsx +++ b/src/defs/Smiley.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/SmileyAngry.tsx b/src/defs/SmileyAngry.tsx index 96b150487..e14bfde24 100644 --- a/src/defs/SmileyAngry.tsx +++ b/src/defs/SmileyAngry.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/SmileyBlank.tsx b/src/defs/SmileyBlank.tsx index e50eaf877..aff8d6e89 100644 --- a/src/defs/SmileyBlank.tsx +++ b/src/defs/SmileyBlank.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/SmileyMeh.tsx b/src/defs/SmileyMeh.tsx index 497b06685..4600b4cc3 100644 --- a/src/defs/SmileyMeh.tsx +++ b/src/defs/SmileyMeh.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/SmileyMelting.tsx b/src/defs/SmileyMelting.tsx index 8ac587877..c90190740 100644 --- a/src/defs/SmileyMelting.tsx +++ b/src/defs/SmileyMelting.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/SmileyNervous.tsx b/src/defs/SmileyNervous.tsx index b751ef919..460fd7343 100644 --- a/src/defs/SmileyNervous.tsx +++ b/src/defs/SmileyNervous.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/SmileySad.tsx b/src/defs/SmileySad.tsx index bf12eeafa..26ab6d8b5 100644 --- a/src/defs/SmileySad.tsx +++ b/src/defs/SmileySad.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/SmileySticker.tsx b/src/defs/SmileySticker.tsx index 7237ffcc4..11967435c 100644 --- a/src/defs/SmileySticker.tsx +++ b/src/defs/SmileySticker.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/SmileyWink.tsx b/src/defs/SmileyWink.tsx index 21042837d..773452a80 100644 --- a/src/defs/SmileyWink.tsx +++ b/src/defs/SmileyWink.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/SmileyXEyes.tsx b/src/defs/SmileyXEyes.tsx index 16fb78ad2..c696812e2 100644 --- a/src/defs/SmileyXEyes.tsx +++ b/src/defs/SmileyXEyes.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/SnapchatLogo.tsx b/src/defs/SnapchatLogo.tsx index f1ddc50fb..b75adf449 100644 --- a/src/defs/SnapchatLogo.tsx +++ b/src/defs/SnapchatLogo.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/Sneaker.tsx b/src/defs/Sneaker.tsx index d770e1b5e..51730a84c 100644 --- a/src/defs/Sneaker.tsx +++ b/src/defs/Sneaker.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/SneakerMove.tsx b/src/defs/SneakerMove.tsx index 77383a342..603a9421d 100644 --- a/src/defs/SneakerMove.tsx +++ b/src/defs/SneakerMove.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/Snowflake.tsx b/src/defs/Snowflake.tsx index f10227580..b30c7cd14 100644 --- a/src/defs/Snowflake.tsx +++ b/src/defs/Snowflake.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/SoccerBall.tsx b/src/defs/SoccerBall.tsx index 52cb12fc6..5babdcdaf 100644 --- a/src/defs/SoccerBall.tsx +++ b/src/defs/SoccerBall.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/Sock.tsx b/src/defs/Sock.tsx index 82ef1b4c0..f651bf1f8 100644 --- a/src/defs/Sock.tsx +++ b/src/defs/Sock.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/SolarPanel.tsx b/src/defs/SolarPanel.tsx index 20b87e3dc..114ea91fe 100644 --- a/src/defs/SolarPanel.tsx +++ b/src/defs/SolarPanel.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/SolarRoof.tsx b/src/defs/SolarRoof.tsx index b9466c5e4..7ca5c5622 100644 --- a/src/defs/SolarRoof.tsx +++ b/src/defs/SolarRoof.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/SortAscending.tsx b/src/defs/SortAscending.tsx index 7b7ace3e4..5b7768661 100644 --- a/src/defs/SortAscending.tsx +++ b/src/defs/SortAscending.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/SortDescending.tsx b/src/defs/SortDescending.tsx index 5b4acdabe..ca02b4070 100644 --- a/src/defs/SortDescending.tsx +++ b/src/defs/SortDescending.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/SoundcloudLogo.tsx b/src/defs/SoundcloudLogo.tsx index 6dbb1a2dd..79e9e9450 100644 --- a/src/defs/SoundcloudLogo.tsx +++ b/src/defs/SoundcloudLogo.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/Spade.tsx b/src/defs/Spade.tsx index eaf879f95..f54dd1a24 100644 --- a/src/defs/Spade.tsx +++ b/src/defs/Spade.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/Sparkle.tsx b/src/defs/Sparkle.tsx index 77b22c48c..764a674c4 100644 --- a/src/defs/Sparkle.tsx +++ b/src/defs/Sparkle.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/SpeakerHifi.tsx b/src/defs/SpeakerHifi.tsx index f155f9962..2b80c0300 100644 --- a/src/defs/SpeakerHifi.tsx +++ b/src/defs/SpeakerHifi.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/SpeakerHigh.tsx b/src/defs/SpeakerHigh.tsx index e555ceaff..7e3ee9ab3 100644 --- a/src/defs/SpeakerHigh.tsx +++ b/src/defs/SpeakerHigh.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/SpeakerLow.tsx b/src/defs/SpeakerLow.tsx index 6ebdb8185..cdade1f53 100644 --- a/src/defs/SpeakerLow.tsx +++ b/src/defs/SpeakerLow.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/SpeakerNone.tsx b/src/defs/SpeakerNone.tsx index c669b8a9d..db2222647 100644 --- a/src/defs/SpeakerNone.tsx +++ b/src/defs/SpeakerNone.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/SpeakerSimpleHigh.tsx b/src/defs/SpeakerSimpleHigh.tsx index d2c26ca3c..f0620203b 100644 --- a/src/defs/SpeakerSimpleHigh.tsx +++ b/src/defs/SpeakerSimpleHigh.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/SpeakerSimpleLow.tsx b/src/defs/SpeakerSimpleLow.tsx index 2bfb1343c..009896599 100644 --- a/src/defs/SpeakerSimpleLow.tsx +++ b/src/defs/SpeakerSimpleLow.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/SpeakerSimpleNone.tsx b/src/defs/SpeakerSimpleNone.tsx index c40422a90..69fa5b834 100644 --- a/src/defs/SpeakerSimpleNone.tsx +++ b/src/defs/SpeakerSimpleNone.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/SpeakerSimpleSlash.tsx b/src/defs/SpeakerSimpleSlash.tsx index 4cdc1daf1..480439d26 100644 --- a/src/defs/SpeakerSimpleSlash.tsx +++ b/src/defs/SpeakerSimpleSlash.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/SpeakerSimpleX.tsx b/src/defs/SpeakerSimpleX.tsx index a29df80fb..2f4e0e61f 100644 --- a/src/defs/SpeakerSimpleX.tsx +++ b/src/defs/SpeakerSimpleX.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -29,20 +27,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/SpeakerSlash.tsx b/src/defs/SpeakerSlash.tsx index 67ecff412..818707f1e 100644 --- a/src/defs/SpeakerSlash.tsx +++ b/src/defs/SpeakerSlash.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/SpeakerX.tsx b/src/defs/SpeakerX.tsx index cef956dd8..fb0e90640 100644 --- a/src/defs/SpeakerX.tsx +++ b/src/defs/SpeakerX.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/Speedometer.tsx b/src/defs/Speedometer.tsx index 6b9ebdcf1..b8d5fa4c8 100644 --- a/src/defs/Speedometer.tsx +++ b/src/defs/Speedometer.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/Sphere.tsx b/src/defs/Sphere.tsx index 266fc44fd..96e6a75ff 100644 --- a/src/defs/Sphere.tsx +++ b/src/defs/Sphere.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/Spinner.tsx b/src/defs/Spinner.tsx index e2ab2388d..7b8022591 100644 --- a/src/defs/Spinner.tsx +++ b/src/defs/Spinner.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/SpinnerBall.tsx b/src/defs/SpinnerBall.tsx index fb0d7ffc9..74ae23687 100644 --- a/src/defs/SpinnerBall.tsx +++ b/src/defs/SpinnerBall.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/SpinnerGap.tsx b/src/defs/SpinnerGap.tsx index f1317103e..b0a6889d1 100644 --- a/src/defs/SpinnerGap.tsx +++ b/src/defs/SpinnerGap.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/Spiral.tsx b/src/defs/Spiral.tsx index 102ae9459..10db077e4 100644 --- a/src/defs/Spiral.tsx +++ b/src/defs/Spiral.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/SplitHorizontal.tsx b/src/defs/SplitHorizontal.tsx index fd200da7d..f25e73c94 100644 --- a/src/defs/SplitHorizontal.tsx +++ b/src/defs/SplitHorizontal.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/SplitVertical.tsx b/src/defs/SplitVertical.tsx index d279dbef6..7c675616c 100644 --- a/src/defs/SplitVertical.tsx +++ b/src/defs/SplitVertical.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/SpotifyLogo.tsx b/src/defs/SpotifyLogo.tsx index 7c7fbe1fb..f453ad0fb 100644 --- a/src/defs/SpotifyLogo.tsx +++ b/src/defs/SpotifyLogo.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/SprayBottle.tsx b/src/defs/SprayBottle.tsx index 9d80a688c..a577ab0a1 100644 --- a/src/defs/SprayBottle.tsx +++ b/src/defs/SprayBottle.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/Square.tsx b/src/defs/Square.tsx index b8fa6d029..e969caad1 100644 --- a/src/defs/Square.tsx +++ b/src/defs/Square.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/SquareHalf.tsx b/src/defs/SquareHalf.tsx index ca6160c57..1670eb117 100644 --- a/src/defs/SquareHalf.tsx +++ b/src/defs/SquareHalf.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/SquareHalfBottom.tsx b/src/defs/SquareHalfBottom.tsx index 44eec10a6..6b469637d 100644 --- a/src/defs/SquareHalfBottom.tsx +++ b/src/defs/SquareHalfBottom.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/SquareLogo.tsx b/src/defs/SquareLogo.tsx index 3bc3e5a65..9d9fa60a1 100644 --- a/src/defs/SquareLogo.tsx +++ b/src/defs/SquareLogo.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/SquareSplitHorizontal.tsx b/src/defs/SquareSplitHorizontal.tsx index 13c610464..adc49bfb1 100644 --- a/src/defs/SquareSplitHorizontal.tsx +++ b/src/defs/SquareSplitHorizontal.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/SquareSplitVertical.tsx b/src/defs/SquareSplitVertical.tsx index a94f853d7..a22876cbc 100644 --- a/src/defs/SquareSplitVertical.tsx +++ b/src/defs/SquareSplitVertical.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/SquaresFour.tsx b/src/defs/SquaresFour.tsx index 96ec099be..62b7dabb1 100644 --- a/src/defs/SquaresFour.tsx +++ b/src/defs/SquaresFour.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/Stack.tsx b/src/defs/Stack.tsx index d050b242f..b77ba4343 100644 --- a/src/defs/Stack.tsx +++ b/src/defs/Stack.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -27,20 +25,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/StackMinus.tsx b/src/defs/StackMinus.tsx index 74600f0c7..6c57a2b76 100644 --- a/src/defs/StackMinus.tsx +++ b/src/defs/StackMinus.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/StackOverflowLogo.tsx b/src/defs/StackOverflowLogo.tsx index dc435d9f5..ff19eae50 100644 --- a/src/defs/StackOverflowLogo.tsx +++ b/src/defs/StackOverflowLogo.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/StackPlus.tsx b/src/defs/StackPlus.tsx index f0017409e..a25786935 100644 --- a/src/defs/StackPlus.tsx +++ b/src/defs/StackPlus.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/StackSimple.tsx b/src/defs/StackSimple.tsx index 8d375b25d..b7b9fd3a8 100644 --- a/src/defs/StackSimple.tsx +++ b/src/defs/StackSimple.tsx @@ -6,9 +6,7 @@ import { IconWeight } from "../lib"; export default new Map([ [ "bold", - <> - - , + , ], [ "duotone", @@ -26,20 +24,14 @@ export default new Map([ ], [ "light", - <> - - , + , ], [ "regular", - <> - - , + , ], [ "thin", - <> - - , + , ], ]); diff --git a/src/defs/Stairs.tsx b/src/defs/Stairs.tsx index edef5877f..0841d9d92 100644 --- a/src/defs/Stairs.tsx +++ b/src/defs/Stairs.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/Stamp.tsx b/src/defs/Stamp.tsx index 98e67dd81..cbf68354f 100644 --- a/src/defs/Stamp.tsx +++ b/src/defs/Stamp.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/StandardDefinition.tsx b/src/defs/StandardDefinition.tsx index 2ed281a14..0d7b35914 100644 --- a/src/defs/StandardDefinition.tsx +++ b/src/defs/StandardDefinition.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/Star.tsx b/src/defs/Star.tsx index 78b811087..5b88f8ea9 100644 --- a/src/defs/Star.tsx +++ b/src/defs/Star.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/StarAndCrescent.tsx b/src/defs/StarAndCrescent.tsx index 31e10e866..fa8f3fa0b 100644 --- a/src/defs/StarAndCrescent.tsx +++ b/src/defs/StarAndCrescent.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/StarFour.tsx b/src/defs/StarFour.tsx index 4d716d175..d3010f3a2 100644 --- a/src/defs/StarFour.tsx +++ b/src/defs/StarFour.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/StarHalf.tsx b/src/defs/StarHalf.tsx index 6de259939..ae6b3f3ac 100644 --- a/src/defs/StarHalf.tsx +++ b/src/defs/StarHalf.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/StarOfDavid.tsx b/src/defs/StarOfDavid.tsx index 85e789af8..4d6916b9a 100644 --- a/src/defs/StarOfDavid.tsx +++ b/src/defs/StarOfDavid.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/SteamLogo.tsx b/src/defs/SteamLogo.tsx index c036f2b23..b988d8866 100644 --- a/src/defs/SteamLogo.tsx +++ b/src/defs/SteamLogo.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/SteeringWheel.tsx b/src/defs/SteeringWheel.tsx index cc05e4aec..a55e4aa83 100644 --- a/src/defs/SteeringWheel.tsx +++ b/src/defs/SteeringWheel.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/Steps.tsx b/src/defs/Steps.tsx index ba0368412..81e447988 100644 --- a/src/defs/Steps.tsx +++ b/src/defs/Steps.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/Stethoscope.tsx b/src/defs/Stethoscope.tsx index 9e6ea52c0..f13d87557 100644 --- a/src/defs/Stethoscope.tsx +++ b/src/defs/Stethoscope.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/Sticker.tsx b/src/defs/Sticker.tsx index d5cd33af9..737fcddba 100644 --- a/src/defs/Sticker.tsx +++ b/src/defs/Sticker.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/Stool.tsx b/src/defs/Stool.tsx index 240cdd78d..e0408acd0 100644 --- a/src/defs/Stool.tsx +++ b/src/defs/Stool.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/Stop.tsx b/src/defs/Stop.tsx index df1382185..1c0a485d7 100644 --- a/src/defs/Stop.tsx +++ b/src/defs/Stop.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/StopCircle.tsx b/src/defs/StopCircle.tsx index 47d545073..d88086a32 100644 --- a/src/defs/StopCircle.tsx +++ b/src/defs/StopCircle.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/Storefront.tsx b/src/defs/Storefront.tsx index b8069e1ec..f5086b022 100644 --- a/src/defs/Storefront.tsx +++ b/src/defs/Storefront.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/Strategy.tsx b/src/defs/Strategy.tsx index 795b6ce84..77b6de5a5 100644 --- a/src/defs/Strategy.tsx +++ b/src/defs/Strategy.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/StripeLogo.tsx b/src/defs/StripeLogo.tsx index 40f827693..92aa588e4 100644 --- a/src/defs/StripeLogo.tsx +++ b/src/defs/StripeLogo.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/Student.tsx b/src/defs/Student.tsx index 1bcac7dd3..df868f2c3 100644 --- a/src/defs/Student.tsx +++ b/src/defs/Student.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/SubsetOf.tsx b/src/defs/SubsetOf.tsx index 3b0d69926..310521b97 100644 --- a/src/defs/SubsetOf.tsx +++ b/src/defs/SubsetOf.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/SubsetProperOf.tsx b/src/defs/SubsetProperOf.tsx index 1d5ef50d1..02a83f075 100644 --- a/src/defs/SubsetProperOf.tsx +++ b/src/defs/SubsetProperOf.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/Subtitles.tsx b/src/defs/Subtitles.tsx index d252a59da..e9e028a78 100644 --- a/src/defs/Subtitles.tsx +++ b/src/defs/Subtitles.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/SubtitlesSlash.tsx b/src/defs/SubtitlesSlash.tsx index 731795529..45a40becd 100644 --- a/src/defs/SubtitlesSlash.tsx +++ b/src/defs/SubtitlesSlash.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/Subtract.tsx b/src/defs/Subtract.tsx index 49daad20b..e7b3d3c5a 100644 --- a/src/defs/Subtract.tsx +++ b/src/defs/Subtract.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/SubtractSquare.tsx b/src/defs/SubtractSquare.tsx index 41e782792..7b004bb2d 100644 --- a/src/defs/SubtractSquare.tsx +++ b/src/defs/SubtractSquare.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/Subway.tsx b/src/defs/Subway.tsx index 9fddd8e67..6fe335f40 100644 --- a/src/defs/Subway.tsx +++ b/src/defs/Subway.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/Suitcase.tsx b/src/defs/Suitcase.tsx index 6204911b8..5682e3f47 100644 --- a/src/defs/Suitcase.tsx +++ b/src/defs/Suitcase.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/SuitcaseRolling.tsx b/src/defs/SuitcaseRolling.tsx index dfe7f2cd2..67c7596e3 100644 --- a/src/defs/SuitcaseRolling.tsx +++ b/src/defs/SuitcaseRolling.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/SuitcaseSimple.tsx b/src/defs/SuitcaseSimple.tsx index e358dd1a4..edde6e1e7 100644 --- a/src/defs/SuitcaseSimple.tsx +++ b/src/defs/SuitcaseSimple.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/Sun.tsx b/src/defs/Sun.tsx index d6742afe1..47f3c0658 100644 --- a/src/defs/Sun.tsx +++ b/src/defs/Sun.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/SunDim.tsx b/src/defs/SunDim.tsx index e74d05ea3..9c859ffbd 100644 --- a/src/defs/SunDim.tsx +++ b/src/defs/SunDim.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/SunHorizon.tsx b/src/defs/SunHorizon.tsx index d22885897..1c37a72af 100644 --- a/src/defs/SunHorizon.tsx +++ b/src/defs/SunHorizon.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/Sunglasses.tsx b/src/defs/Sunglasses.tsx index 6dca4bee4..638f08ac2 100644 --- a/src/defs/Sunglasses.tsx +++ b/src/defs/Sunglasses.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/SupersetOf.tsx b/src/defs/SupersetOf.tsx index d1878571b..6567ab568 100644 --- a/src/defs/SupersetOf.tsx +++ b/src/defs/SupersetOf.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/SupersetProperOf.tsx b/src/defs/SupersetProperOf.tsx index 5e8c61bb1..80201cbb9 100644 --- a/src/defs/SupersetProperOf.tsx +++ b/src/defs/SupersetProperOf.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/Swap.tsx b/src/defs/Swap.tsx index f6394d169..6f25d9e98 100644 --- a/src/defs/Swap.tsx +++ b/src/defs/Swap.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/Swatches.tsx b/src/defs/Swatches.tsx index c698ece4c..db206a800 100644 --- a/src/defs/Swatches.tsx +++ b/src/defs/Swatches.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/SwimmingPool.tsx b/src/defs/SwimmingPool.tsx index 15b55b8da..5f1b279ea 100644 --- a/src/defs/SwimmingPool.tsx +++ b/src/defs/SwimmingPool.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/Sword.tsx b/src/defs/Sword.tsx index cf1818bb5..752e6f996 100644 --- a/src/defs/Sword.tsx +++ b/src/defs/Sword.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/Synagogue.tsx b/src/defs/Synagogue.tsx index c48e52c97..1bd20445e 100644 --- a/src/defs/Synagogue.tsx +++ b/src/defs/Synagogue.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/Syringe.tsx b/src/defs/Syringe.tsx index aa352d263..20e7182a5 100644 --- a/src/defs/Syringe.tsx +++ b/src/defs/Syringe.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/TShirt.tsx b/src/defs/TShirt.tsx index eee7de68f..3ce413dbd 100644 --- a/src/defs/TShirt.tsx +++ b/src/defs/TShirt.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/Table.tsx b/src/defs/Table.tsx index 51c81092c..c208ba27d 100644 --- a/src/defs/Table.tsx +++ b/src/defs/Table.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/Tabs.tsx b/src/defs/Tabs.tsx index 49b1630b3..ac16db5b0 100644 --- a/src/defs/Tabs.tsx +++ b/src/defs/Tabs.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/Tag.tsx b/src/defs/Tag.tsx index 771b9338a..fcfad01ed 100644 --- a/src/defs/Tag.tsx +++ b/src/defs/Tag.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/TagChevron.tsx b/src/defs/TagChevron.tsx index f63cb54d1..dea7a9177 100644 --- a/src/defs/TagChevron.tsx +++ b/src/defs/TagChevron.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/TagSimple.tsx b/src/defs/TagSimple.tsx index 018a07216..4d6031110 100644 --- a/src/defs/TagSimple.tsx +++ b/src/defs/TagSimple.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/Target.tsx b/src/defs/Target.tsx index 73e311a1d..66db2b52c 100644 --- a/src/defs/Target.tsx +++ b/src/defs/Target.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/Taxi.tsx b/src/defs/Taxi.tsx index 0ff3fb11f..a78a46365 100644 --- a/src/defs/Taxi.tsx +++ b/src/defs/Taxi.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/TeaBag.tsx b/src/defs/TeaBag.tsx index a2c92ba57..e15f71294 100644 --- a/src/defs/TeaBag.tsx +++ b/src/defs/TeaBag.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/TelegramLogo.tsx b/src/defs/TelegramLogo.tsx index 665197304..84517c206 100644 --- a/src/defs/TelegramLogo.tsx +++ b/src/defs/TelegramLogo.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/Television.tsx b/src/defs/Television.tsx index 1664c8a17..484fbc4a8 100644 --- a/src/defs/Television.tsx +++ b/src/defs/Television.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/TelevisionSimple.tsx b/src/defs/TelevisionSimple.tsx index 6a0b86e5f..9b9bf11b5 100644 --- a/src/defs/TelevisionSimple.tsx +++ b/src/defs/TelevisionSimple.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/TennisBall.tsx b/src/defs/TennisBall.tsx index 6caabc54b..a56e146f5 100644 --- a/src/defs/TennisBall.tsx +++ b/src/defs/TennisBall.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/Tent.tsx b/src/defs/Tent.tsx index 3acb40bff..a15b4a8a2 100644 --- a/src/defs/Tent.tsx +++ b/src/defs/Tent.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/Terminal.tsx b/src/defs/Terminal.tsx index dca7471e0..0e62f6d95 100644 --- a/src/defs/Terminal.tsx +++ b/src/defs/Terminal.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/TerminalWindow.tsx b/src/defs/TerminalWindow.tsx index 3de7688a7..e7af5edf4 100644 --- a/src/defs/TerminalWindow.tsx +++ b/src/defs/TerminalWindow.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/TestTube.tsx b/src/defs/TestTube.tsx index 620e0b94a..80cf32046 100644 --- a/src/defs/TestTube.tsx +++ b/src/defs/TestTube.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/TextAUnderline.tsx b/src/defs/TextAUnderline.tsx index 8057a220f..8e913e00b 100644 --- a/src/defs/TextAUnderline.tsx +++ b/src/defs/TextAUnderline.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/TextAa.tsx b/src/defs/TextAa.tsx index 0bc24c9e1..28a339945 100644 --- a/src/defs/TextAa.tsx +++ b/src/defs/TextAa.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/TextAlignCenter.tsx b/src/defs/TextAlignCenter.tsx index fba402c72..2539a6c52 100644 --- a/src/defs/TextAlignCenter.tsx +++ b/src/defs/TextAlignCenter.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/TextAlignJustify.tsx b/src/defs/TextAlignJustify.tsx index b255e8ee4..9ca2e4464 100644 --- a/src/defs/TextAlignJustify.tsx +++ b/src/defs/TextAlignJustify.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/TextAlignLeft.tsx b/src/defs/TextAlignLeft.tsx index 850f24559..3d874fa25 100644 --- a/src/defs/TextAlignLeft.tsx +++ b/src/defs/TextAlignLeft.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/TextAlignRight.tsx b/src/defs/TextAlignRight.tsx index d77d25305..02c6997f3 100644 --- a/src/defs/TextAlignRight.tsx +++ b/src/defs/TextAlignRight.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/TextB.tsx b/src/defs/TextB.tsx index 16027b149..606435cdb 100644 --- a/src/defs/TextB.tsx +++ b/src/defs/TextB.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/TextColumns.tsx b/src/defs/TextColumns.tsx index 874fca06a..b24b22a18 100644 --- a/src/defs/TextColumns.tsx +++ b/src/defs/TextColumns.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/TextH.tsx b/src/defs/TextH.tsx index cd970a17e..361c3d8eb 100644 --- a/src/defs/TextH.tsx +++ b/src/defs/TextH.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/TextHFive.tsx b/src/defs/TextHFive.tsx index b76670dbc..c96945516 100644 --- a/src/defs/TextHFive.tsx +++ b/src/defs/TextHFive.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/TextHFour.tsx b/src/defs/TextHFour.tsx index e6b667aee..394bdad9d 100644 --- a/src/defs/TextHFour.tsx +++ b/src/defs/TextHFour.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/TextHOne.tsx b/src/defs/TextHOne.tsx index b483f5c28..96a15b713 100644 --- a/src/defs/TextHOne.tsx +++ b/src/defs/TextHOne.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/TextHSix.tsx b/src/defs/TextHSix.tsx index e56668677..d200d8cf2 100644 --- a/src/defs/TextHSix.tsx +++ b/src/defs/TextHSix.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/TextHThree.tsx b/src/defs/TextHThree.tsx index 9669f32d6..32240368d 100644 --- a/src/defs/TextHThree.tsx +++ b/src/defs/TextHThree.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/TextHTwo.tsx b/src/defs/TextHTwo.tsx index e76a8e8fa..6b641d200 100644 --- a/src/defs/TextHTwo.tsx +++ b/src/defs/TextHTwo.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/TextIndent.tsx b/src/defs/TextIndent.tsx index adfb6b3f9..a561a6c7f 100644 --- a/src/defs/TextIndent.tsx +++ b/src/defs/TextIndent.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/TextItalic.tsx b/src/defs/TextItalic.tsx index 0b5f472a5..6d7a82e40 100644 --- a/src/defs/TextItalic.tsx +++ b/src/defs/TextItalic.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/TextOutdent.tsx b/src/defs/TextOutdent.tsx index 1c8ef47cd..0687d7b17 100644 --- a/src/defs/TextOutdent.tsx +++ b/src/defs/TextOutdent.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/TextStrikethrough.tsx b/src/defs/TextStrikethrough.tsx index 220918568..e1ee1635e 100644 --- a/src/defs/TextStrikethrough.tsx +++ b/src/defs/TextStrikethrough.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/TextSubscript.tsx b/src/defs/TextSubscript.tsx index 1f1bd87b3..da7d40b81 100644 --- a/src/defs/TextSubscript.tsx +++ b/src/defs/TextSubscript.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/TextSuperscript.tsx b/src/defs/TextSuperscript.tsx index e8138f323..2bdfbbb9a 100644 --- a/src/defs/TextSuperscript.tsx +++ b/src/defs/TextSuperscript.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/TextT.tsx b/src/defs/TextT.tsx index 04f0591d5..3b73ae733 100644 --- a/src/defs/TextT.tsx +++ b/src/defs/TextT.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/TextTSlash.tsx b/src/defs/TextTSlash.tsx index ccd7061a5..c2a11bfca 100644 --- a/src/defs/TextTSlash.tsx +++ b/src/defs/TextTSlash.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/TextUnderline.tsx b/src/defs/TextUnderline.tsx index 46e5530ae..599d70b26 100644 --- a/src/defs/TextUnderline.tsx +++ b/src/defs/TextUnderline.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/Textbox.tsx b/src/defs/Textbox.tsx index 74a997aa5..bf2bb7ae1 100644 --- a/src/defs/Textbox.tsx +++ b/src/defs/Textbox.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/Thermometer.tsx b/src/defs/Thermometer.tsx index 697086d1c..c56791c8e 100644 --- a/src/defs/Thermometer.tsx +++ b/src/defs/Thermometer.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/ThermometerCold.tsx b/src/defs/ThermometerCold.tsx index 03e7d5604..f2a31582f 100644 --- a/src/defs/ThermometerCold.tsx +++ b/src/defs/ThermometerCold.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/ThermometerHot.tsx b/src/defs/ThermometerHot.tsx index 6134d971d..40169bcf7 100644 --- a/src/defs/ThermometerHot.tsx +++ b/src/defs/ThermometerHot.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/ThermometerSimple.tsx b/src/defs/ThermometerSimple.tsx index 7c7f5fc14..f6502bffc 100644 --- a/src/defs/ThermometerSimple.tsx +++ b/src/defs/ThermometerSimple.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/ThreadsLogo.tsx b/src/defs/ThreadsLogo.tsx index ec7ced4bc..861ee578a 100644 --- a/src/defs/ThreadsLogo.tsx +++ b/src/defs/ThreadsLogo.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/ThreeD.tsx b/src/defs/ThreeD.tsx index 921bf6d98..04840d435 100644 --- a/src/defs/ThreeD.tsx +++ b/src/defs/ThreeD.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/ThumbsDown.tsx b/src/defs/ThumbsDown.tsx index 41568cbdb..33d77e937 100644 --- a/src/defs/ThumbsDown.tsx +++ b/src/defs/ThumbsDown.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/ThumbsUp.tsx b/src/defs/ThumbsUp.tsx index 739a370a6..201205f37 100644 --- a/src/defs/ThumbsUp.tsx +++ b/src/defs/ThumbsUp.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/Ticket.tsx b/src/defs/Ticket.tsx index 145c6300c..b0220febe 100644 --- a/src/defs/Ticket.tsx +++ b/src/defs/Ticket.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/TidalLogo.tsx b/src/defs/TidalLogo.tsx index e7d534c07..30b1601f5 100644 --- a/src/defs/TidalLogo.tsx +++ b/src/defs/TidalLogo.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/TiktokLogo.tsx b/src/defs/TiktokLogo.tsx index aa43e5203..dadc42e4e 100644 --- a/src/defs/TiktokLogo.tsx +++ b/src/defs/TiktokLogo.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/Tilde.tsx b/src/defs/Tilde.tsx index 6bd6c5bbe..e1b483e9b 100644 --- a/src/defs/Tilde.tsx +++ b/src/defs/Tilde.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/Timer.tsx b/src/defs/Timer.tsx index 51f3a3f8a..2150a4023 100644 --- a/src/defs/Timer.tsx +++ b/src/defs/Timer.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/TipJar.tsx b/src/defs/TipJar.tsx index 58d7b8b53..3b614b8da 100644 --- a/src/defs/TipJar.tsx +++ b/src/defs/TipJar.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/Tipi.tsx b/src/defs/Tipi.tsx index 660b785b8..5b6b4f7c1 100644 --- a/src/defs/Tipi.tsx +++ b/src/defs/Tipi.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/Tire.tsx b/src/defs/Tire.tsx index 65065bcde..0cd78c1d3 100644 --- a/src/defs/Tire.tsx +++ b/src/defs/Tire.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/ToggleLeft.tsx b/src/defs/ToggleLeft.tsx index 7f557fc6d..39367bc93 100644 --- a/src/defs/ToggleLeft.tsx +++ b/src/defs/ToggleLeft.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/ToggleRight.tsx b/src/defs/ToggleRight.tsx index 6c9424830..b00521ee1 100644 --- a/src/defs/ToggleRight.tsx +++ b/src/defs/ToggleRight.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/Toilet.tsx b/src/defs/Toilet.tsx index 1580e7bee..06b1ac408 100644 --- a/src/defs/Toilet.tsx +++ b/src/defs/Toilet.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/ToiletPaper.tsx b/src/defs/ToiletPaper.tsx index d4f2adb3b..a2fa1836e 100644 --- a/src/defs/ToiletPaper.tsx +++ b/src/defs/ToiletPaper.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/Toolbox.tsx b/src/defs/Toolbox.tsx index 5bc826655..fae618bf8 100644 --- a/src/defs/Toolbox.tsx +++ b/src/defs/Toolbox.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/Tooth.tsx b/src/defs/Tooth.tsx index 86427f5df..35d160c47 100644 --- a/src/defs/Tooth.tsx +++ b/src/defs/Tooth.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/Tornado.tsx b/src/defs/Tornado.tsx index c688ccd19..a5590dcbb 100644 --- a/src/defs/Tornado.tsx +++ b/src/defs/Tornado.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/Tote.tsx b/src/defs/Tote.tsx index f2382e0f3..5db9c5b1d 100644 --- a/src/defs/Tote.tsx +++ b/src/defs/Tote.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/ToteSimple.tsx b/src/defs/ToteSimple.tsx index 3812390ae..e78650d82 100644 --- a/src/defs/ToteSimple.tsx +++ b/src/defs/ToteSimple.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/Towel.tsx b/src/defs/Towel.tsx index 895848462..0790c66c8 100644 --- a/src/defs/Towel.tsx +++ b/src/defs/Towel.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/Tractor.tsx b/src/defs/Tractor.tsx index b64427c76..f46a42abf 100644 --- a/src/defs/Tractor.tsx +++ b/src/defs/Tractor.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/Trademark.tsx b/src/defs/Trademark.tsx index c4c1bea7c..65459fe37 100644 --- a/src/defs/Trademark.tsx +++ b/src/defs/Trademark.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/TrademarkRegistered.tsx b/src/defs/TrademarkRegistered.tsx index 10dc80f13..7aa514246 100644 --- a/src/defs/TrademarkRegistered.tsx +++ b/src/defs/TrademarkRegistered.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/TrafficCone.tsx b/src/defs/TrafficCone.tsx index 97fc2f0c4..7fcae53f0 100644 --- a/src/defs/TrafficCone.tsx +++ b/src/defs/TrafficCone.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/TrafficSign.tsx b/src/defs/TrafficSign.tsx index 463bdf8ba..34f50f760 100644 --- a/src/defs/TrafficSign.tsx +++ b/src/defs/TrafficSign.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/TrafficSignal.tsx b/src/defs/TrafficSignal.tsx index a7b863d58..d5fae6ea1 100644 --- a/src/defs/TrafficSignal.tsx +++ b/src/defs/TrafficSignal.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/Train.tsx b/src/defs/Train.tsx index 1e82de239..b358bd9a2 100644 --- a/src/defs/Train.tsx +++ b/src/defs/Train.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/TrainRegional.tsx b/src/defs/TrainRegional.tsx index 794a77207..900fc1b3e 100644 --- a/src/defs/TrainRegional.tsx +++ b/src/defs/TrainRegional.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/TrainSimple.tsx b/src/defs/TrainSimple.tsx index 818d04d39..8a885d6ce 100644 --- a/src/defs/TrainSimple.tsx +++ b/src/defs/TrainSimple.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/Tram.tsx b/src/defs/Tram.tsx index 87ec53fd7..1609d49ee 100644 --- a/src/defs/Tram.tsx +++ b/src/defs/Tram.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/Translate.tsx b/src/defs/Translate.tsx index de87570ff..35504d0f9 100644 --- a/src/defs/Translate.tsx +++ b/src/defs/Translate.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/Trash.tsx b/src/defs/Trash.tsx index 70af095cd..c85742764 100644 --- a/src/defs/Trash.tsx +++ b/src/defs/Trash.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/TrashSimple.tsx b/src/defs/TrashSimple.tsx index 6d86ba594..baa8fcbe5 100644 --- a/src/defs/TrashSimple.tsx +++ b/src/defs/TrashSimple.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/Tray.tsx b/src/defs/Tray.tsx index 11a8b0590..a2862185c 100644 --- a/src/defs/Tray.tsx +++ b/src/defs/Tray.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/TrayArrowDown.tsx b/src/defs/TrayArrowDown.tsx index cf980896a..73df69e61 100644 --- a/src/defs/TrayArrowDown.tsx +++ b/src/defs/TrayArrowDown.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/TrayArrowUp.tsx b/src/defs/TrayArrowUp.tsx index b01f57fd2..9374db798 100644 --- a/src/defs/TrayArrowUp.tsx +++ b/src/defs/TrayArrowUp.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/TreasureChest.tsx b/src/defs/TreasureChest.tsx index 7561e5194..1d5d614b2 100644 --- a/src/defs/TreasureChest.tsx +++ b/src/defs/TreasureChest.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/Tree.tsx b/src/defs/Tree.tsx index da936f87a..1c61eb12a 100644 --- a/src/defs/Tree.tsx +++ b/src/defs/Tree.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/TreeEvergreen.tsx b/src/defs/TreeEvergreen.tsx index 384495747..8e8d50041 100644 --- a/src/defs/TreeEvergreen.tsx +++ b/src/defs/TreeEvergreen.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/TreePalm.tsx b/src/defs/TreePalm.tsx index 9ba7bdf7e..a3461b41f 100644 --- a/src/defs/TreePalm.tsx +++ b/src/defs/TreePalm.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/TreeStructure.tsx b/src/defs/TreeStructure.tsx index 2a79dbf48..e1d0f76fb 100644 --- a/src/defs/TreeStructure.tsx +++ b/src/defs/TreeStructure.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/TreeView.tsx b/src/defs/TreeView.tsx index 9904cedd4..1636755f8 100644 --- a/src/defs/TreeView.tsx +++ b/src/defs/TreeView.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/TrendDown.tsx b/src/defs/TrendDown.tsx index c5e3602eb..d8e96c7b4 100644 --- a/src/defs/TrendDown.tsx +++ b/src/defs/TrendDown.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/TrendUp.tsx b/src/defs/TrendUp.tsx index f75a3c601..e78e0abb2 100644 --- a/src/defs/TrendUp.tsx +++ b/src/defs/TrendUp.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/Triangle.tsx b/src/defs/Triangle.tsx index 4b79231e2..e70d5961c 100644 --- a/src/defs/Triangle.tsx +++ b/src/defs/Triangle.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/TriangleDashed.tsx b/src/defs/TriangleDashed.tsx index 59aade5b5..0121fece7 100644 --- a/src/defs/TriangleDashed.tsx +++ b/src/defs/TriangleDashed.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/Trolley.tsx b/src/defs/Trolley.tsx index b57e07a7c..1e9388db7 100644 --- a/src/defs/Trolley.tsx +++ b/src/defs/Trolley.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/TrolleySuitcase.tsx b/src/defs/TrolleySuitcase.tsx index e5fb597b5..4c7804076 100644 --- a/src/defs/TrolleySuitcase.tsx +++ b/src/defs/TrolleySuitcase.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/Trophy.tsx b/src/defs/Trophy.tsx index b3b3da53d..6a0b17a6f 100644 --- a/src/defs/Trophy.tsx +++ b/src/defs/Trophy.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/Truck.tsx b/src/defs/Truck.tsx index 552d6f0ba..0d5d02f17 100644 --- a/src/defs/Truck.tsx +++ b/src/defs/Truck.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/TruckTrailer.tsx b/src/defs/TruckTrailer.tsx index 96ca6b988..86ab2cc18 100644 --- a/src/defs/TruckTrailer.tsx +++ b/src/defs/TruckTrailer.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/TumblrLogo.tsx b/src/defs/TumblrLogo.tsx index 9d5fa859e..a0926da14 100644 --- a/src/defs/TumblrLogo.tsx +++ b/src/defs/TumblrLogo.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/TwitchLogo.tsx b/src/defs/TwitchLogo.tsx index 12aca2228..2bb8bed05 100644 --- a/src/defs/TwitchLogo.tsx +++ b/src/defs/TwitchLogo.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/TwitterLogo.tsx b/src/defs/TwitterLogo.tsx index 2a6726cbf..3ac3c3f46 100644 --- a/src/defs/TwitterLogo.tsx +++ b/src/defs/TwitterLogo.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/Umbrella.tsx b/src/defs/Umbrella.tsx index eff5e3c97..818ba11d3 100644 --- a/src/defs/Umbrella.tsx +++ b/src/defs/Umbrella.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/UmbrellaSimple.tsx b/src/defs/UmbrellaSimple.tsx index 6d640020e..9775e746f 100644 --- a/src/defs/UmbrellaSimple.tsx +++ b/src/defs/UmbrellaSimple.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/Union.tsx b/src/defs/Union.tsx index a59c23094..e56cb6bf1 100644 --- a/src/defs/Union.tsx +++ b/src/defs/Union.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/Unite.tsx b/src/defs/Unite.tsx index 5ffbdf6e8..e6890f0ef 100644 --- a/src/defs/Unite.tsx +++ b/src/defs/Unite.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/UniteSquare.tsx b/src/defs/UniteSquare.tsx index 062168dd1..d50eaddb7 100644 --- a/src/defs/UniteSquare.tsx +++ b/src/defs/UniteSquare.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/Upload.tsx b/src/defs/Upload.tsx index 011ee3b57..054e47e06 100644 --- a/src/defs/Upload.tsx +++ b/src/defs/Upload.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/UploadSimple.tsx b/src/defs/UploadSimple.tsx index 3db23e576..2b98db4d1 100644 --- a/src/defs/UploadSimple.tsx +++ b/src/defs/UploadSimple.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/Usb.tsx b/src/defs/Usb.tsx index 8fbe14c24..27b0fbfe6 100644 --- a/src/defs/Usb.tsx +++ b/src/defs/Usb.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/User.tsx b/src/defs/User.tsx index 33f7e43ba..d048ba30e 100644 --- a/src/defs/User.tsx +++ b/src/defs/User.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/UserCheck.tsx b/src/defs/UserCheck.tsx index 28f155514..65a18271f 100644 --- a/src/defs/UserCheck.tsx +++ b/src/defs/UserCheck.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/UserCircle.tsx b/src/defs/UserCircle.tsx index d88022fe2..8f7012f10 100644 --- a/src/defs/UserCircle.tsx +++ b/src/defs/UserCircle.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/UserCircleCheck.tsx b/src/defs/UserCircleCheck.tsx index 4813b692d..d4e9b97a2 100644 --- a/src/defs/UserCircleCheck.tsx +++ b/src/defs/UserCircleCheck.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/UserCircleDashed.tsx b/src/defs/UserCircleDashed.tsx index 9073c16d4..7c81015b6 100644 --- a/src/defs/UserCircleDashed.tsx +++ b/src/defs/UserCircleDashed.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/UserCircleGear.tsx b/src/defs/UserCircleGear.tsx index 81970b983..a29613d6c 100644 --- a/src/defs/UserCircleGear.tsx +++ b/src/defs/UserCircleGear.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/UserCircleMinus.tsx b/src/defs/UserCircleMinus.tsx index 25eb9f999..b152f2313 100644 --- a/src/defs/UserCircleMinus.tsx +++ b/src/defs/UserCircleMinus.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/UserCirclePlus.tsx b/src/defs/UserCirclePlus.tsx index 788422ad7..8076b1e4f 100644 --- a/src/defs/UserCirclePlus.tsx +++ b/src/defs/UserCirclePlus.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/UserFocus.tsx b/src/defs/UserFocus.tsx index f44fd934c..9e1d49306 100644 --- a/src/defs/UserFocus.tsx +++ b/src/defs/UserFocus.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/UserGear.tsx b/src/defs/UserGear.tsx index f5cef51fe..ff552c99d 100644 --- a/src/defs/UserGear.tsx +++ b/src/defs/UserGear.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/UserList.tsx b/src/defs/UserList.tsx index 7fb848d01..974a5d456 100644 --- a/src/defs/UserList.tsx +++ b/src/defs/UserList.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/UserMinus.tsx b/src/defs/UserMinus.tsx index 99beeca74..92f5b6e94 100644 --- a/src/defs/UserMinus.tsx +++ b/src/defs/UserMinus.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/UserPlus.tsx b/src/defs/UserPlus.tsx index 504083247..94b3b29fa 100644 --- a/src/defs/UserPlus.tsx +++ b/src/defs/UserPlus.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/UserRectangle.tsx b/src/defs/UserRectangle.tsx index 5446deb2d..bd9486a51 100644 --- a/src/defs/UserRectangle.tsx +++ b/src/defs/UserRectangle.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/UserSound.tsx b/src/defs/UserSound.tsx index 11ab9fb82..a6d6f9fc1 100644 --- a/src/defs/UserSound.tsx +++ b/src/defs/UserSound.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/UserSquare.tsx b/src/defs/UserSquare.tsx index 2a5f3e6ac..bff77c57e 100644 --- a/src/defs/UserSquare.tsx +++ b/src/defs/UserSquare.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/UserSwitch.tsx b/src/defs/UserSwitch.tsx index f56043a11..90dd36c30 100644 --- a/src/defs/UserSwitch.tsx +++ b/src/defs/UserSwitch.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/Users.tsx b/src/defs/Users.tsx index e6422ac6d..45aa87c0d 100644 --- a/src/defs/Users.tsx +++ b/src/defs/Users.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/UsersFour.tsx b/src/defs/UsersFour.tsx index ec5a07321..cf4b6072b 100644 --- a/src/defs/UsersFour.tsx +++ b/src/defs/UsersFour.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/UsersThree.tsx b/src/defs/UsersThree.tsx index 87489493b..c6d69424d 100644 --- a/src/defs/UsersThree.tsx +++ b/src/defs/UsersThree.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/Van.tsx b/src/defs/Van.tsx index 87cb3da66..53e539850 100644 --- a/src/defs/Van.tsx +++ b/src/defs/Van.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/Vault.tsx b/src/defs/Vault.tsx index 85ea429ac..5275de189 100644 --- a/src/defs/Vault.tsx +++ b/src/defs/Vault.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/VectorThree.tsx b/src/defs/VectorThree.tsx index 230beb36f..e43614d15 100644 --- a/src/defs/VectorThree.tsx +++ b/src/defs/VectorThree.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/VectorTwo.tsx b/src/defs/VectorTwo.tsx index 054026b63..870d79e08 100644 --- a/src/defs/VectorTwo.tsx +++ b/src/defs/VectorTwo.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/Vibrate.tsx b/src/defs/Vibrate.tsx index ae4bd765d..11c0f8c98 100644 --- a/src/defs/Vibrate.tsx +++ b/src/defs/Vibrate.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/Video.tsx b/src/defs/Video.tsx index 04e26b013..ca79665c7 100644 --- a/src/defs/Video.tsx +++ b/src/defs/Video.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/VideoCamera.tsx b/src/defs/VideoCamera.tsx index 544e218ba..7f0eda8c2 100644 --- a/src/defs/VideoCamera.tsx +++ b/src/defs/VideoCamera.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/VideoCameraSlash.tsx b/src/defs/VideoCameraSlash.tsx index 4726a4e3f..192a00ef0 100644 --- a/src/defs/VideoCameraSlash.tsx +++ b/src/defs/VideoCameraSlash.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/VideoConference.tsx b/src/defs/VideoConference.tsx index 444d6b231..a506532d6 100644 --- a/src/defs/VideoConference.tsx +++ b/src/defs/VideoConference.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/Vignette.tsx b/src/defs/Vignette.tsx index df86b88d0..e281db624 100644 --- a/src/defs/Vignette.tsx +++ b/src/defs/Vignette.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/VinylRecord.tsx b/src/defs/VinylRecord.tsx index 06c371654..fdea6b174 100644 --- a/src/defs/VinylRecord.tsx +++ b/src/defs/VinylRecord.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/VirtualReality.tsx b/src/defs/VirtualReality.tsx index 5510f6def..311b859c6 100644 --- a/src/defs/VirtualReality.tsx +++ b/src/defs/VirtualReality.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/Virus.tsx b/src/defs/Virus.tsx index 7ee0614ae..ac8fad5fc 100644 --- a/src/defs/Virus.tsx +++ b/src/defs/Virus.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/Visor.tsx b/src/defs/Visor.tsx index 6c3ce64df..e54721bc1 100644 --- a/src/defs/Visor.tsx +++ b/src/defs/Visor.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/Voicemail.tsx b/src/defs/Voicemail.tsx index 03c7dd794..1078ba38b 100644 --- a/src/defs/Voicemail.tsx +++ b/src/defs/Voicemail.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/Volleyball.tsx b/src/defs/Volleyball.tsx index e6d351f30..362dd42a0 100644 --- a/src/defs/Volleyball.tsx +++ b/src/defs/Volleyball.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/Wall.tsx b/src/defs/Wall.tsx index 584f5e950..9c8cec200 100644 --- a/src/defs/Wall.tsx +++ b/src/defs/Wall.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/Wallet.tsx b/src/defs/Wallet.tsx index 303544fae..7a0178f6a 100644 --- a/src/defs/Wallet.tsx +++ b/src/defs/Wallet.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/Warehouse.tsx b/src/defs/Warehouse.tsx index 6b78a163c..af732b96f 100644 --- a/src/defs/Warehouse.tsx +++ b/src/defs/Warehouse.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/Warning.tsx b/src/defs/Warning.tsx index ceb95d0ae..463ce85da 100644 --- a/src/defs/Warning.tsx +++ b/src/defs/Warning.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/WarningCircle.tsx b/src/defs/WarningCircle.tsx index d375d7089..de2812e6c 100644 --- a/src/defs/WarningCircle.tsx +++ b/src/defs/WarningCircle.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/WarningDiamond.tsx b/src/defs/WarningDiamond.tsx index e90c8bc4b..e27b3c04c 100644 --- a/src/defs/WarningDiamond.tsx +++ b/src/defs/WarningDiamond.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/WarningOctagon.tsx b/src/defs/WarningOctagon.tsx index 5c92bb1d5..aa21cc6e7 100644 --- a/src/defs/WarningOctagon.tsx +++ b/src/defs/WarningOctagon.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/WashingMachine.tsx b/src/defs/WashingMachine.tsx index a20a9e163..7440fe9c3 100644 --- a/src/defs/WashingMachine.tsx +++ b/src/defs/WashingMachine.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/Watch.tsx b/src/defs/Watch.tsx index c2579f47b..e35c6a114 100644 --- a/src/defs/Watch.tsx +++ b/src/defs/Watch.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/WaveSawtooth.tsx b/src/defs/WaveSawtooth.tsx index ef43d64b3..97bbab477 100644 --- a/src/defs/WaveSawtooth.tsx +++ b/src/defs/WaveSawtooth.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/WaveSine.tsx b/src/defs/WaveSine.tsx index 44058b47d..f7c7f5b94 100644 --- a/src/defs/WaveSine.tsx +++ b/src/defs/WaveSine.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/WaveSquare.tsx b/src/defs/WaveSquare.tsx index e2464c39b..d26d85168 100644 --- a/src/defs/WaveSquare.tsx +++ b/src/defs/WaveSquare.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/WaveTriangle.tsx b/src/defs/WaveTriangle.tsx index 53dda81d6..8a21eada9 100644 --- a/src/defs/WaveTriangle.tsx +++ b/src/defs/WaveTriangle.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/Waveform.tsx b/src/defs/Waveform.tsx index 5ec2fd3c0..69af77b2f 100644 --- a/src/defs/Waveform.tsx +++ b/src/defs/Waveform.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/WaveformSlash.tsx b/src/defs/WaveformSlash.tsx index 694231287..084f0e1d5 100644 --- a/src/defs/WaveformSlash.tsx +++ b/src/defs/WaveformSlash.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/Waves.tsx b/src/defs/Waves.tsx index c525f7ee1..d876932c1 100644 --- a/src/defs/Waves.tsx +++ b/src/defs/Waves.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/Webcam.tsx b/src/defs/Webcam.tsx index 993b433c8..a220e96eb 100644 --- a/src/defs/Webcam.tsx +++ b/src/defs/Webcam.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/WebcamSlash.tsx b/src/defs/WebcamSlash.tsx index bb6ded61b..be7929a4b 100644 --- a/src/defs/WebcamSlash.tsx +++ b/src/defs/WebcamSlash.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/WebhooksLogo.tsx b/src/defs/WebhooksLogo.tsx index 83509cf8a..85363fcfe 100644 --- a/src/defs/WebhooksLogo.tsx +++ b/src/defs/WebhooksLogo.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/WechatLogo.tsx b/src/defs/WechatLogo.tsx index 0b686c696..374f6de7d 100644 --- a/src/defs/WechatLogo.tsx +++ b/src/defs/WechatLogo.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/WhatsappLogo.tsx b/src/defs/WhatsappLogo.tsx index c7b1974c8..eb4c5bd76 100644 --- a/src/defs/WhatsappLogo.tsx +++ b/src/defs/WhatsappLogo.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/Wheelchair.tsx b/src/defs/Wheelchair.tsx index c6c65ff8c..514feda6b 100644 --- a/src/defs/Wheelchair.tsx +++ b/src/defs/Wheelchair.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/WheelchairMotion.tsx b/src/defs/WheelchairMotion.tsx index 106da4a54..97533c81c 100644 --- a/src/defs/WheelchairMotion.tsx +++ b/src/defs/WheelchairMotion.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/WifiHigh.tsx b/src/defs/WifiHigh.tsx index 7666ff1c0..23e2b99e0 100644 --- a/src/defs/WifiHigh.tsx +++ b/src/defs/WifiHigh.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/WifiLow.tsx b/src/defs/WifiLow.tsx index 7ff515b2c..876d137c3 100644 --- a/src/defs/WifiLow.tsx +++ b/src/defs/WifiLow.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/WifiMedium.tsx b/src/defs/WifiMedium.tsx index 9f63b5f13..8bba46f08 100644 --- a/src/defs/WifiMedium.tsx +++ b/src/defs/WifiMedium.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/WifiNone.tsx b/src/defs/WifiNone.tsx index 0d037acd3..0ae0f3496 100644 --- a/src/defs/WifiNone.tsx +++ b/src/defs/WifiNone.tsx @@ -4,40 +4,16 @@ import type { ReactElement } from "react"; import { IconWeight } from "../lib"; export default new Map([ - [ - "bold", - <> - - , - ], + ["bold", ], [ "duotone", - <> - - , + , ], [ "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , + , ], + ["light", ], + ["regular", ], + ["thin", ], ]); diff --git a/src/defs/WifiSlash.tsx b/src/defs/WifiSlash.tsx index 0f5bfafbc..13b5de760 100644 --- a/src/defs/WifiSlash.tsx +++ b/src/defs/WifiSlash.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/WifiX.tsx b/src/defs/WifiX.tsx index d525d27e0..438823db3 100644 --- a/src/defs/WifiX.tsx +++ b/src/defs/WifiX.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/Wind.tsx b/src/defs/Wind.tsx index 2ee93e4c0..e10f93cce 100644 --- a/src/defs/Wind.tsx +++ b/src/defs/Wind.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/Windmill.tsx b/src/defs/Windmill.tsx index f8bbe3192..3f57e63ce 100644 --- a/src/defs/Windmill.tsx +++ b/src/defs/Windmill.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/WindowsLogo.tsx b/src/defs/WindowsLogo.tsx index 1db218c12..ae8ac8acc 100644 --- a/src/defs/WindowsLogo.tsx +++ b/src/defs/WindowsLogo.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/Wine.tsx b/src/defs/Wine.tsx index 4a0c9db12..f6335a1bd 100644 --- a/src/defs/Wine.tsx +++ b/src/defs/Wine.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/Wrench.tsx b/src/defs/Wrench.tsx index 3f4bb7158..79e22e09b 100644 --- a/src/defs/Wrench.tsx +++ b/src/defs/Wrench.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/X.tsx b/src/defs/X.tsx index 914a5684c..7aacead25 100644 --- a/src/defs/X.tsx +++ b/src/defs/X.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/XCircle.tsx b/src/defs/XCircle.tsx index d9cb1a132..616120374 100644 --- a/src/defs/XCircle.tsx +++ b/src/defs/XCircle.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/XLogo.tsx b/src/defs/XLogo.tsx index 6c326b3c2..0b8e5df26 100644 --- a/src/defs/XLogo.tsx +++ b/src/defs/XLogo.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/XSquare.tsx b/src/defs/XSquare.tsx index 5e88c6498..114f9e3a9 100644 --- a/src/defs/XSquare.tsx +++ b/src/defs/XSquare.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/Yarn.tsx b/src/defs/Yarn.tsx index 48afd3bf1..ce82d132f 100644 --- a/src/defs/Yarn.tsx +++ b/src/defs/Yarn.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/YinYang.tsx b/src/defs/YinYang.tsx index 2ac47fa56..cf3da0c3b 100644 --- a/src/defs/YinYang.tsx +++ b/src/defs/YinYang.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/YoutubeLogo.tsx b/src/defs/YoutubeLogo.tsx index f605c8a58..2166781e3 100644 --- a/src/defs/YoutubeLogo.tsx +++ b/src/defs/YoutubeLogo.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", - <> - - , + , ], ]);