diff --git a/README.md b/README.md index 9c09a56c2..f5ea85c88 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -# phosphor-react +# @phosphor-icons/react Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really. Explore all our icons at [phosphoricons.com](https://phosphoricons.com). diff --git a/bin/assemble.js b/bin/assemble.js index bfb685a40..fc2763d49 100644 --- a/bin/assemble.js +++ b/bin/assemble.js @@ -14,7 +14,7 @@ main(); function main() { exec( - "git submodule update --remote --init --recursive", + "git submodule update --remote --init --force --recursive", (err, stdout, stderr) => { if (err) { console.error(`${chalk.inverse.red(" ERR ")} ${err.message}`); diff --git a/core b/core index 60f32de10..c7b849d74 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit 60f32de10dc4dc40859a0f33603538cce84d7c60 +Subproject commit c7b849d7490ebdb49833a8196be3f9d758001ca4 diff --git a/example/App.tsx b/example/App.tsx index 3ab424461..acf5ac8ea 100644 --- a/example/App.tsx +++ b/example/App.tsx @@ -3,22 +3,22 @@ import { useState, useCallback } from "react"; import * as Icons from "../src"; import { IconContext } from "../src"; import type { IconWeight, Icon } from "../src"; +import { icons } from "../core/src/icons"; import "./index.css"; +const pascalNames = new Set(icons.map((entry) => entry.pascal_name)); + const isIcon = (candidate: any): candidate is Icons.Icon => - "displayName" in candidate && candidate.displayName !== "IconBase"; + "displayName" in candidate; -const iconCount = Object.values(Icons).reduce((total, Icon) => { - if (isIcon(Icon)) return total + 1; - return total; -}, 0); +const allIcons: Icon[] = Object.entries(Icons) + .filter(([name, module]) => pascalNames.has(name) && isIcon(module)) + .map(([_, module]) => module as Icon); if (process.env.NODE_ENV === "development") { - console.log(`${iconCount} icons`); + console.log(`${allIcons.length} icons`); } -const allIcons: Icon[] = Object.values(Icons).filter(isIcon); - const App = () => { const [color, setColor] = useState("crimson"); const [weight, setWeight] = useState("regular"); diff --git a/package.json b/package.json index 876a08fbb..219c90bd0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@phosphor-icons/react", - "version": "2.0.3", + "version": "2.0.4", "description": "A clean and friendly icon family for React", "author": { "name": "Tobias Fried", diff --git a/src/icons/Activity.tsx b/src/icons/Activity.tsx deleted file mode 100644 index 5b405bf20..000000000 --- a/src/icons/Activity.tsx +++ /dev/null @@ -1,50 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const Activity: Icon = forwardRef((props, ref) => ( - -)); - -Activity.displayName = "Activity"; - -export default Activity; diff --git a/src/icons/AddressBook.tsx b/src/icons/AddressBook.tsx index 23bc6063d..b02a32e1c 100644 --- a/src/icons/AddressBook.tsx +++ b/src/icons/AddressBook.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,32H64a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H208a8,8,0,0,0,8-8V40A8,8,0,0,0,208,32ZM136,144a32,32,0,1,1,32-32A32,32,0,0,1,136,144Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AirTrafficControl.tsx b/src/icons/AirTrafficControl.tsx new file mode 100644 index 000000000..69deb7dbb --- /dev/null +++ b/src/icons/AirTrafficControl.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const AirTrafficControl: Icon = forwardRef((props, ref) => ( + +)); + +AirTrafficControl.displayName = "AirTrafficControl"; + +export default AirTrafficControl; diff --git a/src/icons/Airplane.tsx b/src/icons/Airplane.tsx index c734363e9..0f3856185 100644 --- a/src/icons/Airplane.tsx +++ b/src/icons/Airplane.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AirplaneInFlight.tsx b/src/icons/AirplaneInFlight.tsx index 6f7dda28e..31e230407 100644 --- a/src/icons/AirplaneInFlight.tsx +++ b/src/icons/AirplaneInFlight.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AirplaneLanding.tsx b/src/icons/AirplaneLanding.tsx index 6c2c281a9..8c9a7de10 100644 --- a/src/icons/AirplaneLanding.tsx +++ b/src/icons/AirplaneLanding.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AirplaneTakeoff.tsx b/src/icons/AirplaneTakeoff.tsx index 948cfa48b..50a9154bc 100644 --- a/src/icons/AirplaneTakeoff.tsx +++ b/src/icons/AirplaneTakeoff.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AirplaneTilt.tsx b/src/icons/AirplaneTilt.tsx index 66da5239d..780e9ed2f 100644 --- a/src/icons/AirplaneTilt.tsx +++ b/src/icons/AirplaneTilt.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Airplay.tsx b/src/icons/Airplay.tsx index 7d2d0fd55..d4be881bf 100644 --- a/src/icons/Airplay.tsx +++ b/src/icons/Airplay.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Alarm.tsx b/src/icons/Alarm.tsx index 6a1ceca57..1fd8d13af 100644 --- a/src/icons/Alarm.tsx +++ b/src/icons/Alarm.tsx @@ -6,43 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Alien.tsx b/src/icons/Alien.tsx index e9c3a7511..15239dde1 100644 --- a/src/icons/Alien.tsx +++ b/src/icons/Alien.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AlignBottom.tsx b/src/icons/AlignBottom.tsx index 95538972a..e8fab1f86 100644 --- a/src/icons/AlignBottom.tsx +++ b/src/icons/AlignBottom.tsx @@ -6,26 +6,17 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ diff --git a/src/icons/AlignBottomSimple.tsx b/src/icons/AlignBottomSimple.tsx index ad03c1817..2e82fb70a 100644 --- a/src/icons/AlignBottomSimple.tsx +++ b/src/icons/AlignBottomSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/AlignCenterHorizontal.tsx b/src/icons/AlignCenterHorizontal.tsx index 26675ac16..21b89e88c 100644 --- a/src/icons/AlignCenterHorizontal.tsx +++ b/src/icons/AlignCenterHorizontal.tsx @@ -6,18 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + , ], diff --git a/src/icons/AlignCenterHorizontalSimple.tsx b/src/icons/AlignCenterHorizontalSimple.tsx index 0b6804b46..d58f210c8 100644 --- a/src/icons/AlignCenterHorizontalSimple.tsx +++ b/src/icons/AlignCenterHorizontalSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/AlignCenterVertical.tsx b/src/icons/AlignCenterVertical.tsx index f30b95fec..6190a1ba7 100644 --- a/src/icons/AlignCenterVertical.tsx +++ b/src/icons/AlignCenterVertical.tsx @@ -6,26 +6,17 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ @@ -37,19 +28,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AlignCenterVerticalSimple.tsx b/src/icons/AlignCenterVerticalSimple.tsx index bcd03dff0..2805f5db0 100644 --- a/src/icons/AlignCenterVerticalSimple.tsx +++ b/src/icons/AlignCenterVerticalSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/AlignLeft.tsx b/src/icons/AlignLeft.tsx index 639ea9385..d20129775 100644 --- a/src/icons/AlignLeft.tsx +++ b/src/icons/AlignLeft.tsx @@ -6,25 +6,23 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + , ], [ "fill", <> - + , ], [ @@ -36,7 +34,7 @@ const weights = new Map([ [ "regular", <> - + , ], [ diff --git a/src/icons/AlignLeftSimple.tsx b/src/icons/AlignLeftSimple.tsx index 19bd3f85f..d8d3d0dd3 100644 --- a/src/icons/AlignLeftSimple.tsx +++ b/src/icons/AlignLeftSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,7 +16,7 @@ const weights = new Map([ d="M232,96v64a8,8,0,0,1-8,8H72a8,8,0,0,1-8-8V96a8,8,0,0,1,8-8H224A8,8,0,0,1,232,96Z" opacity="0.2" /> - + , ], [ @@ -34,7 +34,7 @@ const weights = new Map([ [ "regular", <> - + , ], [ diff --git a/src/icons/AlignRight.tsx b/src/icons/AlignRight.tsx index e95ba1a84..3c049827e 100644 --- a/src/icons/AlignRight.tsx +++ b/src/icons/AlignRight.tsx @@ -6,25 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + , ], diff --git a/src/icons/AlignRightSimple.tsx b/src/icons/AlignRightSimple.tsx index 25cc9d023..ff88ef913 100644 --- a/src/icons/AlignRightSimple.tsx +++ b/src/icons/AlignRightSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/AlignTop.tsx b/src/icons/AlignTop.tsx index b7a16727b..7d3258914 100644 --- a/src/icons/AlignTop.tsx +++ b/src/icons/AlignTop.tsx @@ -6,25 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + , ], diff --git a/src/icons/AlignTopSimple.tsx b/src/icons/AlignTopSimple.tsx index 4c2e705eb..e671403eb 100644 --- a/src/icons/AlignTopSimple.tsx +++ b/src/icons/AlignTopSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/AmazonLogo.tsx b/src/icons/AmazonLogo.tsx new file mode 100644 index 000000000..2006dc5d3 --- /dev/null +++ b/src/icons/AmazonLogo.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const AmazonLogo: Icon = forwardRef((props, ref) => ( + +)); + +AmazonLogo.displayName = "AmazonLogo"; + +export default AmazonLogo; diff --git a/src/icons/Anchor.tsx b/src/icons/Anchor.tsx index e396b9b9f..0de456de8 100644 --- a/src/icons/Anchor.tsx +++ b/src/icons/Anchor.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AnchorSimple.tsx b/src/icons/AnchorSimple.tsx index b95d1b83a..9cb105cad 100644 --- a/src/icons/AnchorSimple.tsx +++ b/src/icons/AnchorSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AndroidLogo.tsx b/src/icons/AndroidLogo.tsx index 7f7772bef..e9f5f7b7b 100644 --- a/src/icons/AndroidLogo.tsx +++ b/src/icons/AndroidLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AngularLogo.tsx b/src/icons/AngularLogo.tsx index d75095be6..6a2c55549 100644 --- a/src/icons/AngularLogo.tsx +++ b/src/icons/AngularLogo.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Aperture.tsx b/src/icons/Aperture.tsx index dc5f6fff7..de8f18d90 100644 --- a/src/icons/Aperture.tsx +++ b/src/icons/Aperture.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AppStoreLogo.tsx b/src/icons/AppStoreLogo.tsx index 2c717f13d..e97f0df35 100644 --- a/src/icons/AppStoreLogo.tsx +++ b/src/icons/AppStoreLogo.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AppWindow.tsx b/src/icons/AppWindow.tsx index 16f70920e..7fd8e42a9 100644 --- a/src/icons/AppWindow.tsx +++ b/src/icons/AppWindow.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/AppleLogo.tsx b/src/icons/AppleLogo.tsx index eb9b14f15..c9f3d1c8e 100644 --- a/src/icons/AppleLogo.tsx +++ b/src/icons/AppleLogo.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ApplePodcastsLogo.tsx b/src/icons/ApplePodcastsLogo.tsx index f41a62252..8e51ce6b2 100644 --- a/src/icons/ApplePodcastsLogo.tsx +++ b/src/icons/ApplePodcastsLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Archive.tsx b/src/icons/Archive.tsx index 0addfa234..d13c188c7 100644 --- a/src/icons/Archive.tsx +++ b/src/icons/Archive.tsx @@ -6,15 +6,13 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - + , ], diff --git a/src/icons/ArchiveBox.tsx b/src/icons/ArchiveBox.tsx index bd7e827b5..7a8835a3e 100644 --- a/src/icons/ArchiveBox.tsx +++ b/src/icons/ArchiveBox.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArchiveTray.tsx b/src/icons/ArchiveTray.tsx index 906946890..5f7b9560d 100644 --- a/src/icons/ArchiveTray.tsx +++ b/src/icons/ArchiveTray.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Armchair.tsx b/src/icons/Armchair.tsx index 004f08c4d..e85ec1740 100644 --- a/src/icons/Armchair.tsx +++ b/src/icons/Armchair.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M240,128a32,32,0,0,1-32,32v40a8,8,0,0,1-8,8H56a8,8,0,0,1-8-8V160a32,32,0,0,1,0-64V72A32,32,0,0,1,80,40h96a32,32,0,0,1,32,32V96A32,32,0,0,1,240,128Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowArcLeft.tsx b/src/icons/ArrowArcLeft.tsx index 6b415a99b..2bd0483f0 100644 --- a/src/icons/ArrowArcLeft.tsx +++ b/src/icons/ArrowArcLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowArcRight.tsx b/src/icons/ArrowArcRight.tsx index 19adbdc2d..4665841ed 100644 --- a/src/icons/ArrowArcRight.tsx +++ b/src/icons/ArrowArcRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendDoubleUpLeft.tsx b/src/icons/ArrowBendDoubleUpLeft.tsx index 6f6921e25..c1687fdec 100644 --- a/src/icons/ArrowBendDoubleUpLeft.tsx +++ b/src/icons/ArrowBendDoubleUpLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendDoubleUpRight.tsx b/src/icons/ArrowBendDoubleUpRight.tsx index dc35efecf..491136050 100644 --- a/src/icons/ArrowBendDoubleUpRight.tsx +++ b/src/icons/ArrowBendDoubleUpRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendDownLeft.tsx b/src/icons/ArrowBendDownLeft.tsx index 23f3d99b6..a64d42022 100644 --- a/src/icons/ArrowBendDownLeft.tsx +++ b/src/icons/ArrowBendDownLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendDownRight.tsx b/src/icons/ArrowBendDownRight.tsx index ffcb54d8b..1bc8c5223 100644 --- a/src/icons/ArrowBendDownRight.tsx +++ b/src/icons/ArrowBendDownRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendLeftDown.tsx b/src/icons/ArrowBendLeftDown.tsx index 9fa924426..ff44d41d5 100644 --- a/src/icons/ArrowBendLeftDown.tsx +++ b/src/icons/ArrowBendLeftDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendLeftUp.tsx b/src/icons/ArrowBendLeftUp.tsx index df36f7bb3..f788bb74d 100644 --- a/src/icons/ArrowBendLeftUp.tsx +++ b/src/icons/ArrowBendLeftUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendRightDown.tsx b/src/icons/ArrowBendRightDown.tsx index 609328597..4d21c277c 100644 --- a/src/icons/ArrowBendRightDown.tsx +++ b/src/icons/ArrowBendRightDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendRightUp.tsx b/src/icons/ArrowBendRightUp.tsx index a7f28d5d9..fa97b1d53 100644 --- a/src/icons/ArrowBendRightUp.tsx +++ b/src/icons/ArrowBendRightUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendUpLeft.tsx b/src/icons/ArrowBendUpLeft.tsx index a547477f1..875830c63 100644 --- a/src/icons/ArrowBendUpLeft.tsx +++ b/src/icons/ArrowBendUpLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowBendUpRight.tsx b/src/icons/ArrowBendUpRight.tsx index fa7843502..8a256db43 100644 --- a/src/icons/ArrowBendUpRight.tsx +++ b/src/icons/ArrowBendUpRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleDown.tsx b/src/icons/ArrowCircleDown.tsx index b0c5fd479..349f0e0e4 100644 --- a/src/icons/ArrowCircleDown.tsx +++ b/src/icons/ArrowCircleDown.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleDownLeft.tsx b/src/icons/ArrowCircleDownLeft.tsx index be3aff09c..cfd207294 100644 --- a/src/icons/ArrowCircleDownLeft.tsx +++ b/src/icons/ArrowCircleDownLeft.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleDownRight.tsx b/src/icons/ArrowCircleDownRight.tsx index cf7199bbd..5f183bdef 100644 --- a/src/icons/ArrowCircleDownRight.tsx +++ b/src/icons/ArrowCircleDownRight.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleLeft.tsx b/src/icons/ArrowCircleLeft.tsx index 8881f76bd..8d58a0d12 100644 --- a/src/icons/ArrowCircleLeft.tsx +++ b/src/icons/ArrowCircleLeft.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleRight.tsx b/src/icons/ArrowCircleRight.tsx index c695611d1..960814cb8 100644 --- a/src/icons/ArrowCircleRight.tsx +++ b/src/icons/ArrowCircleRight.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleUp.tsx b/src/icons/ArrowCircleUp.tsx index 9f63de12e..00349e472 100644 --- a/src/icons/ArrowCircleUp.tsx +++ b/src/icons/ArrowCircleUp.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleUpLeft.tsx b/src/icons/ArrowCircleUpLeft.tsx index 87818d8c2..0d6de0fbc 100644 --- a/src/icons/ArrowCircleUpLeft.tsx +++ b/src/icons/ArrowCircleUpLeft.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCircleUpRight.tsx b/src/icons/ArrowCircleUpRight.tsx index 8a3455583..e3041c6a9 100644 --- a/src/icons/ArrowCircleUpRight.tsx +++ b/src/icons/ArrowCircleUpRight.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowClockwise.tsx b/src/icons/ArrowClockwise.tsx index e19fd3164..52ea93fc9 100644 --- a/src/icons/ArrowClockwise.tsx +++ b/src/icons/ArrowClockwise.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowCounterClockwise.tsx b/src/icons/ArrowCounterClockwise.tsx index 5e5e975b2..55225cebf 100644 --- a/src/icons/ArrowCounterClockwise.tsx +++ b/src/icons/ArrowCounterClockwise.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowDown.tsx b/src/icons/ArrowDown.tsx index f7248b943..ea76210b5 100644 --- a/src/icons/ArrowDown.tsx +++ b/src/icons/ArrowDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowDownLeft.tsx b/src/icons/ArrowDownLeft.tsx index a923ce158..2b74e66d6 100644 --- a/src/icons/ArrowDownLeft.tsx +++ b/src/icons/ArrowDownLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowDownRight.tsx b/src/icons/ArrowDownRight.tsx index 00d949e69..f800d6d56 100644 --- a/src/icons/ArrowDownRight.tsx +++ b/src/icons/ArrowDownRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowDownLeft.tsx b/src/icons/ArrowElbowDownLeft.tsx index 93e5d8f8d..e63d9c48e 100644 --- a/src/icons/ArrowElbowDownLeft.tsx +++ b/src/icons/ArrowElbowDownLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowDownRight.tsx b/src/icons/ArrowElbowDownRight.tsx index 313657d57..066628614 100644 --- a/src/icons/ArrowElbowDownRight.tsx +++ b/src/icons/ArrowElbowDownRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowLeft.tsx b/src/icons/ArrowElbowLeft.tsx index e3a75803d..9986292e0 100644 --- a/src/icons/ArrowElbowLeft.tsx +++ b/src/icons/ArrowElbowLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowLeftDown.tsx b/src/icons/ArrowElbowLeftDown.tsx index 3726b7b51..fe43811cd 100644 --- a/src/icons/ArrowElbowLeftDown.tsx +++ b/src/icons/ArrowElbowLeftDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowLeftUp.tsx b/src/icons/ArrowElbowLeftUp.tsx index 143fbaa36..34df7cfda 100644 --- a/src/icons/ArrowElbowLeftUp.tsx +++ b/src/icons/ArrowElbowLeftUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowRight.tsx b/src/icons/ArrowElbowRight.tsx index 5b2804010..e73ffa41c 100644 --- a/src/icons/ArrowElbowRight.tsx +++ b/src/icons/ArrowElbowRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowRightDown.tsx b/src/icons/ArrowElbowRightDown.tsx index f1649f0c4..cb1772565 100644 --- a/src/icons/ArrowElbowRightDown.tsx +++ b/src/icons/ArrowElbowRightDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowRightUp.tsx b/src/icons/ArrowElbowRightUp.tsx index 2fe4bb75a..eb48dae88 100644 --- a/src/icons/ArrowElbowRightUp.tsx +++ b/src/icons/ArrowElbowRightUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowUpLeft.tsx b/src/icons/ArrowElbowUpLeft.tsx index 0950dac39..61509144c 100644 --- a/src/icons/ArrowElbowUpLeft.tsx +++ b/src/icons/ArrowElbowUpLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowElbowUpRight.tsx b/src/icons/ArrowElbowUpRight.tsx index 8f02e713f..92c514607 100644 --- a/src/icons/ArrowElbowUpRight.tsx +++ b/src/icons/ArrowElbowUpRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatDown.tsx b/src/icons/ArrowFatDown.tsx index 3a0692b17..6d308e893 100644 --- a/src/icons/ArrowFatDown.tsx +++ b/src/icons/ArrowFatDown.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLeft.tsx b/src/icons/ArrowFatLeft.tsx index a25417939..db403e247 100644 --- a/src/icons/ArrowFatLeft.tsx +++ b/src/icons/ArrowFatLeft.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLineDown.tsx b/src/icons/ArrowFatLineDown.tsx index 87405d1c6..249bea0dc 100644 --- a/src/icons/ArrowFatLineDown.tsx +++ b/src/icons/ArrowFatLineDown.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLineLeft.tsx b/src/icons/ArrowFatLineLeft.tsx index 8f441ba88..c6eaa084a 100644 --- a/src/icons/ArrowFatLineLeft.tsx +++ b/src/icons/ArrowFatLineLeft.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLineRight.tsx b/src/icons/ArrowFatLineRight.tsx index 7de8c5770..25f1ec1fa 100644 --- a/src/icons/ArrowFatLineRight.tsx +++ b/src/icons/ArrowFatLineRight.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLineUp.tsx b/src/icons/ArrowFatLineUp.tsx index 78b066824..86175d3d6 100644 --- a/src/icons/ArrowFatLineUp.tsx +++ b/src/icons/ArrowFatLineUp.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLinesDown.tsx b/src/icons/ArrowFatLinesDown.tsx index b70efc1ad..fd34cf950 100644 --- a/src/icons/ArrowFatLinesDown.tsx +++ b/src/icons/ArrowFatLinesDown.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLinesLeft.tsx b/src/icons/ArrowFatLinesLeft.tsx index b90d2f2fd..45d2ba380 100644 --- a/src/icons/ArrowFatLinesLeft.tsx +++ b/src/icons/ArrowFatLinesLeft.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLinesRight.tsx b/src/icons/ArrowFatLinesRight.tsx index 260f00466..6601b7314 100644 --- a/src/icons/ArrowFatLinesRight.tsx +++ b/src/icons/ArrowFatLinesRight.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatLinesUp.tsx b/src/icons/ArrowFatLinesUp.tsx index cb267f9f5..19f2616cc 100644 --- a/src/icons/ArrowFatLinesUp.tsx +++ b/src/icons/ArrowFatLinesUp.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatRight.tsx b/src/icons/ArrowFatRight.tsx index 9a9ac6c9c..6812af611 100644 --- a/src/icons/ArrowFatRight.tsx +++ b/src/icons/ArrowFatRight.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowFatUp.tsx b/src/icons/ArrowFatUp.tsx index 3e348fb05..0c80c996f 100644 --- a/src/icons/ArrowFatUp.tsx +++ b/src/icons/ArrowFatUp.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLeft.tsx b/src/icons/ArrowLeft.tsx index 7386551a9..625a738c3 100644 --- a/src/icons/ArrowLeft.tsx +++ b/src/icons/ArrowLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineDown.tsx b/src/icons/ArrowLineDown.tsx index 7a637e869..bdef11e70 100644 --- a/src/icons/ArrowLineDown.tsx +++ b/src/icons/ArrowLineDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineDownLeft.tsx b/src/icons/ArrowLineDownLeft.tsx index b955e8d5f..103730825 100644 --- a/src/icons/ArrowLineDownLeft.tsx +++ b/src/icons/ArrowLineDownLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineDownRight.tsx b/src/icons/ArrowLineDownRight.tsx index e01f85dbd..64224af9e 100644 --- a/src/icons/ArrowLineDownRight.tsx +++ b/src/icons/ArrowLineDownRight.tsx @@ -6,37 +6,40 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineLeft.tsx b/src/icons/ArrowLineLeft.tsx index 117ed2476..b3eae23e3 100644 --- a/src/icons/ArrowLineLeft.tsx +++ b/src/icons/ArrowLineLeft.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineRight.tsx b/src/icons/ArrowLineRight.tsx index 14f3228c7..0aba00988 100644 --- a/src/icons/ArrowLineRight.tsx +++ b/src/icons/ArrowLineRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineUp.tsx b/src/icons/ArrowLineUp.tsx index ed5af998b..0cef5efc1 100644 --- a/src/icons/ArrowLineUp.tsx +++ b/src/icons/ArrowLineUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineUpLeft.tsx b/src/icons/ArrowLineUpLeft.tsx index 54a6c5d9a..1dc9cf616 100644 --- a/src/icons/ArrowLineUpLeft.tsx +++ b/src/icons/ArrowLineUpLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowLineUpRight.tsx b/src/icons/ArrowLineUpRight.tsx index e2bb4f9c9..4cda8d393 100644 --- a/src/icons/ArrowLineUpRight.tsx +++ b/src/icons/ArrowLineUpRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowRight.tsx b/src/icons/ArrowRight.tsx index 2f3af85e0..185f986f7 100644 --- a/src/icons/ArrowRight.tsx +++ b/src/icons/ArrowRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareDown.tsx b/src/icons/ArrowSquareDown.tsx index 0e82b9f0d..f7e3ce2f0 100644 --- a/src/icons/ArrowSquareDown.tsx +++ b/src/icons/ArrowSquareDown.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareDownLeft.tsx b/src/icons/ArrowSquareDownLeft.tsx index 15bc0e93b..95003dbdc 100644 --- a/src/icons/ArrowSquareDownLeft.tsx +++ b/src/icons/ArrowSquareDownLeft.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareDownRight.tsx b/src/icons/ArrowSquareDownRight.tsx index 0682446a4..4a1d68b28 100644 --- a/src/icons/ArrowSquareDownRight.tsx +++ b/src/icons/ArrowSquareDownRight.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareIn.tsx b/src/icons/ArrowSquareIn.tsx index 6776b6c3c..24e7aea3f 100644 --- a/src/icons/ArrowSquareIn.tsx +++ b/src/icons/ArrowSquareIn.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareLeft.tsx b/src/icons/ArrowSquareLeft.tsx index f7b6e202a..5d4b5cc05 100644 --- a/src/icons/ArrowSquareLeft.tsx +++ b/src/icons/ArrowSquareLeft.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareOut.tsx b/src/icons/ArrowSquareOut.tsx index ef8f18d57..e8618c68f 100644 --- a/src/icons/ArrowSquareOut.tsx +++ b/src/icons/ArrowSquareOut.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M184,80V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H176A8,8,0,0,1,184,80Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareRight.tsx b/src/icons/ArrowSquareRight.tsx index 64f88c5ea..59540062a 100644 --- a/src/icons/ArrowSquareRight.tsx +++ b/src/icons/ArrowSquareRight.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareUp.tsx b/src/icons/ArrowSquareUp.tsx index 2044b7814..a3f39fbc7 100644 --- a/src/icons/ArrowSquareUp.tsx +++ b/src/icons/ArrowSquareUp.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareUpLeft.tsx b/src/icons/ArrowSquareUpLeft.tsx index d56e8f3d3..46b157d79 100644 --- a/src/icons/ArrowSquareUpLeft.tsx +++ b/src/icons/ArrowSquareUpLeft.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowSquareUpRight.tsx b/src/icons/ArrowSquareUpRight.tsx index 07b8cf3af..7962b8083 100644 --- a/src/icons/ArrowSquareUpRight.tsx +++ b/src/icons/ArrowSquareUpRight.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowUDownLeft.tsx b/src/icons/ArrowUDownLeft.tsx index 80aa0b8f0..ecd5cf4b3 100644 --- a/src/icons/ArrowUDownLeft.tsx +++ b/src/icons/ArrowUDownLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowUDownRight.tsx b/src/icons/ArrowUDownRight.tsx index 918848c84..a09010b25 100644 --- a/src/icons/ArrowUDownRight.tsx +++ b/src/icons/ArrowUDownRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowULeftDown.tsx b/src/icons/ArrowULeftDown.tsx index 78e15d5c4..210d27584 100644 --- a/src/icons/ArrowULeftDown.tsx +++ b/src/icons/ArrowULeftDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowULeftUp.tsx b/src/icons/ArrowULeftUp.tsx index 026075791..f70382d3e 100644 --- a/src/icons/ArrowULeftUp.tsx +++ b/src/icons/ArrowULeftUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowURightDown.tsx b/src/icons/ArrowURightDown.tsx index 9780aa1bf..06f67ee0e 100644 --- a/src/icons/ArrowURightDown.tsx +++ b/src/icons/ArrowURightDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowURightUp.tsx b/src/icons/ArrowURightUp.tsx index 10a68a37f..3b804b587 100644 --- a/src/icons/ArrowURightUp.tsx +++ b/src/icons/ArrowURightUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowUUpLeft.tsx b/src/icons/ArrowUUpLeft.tsx index a723bf158..bf1777cdf 100644 --- a/src/icons/ArrowUUpLeft.tsx +++ b/src/icons/ArrowUUpLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowUUpRight.tsx b/src/icons/ArrowUUpRight.tsx index 91016f636..49fe1f670 100644 --- a/src/icons/ArrowUUpRight.tsx +++ b/src/icons/ArrowUUpRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowUp.tsx b/src/icons/ArrowUp.tsx index 870890a67..50edc3173 100644 --- a/src/icons/ArrowUp.tsx +++ b/src/icons/ArrowUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowUpLeft.tsx b/src/icons/ArrowUpLeft.tsx index 3fb55a719..9bd994b94 100644 --- a/src/icons/ArrowUpLeft.tsx +++ b/src/icons/ArrowUpLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowUpRight.tsx b/src/icons/ArrowUpRight.tsx index e7ae660f9..406150993 100644 --- a/src/icons/ArrowUpRight.tsx +++ b/src/icons/ArrowUpRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsClockwise.tsx b/src/icons/ArrowsClockwise.tsx index 3fedaf7cd..374ee6f45 100644 --- a/src/icons/ArrowsClockwise.tsx +++ b/src/icons/ArrowsClockwise.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsCounterClockwise.tsx b/src/icons/ArrowsCounterClockwise.tsx index c189feeb3..c3622c736 100644 --- a/src/icons/ArrowsCounterClockwise.tsx +++ b/src/icons/ArrowsCounterClockwise.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsDownUp.tsx b/src/icons/ArrowsDownUp.tsx index f8e106661..ba798c085 100644 --- a/src/icons/ArrowsDownUp.tsx +++ b/src/icons/ArrowsDownUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsHorizontal.tsx b/src/icons/ArrowsHorizontal.tsx index 6d71c2ca0..93a653d17 100644 --- a/src/icons/ArrowsHorizontal.tsx +++ b/src/icons/ArrowsHorizontal.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsIn.tsx b/src/icons/ArrowsIn.tsx index 3a01e5b6d..def916fb0 100644 --- a/src/icons/ArrowsIn.tsx +++ b/src/icons/ArrowsIn.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsInCardinal.tsx b/src/icons/ArrowsInCardinal.tsx index 7065e401b..c9fd3fffe 100644 --- a/src/icons/ArrowsInCardinal.tsx +++ b/src/icons/ArrowsInCardinal.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsInLineHorizontal.tsx b/src/icons/ArrowsInLineHorizontal.tsx index a23c94f96..7d5e91df6 100644 --- a/src/icons/ArrowsInLineHorizontal.tsx +++ b/src/icons/ArrowsInLineHorizontal.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsInLineVertical.tsx b/src/icons/ArrowsInLineVertical.tsx index 4a07c97da..d830bfee1 100644 --- a/src/icons/ArrowsInLineVertical.tsx +++ b/src/icons/ArrowsInLineVertical.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsInSimple.tsx b/src/icons/ArrowsInSimple.tsx index f7981c776..1068b267a 100644 --- a/src/icons/ArrowsInSimple.tsx +++ b/src/icons/ArrowsInSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsLeftRight.tsx b/src/icons/ArrowsLeftRight.tsx index 95227ae29..cd13cf1d7 100644 --- a/src/icons/ArrowsLeftRight.tsx +++ b/src/icons/ArrowsLeftRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsMerge.tsx b/src/icons/ArrowsMerge.tsx new file mode 100644 index 000000000..a4bd1661b --- /dev/null +++ b/src/icons/ArrowsMerge.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ArrowsMerge: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsMerge.displayName = "ArrowsMerge"; + +export default ArrowsMerge; diff --git a/src/icons/ArrowsOut.tsx b/src/icons/ArrowsOut.tsx index d95b4aa59..374aea536 100644 --- a/src/icons/ArrowsOut.tsx +++ b/src/icons/ArrowsOut.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsOutCardinal.tsx b/src/icons/ArrowsOutCardinal.tsx index 133535ef0..2c64e99bf 100644 --- a/src/icons/ArrowsOutCardinal.tsx +++ b/src/icons/ArrowsOutCardinal.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsOutLineHorizontal.tsx b/src/icons/ArrowsOutLineHorizontal.tsx index 383cf9250..2c1369268 100644 --- a/src/icons/ArrowsOutLineHorizontal.tsx +++ b/src/icons/ArrowsOutLineHorizontal.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsOutLineVertical.tsx b/src/icons/ArrowsOutLineVertical.tsx index 41f6014d4..72da13d5d 100644 --- a/src/icons/ArrowsOutLineVertical.tsx +++ b/src/icons/ArrowsOutLineVertical.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsOutSimple.tsx b/src/icons/ArrowsOutSimple.tsx index b51c612c5..f2ceb8841 100644 --- a/src/icons/ArrowsOutSimple.tsx +++ b/src/icons/ArrowsOutSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArrowsSplit.tsx b/src/icons/ArrowsSplit.tsx new file mode 100644 index 000000000..2bd34b7de --- /dev/null +++ b/src/icons/ArrowsSplit.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ArrowsSplit: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsSplit.displayName = "ArrowsSplit"; + +export default ArrowsSplit; diff --git a/src/icons/ArrowsVertical.tsx b/src/icons/ArrowsVertical.tsx index 5416737c2..3e93066e1 100644 --- a/src/icons/ArrowsVertical.tsx +++ b/src/icons/ArrowsVertical.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Article.tsx b/src/icons/Article.tsx index 6284f9042..bde5cc191 100644 --- a/src/icons/Article.tsx +++ b/src/icons/Article.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArticleMedium.tsx b/src/icons/ArticleMedium.tsx index 43f831145..97a477619 100644 --- a/src/icons/ArticleMedium.tsx +++ b/src/icons/ArticleMedium.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ArticleNyTimes.tsx b/src/icons/ArticleNyTimes.tsx index b7249b92f..bc9cd6313 100644 --- a/src/icons/ArticleNyTimes.tsx +++ b/src/icons/ArticleNyTimes.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Asterisk.tsx b/src/icons/Asterisk.tsx index c43b88191..f3e9ba0c7 100644 --- a/src/icons/Asterisk.tsx +++ b/src/icons/Asterisk.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/AsteriskSimple.tsx b/src/icons/AsteriskSimple.tsx index e8aa41379..50df6dddc 100644 --- a/src/icons/AsteriskSimple.tsx +++ b/src/icons/AsteriskSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/At.tsx b/src/icons/At.tsx index 45fe79197..5159833a6 100644 --- a/src/icons/At.tsx +++ b/src/icons/At.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Atom.tsx b/src/icons/Atom.tsx index dfb0af9cd..3fc60864e 100644 --- a/src/icons/Atom.tsx +++ b/src/icons/Atom.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Baby.tsx b/src/icons/Baby.tsx index 3c44baea4..a22ecc178 100644 --- a/src/icons/Baby.tsx +++ b/src/icons/Baby.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Backpack.tsx b/src/icons/Backpack.tsx index d35116263..98002fa2e 100644 --- a/src/icons/Backpack.tsx +++ b/src/icons/Backpack.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,96V216a8,8,0,0,1-8,8H176V152a16,16,0,0,0-16-16H96a16,16,0,0,0-16,16v72H56a8,8,0,0,1-8-8V96A48,48,0,0,1,96,48h64A48,48,0,0,1,208,96Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Backspace.tsx b/src/icons/Backspace.tsx index 21c48782c..c3c399f8a 100644 --- a/src/icons/Backspace.tsx +++ b/src/icons/Backspace.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bag.tsx b/src/icons/Bag.tsx index e1bd05057..dc2d900ff 100644 --- a/src/icons/Bag.tsx +++ b/src/icons/Bag.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BagSimple.tsx b/src/icons/BagSimple.tsx index 12d6d5292..38cf81c20 100644 --- a/src/icons/BagSimple.tsx +++ b/src/icons/BagSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Balloon.tsx b/src/icons/Balloon.tsx index cdc574a76..552797b64 100644 --- a/src/icons/Balloon.tsx +++ b/src/icons/Balloon.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bandaids.tsx b/src/icons/Bandaids.tsx index 553dab828..f65a91809 100644 --- a/src/icons/Bandaids.tsx +++ b/src/icons/Bandaids.tsx @@ -6,50 +6,42 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bank.tsx b/src/icons/Bank.tsx index 6fa9ceea0..1d25abe3b 100644 --- a/src/icons/Bank.tsx +++ b/src/icons/Bank.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Barbell.tsx b/src/icons/Barbell.tsx index 98592d5dd..d63f956a9 100644 --- a/src/icons/Barbell.tsx +++ b/src/icons/Barbell.tsx @@ -6,25 +6,23 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ @@ -36,7 +34,7 @@ const weights = new Map([ [ "regular", <> - + , ], [ diff --git a/src/icons/Barcode.tsx b/src/icons/Barcode.tsx index 74aa6f95c..bd9241be7 100644 --- a/src/icons/Barcode.tsx +++ b/src/icons/Barcode.tsx @@ -12,20 +12,14 @@ const weights = new Map([ [ "duotone", <> - - - - - - - - + + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Barricade.tsx b/src/icons/Barricade.tsx index abf4d595e..98d008e5d 100644 --- a/src/icons/Barricade.tsx +++ b/src/icons/Barricade.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,7 +16,7 @@ const weights = new Map([ d="M232,80v68L156,72h68A8,8,0,0,1,232,80ZM32,72a8,8,0,0,0-8,8v4l76,76h72L84,72Z" opacity="0.2" /> - + , ], [ @@ -28,19 +28,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Baseball.tsx b/src/icons/Baseball.tsx index 13e2a7e55..20fbfd31d 100644 --- a/src/icons/Baseball.tsx +++ b/src/icons/Baseball.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BaseballCap.tsx b/src/icons/BaseballCap.tsx new file mode 100644 index 000000000..fa7193159 --- /dev/null +++ b/src/icons/BaseballCap.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BaseballCap: Icon = forwardRef((props, ref) => ( + +)); + +BaseballCap.displayName = "BaseballCap"; + +export default BaseballCap; diff --git a/src/icons/Basket.tsx b/src/icons/Basket.tsx new file mode 100644 index 000000000..d7540b41a --- /dev/null +++ b/src/icons/Basket.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Basket: Icon = forwardRef((props, ref) => ( + +)); + +Basket.displayName = "Basket"; + +export default Basket; diff --git a/src/icons/Basketball.tsx b/src/icons/Basketball.tsx index a44be88b3..8c8da13fa 100644 --- a/src/icons/Basketball.tsx +++ b/src/icons/Basketball.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bathtub.tsx b/src/icons/Bathtub.tsx index 287f61927..9a5c58292 100644 --- a/src/icons/Bathtub.tsx +++ b/src/icons/Bathtub.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M240,112v32a48,48,0,0,1-48,48H64a48,48,0,0,1-48-48V112a8,8,0,0,1,8-8H136v40h64V104h32A8,8,0,0,1,240,112Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryCharging.tsx b/src/icons/BatteryCharging.tsx index dc9759a28..c00aa51d0 100644 --- a/src/icons/BatteryCharging.tsx +++ b/src/icons/BatteryCharging.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryChargingVertical.tsx b/src/icons/BatteryChargingVertical.tsx index 226565d94..93c4dd926 100644 --- a/src/icons/BatteryChargingVertical.tsx +++ b/src/icons/BatteryChargingVertical.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryEmpty.tsx b/src/icons/BatteryEmpty.tsx index a9b3b14c1..0c76fb4be 100644 --- a/src/icons/BatteryEmpty.tsx +++ b/src/icons/BatteryEmpty.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryFull.tsx b/src/icons/BatteryFull.tsx index 5c9635bdf..7d9d9da83 100644 --- a/src/icons/BatteryFull.tsx +++ b/src/icons/BatteryFull.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryHigh.tsx b/src/icons/BatteryHigh.tsx index 1ccb8154f..fe3c999ad 100644 --- a/src/icons/BatteryHigh.tsx +++ b/src/icons/BatteryHigh.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryLow.tsx b/src/icons/BatteryLow.tsx index 541d399f0..9c62794c3 100644 --- a/src/icons/BatteryLow.tsx +++ b/src/icons/BatteryLow.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryMedium.tsx b/src/icons/BatteryMedium.tsx index 424819794..a2df26238 100644 --- a/src/icons/BatteryMedium.tsx +++ b/src/icons/BatteryMedium.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryPlus.tsx b/src/icons/BatteryPlus.tsx index 4b2603755..967510826 100644 --- a/src/icons/BatteryPlus.tsx +++ b/src/icons/BatteryPlus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryPlusVertical.tsx b/src/icons/BatteryPlusVertical.tsx new file mode 100644 index 000000000..7f1712783 --- /dev/null +++ b/src/icons/BatteryPlusVertical.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BatteryPlusVertical: Icon = forwardRef((props, ref) => ( + +)); + +BatteryPlusVertical.displayName = "BatteryPlusVertical"; + +export default BatteryPlusVertical; diff --git a/src/icons/BatteryVerticalEmpty.tsx b/src/icons/BatteryVerticalEmpty.tsx new file mode 100644 index 000000000..070b74b75 --- /dev/null +++ b/src/icons/BatteryVerticalEmpty.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BatteryVerticalEmpty: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalEmpty.displayName = "BatteryVerticalEmpty"; + +export default BatteryVerticalEmpty; diff --git a/src/icons/BatteryVerticalFull.tsx b/src/icons/BatteryVerticalFull.tsx new file mode 100644 index 000000000..a11a7acf8 --- /dev/null +++ b/src/icons/BatteryVerticalFull.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BatteryVerticalFull: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalFull.displayName = "BatteryVerticalFull"; + +export default BatteryVerticalFull; diff --git a/src/icons/BatteryVerticalHigh.tsx b/src/icons/BatteryVerticalHigh.tsx new file mode 100644 index 000000000..74f96d081 --- /dev/null +++ b/src/icons/BatteryVerticalHigh.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BatteryVerticalHigh: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalHigh.displayName = "BatteryVerticalHigh"; + +export default BatteryVerticalHigh; diff --git a/src/icons/BatteryVerticalLow.tsx b/src/icons/BatteryVerticalLow.tsx new file mode 100644 index 000000000..d8d0eb699 --- /dev/null +++ b/src/icons/BatteryVerticalLow.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BatteryVerticalLow: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalLow.displayName = "BatteryVerticalLow"; + +export default BatteryVerticalLow; diff --git a/src/icons/BatteryVerticalMedium.tsx b/src/icons/BatteryVerticalMedium.tsx new file mode 100644 index 000000000..2fddf09d2 --- /dev/null +++ b/src/icons/BatteryVerticalMedium.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BatteryVerticalMedium: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalMedium.displayName = "BatteryVerticalMedium"; + +export default BatteryVerticalMedium; diff --git a/src/icons/BatteryWarning.tsx b/src/icons/BatteryWarning.tsx index 1a511be9a..8207f9a03 100644 --- a/src/icons/BatteryWarning.tsx +++ b/src/icons/BatteryWarning.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BatteryWarningVertical.tsx b/src/icons/BatteryWarningVertical.tsx index d03fd0ee3..181ab62b9 100644 --- a/src/icons/BatteryWarningVertical.tsx +++ b/src/icons/BatteryWarningVertical.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bed.tsx b/src/icons/Bed.tsx index 0f6463734..2d97495b3 100644 --- a/src/icons/Bed.tsx +++ b/src/icons/Bed.tsx @@ -6,16 +6,14 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ @@ -27,19 +25,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BeerBottle.tsx b/src/icons/BeerBottle.tsx index 32b66cf21..0cdcaac3b 100644 --- a/src/icons/BeerBottle.tsx +++ b/src/icons/BeerBottle.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BeerStein.tsx b/src/icons/BeerStein.tsx new file mode 100644 index 000000000..2f9ef425e --- /dev/null +++ b/src/icons/BeerStein.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BeerStein: Icon = forwardRef((props, ref) => ( + +)); + +BeerStein.displayName = "BeerStein"; + +export default BeerStein; diff --git a/src/icons/BehanceLogo.tsx b/src/icons/BehanceLogo.tsx index 9f4808ea6..252e89051 100644 --- a/src/icons/BehanceLogo.tsx +++ b/src/icons/BehanceLogo.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bell.tsx b/src/icons/Bell.tsx index bc7a3a7ae..8c3f8376f 100644 --- a/src/icons/Bell.tsx +++ b/src/icons/Bell.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BellRinging.tsx b/src/icons/BellRinging.tsx index 3c4458ed6..0c864804f 100644 --- a/src/icons/BellRinging.tsx +++ b/src/icons/BellRinging.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BellSimple.tsx b/src/icons/BellSimple.tsx index 36a879132..d67733c17 100644 --- a/src/icons/BellSimple.tsx +++ b/src/icons/BellSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BellSimpleRinging.tsx b/src/icons/BellSimpleRinging.tsx index d7b694b2f..e437f4746 100644 --- a/src/icons/BellSimpleRinging.tsx +++ b/src/icons/BellSimpleRinging.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BellSimpleSlash.tsx b/src/icons/BellSimpleSlash.tsx index 9b5492538..32ce42161 100644 --- a/src/icons/BellSimpleSlash.tsx +++ b/src/icons/BellSimpleSlash.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BellSimpleZ.tsx b/src/icons/BellSimpleZ.tsx index 72de15881..8a36aa21d 100644 --- a/src/icons/BellSimpleZ.tsx +++ b/src/icons/BellSimpleZ.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BellSlash.tsx b/src/icons/BellSlash.tsx index f860d8f04..e54d802a7 100644 --- a/src/icons/BellSlash.tsx +++ b/src/icons/BellSlash.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BellZ.tsx b/src/icons/BellZ.tsx index 667a6e3ec..dc29b7a3b 100644 --- a/src/icons/BellZ.tsx +++ b/src/icons/BellZ.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BezierCurve.tsx b/src/icons/BezierCurve.tsx index 4a4eefab6..fdf05daea 100644 --- a/src/icons/BezierCurve.tsx +++ b/src/icons/BezierCurve.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bicycle.tsx b/src/icons/Bicycle.tsx index eaf9c9f2a..e46d6850a 100644 --- a/src/icons/Bicycle.tsx +++ b/src/icons/Bicycle.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M248,160a40,40,0,1,1-40-40A40,40,0,0,1,248,160ZM48,120a40,40,0,1,0,40,40A40,40,0,0,0,48,120Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Binoculars.tsx b/src/icons/Binoculars.tsx index d41ebfd58..2cb19fdf3 100644 --- a/src/icons/Binoculars.tsx +++ b/src/icons/Binoculars.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M104,168a40,40,0,1,1-40-40A40,40,0,0,1,104,168Zm88-40a40,40,0,1,0,40,40A40,40,0,0,0,192,128Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bird.tsx b/src/icons/Bird.tsx index 37095e451..6252e2b30 100644 --- a/src/icons/Bird.tsx +++ b/src/icons/Bird.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bluetooth.tsx b/src/icons/Bluetooth.tsx index 562606181..7d282da2e 100644 --- a/src/icons/Bluetooth.tsx +++ b/src/icons/Bluetooth.tsx @@ -6,43 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BluetoothConnected.tsx b/src/icons/BluetoothConnected.tsx index f77b289f2..ad4c57fe5 100644 --- a/src/icons/BluetoothConnected.tsx +++ b/src/icons/BluetoothConnected.tsx @@ -6,43 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BluetoothSlash.tsx b/src/icons/BluetoothSlash.tsx index a0fcfed55..f83bf58d2 100644 --- a/src/icons/BluetoothSlash.tsx +++ b/src/icons/BluetoothSlash.tsx @@ -6,44 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BluetoothX.tsx b/src/icons/BluetoothX.tsx index 5c144ed24..34b92de7d 100644 --- a/src/icons/BluetoothX.tsx +++ b/src/icons/BluetoothX.tsx @@ -6,44 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Boat.tsx b/src/icons/Boat.tsx index 46e0a0549..053bbadd7 100644 --- a/src/icons/Boat.tsx +++ b/src/icons/Boat.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bone.tsx b/src/icons/Bone.tsx new file mode 100644 index 000000000..1a7e5023c --- /dev/null +++ b/src/icons/Bone.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Bone: Icon = forwardRef((props, ref) => ( + +)); + +Bone.displayName = "Bone"; + +export default Bone; diff --git a/src/icons/Book.tsx b/src/icons/Book.tsx index 4cdd4e672..34880b486 100644 --- a/src/icons/Book.tsx +++ b/src/icons/Book.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BookBookmark.tsx b/src/icons/BookBookmark.tsx index cec36b582..1a9871d25 100644 --- a/src/icons/BookBookmark.tsx +++ b/src/icons/BookBookmark.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BookOpen.tsx b/src/icons/BookOpen.tsx index cf4b3a0d9..6efd5a37a 100644 --- a/src/icons/BookOpen.tsx +++ b/src/icons/BookOpen.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BookOpenText.tsx b/src/icons/BookOpenText.tsx new file mode 100644 index 000000000..ffffcd423 --- /dev/null +++ b/src/icons/BookOpenText.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BookOpenText: Icon = forwardRef((props, ref) => ( + +)); + +BookOpenText.displayName = "BookOpenText"; + +export default BookOpenText; diff --git a/src/icons/Bookmark.tsx b/src/icons/Bookmark.tsx index 93ab81f0c..fa5e25089 100644 --- a/src/icons/Bookmark.tsx +++ b/src/icons/Bookmark.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BookmarkSimple.tsx b/src/icons/BookmarkSimple.tsx index 9bde6470d..b856ea462 100644 --- a/src/icons/BookmarkSimple.tsx +++ b/src/icons/BookmarkSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bookmarks.tsx b/src/icons/Bookmarks.tsx index e0561ae7d..fbdcc1b36 100644 --- a/src/icons/Bookmarks.tsx +++ b/src/icons/Bookmarks.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BookmarksSimple.tsx b/src/icons/BookmarksSimple.tsx index 6f6d57901..ea21372e3 100644 --- a/src/icons/BookmarksSimple.tsx +++ b/src/icons/BookmarksSimple.tsx @@ -6,41 +6,42 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Books.tsx b/src/icons/Books.tsx index c92c87a3b..d40d61607 100644 --- a/src/icons/Books.tsx +++ b/src/icons/Books.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Boot.tsx b/src/icons/Boot.tsx new file mode 100644 index 000000000..6028edac0 --- /dev/null +++ b/src/icons/Boot.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Boot: Icon = forwardRef((props, ref) => ( + +)); + +Boot.displayName = "Boot"; + +export default Boot; diff --git a/src/icons/BoundingBox.tsx b/src/icons/BoundingBox.tsx index d785d875e..0d4e92997 100644 --- a/src/icons/BoundingBox.tsx +++ b/src/icons/BoundingBox.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,7 +16,7 @@ const weights = new Map([ d="M216,48V80a8,8,0,0,1-8,8H176a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8h32A8,8,0,0,1,216,48ZM80,40H48a8,8,0,0,0-8,8V80a8,8,0,0,0,8,8H80a8,8,0,0,0,8-8V48A8,8,0,0,0,80,40ZM208,168H176a8,8,0,0,0-8,8v32a8,8,0,0,0,8,8h32a8,8,0,0,0,8-8V176A8,8,0,0,0,208,168ZM80,168H48a8,8,0,0,0-8,8v32a8,8,0,0,0,8,8H80a8,8,0,0,0,8-8V176A8,8,0,0,0,80,168Z" opacity="0.2" /> - + , ], [ @@ -34,7 +34,7 @@ const weights = new Map([ [ "regular", <> - + , ], [ diff --git a/src/icons/BowlFood.tsx b/src/icons/BowlFood.tsx new file mode 100644 index 000000000..9d363932f --- /dev/null +++ b/src/icons/BowlFood.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const BowlFood: Icon = forwardRef((props, ref) => ( + +)); + +BowlFood.displayName = "BowlFood"; + +export default BowlFood; diff --git a/src/icons/BracketsAngle.tsx b/src/icons/BracketsAngle.tsx index 8ab1823a4..eff956303 100644 --- a/src/icons/BracketsAngle.tsx +++ b/src/icons/BracketsAngle.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BracketsCurly.tsx b/src/icons/BracketsCurly.tsx index 0f649f328..ebf0eaf89 100644 --- a/src/icons/BracketsCurly.tsx +++ b/src/icons/BracketsCurly.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BracketsRound.tsx b/src/icons/BracketsRound.tsx index cfe4267c1..e11c0e8af 100644 --- a/src/icons/BracketsRound.tsx +++ b/src/icons/BracketsRound.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BracketsSquare.tsx b/src/icons/BracketsSquare.tsx index f9ee3b233..7399f0d18 100644 --- a/src/icons/BracketsSquare.tsx +++ b/src/icons/BracketsSquare.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Brain.tsx b/src/icons/Brain.tsx index 839d3e594..708ebda63 100644 --- a/src/icons/Brain.tsx +++ b/src/icons/Brain.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Brandy.tsx b/src/icons/Brandy.tsx index 6e1a4eaa8..f2b37b7f7 100644 --- a/src/icons/Brandy.tsx +++ b/src/icons/Brandy.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bridge.tsx b/src/icons/Bridge.tsx new file mode 100644 index 000000000..c6067748c --- /dev/null +++ b/src/icons/Bridge.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Bridge: Icon = forwardRef((props, ref) => ( + +)); + +Bridge.displayName = "Bridge"; + +export default Bridge; diff --git a/src/icons/Briefcase.tsx b/src/icons/Briefcase.tsx index 8700fb7d4..46cc8f81a 100644 --- a/src/icons/Briefcase.tsx +++ b/src/icons/Briefcase.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BriefcaseMetal.tsx b/src/icons/BriefcaseMetal.tsx index 0f9102460..209427ef3 100644 --- a/src/icons/BriefcaseMetal.tsx +++ b/src/icons/BriefcaseMetal.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Broadcast.tsx b/src/icons/Broadcast.tsx index 9af860d8f..8349e1ca7 100644 --- a/src/icons/Broadcast.tsx +++ b/src/icons/Broadcast.tsx @@ -6,44 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Broom.tsx b/src/icons/Broom.tsx new file mode 100644 index 000000000..771c7f781 --- /dev/null +++ b/src/icons/Broom.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Broom: Icon = forwardRef((props, ref) => ( + +)); + +Broom.displayName = "Broom"; + +export default Broom; diff --git a/src/icons/Browser.tsx b/src/icons/Browser.tsx index 715df8af1..a11701cc9 100644 --- a/src/icons/Browser.tsx +++ b/src/icons/Browser.tsx @@ -6,15 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - + , ], @@ -39,7 +40,7 @@ const weights = new Map([ [ "thin", <> - + , ], ]); diff --git a/src/icons/Browsers.tsx b/src/icons/Browsers.tsx index 4f11ba2ec..c64a0d8c0 100644 --- a/src/icons/Browsers.tsx +++ b/src/icons/Browsers.tsx @@ -6,16 +6,17 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ @@ -39,7 +40,7 @@ const weights = new Map([ [ "thin", <> - + , ], ]); diff --git a/src/icons/Bug.tsx b/src/icons/Bug.tsx index 2a9520896..c56aae01d 100644 --- a/src/icons/Bug.tsx +++ b/src/icons/Bug.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BugBeetle.tsx b/src/icons/BugBeetle.tsx index f0e0dc441..52a9702ef 100644 --- a/src/icons/BugBeetle.tsx +++ b/src/icons/BugBeetle.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M200,104v48a72,72,0,0,1-72,72h0a72,72,0,0,1-72-72V104Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/BugDroid.tsx b/src/icons/BugDroid.tsx index 85d2f8592..6f964d7ae 100644 --- a/src/icons/BugDroid.tsx +++ b/src/icons/BugDroid.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Buildings.tsx b/src/icons/Buildings.tsx index 84c76443b..405b0f396 100644 --- a/src/icons/Buildings.tsx +++ b/src/icons/Buildings.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Bus.tsx b/src/icons/Bus.tsx index d9081280b..cdb198732 100644 --- a/src/icons/Bus.tsx +++ b/src/icons/Bus.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Butterfly.tsx b/src/icons/Butterfly.tsx index 0632105b9..11beebd91 100644 --- a/src/icons/Butterfly.tsx +++ b/src/icons/Butterfly.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Cactus.tsx b/src/icons/Cactus.tsx index 0eee45f64..e985b4e6c 100644 --- a/src/icons/Cactus.tsx +++ b/src/icons/Cactus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Cake.tsx b/src/icons/Cake.tsx index 2fb6d1e1d..b7e739bb3 100644 --- a/src/icons/Cake.tsx +++ b/src/icons/Cake.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Calculator.tsx b/src/icons/Calculator.tsx index f5d16b6c0..02989616e 100644 --- a/src/icons/Calculator.tsx +++ b/src/icons/Calculator.tsx @@ -6,16 +6,14 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ @@ -27,19 +25,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Calendar.tsx b/src/icons/Calendar.tsx index e6c477377..b5b81862f 100644 --- a/src/icons/Calendar.tsx +++ b/src/icons/Calendar.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CalendarBlank.tsx b/src/icons/CalendarBlank.tsx index fe859a79f..8ca627908 100644 --- a/src/icons/CalendarBlank.tsx +++ b/src/icons/CalendarBlank.tsx @@ -6,15 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - + , ], diff --git a/src/icons/CalendarCheck.tsx b/src/icons/CalendarCheck.tsx index f49aa9256..cc369c465 100644 --- a/src/icons/CalendarCheck.tsx +++ b/src/icons/CalendarCheck.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M216,48V88H40V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CalendarPlus.tsx b/src/icons/CalendarPlus.tsx index 85cec6104..47c99c265 100644 --- a/src/icons/CalendarPlus.tsx +++ b/src/icons/CalendarPlus.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M216,48V88H40V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CalendarX.tsx b/src/icons/CalendarX.tsx index f298a2a43..7c6bc97f3 100644 --- a/src/icons/CalendarX.tsx +++ b/src/icons/CalendarX.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CallBell.tsx b/src/icons/CallBell.tsx new file mode 100644 index 000000000..e6cf07f1f --- /dev/null +++ b/src/icons/CallBell.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CallBell: Icon = forwardRef((props, ref) => ( + +)); + +CallBell.displayName = "CallBell"; + +export default CallBell; diff --git a/src/icons/Camera.tsx b/src/icons/Camera.tsx index 42016d4c1..581156a72 100644 --- a/src/icons/Camera.tsx +++ b/src/icons/Camera.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CameraPlus.tsx b/src/icons/CameraPlus.tsx new file mode 100644 index 000000000..7d4bef05f --- /dev/null +++ b/src/icons/CameraPlus.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CameraPlus: Icon = forwardRef((props, ref) => ( + +)); + +CameraPlus.displayName = "CameraPlus"; + +export default CameraPlus; diff --git a/src/icons/CameraRotate.tsx b/src/icons/CameraRotate.tsx index a2c45b83d..d0a784766 100644 --- a/src/icons/CameraRotate.tsx +++ b/src/icons/CameraRotate.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,80V192a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V80A16,16,0,0,1,48,64H80L96,40h64l16,24h32A16,16,0,0,1,224,80Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CameraSlash.tsx b/src/icons/CameraSlash.tsx index 4203666a4..92e431b96 100644 --- a/src/icons/CameraSlash.tsx +++ b/src/icons/CameraSlash.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Campfire.tsx b/src/icons/Campfire.tsx index fe7df60b9..cf223a54b 100644 --- a/src/icons/Campfire.tsx +++ b/src/icons/Campfire.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Car.tsx b/src/icons/Car.tsx index 22487f463..8ce28065e 100644 --- a/src/icons/Car.tsx +++ b/src/icons/Car.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CarProfile.tsx b/src/icons/CarProfile.tsx new file mode 100644 index 000000000..c5e8ed3db --- /dev/null +++ b/src/icons/CarProfile.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CarProfile: Icon = forwardRef((props, ref) => ( + +)); + +CarProfile.displayName = "CarProfile"; + +export default CarProfile; diff --git a/src/icons/CarSimple.tsx b/src/icons/CarSimple.tsx index 0464f7eae..302667580 100644 --- a/src/icons/CarSimple.tsx +++ b/src/icons/CarSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Cardholder.tsx b/src/icons/Cardholder.tsx index 88830f6fc..fe0c18605 100644 --- a/src/icons/Cardholder.tsx +++ b/src/icons/Cardholder.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Cards.tsx b/src/icons/Cards.tsx index 8c79f6be9..f365294cb 100644 --- a/src/icons/Cards.tsx +++ b/src/icons/Cards.tsx @@ -6,23 +6,24 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + + , ], [ diff --git a/src/icons/CaretCircleDoubleDown.tsx b/src/icons/CaretCircleDoubleDown.tsx index ff639a419..e0bed2751 100644 --- a/src/icons/CaretCircleDoubleDown.tsx +++ b/src/icons/CaretCircleDoubleDown.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleDoubleLeft.tsx b/src/icons/CaretCircleDoubleLeft.tsx index d3a3ff130..20ad034d6 100644 --- a/src/icons/CaretCircleDoubleLeft.tsx +++ b/src/icons/CaretCircleDoubleLeft.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleDoubleRight.tsx b/src/icons/CaretCircleDoubleRight.tsx index f8365a42d..0ba8972c6 100644 --- a/src/icons/CaretCircleDoubleRight.tsx +++ b/src/icons/CaretCircleDoubleRight.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleDoubleUp.tsx b/src/icons/CaretCircleDoubleUp.tsx index baa8e1729..617869901 100644 --- a/src/icons/CaretCircleDoubleUp.tsx +++ b/src/icons/CaretCircleDoubleUp.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleDown.tsx b/src/icons/CaretCircleDown.tsx index 8789e7d34..d6cf50189 100644 --- a/src/icons/CaretCircleDown.tsx +++ b/src/icons/CaretCircleDown.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleLeft.tsx b/src/icons/CaretCircleLeft.tsx index e8fae0740..a5ff80ded 100644 --- a/src/icons/CaretCircleLeft.tsx +++ b/src/icons/CaretCircleLeft.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleRight.tsx b/src/icons/CaretCircleRight.tsx index 24f25d442..6510dd8a5 100644 --- a/src/icons/CaretCircleRight.tsx +++ b/src/icons/CaretCircleRight.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleUp.tsx b/src/icons/CaretCircleUp.tsx index 928ce2640..8f018770e 100644 --- a/src/icons/CaretCircleUp.tsx +++ b/src/icons/CaretCircleUp.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretCircleUpDown.tsx b/src/icons/CaretCircleUpDown.tsx new file mode 100644 index 000000000..8483ed375 --- /dev/null +++ b/src/icons/CaretCircleUpDown.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CaretCircleUpDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleUpDown.displayName = "CaretCircleUpDown"; + +export default CaretCircleUpDown; diff --git a/src/icons/CaretDoubleDown.tsx b/src/icons/CaretDoubleDown.tsx index ac47d169f..07cc9caf3 100644 --- a/src/icons/CaretDoubleDown.tsx +++ b/src/icons/CaretDoubleDown.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretDoubleLeft.tsx b/src/icons/CaretDoubleLeft.tsx index d6fc0a81e..1b534622e 100644 --- a/src/icons/CaretDoubleLeft.tsx +++ b/src/icons/CaretDoubleLeft.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretDoubleRight.tsx b/src/icons/CaretDoubleRight.tsx index 15980ef1b..c11b159f0 100644 --- a/src/icons/CaretDoubleRight.tsx +++ b/src/icons/CaretDoubleRight.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretDoubleUp.tsx b/src/icons/CaretDoubleUp.tsx index 6ee6369b6..f8fe08861 100644 --- a/src/icons/CaretDoubleUp.tsx +++ b/src/icons/CaretDoubleUp.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretDown.tsx b/src/icons/CaretDown.tsx index 7665d5009..3780235f4 100644 --- a/src/icons/CaretDown.tsx +++ b/src/icons/CaretDown.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretLeft.tsx b/src/icons/CaretLeft.tsx index 55e928c9e..62b770833 100644 --- a/src/icons/CaretLeft.tsx +++ b/src/icons/CaretLeft.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretRight.tsx b/src/icons/CaretRight.tsx index e3e147a97..3af1c28ff 100644 --- a/src/icons/CaretRight.tsx +++ b/src/icons/CaretRight.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretUp.tsx b/src/icons/CaretUp.tsx index 81783c1b0..22e4a1b3f 100644 --- a/src/icons/CaretUp.tsx +++ b/src/icons/CaretUp.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CaretUpDown.tsx b/src/icons/CaretUpDown.tsx new file mode 100644 index 000000000..effdf75c6 --- /dev/null +++ b/src/icons/CaretUpDown.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CaretUpDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretUpDown.displayName = "CaretUpDown"; + +export default CaretUpDown; diff --git a/src/icons/Carrot.tsx b/src/icons/Carrot.tsx new file mode 100644 index 000000000..f88fb2a41 --- /dev/null +++ b/src/icons/Carrot.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Carrot: Icon = forwardRef((props, ref) => ( + +)); + +Carrot.displayName = "Carrot"; + +export default Carrot; diff --git a/src/icons/CassetteTape.tsx b/src/icons/CassetteTape.tsx new file mode 100644 index 000000000..51c82bbbf --- /dev/null +++ b/src/icons/CassetteTape.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CassetteTape: Icon = forwardRef((props, ref) => ( + +)); + +CassetteTape.displayName = "CassetteTape"; + +export default CassetteTape; diff --git a/src/icons/CastleTurret.tsx b/src/icons/CastleTurret.tsx new file mode 100644 index 000000000..65b83b600 --- /dev/null +++ b/src/icons/CastleTurret.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CastleTurret: Icon = forwardRef((props, ref) => ( + +)); + +CastleTurret.displayName = "CastleTurret"; + +export default CastleTurret; diff --git a/src/icons/Cat.tsx b/src/icons/Cat.tsx index 5af1989ba..6316d39d0 100644 --- a/src/icons/Cat.tsx +++ b/src/icons/Cat.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CellSignalFull.tsx b/src/icons/CellSignalFull.tsx index 47eefed7e..466c28c62 100644 --- a/src/icons/CellSignalFull.tsx +++ b/src/icons/CellSignalFull.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CellSignalHigh.tsx b/src/icons/CellSignalHigh.tsx index 1ef103948..18957bd2c 100644 --- a/src/icons/CellSignalHigh.tsx +++ b/src/icons/CellSignalHigh.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CellSignalLow.tsx b/src/icons/CellSignalLow.tsx index 8fa2f78e5..0f63ed074 100644 --- a/src/icons/CellSignalLow.tsx +++ b/src/icons/CellSignalLow.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CellSignalMedium.tsx b/src/icons/CellSignalMedium.tsx index 42c04f901..a03752fd2 100644 --- a/src/icons/CellSignalMedium.tsx +++ b/src/icons/CellSignalMedium.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CellSignalNone.tsx b/src/icons/CellSignalNone.tsx index c06abb99c..5508b2ad0 100644 --- a/src/icons/CellSignalNone.tsx +++ b/src/icons/CellSignalNone.tsx @@ -6,37 +6,37 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CellSignalSlash.tsx b/src/icons/CellSignalSlash.tsx index ec6072669..554053e4c 100644 --- a/src/icons/CellSignalSlash.tsx +++ b/src/icons/CellSignalSlash.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CellSignalX.tsx b/src/icons/CellSignalX.tsx index 317e24e15..bdc0fff9b 100644 --- a/src/icons/CellSignalX.tsx +++ b/src/icons/CellSignalX.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Certificate.tsx b/src/icons/Certificate.tsx new file mode 100644 index 000000000..3b5dd3a3f --- /dev/null +++ b/src/icons/Certificate.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Certificate: Icon = forwardRef((props, ref) => ( + +)); + +Certificate.displayName = "Certificate"; + +export default Certificate; diff --git a/src/icons/Chair.tsx b/src/icons/Chair.tsx new file mode 100644 index 000000000..05c561143 --- /dev/null +++ b/src/icons/Chair.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Chair: Icon = forwardRef((props, ref) => ( + +)); + +Chair.displayName = "Chair"; + +export default Chair; diff --git a/src/icons/Chalkboard.tsx b/src/icons/Chalkboard.tsx index 0a656fb30..c1199b9be 100644 --- a/src/icons/Chalkboard.tsx +++ b/src/icons/Chalkboard.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/ChalkboardSimple.tsx b/src/icons/ChalkboardSimple.tsx index 422741af0..c9f4becb9 100644 --- a/src/icons/ChalkboardSimple.tsx +++ b/src/icons/ChalkboardSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/ChalkboardTeacher.tsx b/src/icons/ChalkboardTeacher.tsx index 1d48f8bce..53dadaf89 100644 --- a/src/icons/ChalkboardTeacher.tsx +++ b/src/icons/ChalkboardTeacher.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Champagne.tsx b/src/icons/Champagne.tsx new file mode 100644 index 000000000..1b0d3a817 --- /dev/null +++ b/src/icons/Champagne.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Champagne: Icon = forwardRef((props, ref) => ( + +)); + +Champagne.displayName = "Champagne"; + +export default Champagne; diff --git a/src/icons/ChargingStation.tsx b/src/icons/ChargingStation.tsx new file mode 100644 index 000000000..2674ff947 --- /dev/null +++ b/src/icons/ChargingStation.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ChargingStation: Icon = forwardRef((props, ref) => ( + +)); + +ChargingStation.displayName = "ChargingStation"; + +export default ChargingStation; diff --git a/src/icons/ChartBar.tsx b/src/icons/ChartBar.tsx index 2518ecf8b..3b31fe80d 100644 --- a/src/icons/ChartBar.tsx +++ b/src/icons/ChartBar.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChartBarHorizontal.tsx b/src/icons/ChartBarHorizontal.tsx index 781b04d86..12b837fa9 100644 --- a/src/icons/ChartBarHorizontal.tsx +++ b/src/icons/ChartBarHorizontal.tsx @@ -12,16 +12,14 @@ const weights = new Map([ [ "duotone", <> - - - + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/ChartDonut.tsx b/src/icons/ChartDonut.tsx new file mode 100644 index 000000000..e8675ecee --- /dev/null +++ b/src/icons/ChartDonut.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ChartDonut: Icon = forwardRef((props, ref) => ( + +)); + +ChartDonut.displayName = "ChartDonut"; + +export default ChartDonut; diff --git a/src/icons/ChartLine.tsx b/src/icons/ChartLine.tsx index d5f844350..4424f6c17 100644 --- a/src/icons/ChartLine.tsx +++ b/src/icons/ChartLine.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChartLineDown.tsx b/src/icons/ChartLineDown.tsx new file mode 100644 index 000000000..143488c4f --- /dev/null +++ b/src/icons/ChartLineDown.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ChartLineDown: Icon = forwardRef((props, ref) => ( + +)); + +ChartLineDown.displayName = "ChartLineDown"; + +export default ChartLineDown; diff --git a/src/icons/ChartLineUp.tsx b/src/icons/ChartLineUp.tsx index 89187b5d6..77cee91a3 100644 --- a/src/icons/ChartLineUp.tsx +++ b/src/icons/ChartLineUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChartPie.tsx b/src/icons/ChartPie.tsx index 1a25fd513..04fd5da48 100644 --- a/src/icons/ChartPie.tsx +++ b/src/icons/ChartPie.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChartPieSlice.tsx b/src/icons/ChartPieSlice.tsx index ce46a63be..201c99783 100644 --- a/src/icons/ChartPieSlice.tsx +++ b/src/icons/ChartPieSlice.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChartPolar.tsx b/src/icons/ChartPolar.tsx new file mode 100644 index 000000000..2166f8236 --- /dev/null +++ b/src/icons/ChartPolar.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ChartPolar: Icon = forwardRef((props, ref) => ( + +)); + +ChartPolar.displayName = "ChartPolar"; + +export default ChartPolar; diff --git a/src/icons/ChartScatter.tsx b/src/icons/ChartScatter.tsx new file mode 100644 index 000000000..d0112d6c7 --- /dev/null +++ b/src/icons/ChartScatter.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ChartScatter: Icon = forwardRef((props, ref) => ( + +)); + +ChartScatter.displayName = "ChartScatter"; + +export default ChartScatter; diff --git a/src/icons/Chat.tsx b/src/icons/Chat.tsx index a20de8860..466f4d155 100644 --- a/src/icons/Chat.tsx +++ b/src/icons/Chat.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatCentered.tsx b/src/icons/ChatCentered.tsx index 656e9baff..e497d2ad2 100644 --- a/src/icons/ChatCentered.tsx +++ b/src/icons/ChatCentered.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatCenteredDots.tsx b/src/icons/ChatCenteredDots.tsx index 6c77cc6b3..bd8bf7fd4 100644 --- a/src/icons/ChatCenteredDots.tsx +++ b/src/icons/ChatCenteredDots.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatCenteredText.tsx b/src/icons/ChatCenteredText.tsx index ea8860150..6fa2d27bf 100644 --- a/src/icons/ChatCenteredText.tsx +++ b/src/icons/ChatCenteredText.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatCircle.tsx b/src/icons/ChatCircle.tsx index f96fe1e59..7e2f5964d 100644 --- a/src/icons/ChatCircle.tsx +++ b/src/icons/ChatCircle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatCircleDots.tsx b/src/icons/ChatCircleDots.tsx index f0ebca3fb..5df1cf585 100644 --- a/src/icons/ChatCircleDots.tsx +++ b/src/icons/ChatCircleDots.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatCircleText.tsx b/src/icons/ChatCircleText.tsx index 2b242be50..25716c2d3 100644 --- a/src/icons/ChatCircleText.tsx +++ b/src/icons/ChatCircleText.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatDots.tsx b/src/icons/ChatDots.tsx index c1670363b..487740c19 100644 --- a/src/icons/ChatDots.tsx +++ b/src/icons/ChatDots.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatTeardrop.tsx b/src/icons/ChatTeardrop.tsx index 3d63a8a65..1936d139a 100644 --- a/src/icons/ChatTeardrop.tsx +++ b/src/icons/ChatTeardrop.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatTeardropDots.tsx b/src/icons/ChatTeardropDots.tsx index 1d7c9091c..0244585c7 100644 --- a/src/icons/ChatTeardropDots.tsx +++ b/src/icons/ChatTeardropDots.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatTeardropText.tsx b/src/icons/ChatTeardropText.tsx index e7c6b030f..5eaeabe2f 100644 --- a/src/icons/ChatTeardropText.tsx +++ b/src/icons/ChatTeardropText.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatText.tsx b/src/icons/ChatText.tsx index 27b237322..1fe43ebdd 100644 --- a/src/icons/ChatText.tsx +++ b/src/icons/ChatText.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Chats.tsx b/src/icons/Chats.tsx index f14627bea..832c6421f 100644 --- a/src/icons/Chats.tsx +++ b/src/icons/Chats.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatsCircle.tsx b/src/icons/ChatsCircle.tsx index b3bb24522..22ee17d2d 100644 --- a/src/icons/ChatsCircle.tsx +++ b/src/icons/ChatsCircle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ChatsTeardrop.tsx b/src/icons/ChatsTeardrop.tsx index b85e3813e..667b83a9d 100644 --- a/src/icons/ChatsTeardrop.tsx +++ b/src/icons/ChatsTeardrop.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Check.tsx b/src/icons/Check.tsx index c64ae2b3a..6a1e216cb 100644 --- a/src/icons/Check.tsx +++ b/src/icons/Check.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CheckCircle.tsx b/src/icons/CheckCircle.tsx index c07f4c75d..0ad544c68 100644 --- a/src/icons/CheckCircle.tsx +++ b/src/icons/CheckCircle.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CheckFat.tsx b/src/icons/CheckFat.tsx new file mode 100644 index 000000000..bac0f4ac6 --- /dev/null +++ b/src/icons/CheckFat.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CheckFat: Icon = forwardRef((props, ref) => ( + +)); + +CheckFat.displayName = "CheckFat"; + +export default CheckFat; diff --git a/src/icons/CheckSquare.tsx b/src/icons/CheckSquare.tsx index 6ecf1b720..da51a546d 100644 --- a/src/icons/CheckSquare.tsx +++ b/src/icons/CheckSquare.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CheckSquareOffset.tsx b/src/icons/CheckSquareOffset.tsx index 89d4f1da1..f2c1ace3f 100644 --- a/src/icons/CheckSquareOffset.tsx +++ b/src/icons/CheckSquareOffset.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Checks.tsx b/src/icons/Checks.tsx index 150a1f59b..7cd6e2c60 100644 --- a/src/icons/Checks.tsx +++ b/src/icons/Checks.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Church.tsx b/src/icons/Church.tsx new file mode 100644 index 000000000..e6f37a191 --- /dev/null +++ b/src/icons/Church.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Church: Icon = forwardRef((props, ref) => ( + +)); + +Church.displayName = "Church"; + +export default Church; diff --git a/src/icons/Circle.tsx b/src/icons/Circle.tsx index 391461f83..438ddbdb1 100644 --- a/src/icons/Circle.tsx +++ b/src/icons/Circle.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CircleDashed.tsx b/src/icons/CircleDashed.tsx index 9a4324328..37e6deafe 100644 --- a/src/icons/CircleDashed.tsx +++ b/src/icons/CircleDashed.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CircleHalf.tsx b/src/icons/CircleHalf.tsx index 4b134d5f3..a69540c02 100644 --- a/src/icons/CircleHalf.tsx +++ b/src/icons/CircleHalf.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,128a96,96,0,0,1-96,96V32A96,96,0,0,1,224,128Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CircleHalfTilt.tsx b/src/icons/CircleHalfTilt.tsx index 5a979710d..8429dc50a 100644 --- a/src/icons/CircleHalfTilt.tsx +++ b/src/icons/CircleHalfTilt.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CircleNotch.tsx b/src/icons/CircleNotch.tsx index fe24e51f3..be6e6d7d9 100644 --- a/src/icons/CircleNotch.tsx +++ b/src/icons/CircleNotch.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CircleWavy.tsx b/src/icons/CircleWavy.tsx deleted file mode 100644 index 9d6a093a9..000000000 --- a/src/icons/CircleWavy.tsx +++ /dev/null @@ -1,54 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const CircleWavy: Icon = forwardRef((props, ref) => ( - -)); - -CircleWavy.displayName = "CircleWavy"; - -export default CircleWavy; diff --git a/src/icons/CircleWavyCheck.tsx b/src/icons/CircleWavyCheck.tsx deleted file mode 100644 index 0fa0fd62a..000000000 --- a/src/icons/CircleWavyCheck.tsx +++ /dev/null @@ -1,54 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const CircleWavyCheck: Icon = forwardRef((props, ref) => ( - -)); - -CircleWavyCheck.displayName = "CircleWavyCheck"; - -export default CircleWavyCheck; diff --git a/src/icons/CircleWavyQuestion.tsx b/src/icons/CircleWavyQuestion.tsx deleted file mode 100644 index ecc17d4d7..000000000 --- a/src/icons/CircleWavyQuestion.tsx +++ /dev/null @@ -1,54 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const CircleWavyQuestion: Icon = forwardRef((props, ref) => ( - -)); - -CircleWavyQuestion.displayName = "CircleWavyQuestion"; - -export default CircleWavyQuestion; diff --git a/src/icons/CircleWavyWarning.tsx b/src/icons/CircleWavyWarning.tsx deleted file mode 100644 index 2ff3d626b..000000000 --- a/src/icons/CircleWavyWarning.tsx +++ /dev/null @@ -1,54 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const CircleWavyWarning: Icon = forwardRef((props, ref) => ( - -)); - -CircleWavyWarning.displayName = "CircleWavyWarning"; - -export default CircleWavyWarning; diff --git a/src/icons/CirclesFour.tsx b/src/icons/CirclesFour.tsx index 92af9da5e..5f453a744 100644 --- a/src/icons/CirclesFour.tsx +++ b/src/icons/CirclesFour.tsx @@ -6,52 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CirclesThree.tsx b/src/icons/CirclesThree.tsx index db1309948..a433d005e 100644 --- a/src/icons/CirclesThree.tsx +++ b/src/icons/CirclesThree.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CirclesThreePlus.tsx b/src/icons/CirclesThreePlus.tsx index 39ca422a0..d94903f53 100644 --- a/src/icons/CirclesThreePlus.tsx +++ b/src/icons/CirclesThreePlus.tsx @@ -6,49 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Circuitry.tsx b/src/icons/Circuitry.tsx new file mode 100644 index 000000000..ab331a743 --- /dev/null +++ b/src/icons/Circuitry.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Circuitry: Icon = forwardRef((props, ref) => ( + +)); + +Circuitry.displayName = "Circuitry"; + +export default Circuitry; diff --git a/src/icons/Clipboard.tsx b/src/icons/Clipboard.tsx index 293d2af47..17278c991 100644 --- a/src/icons/Clipboard.tsx +++ b/src/icons/Clipboard.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ClipboardText.tsx b/src/icons/ClipboardText.tsx index fe1eca8f0..e0bd79587 100644 --- a/src/icons/ClipboardText.tsx +++ b/src/icons/ClipboardText.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Clock.tsx b/src/icons/Clock.tsx index da442932f..32ee3f1e5 100644 --- a/src/icons/Clock.tsx +++ b/src/icons/Clock.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ClockAfternoon.tsx b/src/icons/ClockAfternoon.tsx index 6f5e87e65..d77b7e53d 100644 --- a/src/icons/ClockAfternoon.tsx +++ b/src/icons/ClockAfternoon.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ClockClockwise.tsx b/src/icons/ClockClockwise.tsx index a56331ad6..8ac131681 100644 --- a/src/icons/ClockClockwise.tsx +++ b/src/icons/ClockClockwise.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ClockCountdown.tsx b/src/icons/ClockCountdown.tsx new file mode 100644 index 000000000..9c4220445 --- /dev/null +++ b/src/icons/ClockCountdown.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ClockCountdown: Icon = forwardRef((props, ref) => ( + +)); + +ClockCountdown.displayName = "ClockCountdown"; + +export default ClockCountdown; diff --git a/src/icons/ClockCounterClockwise.tsx b/src/icons/ClockCounterClockwise.tsx index fd32d840d..8368381e4 100644 --- a/src/icons/ClockCounterClockwise.tsx +++ b/src/icons/ClockCounterClockwise.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ClosedCaptioning.tsx b/src/icons/ClosedCaptioning.tsx index c3d339572..e1dc4da03 100644 --- a/src/icons/ClosedCaptioning.tsx +++ b/src/icons/ClosedCaptioning.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Cloud.tsx b/src/icons/Cloud.tsx index 514df54fc..7f911dbff 100644 --- a/src/icons/Cloud.tsx +++ b/src/icons/Cloud.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudArrowDown.tsx b/src/icons/CloudArrowDown.tsx index 23bcf9986..1740b0a48 100644 --- a/src/icons/CloudArrowDown.tsx +++ b/src/icons/CloudArrowDown.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudArrowUp.tsx b/src/icons/CloudArrowUp.tsx index 852a003ce..d4648317d 100644 --- a/src/icons/CloudArrowUp.tsx +++ b/src/icons/CloudArrowUp.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudCheck.tsx b/src/icons/CloudCheck.tsx index 4f0db0f1c..2936790e9 100644 --- a/src/icons/CloudCheck.tsx +++ b/src/icons/CloudCheck.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudFog.tsx b/src/icons/CloudFog.tsx index f70b50d62..249bb0e31 100644 --- a/src/icons/CloudFog.tsx +++ b/src/icons/CloudFog.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudLightning.tsx b/src/icons/CloudLightning.tsx index 90e8c8036..939c29882 100644 --- a/src/icons/CloudLightning.tsx +++ b/src/icons/CloudLightning.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudMoon.tsx b/src/icons/CloudMoon.tsx index e19ddf7b5..de9fab4fe 100644 --- a/src/icons/CloudMoon.tsx +++ b/src/icons/CloudMoon.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudRain.tsx b/src/icons/CloudRain.tsx index ecf9659ec..7eb3f6613 100644 --- a/src/icons/CloudRain.tsx +++ b/src/icons/CloudRain.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudSlash.tsx b/src/icons/CloudSlash.tsx index 5917231b5..7af7f97e1 100644 --- a/src/icons/CloudSlash.tsx +++ b/src/icons/CloudSlash.tsx @@ -6,40 +6,42 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudSnow.tsx b/src/icons/CloudSnow.tsx index 59d99db3e..609ca93ad 100644 --- a/src/icons/CloudSnow.tsx +++ b/src/icons/CloudSnow.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudSun.tsx b/src/icons/CloudSun.tsx index 43f27efe9..bf91073e6 100644 --- a/src/icons/CloudSun.tsx +++ b/src/icons/CloudSun.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CloudWarning.tsx b/src/icons/CloudWarning.tsx new file mode 100644 index 000000000..6069d6a52 --- /dev/null +++ b/src/icons/CloudWarning.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CloudWarning: Icon = forwardRef((props, ref) => ( + +)); + +CloudWarning.displayName = "CloudWarning"; + +export default CloudWarning; diff --git a/src/icons/CloudX.tsx b/src/icons/CloudX.tsx new file mode 100644 index 000000000..e0deb34b0 --- /dev/null +++ b/src/icons/CloudX.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CloudX: Icon = forwardRef((props, ref) => ( + +)); + +CloudX.displayName = "CloudX"; + +export default CloudX; diff --git a/src/icons/Club.tsx b/src/icons/Club.tsx index 30cdc39a5..df3c54cda 100644 --- a/src/icons/Club.tsx +++ b/src/icons/Club.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CoatHanger.tsx b/src/icons/CoatHanger.tsx index 7915be224..c3ee883d1 100644 --- a/src/icons/CoatHanger.tsx +++ b/src/icons/CoatHanger.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CodaLogo.tsx b/src/icons/CodaLogo.tsx new file mode 100644 index 000000000..8a8261103 --- /dev/null +++ b/src/icons/CodaLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CodaLogo: Icon = forwardRef((props, ref) => ( + +)); + +CodaLogo.displayName = "CodaLogo"; + +export default CodaLogo; diff --git a/src/icons/Code.tsx b/src/icons/Code.tsx index 0bfda2e5c..fca8f0d9d 100644 --- a/src/icons/Code.tsx +++ b/src/icons/Code.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CodeBlock.tsx b/src/icons/CodeBlock.tsx new file mode 100644 index 000000000..241ac9f6e --- /dev/null +++ b/src/icons/CodeBlock.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CodeBlock: Icon = forwardRef((props, ref) => ( + +)); + +CodeBlock.displayName = "CodeBlock"; + +export default CodeBlock; diff --git a/src/icons/CodeSimple.tsx b/src/icons/CodeSimple.tsx index e481c9100..9ba114b83 100644 --- a/src/icons/CodeSimple.tsx +++ b/src/icons/CodeSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CodepenLogo.tsx b/src/icons/CodepenLogo.tsx index 0ff330a9e..59d2229b5 100644 --- a/src/icons/CodepenLogo.tsx +++ b/src/icons/CodepenLogo.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CodesandboxLogo.tsx b/src/icons/CodesandboxLogo.tsx index b4398f61d..b315f153f 100644 --- a/src/icons/CodesandboxLogo.tsx +++ b/src/icons/CodesandboxLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Coffee.tsx b/src/icons/Coffee.tsx index 1513d90bb..95eb66614 100644 --- a/src/icons/Coffee.tsx +++ b/src/icons/Coffee.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Coin.tsx b/src/icons/Coin.tsx index 1b579c7c4..cc0734f5a 100644 --- a/src/icons/Coin.tsx +++ b/src/icons/Coin.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M232,104c0,24-40,48-104,48S24,128,24,104,64,56,128,56,232,80,232,104Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CoinVertical.tsx b/src/icons/CoinVertical.tsx index 413ba895e..6b6fb400e 100644 --- a/src/icons/CoinVertical.tsx +++ b/src/icons/CoinVertical.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Coins.tsx b/src/icons/Coins.tsx index 9ec40df70..7dea8e97d 100644 --- a/src/icons/Coins.tsx +++ b/src/icons/Coins.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Columns.tsx b/src/icons/Columns.tsx index 096e11ae8..0e35b36e9 100644 --- a/src/icons/Columns.tsx +++ b/src/icons/Columns.tsx @@ -6,28 +6,14 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - @@ -48,8 +34,7 @@ const weights = new Map([ [ "regular", <> - - + , ], [ diff --git a/src/icons/Command.tsx b/src/icons/Command.tsx index 4983a06df..cc4581392 100644 --- a/src/icons/Command.tsx +++ b/src/icons/Command.tsx @@ -12,49 +12,35 @@ const weights = new Map([ [ "duotone", <> - - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Compass.tsx b/src/icons/Compass.tsx index d3a229b46..00d5d9017 100644 --- a/src/icons/Compass.tsx +++ b/src/icons/Compass.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CompassTool.tsx b/src/icons/CompassTool.tsx new file mode 100644 index 000000000..1ee1f3ca6 --- /dev/null +++ b/src/icons/CompassTool.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CompassTool: Icon = forwardRef((props, ref) => ( + +)); + +CompassTool.displayName = "CompassTool"; + +export default CompassTool; diff --git a/src/icons/ComputerTower.tsx b/src/icons/ComputerTower.tsx index e3172029e..d30dccf54 100644 --- a/src/icons/ComputerTower.tsx +++ b/src/icons/ComputerTower.tsx @@ -6,23 +6,17 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ @@ -34,19 +28,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Confetti.tsx b/src/icons/Confetti.tsx index cb7f5213b..c5bdb95ac 100644 --- a/src/icons/Confetti.tsx +++ b/src/icons/Confetti.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ContactlessPayment.tsx b/src/icons/ContactlessPayment.tsx new file mode 100644 index 000000000..f88d179f2 --- /dev/null +++ b/src/icons/ContactlessPayment.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ContactlessPayment: Icon = forwardRef((props, ref) => ( + +)); + +ContactlessPayment.displayName = "ContactlessPayment"; + +export default ContactlessPayment; diff --git a/src/icons/Control.tsx b/src/icons/Control.tsx new file mode 100644 index 000000000..ea1d93ef5 --- /dev/null +++ b/src/icons/Control.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Control: Icon = forwardRef((props, ref) => ( + +)); + +Control.displayName = "Control"; + +export default Control; diff --git a/src/icons/Cookie.tsx b/src/icons/Cookie.tsx index 74fd1cc73..ef44be7d4 100644 --- a/src/icons/Cookie.tsx +++ b/src/icons/Cookie.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CookingPot.tsx b/src/icons/CookingPot.tsx index d8e1a0d0d..566e428f8 100644 --- a/src/icons/CookingPot.tsx +++ b/src/icons/CookingPot.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CopySimple.tsx b/src/icons/CopySimple.tsx index 0d34547c9..0b03517c5 100644 --- a/src/icons/CopySimple.tsx +++ b/src/icons/CopySimple.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Copyleft.tsx b/src/icons/Copyleft.tsx index cfd819df6..85a1a73f4 100644 --- a/src/icons/Copyleft.tsx +++ b/src/icons/Copyleft.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Copyright.tsx b/src/icons/Copyright.tsx index 7c9b0f977..14d9e6ceb 100644 --- a/src/icons/Copyright.tsx +++ b/src/icons/Copyright.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CornersIn.tsx b/src/icons/CornersIn.tsx index 892e35d5c..4496a2463 100644 --- a/src/icons/CornersIn.tsx +++ b/src/icons/CornersIn.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/CornersOut.tsx b/src/icons/CornersOut.tsx index e545048b7..fcbb525f5 100644 --- a/src/icons/CornersOut.tsx +++ b/src/icons/CornersOut.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Couch.tsx b/src/icons/Couch.tsx new file mode 100644 index 000000000..d3e20bfe2 --- /dev/null +++ b/src/icons/Couch.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Couch: Icon = forwardRef((props, ref) => ( + +)); + +Couch.displayName = "Couch"; + +export default Couch; diff --git a/src/icons/Cpu.tsx b/src/icons/Cpu.tsx index f208be82d..844b2514b 100644 --- a/src/icons/Cpu.tsx +++ b/src/icons/Cpu.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CreditCard.tsx b/src/icons/CreditCard.tsx index 815c7dd95..36a4c9453 100644 --- a/src/icons/CreditCard.tsx +++ b/src/icons/CreditCard.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Crop.tsx b/src/icons/Crop.tsx index 1f9135187..6066b797b 100644 --- a/src/icons/Crop.tsx +++ b/src/icons/Crop.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Cross.tsx b/src/icons/Cross.tsx new file mode 100644 index 000000000..7a87b61dc --- /dev/null +++ b/src/icons/Cross.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Cross: Icon = forwardRef((props, ref) => ( + +)); + +Cross.displayName = "Cross"; + +export default Cross; diff --git a/src/icons/Crosshair.tsx b/src/icons/Crosshair.tsx index 477ad16d6..5ccb5c9c9 100644 --- a/src/icons/Crosshair.tsx +++ b/src/icons/Crosshair.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CrosshairSimple.tsx b/src/icons/CrosshairSimple.tsx index b2f9fd221..e17789655 100644 --- a/src/icons/CrosshairSimple.tsx +++ b/src/icons/CrosshairSimple.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Crown.tsx b/src/icons/Crown.tsx index e02e214c1..b8aca8ca4 100644 --- a/src/icons/Crown.tsx +++ b/src/icons/Crown.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CrownSimple.tsx b/src/icons/CrownSimple.tsx index 251204e51..e7a1e5f1b 100644 --- a/src/icons/CrownSimple.tsx +++ b/src/icons/CrownSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Cube.tsx b/src/icons/Cube.tsx index df285edee..2f2209417 100644 --- a/src/icons/Cube.tsx +++ b/src/icons/Cube.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CubeFocus.tsx b/src/icons/CubeFocus.tsx new file mode 100644 index 000000000..6d7afa54a --- /dev/null +++ b/src/icons/CubeFocus.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CubeFocus: Icon = forwardRef((props, ref) => ( + +)); + +CubeFocus.displayName = "CubeFocus"; + +export default CubeFocus; diff --git a/src/icons/CubeTransparent.tsx b/src/icons/CubeTransparent.tsx new file mode 100644 index 000000000..0650a32a4 --- /dev/null +++ b/src/icons/CubeTransparent.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CubeTransparent: Icon = forwardRef((props, ref) => ( + +)); + +CubeTransparent.displayName = "CubeTransparent"; + +export default CubeTransparent; diff --git a/src/icons/CurrencyBtc.tsx b/src/icons/CurrencyBtc.tsx index 0d987fc05..4846d7fea 100644 --- a/src/icons/CurrencyBtc.tsx +++ b/src/icons/CurrencyBtc.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyCircleDollar.tsx b/src/icons/CurrencyCircleDollar.tsx index ca3165b35..1a6288e42 100644 --- a/src/icons/CurrencyCircleDollar.tsx +++ b/src/icons/CurrencyCircleDollar.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyCny.tsx b/src/icons/CurrencyCny.tsx index d99073f55..b6189c53d 100644 --- a/src/icons/CurrencyCny.tsx +++ b/src/icons/CurrencyCny.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyDollar.tsx b/src/icons/CurrencyDollar.tsx index 7c2e89511..60b25127c 100644 --- a/src/icons/CurrencyDollar.tsx +++ b/src/icons/CurrencyDollar.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyDollarSimple.tsx b/src/icons/CurrencyDollarSimple.tsx index 7237c186b..cd9ad0033 100644 --- a/src/icons/CurrencyDollarSimple.tsx +++ b/src/icons/CurrencyDollarSimple.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyEth.tsx b/src/icons/CurrencyEth.tsx index 843832407..11edfa4d8 100644 --- a/src/icons/CurrencyEth.tsx +++ b/src/icons/CurrencyEth.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyEur.tsx b/src/icons/CurrencyEur.tsx index 46bbf5655..a1347eadf 100644 --- a/src/icons/CurrencyEur.tsx +++ b/src/icons/CurrencyEur.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyGbp.tsx b/src/icons/CurrencyGbp.tsx index 93827c189..ebca22f36 100644 --- a/src/icons/CurrencyGbp.tsx +++ b/src/icons/CurrencyGbp.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyInr.tsx b/src/icons/CurrencyInr.tsx index 262d4bc5d..1576bf169 100644 --- a/src/icons/CurrencyInr.tsx +++ b/src/icons/CurrencyInr.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyJpy.tsx b/src/icons/CurrencyJpy.tsx index 76847b672..210e21937 100644 --- a/src/icons/CurrencyJpy.tsx +++ b/src/icons/CurrencyJpy.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyKrw.tsx b/src/icons/CurrencyKrw.tsx index 2c16a064d..0b985e4f3 100644 --- a/src/icons/CurrencyKrw.tsx +++ b/src/icons/CurrencyKrw.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyKzt.tsx b/src/icons/CurrencyKzt.tsx index 522a20b39..ae777cc8b 100644 --- a/src/icons/CurrencyKzt.tsx +++ b/src/icons/CurrencyKzt.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/CurrencyNgn.tsx b/src/icons/CurrencyNgn.tsx index 351b47a2d..5d790cbcb 100644 --- a/src/icons/CurrencyNgn.tsx +++ b/src/icons/CurrencyNgn.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CurrencyRub.tsx b/src/icons/CurrencyRub.tsx index 88f37983a..3cd3527ae 100644 --- a/src/icons/CurrencyRub.tsx +++ b/src/icons/CurrencyRub.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Cursor.tsx b/src/icons/Cursor.tsx index 5e10058c1..e0472b89d 100644 --- a/src/icons/Cursor.tsx +++ b/src/icons/Cursor.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/CursorClick.tsx b/src/icons/CursorClick.tsx new file mode 100644 index 000000000..864eafed4 --- /dev/null +++ b/src/icons/CursorClick.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const CursorClick: Icon = forwardRef((props, ref) => ( + +)); + +CursorClick.displayName = "CursorClick"; + +export default CursorClick; diff --git a/src/icons/CursorText.tsx b/src/icons/CursorText.tsx index ac1d778ac..a3528173e 100644 --- a/src/icons/CursorText.tsx +++ b/src/icons/CursorText.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Cylinder.tsx b/src/icons/Cylinder.tsx index b975858c4..da81fd61d 100644 --- a/src/icons/Cylinder.tsx +++ b/src/icons/Cylinder.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Database.tsx b/src/icons/Database.tsx index a3239904b..47a37aaca 100644 --- a/src/icons/Database.tsx +++ b/src/icons/Database.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Desktop.tsx b/src/icons/Desktop.tsx index e09401cee..a3072ba3c 100644 --- a/src/icons/Desktop.tsx +++ b/src/icons/Desktop.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DesktopTower.tsx b/src/icons/DesktopTower.tsx index 1132b05cb..498d87692 100644 --- a/src/icons/DesktopTower.tsx +++ b/src/icons/DesktopTower.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Detective.tsx b/src/icons/Detective.tsx index ebff5327a..0fd9fcc87 100644 --- a/src/icons/Detective.tsx +++ b/src/icons/Detective.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DevToLogo.tsx b/src/icons/DevToLogo.tsx new file mode 100644 index 000000000..5d4665080 --- /dev/null +++ b/src/icons/DevToLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const DevToLogo: Icon = forwardRef((props, ref) => ( + +)); + +DevToLogo.displayName = "DevToLogo"; + +export default DevToLogo; diff --git a/src/icons/DeviceMobile.tsx b/src/icons/DeviceMobile.tsx index e7e99b671..ef4a13425 100644 --- a/src/icons/DeviceMobile.tsx +++ b/src/icons/DeviceMobile.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DeviceMobileCamera.tsx b/src/icons/DeviceMobileCamera.tsx index 9f5e4dc44..2fdfa40cd 100644 --- a/src/icons/DeviceMobileCamera.tsx +++ b/src/icons/DeviceMobileCamera.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DeviceMobileSpeaker.tsx b/src/icons/DeviceMobileSpeaker.tsx index d1dcef675..7224f0969 100644 --- a/src/icons/DeviceMobileSpeaker.tsx +++ b/src/icons/DeviceMobileSpeaker.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DeviceTablet.tsx b/src/icons/DeviceTablet.tsx index aa862c5fc..46271f99b 100644 --- a/src/icons/DeviceTablet.tsx +++ b/src/icons/DeviceTablet.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DeviceTabletCamera.tsx b/src/icons/DeviceTabletCamera.tsx index 7ef7a8324..25fe65c64 100644 --- a/src/icons/DeviceTabletCamera.tsx +++ b/src/icons/DeviceTabletCamera.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DeviceTabletSpeaker.tsx b/src/icons/DeviceTabletSpeaker.tsx index 3e6acb82a..79de6e68a 100644 --- a/src/icons/DeviceTabletSpeaker.tsx +++ b/src/icons/DeviceTabletSpeaker.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Devices.tsx b/src/icons/Devices.tsx new file mode 100644 index 000000000..91737056e --- /dev/null +++ b/src/icons/Devices.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Devices: Icon = forwardRef((props, ref) => ( + +)); + +Devices.displayName = "Devices"; + +export default Devices; diff --git a/src/icons/Diamond.tsx b/src/icons/Diamond.tsx index 5cabba7a7..509de96e2 100644 --- a/src/icons/Diamond.tsx +++ b/src/icons/Diamond.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiamondsFour.tsx b/src/icons/DiamondsFour.tsx index 8ca8215fa..2e2a56e50 100644 --- a/src/icons/DiamondsFour.tsx +++ b/src/icons/DiamondsFour.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiceFive.tsx b/src/icons/DiceFive.tsx index 9ddef0ce3..71fcc434e 100644 --- a/src/icons/DiceFive.tsx +++ b/src/icons/DiceFive.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiceFour.tsx b/src/icons/DiceFour.tsx index f395f38cd..778bea7ab 100644 --- a/src/icons/DiceFour.tsx +++ b/src/icons/DiceFour.tsx @@ -12,34 +12,35 @@ const weights = new Map([ [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiceOne.tsx b/src/icons/DiceOne.tsx index 141bc92e7..18d142134 100644 --- a/src/icons/DiceOne.tsx +++ b/src/icons/DiceOne.tsx @@ -12,34 +12,35 @@ const weights = new Map([ [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiceSix.tsx b/src/icons/DiceSix.tsx index 5e33bcc2f..a91ccdf8c 100644 --- a/src/icons/DiceSix.tsx +++ b/src/icons/DiceSix.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiceThree.tsx b/src/icons/DiceThree.tsx index 3380c31ae..fa1505d9a 100644 --- a/src/icons/DiceThree.tsx +++ b/src/icons/DiceThree.tsx @@ -12,34 +12,35 @@ const weights = new Map([ [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiceTwo.tsx b/src/icons/DiceTwo.tsx index a9ddf56cf..69296b045 100644 --- a/src/icons/DiceTwo.tsx +++ b/src/icons/DiceTwo.tsx @@ -12,34 +12,35 @@ const weights = new Map([ [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Disc.tsx b/src/icons/Disc.tsx index a29f743ba..0420a1031 100644 --- a/src/icons/Disc.tsx +++ b/src/icons/Disc.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DiscordLogo.tsx b/src/icons/DiscordLogo.tsx index 6f890b261..7bf78f27c 100644 --- a/src/icons/DiscordLogo.tsx +++ b/src/icons/DiscordLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Divide.tsx b/src/icons/Divide.tsx index d11d52943..46a03c257 100644 --- a/src/icons/Divide.tsx +++ b/src/icons/Divide.tsx @@ -6,19 +6,23 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Dna.tsx b/src/icons/Dna.tsx new file mode 100644 index 000000000..9e32a0713 --- /dev/null +++ b/src/icons/Dna.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Dna: Icon = forwardRef((props, ref) => ( + +)); + +Dna.displayName = "Dna"; + +export default Dna; diff --git a/src/icons/Dog.tsx b/src/icons/Dog.tsx index ab0e9397e..9d1c34a07 100644 --- a/src/icons/Dog.tsx +++ b/src/icons/Dog.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Door.tsx b/src/icons/Door.tsx index cf08c0a5b..6e25b49f6 100644 --- a/src/icons/Door.tsx +++ b/src/icons/Door.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M200,40V224H56V40a8,8,0,0,1,8-8H192A8,8,0,0,1,200,40Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DoorOpen.tsx b/src/icons/DoorOpen.tsx new file mode 100644 index 000000000..b2088f58a --- /dev/null +++ b/src/icons/DoorOpen.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const DoorOpen: Icon = forwardRef((props, ref) => ( + +)); + +DoorOpen.displayName = "DoorOpen"; + +export default DoorOpen; diff --git a/src/icons/Dot.tsx b/src/icons/Dot.tsx new file mode 100644 index 000000000..39fd81c47 --- /dev/null +++ b/src/icons/Dot.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Dot: Icon = forwardRef((props, ref) => ( + +)); + +Dot.displayName = "Dot"; + +export default Dot; diff --git a/src/icons/DotOutline.tsx b/src/icons/DotOutline.tsx new file mode 100644 index 000000000..fce3d5589 --- /dev/null +++ b/src/icons/DotOutline.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const DotOutline: Icon = forwardRef((props, ref) => ( + +)); + +DotOutline.displayName = "DotOutline"; + +export default DotOutline; diff --git a/src/icons/DotsNine.tsx b/src/icons/DotsNine.tsx index a36ea6504..a520a5713 100644 --- a/src/icons/DotsNine.tsx +++ b/src/icons/DotsNine.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DotsSix.tsx b/src/icons/DotsSix.tsx index a62f54f85..e91287356 100644 --- a/src/icons/DotsSix.tsx +++ b/src/icons/DotsSix.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/DotsSixVertical.tsx b/src/icons/DotsSixVertical.tsx index ce6038913..135c8d517 100644 --- a/src/icons/DotsSixVertical.tsx +++ b/src/icons/DotsSixVertical.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/DotsThree.tsx b/src/icons/DotsThree.tsx index 02a6fb0a8..f81c8fb84 100644 --- a/src/icons/DotsThree.tsx +++ b/src/icons/DotsThree.tsx @@ -6,39 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DotsThreeCircle.tsx b/src/icons/DotsThreeCircle.tsx index adec08a5e..50be97838 100644 --- a/src/icons/DotsThreeCircle.tsx +++ b/src/icons/DotsThreeCircle.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DotsThreeCircleVertical.tsx b/src/icons/DotsThreeCircleVertical.tsx index 941980133..0a815c4d4 100644 --- a/src/icons/DotsThreeCircleVertical.tsx +++ b/src/icons/DotsThreeCircleVertical.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DotsThreeOutline.tsx b/src/icons/DotsThreeOutline.tsx index 98fb0adf4..5b3de0aa9 100644 --- a/src/icons/DotsThreeOutline.tsx +++ b/src/icons/DotsThreeOutline.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DotsThreeOutlineVertical.tsx b/src/icons/DotsThreeOutlineVertical.tsx index 256d32e24..d44f06f24 100644 --- a/src/icons/DotsThreeOutlineVertical.tsx +++ b/src/icons/DotsThreeOutlineVertical.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DotsThreeVertical.tsx b/src/icons/DotsThreeVertical.tsx index 8d624ed9d..d4001dbe5 100644 --- a/src/icons/DotsThreeVertical.tsx +++ b/src/icons/DotsThreeVertical.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Download.tsx b/src/icons/Download.tsx index b52480ef2..7f660826a 100644 --- a/src/icons/Download.tsx +++ b/src/icons/Download.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M232,136v64a8,8,0,0,1-8,8H32a8,8,0,0,1-8-8V136a8,8,0,0,1,8-8H224A8,8,0,0,1,232,136Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DownloadSimple.tsx b/src/icons/DownloadSimple.tsx index df2b70616..015960999 100644 --- a/src/icons/DownloadSimple.tsx +++ b/src/icons/DownloadSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Dress.tsx b/src/icons/Dress.tsx new file mode 100644 index 000000000..0297d41cf --- /dev/null +++ b/src/icons/Dress.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Dress: Icon = forwardRef((props, ref) => ( + +)); + +Dress.displayName = "Dress"; + +export default Dress; diff --git a/src/icons/DribbbleLogo.tsx b/src/icons/DribbbleLogo.tsx index 4b06c52d7..5a2dbe7a2 100644 --- a/src/icons/DribbbleLogo.tsx +++ b/src/icons/DribbbleLogo.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Drop.tsx b/src/icons/Drop.tsx index ec9c6c856..c3a5c310e 100644 --- a/src/icons/Drop.tsx +++ b/src/icons/Drop.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DropHalf.tsx b/src/icons/DropHalf.tsx index b4dca97b9..f09286a6a 100644 --- a/src/icons/DropHalf.tsx +++ b/src/icons/DropHalf.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DropHalfBottom.tsx b/src/icons/DropHalfBottom.tsx index f06d9ed77..c0af829b3 100644 --- a/src/icons/DropHalfBottom.tsx +++ b/src/icons/DropHalfBottom.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/DropboxLogo.tsx b/src/icons/DropboxLogo.tsx new file mode 100644 index 000000000..d78f2e6a4 --- /dev/null +++ b/src/icons/DropboxLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const DropboxLogo: Icon = forwardRef((props, ref) => ( + +)); + +DropboxLogo.displayName = "DropboxLogo"; + +export default DropboxLogo; diff --git a/src/icons/Ear.tsx b/src/icons/Ear.tsx index 14be61688..f6836e047 100644 --- a/src/icons/Ear.tsx +++ b/src/icons/Ear.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EarSlash.tsx b/src/icons/EarSlash.tsx index d28c0e151..6228473aa 100644 --- a/src/icons/EarSlash.tsx +++ b/src/icons/EarSlash.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Egg.tsx b/src/icons/Egg.tsx index a1684af22..39c6c455c 100644 --- a/src/icons/Egg.tsx +++ b/src/icons/Egg.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,152a80,80,0,0,1-160,0C48,88,96,24,128,24S208,88,208,152Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EggCrack.tsx b/src/icons/EggCrack.tsx index 6c809899e..332fb202a 100644 --- a/src/icons/EggCrack.tsx +++ b/src/icons/EggCrack.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,152a80,80,0,0,1-160,0C48,88,96,24,128,24S208,88,208,152Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Eject.tsx b/src/icons/Eject.tsx index 0a0ca1f0e..277d4082a 100644 --- a/src/icons/Eject.tsx +++ b/src/icons/Eject.tsx @@ -6,50 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EjectSimple.tsx b/src/icons/EjectSimple.tsx index 620acb8ad..0b18d8563 100644 --- a/src/icons/EjectSimple.tsx +++ b/src/icons/EjectSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Elevator.tsx b/src/icons/Elevator.tsx new file mode 100644 index 000000000..e59909a63 --- /dev/null +++ b/src/icons/Elevator.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Elevator: Icon = forwardRef((props, ref) => ( + +)); + +Elevator.displayName = "Elevator"; + +export default Elevator; diff --git a/src/icons/Engine.tsx b/src/icons/Engine.tsx new file mode 100644 index 000000000..5f8e65fc3 --- /dev/null +++ b/src/icons/Engine.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Engine: Icon = forwardRef((props, ref) => ( + +)); + +Engine.displayName = "Engine"; + +export default Engine; diff --git a/src/icons/Envelope.tsx b/src/icons/Envelope.tsx index 8a00e09f5..124330f67 100644 --- a/src/icons/Envelope.tsx +++ b/src/icons/Envelope.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EnvelopeOpen.tsx b/src/icons/EnvelopeOpen.tsx index 8215c9231..8b903f977 100644 --- a/src/icons/EnvelopeOpen.tsx +++ b/src/icons/EnvelopeOpen.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EnvelopeSimple.tsx b/src/icons/EnvelopeSimple.tsx index ffbabd86a..27bf4d414 100644 --- a/src/icons/EnvelopeSimple.tsx +++ b/src/icons/EnvelopeSimple.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EnvelopeSimpleOpen.tsx b/src/icons/EnvelopeSimpleOpen.tsx index f73b39dab..d7e96874c 100644 --- a/src/icons/EnvelopeSimpleOpen.tsx +++ b/src/icons/EnvelopeSimpleOpen.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Equalizer.tsx b/src/icons/Equalizer.tsx index 5100eac4b..172bc6ae6 100644 --- a/src/icons/Equalizer.tsx +++ b/src/icons/Equalizer.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Equals.tsx b/src/icons/Equals.tsx index d566a8a64..ea542eef3 100644 --- a/src/icons/Equals.tsx +++ b/src/icons/Equals.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Eraser.tsx b/src/icons/Eraser.tsx index 62ea12aa6..5b212dacd 100644 --- a/src/icons/Eraser.tsx +++ b/src/icons/Eraser.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EscalatorDown.tsx b/src/icons/EscalatorDown.tsx new file mode 100644 index 000000000..4e7d17188 --- /dev/null +++ b/src/icons/EscalatorDown.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const EscalatorDown: Icon = forwardRef((props, ref) => ( + +)); + +EscalatorDown.displayName = "EscalatorDown"; + +export default EscalatorDown; diff --git a/src/icons/EscalatorUp.tsx b/src/icons/EscalatorUp.tsx new file mode 100644 index 000000000..fb2af52d1 --- /dev/null +++ b/src/icons/EscalatorUp.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const EscalatorUp: Icon = forwardRef((props, ref) => ( + +)); + +EscalatorUp.displayName = "EscalatorUp"; + +export default EscalatorUp; diff --git a/src/icons/Exam.tsx b/src/icons/Exam.tsx index 210be260b..5ebd66923 100644 --- a/src/icons/Exam.tsx +++ b/src/icons/Exam.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,56V216l-32-16-32,16-32-16L96,216,64,200,32,216V56a8,8,0,0,1,8-8H216A8,8,0,0,1,224,56Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Exclude.tsx b/src/icons/Exclude.tsx new file mode 100644 index 000000000..bc7f2c721 --- /dev/null +++ b/src/icons/Exclude.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Exclude: Icon = forwardRef((props, ref) => ( + +)); + +Exclude.displayName = "Exclude"; + +export default Exclude; diff --git a/src/icons/ExcludeSquare.tsx b/src/icons/ExcludeSquare.tsx new file mode 100644 index 000000000..6f5c06f5b --- /dev/null +++ b/src/icons/ExcludeSquare.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ExcludeSquare: Icon = forwardRef((props, ref) => ( + +)); + +ExcludeSquare.displayName = "ExcludeSquare"; + +export default ExcludeSquare; diff --git a/src/icons/Export.tsx b/src/icons/Export.tsx index ea8041b3f..c49edd5fb 100644 --- a/src/icons/Export.tsx +++ b/src/icons/Export.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Eye.tsx b/src/icons/Eye.tsx index 2f250ddf3..ff0c87f56 100644 --- a/src/icons/Eye.tsx +++ b/src/icons/Eye.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EyeClosed.tsx b/src/icons/EyeClosed.tsx index 8aa88d34a..0c5c1a4b6 100644 --- a/src/icons/EyeClosed.tsx +++ b/src/icons/EyeClosed.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EyeSlash.tsx b/src/icons/EyeSlash.tsx index 28d6c3b51..23442c070 100644 --- a/src/icons/EyeSlash.tsx +++ b/src/icons/EyeSlash.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Eyedropper.tsx b/src/icons/Eyedropper.tsx index 02899dcb6..5034bb454 100644 --- a/src/icons/Eyedropper.tsx +++ b/src/icons/Eyedropper.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/EyedropperSample.tsx b/src/icons/EyedropperSample.tsx index fdda587d7..435f34927 100644 --- a/src/icons/EyedropperSample.tsx +++ b/src/icons/EyedropperSample.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Eyeglasses.tsx b/src/icons/Eyeglasses.tsx index 836e4653d..ecbfbd9ae 100644 --- a/src/icons/Eyeglasses.tsx +++ b/src/icons/Eyeglasses.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M104,164a36,36,0,1,1-36-36A36,36,0,0,1,104,164Zm84-36a36,36,0,1,0,36,36A36,36,0,0,0,188,128Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FaceMask.tsx b/src/icons/FaceMask.tsx index 8a43343bd..d85ed7e55 100644 --- a/src/icons/FaceMask.tsx +++ b/src/icons/FaceMask.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FacebookLogo.tsx b/src/icons/FacebookLogo.tsx index f0dbcdf74..02fbbf14c 100644 --- a/src/icons/FacebookLogo.tsx +++ b/src/icons/FacebookLogo.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Factory.tsx b/src/icons/Factory.tsx index 16f8e2533..66369c5a5 100644 --- a/src/icons/Factory.tsx +++ b/src/icons/Factory.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Faders.tsx b/src/icons/Faders.tsx index f88f2f828..5cac9afe1 100644 --- a/src/icons/Faders.tsx +++ b/src/icons/Faders.tsx @@ -6,31 +6,32 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ diff --git a/src/icons/FadersHorizontal.tsx b/src/icons/FadersHorizontal.tsx index 5e68ea2d3..f7950a937 100644 --- a/src/icons/FadersHorizontal.tsx +++ b/src/icons/FadersHorizontal.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Fan.tsx b/src/icons/Fan.tsx new file mode 100644 index 000000000..eb7eef694 --- /dev/null +++ b/src/icons/Fan.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Fan: Icon = forwardRef((props, ref) => ( + +)); + +Fan.displayName = "Fan"; + +export default Fan; diff --git a/src/icons/FastForward.tsx b/src/icons/FastForward.tsx index b40197963..edf937b2c 100644 --- a/src/icons/FastForward.tsx +++ b/src/icons/FastForward.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FastForwardCircle.tsx b/src/icons/FastForwardCircle.tsx index 5c399790c..392eb8122 100644 --- a/src/icons/FastForwardCircle.tsx +++ b/src/icons/FastForwardCircle.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Feather.tsx b/src/icons/Feather.tsx new file mode 100644 index 000000000..847d49524 --- /dev/null +++ b/src/icons/Feather.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Feather: Icon = forwardRef((props, ref) => ( + +)); + +Feather.displayName = "Feather"; + +export default Feather; diff --git a/src/icons/FigmaLogo.tsx b/src/icons/FigmaLogo.tsx index 612e0fd37..abd094338 100644 --- a/src/icons/FigmaLogo.tsx +++ b/src/icons/FigmaLogo.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/File.tsx b/src/icons/File.tsx index 9ea6c1bb0..a5e043c7f 100644 --- a/src/icons/File.tsx +++ b/src/icons/File.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileArchive.tsx b/src/icons/FileArchive.tsx new file mode 100644 index 000000000..0a1d96b4b --- /dev/null +++ b/src/icons/FileArchive.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FileArchive: Icon = forwardRef((props, ref) => ( + +)); + +FileArchive.displayName = "FileArchive"; + +export default FileArchive; diff --git a/src/icons/FileArrowDown.tsx b/src/icons/FileArrowDown.tsx index 46a2a2433..7c88cf87a 100644 --- a/src/icons/FileArrowDown.tsx +++ b/src/icons/FileArrowDown.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileArrowUp.tsx b/src/icons/FileArrowUp.tsx index 79bef653e..6f371cb6c 100644 --- a/src/icons/FileArrowUp.tsx +++ b/src/icons/FileArrowUp.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileAudio.tsx b/src/icons/FileAudio.tsx index bc622e4d8..2f6ad829c 100644 --- a/src/icons/FileAudio.tsx +++ b/src/icons/FileAudio.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileCloud.tsx b/src/icons/FileCloud.tsx index b0c1c095f..ccbadad33 100644 --- a/src/icons/FileCloud.tsx +++ b/src/icons/FileCloud.tsx @@ -6,38 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileCode.tsx b/src/icons/FileCode.tsx index 72a7617fc..8a34bc128 100644 --- a/src/icons/FileCode.tsx +++ b/src/icons/FileCode.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileCss.tsx b/src/icons/FileCss.tsx index bc8780302..5fc78d33a 100644 --- a/src/icons/FileCss.tsx +++ b/src/icons/FileCss.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileCsv.tsx b/src/icons/FileCsv.tsx index dfe22c943..a478a9239 100644 --- a/src/icons/FileCsv.tsx +++ b/src/icons/FileCsv.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileDashed.tsx b/src/icons/FileDashed.tsx new file mode 100644 index 000000000..4704cebe0 --- /dev/null +++ b/src/icons/FileDashed.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FileDashed: Icon = forwardRef((props, ref) => ( + +)); + +FileDashed.displayName = "FileDashed"; + +export default FileDashed; diff --git a/src/icons/FileDoc.tsx b/src/icons/FileDoc.tsx index d95e201a8..45c261573 100644 --- a/src/icons/FileDoc.tsx +++ b/src/icons/FileDoc.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileDotted.tsx b/src/icons/FileDotted.tsx deleted file mode 100644 index 4aa4a251b..000000000 --- a/src/icons/FileDotted.tsx +++ /dev/null @@ -1,51 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const FileDotted: Icon = forwardRef((props, ref) => ( - -)); - -FileDotted.displayName = "FileDotted"; - -export default FileDotted; diff --git a/src/icons/FileHtml.tsx b/src/icons/FileHtml.tsx index b5341ae6d..e914bb2a5 100644 --- a/src/icons/FileHtml.tsx +++ b/src/icons/FileHtml.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - - - - - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileImage.tsx b/src/icons/FileImage.tsx index 60f4048b1..ed612014e 100644 --- a/src/icons/FileImage.tsx +++ b/src/icons/FileImage.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileJpg.tsx b/src/icons/FileJpg.tsx index 38c078523..f498e897c 100644 --- a/src/icons/FileJpg.tsx +++ b/src/icons/FileJpg.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileJs.tsx b/src/icons/FileJs.tsx index 389d3935f..44e969350 100644 --- a/src/icons/FileJs.tsx +++ b/src/icons/FileJs.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileJsx.tsx b/src/icons/FileJsx.tsx index 912976675..950d1726c 100644 --- a/src/icons/FileJsx.tsx +++ b/src/icons/FileJsx.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileLock.tsx b/src/icons/FileLock.tsx index b539ed724..0cd15265d 100644 --- a/src/icons/FileLock.tsx +++ b/src/icons/FileLock.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileMagnifyingGlass.tsx b/src/icons/FileMagnifyingGlass.tsx new file mode 100644 index 000000000..05640ef50 --- /dev/null +++ b/src/icons/FileMagnifyingGlass.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FileMagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +FileMagnifyingGlass.displayName = "FileMagnifyingGlass"; + +export default FileMagnifyingGlass; diff --git a/src/icons/FileMinus.tsx b/src/icons/FileMinus.tsx index c7e2fb23d..a5d3e9c5d 100644 --- a/src/icons/FileMinus.tsx +++ b/src/icons/FileMinus.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FilePdf.tsx b/src/icons/FilePdf.tsx index 6a99bf86f..a3a5a6e41 100644 --- a/src/icons/FilePdf.tsx +++ b/src/icons/FilePdf.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FilePlus.tsx b/src/icons/FilePlus.tsx index 633ae3939..6ff780173 100644 --- a/src/icons/FilePlus.tsx +++ b/src/icons/FilePlus.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FilePng.tsx b/src/icons/FilePng.tsx index 3ca99b98f..d9006c86f 100644 --- a/src/icons/FilePng.tsx +++ b/src/icons/FilePng.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FilePpt.tsx b/src/icons/FilePpt.tsx index a76253bbb..6032f1a4c 100644 --- a/src/icons/FilePpt.tsx +++ b/src/icons/FilePpt.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileRs.tsx b/src/icons/FileRs.tsx index afa6d19db..4e889f087 100644 --- a/src/icons/FileRs.tsx +++ b/src/icons/FileRs.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileSearch.tsx b/src/icons/FileSearch.tsx deleted file mode 100644 index 2f218e284..000000000 --- a/src/icons/FileSearch.tsx +++ /dev/null @@ -1,52 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const FileSearch: Icon = forwardRef((props, ref) => ( - -)); - -FileSearch.displayName = "FileSearch"; - -export default FileSearch; diff --git a/src/icons/FileSql.tsx b/src/icons/FileSql.tsx new file mode 100644 index 000000000..aafa2c8ca --- /dev/null +++ b/src/icons/FileSql.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FileSql: Icon = forwardRef((props, ref) => ( + +)); + +FileSql.displayName = "FileSql"; + +export default FileSql; diff --git a/src/icons/FileSvg.tsx b/src/icons/FileSvg.tsx new file mode 100644 index 000000000..1f9adbafb --- /dev/null +++ b/src/icons/FileSvg.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FileSvg: Icon = forwardRef((props, ref) => ( + +)); + +FileSvg.displayName = "FileSvg"; + +export default FileSvg; diff --git a/src/icons/FileText.tsx b/src/icons/FileText.tsx index 6e51fa9d5..dac966902 100644 --- a/src/icons/FileText.tsx +++ b/src/icons/FileText.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileTs.tsx b/src/icons/FileTs.tsx index 92f62ba18..dcd430708 100644 --- a/src/icons/FileTs.tsx +++ b/src/icons/FileTs.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileTsx.tsx b/src/icons/FileTsx.tsx index a48e0e18e..421628db0 100644 --- a/src/icons/FileTsx.tsx +++ b/src/icons/FileTsx.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileVideo.tsx b/src/icons/FileVideo.tsx index 4f4c0de54..7444465d0 100644 --- a/src/icons/FileVideo.tsx +++ b/src/icons/FileVideo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileVue.tsx b/src/icons/FileVue.tsx index e613f5408..249586023 100644 --- a/src/icons/FileVue.tsx +++ b/src/icons/FileVue.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileX.tsx b/src/icons/FileX.tsx index 807c0537b..a7a51ee75 100644 --- a/src/icons/FileX.tsx +++ b/src/icons/FileX.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileXls.tsx b/src/icons/FileXls.tsx index e5cec3ce9..5bab2b8b3 100644 --- a/src/icons/FileXls.tsx +++ b/src/icons/FileXls.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FileZip.tsx b/src/icons/FileZip.tsx index df5226fb2..d32969644 100644 --- a/src/icons/FileZip.tsx +++ b/src/icons/FileZip.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Files.tsx b/src/icons/Files.tsx index 5bee5ea33..5a699dd54 100644 --- a/src/icons/Files.tsx +++ b/src/icons/Files.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,72V184a8,8,0,0,1-8,8H176V104L136,64H80V40a8,8,0,0,1,8-8h80Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FilmReel.tsx b/src/icons/FilmReel.tsx new file mode 100644 index 000000000..2fce331d0 --- /dev/null +++ b/src/icons/FilmReel.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FilmReel: Icon = forwardRef((props, ref) => ( + +)); + +FilmReel.displayName = "FilmReel"; + +export default FilmReel; diff --git a/src/icons/FilmScript.tsx b/src/icons/FilmScript.tsx index e813af43c..1cee5b0da 100644 --- a/src/icons/FilmScript.tsx +++ b/src/icons/FilmScript.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/FilmSlate.tsx b/src/icons/FilmSlate.tsx index b3f7a8de2..61abb1f6f 100644 --- a/src/icons/FilmSlate.tsx +++ b/src/icons/FilmSlate.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FilmStrip.tsx b/src/icons/FilmStrip.tsx index 021e49635..71b839a9e 100644 --- a/src/icons/FilmStrip.tsx +++ b/src/icons/FilmStrip.tsx @@ -6,25 +6,23 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Fingerprint.tsx b/src/icons/Fingerprint.tsx index 6cb9c5dc3..2ff0061ef 100644 --- a/src/icons/Fingerprint.tsx +++ b/src/icons/Fingerprint.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FingerprintSimple.tsx b/src/icons/FingerprintSimple.tsx index aeffa9096..f6c3ef14c 100644 --- a/src/icons/FingerprintSimple.tsx +++ b/src/icons/FingerprintSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FinnTheHuman.tsx b/src/icons/FinnTheHuman.tsx index f6b2fac9c..48ebc322c 100644 --- a/src/icons/FinnTheHuman.tsx +++ b/src/icons/FinnTheHuman.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Fire.tsx b/src/icons/Fire.tsx index 2faa2dd76..321ae07eb 100644 --- a/src/icons/Fire.tsx +++ b/src/icons/Fire.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FireExtinguisher.tsx b/src/icons/FireExtinguisher.tsx new file mode 100644 index 000000000..1f3c017fb --- /dev/null +++ b/src/icons/FireExtinguisher.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FireExtinguisher: Icon = forwardRef((props, ref) => ( + +)); + +FireExtinguisher.displayName = "FireExtinguisher"; + +export default FireExtinguisher; diff --git a/src/icons/FireSimple.tsx b/src/icons/FireSimple.tsx index 1c5951a29..51ee8bc25 100644 --- a/src/icons/FireSimple.tsx +++ b/src/icons/FireSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FirstAid.tsx b/src/icons/FirstAid.tsx index 03d0dd5ce..20347e11d 100644 --- a/src/icons/FirstAid.tsx +++ b/src/icons/FirstAid.tsx @@ -6,15 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - + , ], diff --git a/src/icons/FirstAidKit.tsx b/src/icons/FirstAidKit.tsx index 60888c0d7..7bcf9dc7f 100644 --- a/src/icons/FirstAidKit.tsx +++ b/src/icons/FirstAidKit.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Fish.tsx b/src/icons/Fish.tsx index 415290060..16f7cae49 100644 --- a/src/icons/Fish.tsx +++ b/src/icons/Fish.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FishSimple.tsx b/src/icons/FishSimple.tsx index 412ea45c6..4df51de90 100644 --- a/src/icons/FishSimple.tsx +++ b/src/icons/FishSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Flag.tsx b/src/icons/Flag.tsx index 5a11e9c07..2131f86cf 100644 --- a/src/icons/Flag.tsx +++ b/src/icons/Flag.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FlagBanner.tsx b/src/icons/FlagBanner.tsx index 817693833..668a12cdd 100644 --- a/src/icons/FlagBanner.tsx +++ b/src/icons/FlagBanner.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FlagCheckered.tsx b/src/icons/FlagCheckered.tsx index cf03bc820..7df807f6f 100644 --- a/src/icons/FlagCheckered.tsx +++ b/src/icons/FlagCheckered.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FlagPennant.tsx b/src/icons/FlagPennant.tsx new file mode 100644 index 000000000..fad4d60e1 --- /dev/null +++ b/src/icons/FlagPennant.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FlagPennant: Icon = forwardRef((props, ref) => ( + +)); + +FlagPennant.displayName = "FlagPennant"; + +export default FlagPennant; diff --git a/src/icons/Flame.tsx b/src/icons/Flame.tsx index 9814fdbf6..79fa3accb 100644 --- a/src/icons/Flame.tsx +++ b/src/icons/Flame.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Flashlight.tsx b/src/icons/Flashlight.tsx index 9bb78d5b1..7dddb800c 100644 --- a/src/icons/Flashlight.tsx +++ b/src/icons/Flashlight.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Flask.tsx b/src/icons/Flask.tsx index feb15bb4c..1046dd66d 100644 --- a/src/icons/Flask.tsx +++ b/src/icons/Flask.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FloppyDisk.tsx b/src/icons/FloppyDisk.tsx index 7b93279f4..d69799d1a 100644 --- a/src/icons/FloppyDisk.tsx +++ b/src/icons/FloppyDisk.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FloppyDiskBack.tsx b/src/icons/FloppyDiskBack.tsx index 1d622a6b2..87e9f314c 100644 --- a/src/icons/FloppyDiskBack.tsx +++ b/src/icons/FloppyDiskBack.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FlowArrow.tsx b/src/icons/FlowArrow.tsx index 73db5d27e..0a2279d58 100644 --- a/src/icons/FlowArrow.tsx +++ b/src/icons/FlowArrow.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Flower.tsx b/src/icons/Flower.tsx index 15ff21764..feca3beb7 100644 --- a/src/icons/Flower.tsx +++ b/src/icons/Flower.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FlowerLotus.tsx b/src/icons/FlowerLotus.tsx index f32585235..ac743b3b2 100644 --- a/src/icons/FlowerLotus.tsx +++ b/src/icons/FlowerLotus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FlowerTulip.tsx b/src/icons/FlowerTulip.tsx new file mode 100644 index 000000000..1fa190bde --- /dev/null +++ b/src/icons/FlowerTulip.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FlowerTulip: Icon = forwardRef((props, ref) => ( + +)); + +FlowerTulip.displayName = "FlowerTulip"; + +export default FlowerTulip; diff --git a/src/icons/FlyingSaucer.tsx b/src/icons/FlyingSaucer.tsx index 9562e1d7b..21aeb3b46 100644 --- a/src/icons/FlyingSaucer.tsx +++ b/src/icons/FlyingSaucer.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Folder.tsx b/src/icons/Folder.tsx index 75f1b4772..1fef02423 100644 --- a/src/icons/Folder.tsx +++ b/src/icons/Folder.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderDashed.tsx b/src/icons/FolderDashed.tsx new file mode 100644 index 000000000..c8bcde038 --- /dev/null +++ b/src/icons/FolderDashed.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FolderDashed: Icon = forwardRef((props, ref) => ( + +)); + +FolderDashed.displayName = "FolderDashed"; + +export default FolderDashed; diff --git a/src/icons/FolderDotted.tsx b/src/icons/FolderDotted.tsx deleted file mode 100644 index c8c333806..000000000 --- a/src/icons/FolderDotted.tsx +++ /dev/null @@ -1,54 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const FolderDotted: Icon = forwardRef((props, ref) => ( - -)); - -FolderDotted.displayName = "FolderDotted"; - -export default FolderDotted; diff --git a/src/icons/FolderLock.tsx b/src/icons/FolderLock.tsx index d24e3b99c..8372f6b10 100644 --- a/src/icons/FolderLock.tsx +++ b/src/icons/FolderLock.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderMinus.tsx b/src/icons/FolderMinus.tsx index 5d1e8075b..6f43648f1 100644 --- a/src/icons/FolderMinus.tsx +++ b/src/icons/FolderMinus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderNotch.tsx b/src/icons/FolderNotch.tsx index 1a5846611..d68ded945 100644 --- a/src/icons/FolderNotch.tsx +++ b/src/icons/FolderNotch.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderNotchMinus.tsx b/src/icons/FolderNotchMinus.tsx index 374d3d1d3..629a29092 100644 --- a/src/icons/FolderNotchMinus.tsx +++ b/src/icons/FolderNotchMinus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderNotchOpen.tsx b/src/icons/FolderNotchOpen.tsx index dfc8b5a96..dd86400ae 100644 --- a/src/icons/FolderNotchOpen.tsx +++ b/src/icons/FolderNotchOpen.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderNotchPlus.tsx b/src/icons/FolderNotchPlus.tsx index dc402f352..96b777288 100644 --- a/src/icons/FolderNotchPlus.tsx +++ b/src/icons/FolderNotchPlus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderOpen.tsx b/src/icons/FolderOpen.tsx index c547bbbe9..2c7b5b115 100644 --- a/src/icons/FolderOpen.tsx +++ b/src/icons/FolderOpen.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderPlus.tsx b/src/icons/FolderPlus.tsx index 2de0b597d..4ad5af408 100644 --- a/src/icons/FolderPlus.tsx +++ b/src/icons/FolderPlus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderSimple.tsx b/src/icons/FolderSimple.tsx index 017ee2cc0..b4eef7ba4 100644 --- a/src/icons/FolderSimple.tsx +++ b/src/icons/FolderSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderSimpleDashed.tsx b/src/icons/FolderSimpleDashed.tsx new file mode 100644 index 000000000..a7aba14e2 --- /dev/null +++ b/src/icons/FolderSimpleDashed.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const FolderSimpleDashed: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleDashed.displayName = "FolderSimpleDashed"; + +export default FolderSimpleDashed; diff --git a/src/icons/FolderSimpleDotted.tsx b/src/icons/FolderSimpleDotted.tsx deleted file mode 100644 index 1ed3d75ed..000000000 --- a/src/icons/FolderSimpleDotted.tsx +++ /dev/null @@ -1,54 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const FolderSimpleDotted: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimpleDotted.displayName = "FolderSimpleDotted"; - -export default FolderSimpleDotted; diff --git a/src/icons/FolderSimpleLock.tsx b/src/icons/FolderSimpleLock.tsx index 68fa840e2..2dd102c21 100644 --- a/src/icons/FolderSimpleLock.tsx +++ b/src/icons/FolderSimpleLock.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderSimpleMinus.tsx b/src/icons/FolderSimpleMinus.tsx index 0dad97e1d..e48bda817 100644 --- a/src/icons/FolderSimpleMinus.tsx +++ b/src/icons/FolderSimpleMinus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderSimplePlus.tsx b/src/icons/FolderSimplePlus.tsx index c9889ec5a..24f3558f2 100644 --- a/src/icons/FolderSimplePlus.tsx +++ b/src/icons/FolderSimplePlus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderSimpleStar.tsx b/src/icons/FolderSimpleStar.tsx index 7142aa3c1..51d706a13 100644 --- a/src/icons/FolderSimpleStar.tsx +++ b/src/icons/FolderSimpleStar.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderSimpleUser.tsx b/src/icons/FolderSimpleUser.tsx index b48ff4528..aa6e4df21 100644 --- a/src/icons/FolderSimpleUser.tsx +++ b/src/icons/FolderSimpleUser.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderStar.tsx b/src/icons/FolderStar.tsx index 02686f9a9..8d1c2f58c 100644 --- a/src/icons/FolderStar.tsx +++ b/src/icons/FolderStar.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FolderUser.tsx b/src/icons/FolderUser.tsx index 207a01dc4..368389596 100644 --- a/src/icons/FolderUser.tsx +++ b/src/icons/FolderUser.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Folders.tsx b/src/icons/Folders.tsx index b2f9eb8e2..87d92220e 100644 --- a/src/icons/Folders.tsx +++ b/src/icons/Folders.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Football.tsx b/src/icons/Football.tsx index c8f2e5fe4..801f4009b 100644 --- a/src/icons/Football.tsx +++ b/src/icons/Football.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Footprints.tsx b/src/icons/Footprints.tsx new file mode 100644 index 000000000..78a9680a7 --- /dev/null +++ b/src/icons/Footprints.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Footprints: Icon = forwardRef((props, ref) => ( + +)); + +Footprints.displayName = "Footprints"; + +export default Footprints; diff --git a/src/icons/ForkKnife.tsx b/src/icons/ForkKnife.tsx index e4c89d77e..a95370962 100644 --- a/src/icons/ForkKnife.tsx +++ b/src/icons/ForkKnife.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FrameCorners.tsx b/src/icons/FrameCorners.tsx index 7f23eeb7b..1719ed160 100644 --- a/src/icons/FrameCorners.tsx +++ b/src/icons/FrameCorners.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,7 +16,7 @@ const weights = new Map([ d="M224,56V200a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H216A8,8,0,0,1,224,56Z" opacity="0.2" /> - + , ], [ @@ -34,7 +34,7 @@ const weights = new Map([ [ "regular", <> - + , ], [ diff --git a/src/icons/FramerLogo.tsx b/src/icons/FramerLogo.tsx index 2a86fde66..86cc83cc4 100644 --- a/src/icons/FramerLogo.tsx +++ b/src/icons/FramerLogo.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Function.tsx b/src/icons/Function.tsx index 4f6aab825..4950fcf12 100644 --- a/src/icons/Function.tsx +++ b/src/icons/Function.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Funnel.tsx b/src/icons/Funnel.tsx index f913917b6..0359ca11c 100644 --- a/src/icons/Funnel.tsx +++ b/src/icons/Funnel.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/FunnelSimple.tsx b/src/icons/FunnelSimple.tsx index 172558cb6..b58863b91 100644 --- a/src/icons/FunnelSimple.tsx +++ b/src/icons/FunnelSimple.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/GameController.tsx b/src/icons/GameController.tsx index 4412ff04a..52cd6e352 100644 --- a/src/icons/GameController.tsx +++ b/src/icons/GameController.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Garage.tsx b/src/icons/Garage.tsx new file mode 100644 index 000000000..3b4d6ec04 --- /dev/null +++ b/src/icons/Garage.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Garage: Icon = forwardRef((props, ref) => ( + +)); + +Garage.displayName = "Garage"; + +export default Garage; diff --git a/src/icons/GasCan.tsx b/src/icons/GasCan.tsx new file mode 100644 index 000000000..2fe301b12 --- /dev/null +++ b/src/icons/GasCan.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const GasCan: Icon = forwardRef((props, ref) => ( + +)); + +GasCan.displayName = "GasCan"; + +export default GasCan; diff --git a/src/icons/GasPump.tsx b/src/icons/GasPump.tsx index 57c161894..478341ba8 100644 --- a/src/icons/GasPump.tsx +++ b/src/icons/GasPump.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M168,56V216H56V56A16,16,0,0,1,72,40h80A16,16,0,0,1,168,56Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Gauge.tsx b/src/icons/Gauge.tsx index 62a3b170d..747f87b41 100644 --- a/src/icons/Gauge.tsx +++ b/src/icons/Gauge.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Gavel.tsx b/src/icons/Gavel.tsx new file mode 100644 index 000000000..95087042e --- /dev/null +++ b/src/icons/Gavel.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Gavel: Icon = forwardRef((props, ref) => ( + +)); + +Gavel.displayName = "Gavel"; + +export default Gavel; diff --git a/src/icons/Gear.tsx b/src/icons/Gear.tsx index 7b17d6d78..159b3042c 100644 --- a/src/icons/Gear.tsx +++ b/src/icons/Gear.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GearFine.tsx b/src/icons/GearFine.tsx new file mode 100644 index 000000000..60a4c1ac6 --- /dev/null +++ b/src/icons/GearFine.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const GearFine: Icon = forwardRef((props, ref) => ( + +)); + +GearFine.displayName = "GearFine"; + +export default GearFine; diff --git a/src/icons/GearSix.tsx b/src/icons/GearSix.tsx index a93037238..47d5f10e4 100644 --- a/src/icons/GearSix.tsx +++ b/src/icons/GearSix.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GenderFemale.tsx b/src/icons/GenderFemale.tsx index a91e5967e..b3cb9ef8b 100644 --- a/src/icons/GenderFemale.tsx +++ b/src/icons/GenderFemale.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GenderIntersex.tsx b/src/icons/GenderIntersex.tsx index 7e001fe05..06c1e20b0 100644 --- a/src/icons/GenderIntersex.tsx +++ b/src/icons/GenderIntersex.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GenderMale.tsx b/src/icons/GenderMale.tsx index 542b267b4..3f1125df8 100644 --- a/src/icons/GenderMale.tsx +++ b/src/icons/GenderMale.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GenderNeuter.tsx b/src/icons/GenderNeuter.tsx index cb7101278..1fc4fac92 100644 --- a/src/icons/GenderNeuter.tsx +++ b/src/icons/GenderNeuter.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GenderNonbinary.tsx b/src/icons/GenderNonbinary.tsx index fa6283930..f6d749844 100644 --- a/src/icons/GenderNonbinary.tsx +++ b/src/icons/GenderNonbinary.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GenderTransgender.tsx b/src/icons/GenderTransgender.tsx index 1caf858dc..717a9bd3c 100644 --- a/src/icons/GenderTransgender.tsx +++ b/src/icons/GenderTransgender.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Ghost.tsx b/src/icons/Ghost.tsx index a6a1df037..b0e1cf47d 100644 --- a/src/icons/Ghost.tsx +++ b/src/icons/Ghost.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Gif.tsx b/src/icons/Gif.tsx index d31795f14..216e19422 100644 --- a/src/icons/Gif.tsx +++ b/src/icons/Gif.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Gift.tsx b/src/icons/Gift.tsx index d8c39258f..c7a685807 100644 --- a/src/icons/Gift.tsx +++ b/src/icons/Gift.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitBranch.tsx b/src/icons/GitBranch.tsx index 503cca10a..8109c6a53 100644 --- a/src/icons/GitBranch.tsx +++ b/src/icons/GitBranch.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitCommit.tsx b/src/icons/GitCommit.tsx index 12ce18399..48bcdfaf8 100644 --- a/src/icons/GitCommit.tsx +++ b/src/icons/GitCommit.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitDiff.tsx b/src/icons/GitDiff.tsx index 1773aede7..5db86ffb6 100644 --- a/src/icons/GitDiff.tsx +++ b/src/icons/GitDiff.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitFork.tsx b/src/icons/GitFork.tsx index 53ed1ad58..af8c204f4 100644 --- a/src/icons/GitFork.tsx +++ b/src/icons/GitFork.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitMerge.tsx b/src/icons/GitMerge.tsx index 37306a24c..00cce3fe3 100644 --- a/src/icons/GitMerge.tsx +++ b/src/icons/GitMerge.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitPullRequest.tsx b/src/icons/GitPullRequest.tsx index 85eda7566..1d2efe910 100644 --- a/src/icons/GitPullRequest.tsx +++ b/src/icons/GitPullRequest.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GithubLogo.tsx b/src/icons/GithubLogo.tsx index 799f8e3c4..cb2438018 100644 --- a/src/icons/GithubLogo.tsx +++ b/src/icons/GithubLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitlabLogo.tsx b/src/icons/GitlabLogo.tsx index 9b650aae5..611ba9ce7 100644 --- a/src/icons/GitlabLogo.tsx +++ b/src/icons/GitlabLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GitlabLogoSimple.tsx b/src/icons/GitlabLogoSimple.tsx index 3a5082a36..41fc16c96 100644 --- a/src/icons/GitlabLogoSimple.tsx +++ b/src/icons/GitlabLogoSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Globe.tsx b/src/icons/Globe.tsx index 8d9253ec2..de97794a8 100644 --- a/src/icons/Globe.tsx +++ b/src/icons/Globe.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GlobeHemisphereEast.tsx b/src/icons/GlobeHemisphereEast.tsx index 21d9a4dc5..756ea6617 100644 --- a/src/icons/GlobeHemisphereEast.tsx +++ b/src/icons/GlobeHemisphereEast.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GlobeHemisphereWest.tsx b/src/icons/GlobeHemisphereWest.tsx index 361cf223e..c9c30035e 100644 --- a/src/icons/GlobeHemisphereWest.tsx +++ b/src/icons/GlobeHemisphereWest.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GlobeSimple.tsx b/src/icons/GlobeSimple.tsx index 6947f922c..d045184b2 100644 --- a/src/icons/GlobeSimple.tsx +++ b/src/icons/GlobeSimple.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GlobeStand.tsx b/src/icons/GlobeStand.tsx index bdb58c892..f90dbb240 100644 --- a/src/icons/GlobeStand.tsx +++ b/src/icons/GlobeStand.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Goggles.tsx b/src/icons/Goggles.tsx new file mode 100644 index 000000000..1167d454e --- /dev/null +++ b/src/icons/Goggles.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Goggles: Icon = forwardRef((props, ref) => ( + +)); + +Goggles.displayName = "Goggles"; + +export default Goggles; diff --git a/src/icons/GoodreadsLogo.tsx b/src/icons/GoodreadsLogo.tsx new file mode 100644 index 000000000..8b5946c48 --- /dev/null +++ b/src/icons/GoodreadsLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const GoodreadsLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoodreadsLogo.displayName = "GoodreadsLogo"; + +export default GoodreadsLogo; diff --git a/src/icons/GoogleCardboardLogo.tsx b/src/icons/GoogleCardboardLogo.tsx new file mode 100644 index 000000000..a0a156417 --- /dev/null +++ b/src/icons/GoogleCardboardLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const GoogleCardboardLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleCardboardLogo.displayName = "GoogleCardboardLogo"; + +export default GoogleCardboardLogo; diff --git a/src/icons/GoogleChromeLogo.tsx b/src/icons/GoogleChromeLogo.tsx index 180e3d035..ea4f6e987 100644 --- a/src/icons/GoogleChromeLogo.tsx +++ b/src/icons/GoogleChromeLogo.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GoogleDriveLogo.tsx b/src/icons/GoogleDriveLogo.tsx new file mode 100644 index 000000000..d64a51631 --- /dev/null +++ b/src/icons/GoogleDriveLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const GoogleDriveLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleDriveLogo.displayName = "GoogleDriveLogo"; + +export default GoogleDriveLogo; diff --git a/src/icons/GoogleLogo.tsx b/src/icons/GoogleLogo.tsx index 21fdd9741..51058481a 100644 --- a/src/icons/GoogleLogo.tsx +++ b/src/icons/GoogleLogo.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GooglePhotosLogo.tsx b/src/icons/GooglePhotosLogo.tsx index 2baed8192..7207e62e7 100644 --- a/src/icons/GooglePhotosLogo.tsx +++ b/src/icons/GooglePhotosLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GooglePlayLogo.tsx b/src/icons/GooglePlayLogo.tsx index 50d3fc740..9e62cb2be 100644 --- a/src/icons/GooglePlayLogo.tsx +++ b/src/icons/GooglePlayLogo.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GooglePodcastsLogo.tsx b/src/icons/GooglePodcastsLogo.tsx index 26810ab82..f04d115c5 100644 --- a/src/icons/GooglePodcastsLogo.tsx +++ b/src/icons/GooglePodcastsLogo.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Gradient.tsx b/src/icons/Gradient.tsx index 5ad1e32a7..9d262af9f 100644 --- a/src/icons/Gradient.tsx +++ b/src/icons/Gradient.tsx @@ -12,31 +12,32 @@ const weights = new Map([ [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GraduationCap.tsx b/src/icons/GraduationCap.tsx index abaf1cd08..1f48aa002 100644 --- a/src/icons/GraduationCap.tsx +++ b/src/icons/GraduationCap.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Grains.tsx b/src/icons/Grains.tsx new file mode 100644 index 000000000..f572e82a0 --- /dev/null +++ b/src/icons/Grains.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Grains: Icon = forwardRef((props, ref) => ( + +)); + +Grains.displayName = "Grains"; + +export default Grains; diff --git a/src/icons/GrainsSlash.tsx b/src/icons/GrainsSlash.tsx new file mode 100644 index 000000000..512889971 --- /dev/null +++ b/src/icons/GrainsSlash.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const GrainsSlash: Icon = forwardRef((props, ref) => ( + +)); + +GrainsSlash.displayName = "GrainsSlash"; + +export default GrainsSlash; diff --git a/src/icons/Graph.tsx b/src/icons/Graph.tsx index 834b96e65..024781825 100644 --- a/src/icons/Graph.tsx +++ b/src/icons/Graph.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GridFour.tsx b/src/icons/GridFour.tsx index be057cd35..343decde2 100644 --- a/src/icons/GridFour.tsx +++ b/src/icons/GridFour.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/GridNine.tsx b/src/icons/GridNine.tsx new file mode 100644 index 000000000..93d51ccc0 --- /dev/null +++ b/src/icons/GridNine.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const GridNine: Icon = forwardRef((props, ref) => ( + +)); + +GridNine.displayName = "GridNine"; + +export default GridNine; diff --git a/src/icons/Guitar.tsx b/src/icons/Guitar.tsx new file mode 100644 index 000000000..0fa6c58b6 --- /dev/null +++ b/src/icons/Guitar.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Guitar: Icon = forwardRef((props, ref) => ( + +)); + +Guitar.displayName = "Guitar"; + +export default Guitar; diff --git a/src/icons/Hamburger.tsx b/src/icons/Hamburger.tsx index 603a12fca..25c290ca4 100644 --- a/src/icons/Hamburger.tsx +++ b/src/icons/Hamburger.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Hammer.tsx b/src/icons/Hammer.tsx new file mode 100644 index 000000000..3df95999a --- /dev/null +++ b/src/icons/Hammer.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Hammer: Icon = forwardRef((props, ref) => ( + +)); + +Hammer.displayName = "Hammer"; + +export default Hammer; diff --git a/src/icons/Hand.tsx b/src/icons/Hand.tsx index 9cc017cd9..a0b22b196 100644 --- a/src/icons/Hand.tsx +++ b/src/icons/Hand.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandCoins.tsx b/src/icons/HandCoins.tsx new file mode 100644 index 000000000..1f38bff93 --- /dev/null +++ b/src/icons/HandCoins.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HandCoins: Icon = forwardRef((props, ref) => ( + +)); + +HandCoins.displayName = "HandCoins"; + +export default HandCoins; diff --git a/src/icons/HandEye.tsx b/src/icons/HandEye.tsx index 343c275fb..2893912d0 100644 --- a/src/icons/HandEye.tsx +++ b/src/icons/HandEye.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandFist.tsx b/src/icons/HandFist.tsx index ff30b7b7f..25d1d5c3c 100644 --- a/src/icons/HandFist.tsx +++ b/src/icons/HandFist.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandGrabbing.tsx b/src/icons/HandGrabbing.tsx index 0d0d33d21..0d63fa297 100644 --- a/src/icons/HandGrabbing.tsx +++ b/src/icons/HandGrabbing.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandHeart.tsx b/src/icons/HandHeart.tsx new file mode 100644 index 000000000..6c9159d8e --- /dev/null +++ b/src/icons/HandHeart.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HandHeart: Icon = forwardRef((props, ref) => ( + +)); + +HandHeart.displayName = "HandHeart"; + +export default HandHeart; diff --git a/src/icons/HandPalm.tsx b/src/icons/HandPalm.tsx index 5b5e1397c..4bdaaf366 100644 --- a/src/icons/HandPalm.tsx +++ b/src/icons/HandPalm.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandPointing.tsx b/src/icons/HandPointing.tsx index 04ead39b9..38d14f03a 100644 --- a/src/icons/HandPointing.tsx +++ b/src/icons/HandPointing.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandSoap.tsx b/src/icons/HandSoap.tsx index b3ad367ab..c73d70553 100644 --- a/src/icons/HandSoap.tsx +++ b/src/icons/HandSoap.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,136v80a8,8,0,0,1-8,8H56a8,8,0,0,1-8-8V136a32,32,0,0,1,32-32h96A32,32,0,0,1,208,136Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandSwipeLeft.tsx b/src/icons/HandSwipeLeft.tsx new file mode 100644 index 000000000..cd41d9d3b --- /dev/null +++ b/src/icons/HandSwipeLeft.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HandSwipeLeft: Icon = forwardRef((props, ref) => ( + +)); + +HandSwipeLeft.displayName = "HandSwipeLeft"; + +export default HandSwipeLeft; diff --git a/src/icons/HandSwipeRight.tsx b/src/icons/HandSwipeRight.tsx new file mode 100644 index 000000000..ede247d11 --- /dev/null +++ b/src/icons/HandSwipeRight.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HandSwipeRight: Icon = forwardRef((props, ref) => ( + +)); + +HandSwipeRight.displayName = "HandSwipeRight"; + +export default HandSwipeRight; diff --git a/src/icons/HandTap.tsx b/src/icons/HandTap.tsx new file mode 100644 index 000000000..0756a3d7d --- /dev/null +++ b/src/icons/HandTap.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HandTap: Icon = forwardRef((props, ref) => ( + +)); + +HandTap.displayName = "HandTap"; + +export default HandTap; diff --git a/src/icons/HandWaving.tsx b/src/icons/HandWaving.tsx index 7f152d5f7..81b47cbb7 100644 --- a/src/icons/HandWaving.tsx +++ b/src/icons/HandWaving.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Handbag.tsx b/src/icons/Handbag.tsx index 4d13e9f12..a1f067908 100644 --- a/src/icons/Handbag.tsx +++ b/src/icons/Handbag.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandbagSimple.tsx b/src/icons/HandbagSimple.tsx index 89935cbdc..0a34716bc 100644 --- a/src/icons/HandbagSimple.tsx +++ b/src/icons/HandbagSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandsClapping.tsx b/src/icons/HandsClapping.tsx index 0649288c9..1b126dc02 100644 --- a/src/icons/HandsClapping.tsx +++ b/src/icons/HandsClapping.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HandsPraying.tsx b/src/icons/HandsPraying.tsx new file mode 100644 index 000000000..6a10f91cd --- /dev/null +++ b/src/icons/HandsPraying.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HandsPraying: Icon = forwardRef((props, ref) => ( + +)); + +HandsPraying.displayName = "HandsPraying"; + +export default HandsPraying; diff --git a/src/icons/Handshake.tsx b/src/icons/Handshake.tsx index 5046ccedc..b798b4f0f 100644 --- a/src/icons/Handshake.tsx +++ b/src/icons/Handshake.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HardDrive.tsx b/src/icons/HardDrive.tsx index 035831e49..a7d1d6603 100644 --- a/src/icons/HardDrive.tsx +++ b/src/icons/HardDrive.tsx @@ -6,15 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - + , ], diff --git a/src/icons/HardDrives.tsx b/src/icons/HardDrives.tsx index a27542ead..0c50e445c 100644 --- a/src/icons/HardDrives.tsx +++ b/src/icons/HardDrives.tsx @@ -6,25 +6,24 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + , ], [ "fill", <> - + + , ], [ @@ -42,7 +41,7 @@ const weights = new Map([ [ "thin", <> - + , ], ]); diff --git a/src/icons/Hash.tsx b/src/icons/Hash.tsx index c0e2fe60e..963f5c62b 100644 --- a/src/icons/Hash.tsx +++ b/src/icons/Hash.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HashStraight.tsx b/src/icons/HashStraight.tsx index 37e2e66cb..5de82cb40 100644 --- a/src/icons/HashStraight.tsx +++ b/src/icons/HashStraight.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Headlights.tsx b/src/icons/Headlights.tsx index 47c6e6006..1a1a87820 100644 --- a/src/icons/Headlights.tsx +++ b/src/icons/Headlights.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Headphones.tsx b/src/icons/Headphones.tsx index 92b7182b3..ad71ea692 100644 --- a/src/icons/Headphones.tsx +++ b/src/icons/Headphones.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Headset.tsx b/src/icons/Headset.tsx index 1bb271bee..9937f3fdf 100644 --- a/src/icons/Headset.tsx +++ b/src/icons/Headset.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Heart.tsx b/src/icons/Heart.tsx index 0ec33d649..a1ef1321a 100644 --- a/src/icons/Heart.tsx +++ b/src/icons/Heart.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HeartBreak.tsx b/src/icons/HeartBreak.tsx index 50f0045e5..20d931c6b 100644 --- a/src/icons/HeartBreak.tsx +++ b/src/icons/HeartBreak.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HeartHalf.tsx b/src/icons/HeartHalf.tsx new file mode 100644 index 000000000..b6ff0dead --- /dev/null +++ b/src/icons/HeartHalf.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HeartHalf: Icon = forwardRef((props, ref) => ( + +)); + +HeartHalf.displayName = "HeartHalf"; + +export default HeartHalf; diff --git a/src/icons/HeartStraight.tsx b/src/icons/HeartStraight.tsx index 556e91a98..e3ad2de03 100644 --- a/src/icons/HeartStraight.tsx +++ b/src/icons/HeartStraight.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HeartStraightBreak.tsx b/src/icons/HeartStraightBreak.tsx index 070292d75..1cb836023 100644 --- a/src/icons/HeartStraightBreak.tsx +++ b/src/icons/HeartStraightBreak.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Heartbeat.tsx b/src/icons/Heartbeat.tsx index f77a3d7ae..85da0457e 100644 --- a/src/icons/Heartbeat.tsx +++ b/src/icons/Heartbeat.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Hexagon.tsx b/src/icons/Hexagon.tsx index 9011e4422..c104eda75 100644 --- a/src/icons/Hexagon.tsx +++ b/src/icons/Hexagon.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HighHeel.tsx b/src/icons/HighHeel.tsx new file mode 100644 index 000000000..602eb87ba --- /dev/null +++ b/src/icons/HighHeel.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const HighHeel: Icon = forwardRef((props, ref) => ( + +)); + +HighHeel.displayName = "HighHeel"; + +export default HighHeel; diff --git a/src/icons/HighlighterCircle.tsx b/src/icons/HighlighterCircle.tsx index 5b1b5d6de..9b46e90ce 100644 --- a/src/icons/HighlighterCircle.tsx +++ b/src/icons/HighlighterCircle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Hoodie.tsx b/src/icons/Hoodie.tsx new file mode 100644 index 000000000..8c619075d --- /dev/null +++ b/src/icons/Hoodie.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Hoodie: Icon = forwardRef((props, ref) => ( + +)); + +Hoodie.displayName = "Hoodie"; + +export default Hoodie; diff --git a/src/icons/Horse.tsx b/src/icons/Horse.tsx index 4014c17c6..ec3d6bba4 100644 --- a/src/icons/Horse.tsx +++ b/src/icons/Horse.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Hourglass.tsx b/src/icons/Hourglass.tsx index 2cecb59b7..61e80de1c 100644 --- a/src/icons/Hourglass.tsx +++ b/src/icons/Hourglass.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HourglassHigh.tsx b/src/icons/HourglassHigh.tsx index 63eb80514..8c139998c 100644 --- a/src/icons/HourglassHigh.tsx +++ b/src/icons/HourglassHigh.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HourglassLow.tsx b/src/icons/HourglassLow.tsx index 162166c5a..73ad67aac 100644 --- a/src/icons/HourglassLow.tsx +++ b/src/icons/HourglassLow.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HourglassMedium.tsx b/src/icons/HourglassMedium.tsx index c32cb662b..9e780d04d 100644 --- a/src/icons/HourglassMedium.tsx +++ b/src/icons/HourglassMedium.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HourglassSimple.tsx b/src/icons/HourglassSimple.tsx index 4e10c5d9a..7ca6ab709 100644 --- a/src/icons/HourglassSimple.tsx +++ b/src/icons/HourglassSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HourglassSimpleHigh.tsx b/src/icons/HourglassSimpleHigh.tsx index 7b2b67da2..289a3107a 100644 --- a/src/icons/HourglassSimpleHigh.tsx +++ b/src/icons/HourglassSimpleHigh.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HourglassSimpleLow.tsx b/src/icons/HourglassSimpleLow.tsx index 6281955a6..f6cb15f42 100644 --- a/src/icons/HourglassSimpleLow.tsx +++ b/src/icons/HourglassSimpleLow.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HourglassSimpleMedium.tsx b/src/icons/HourglassSimpleMedium.tsx index 580959181..983452d78 100644 --- a/src/icons/HourglassSimpleMedium.tsx +++ b/src/icons/HourglassSimpleMedium.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/House.tsx b/src/icons/House.tsx index b65ef0539..c7b1c60c4 100644 --- a/src/icons/House.tsx +++ b/src/icons/House.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HouseLine.tsx b/src/icons/HouseLine.tsx index 3dd76a59a..22ccc9fb0 100644 --- a/src/icons/HouseLine.tsx +++ b/src/icons/HouseLine.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/HouseSimple.tsx b/src/icons/HouseSimple.tsx index 85c10cc14..d3de1ad70 100644 --- a/src/icons/HouseSimple.tsx +++ b/src/icons/HouseSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/IceCream.tsx b/src/icons/IceCream.tsx new file mode 100644 index 000000000..ef0095f5f --- /dev/null +++ b/src/icons/IceCream.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const IceCream: Icon = forwardRef((props, ref) => ( + +)); + +IceCream.displayName = "IceCream"; + +export default IceCream; diff --git a/src/icons/IdentificationBadge.tsx b/src/icons/IdentificationBadge.tsx index a03ff94bd..3c3418517 100644 --- a/src/icons/IdentificationBadge.tsx +++ b/src/icons/IdentificationBadge.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/IdentificationCard.tsx b/src/icons/IdentificationCard.tsx index 4785f1790..b5b850bfd 100644 --- a/src/icons/IdentificationCard.tsx +++ b/src/icons/IdentificationCard.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Image.tsx b/src/icons/Image.tsx index 78abc408b..4b829ff8e 100644 --- a/src/icons/Image.tsx +++ b/src/icons/Image.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ImageSquare.tsx b/src/icons/ImageSquare.tsx index 2299775cb..1c2d9495d 100644 --- a/src/icons/ImageSquare.tsx +++ b/src/icons/ImageSquare.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Images.tsx b/src/icons/Images.tsx new file mode 100644 index 000000000..5625856c6 --- /dev/null +++ b/src/icons/Images.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Images: Icon = forwardRef((props, ref) => ( + +)); + +Images.displayName = "Images"; + +export default Images; diff --git a/src/icons/ImagesSquare.tsx b/src/icons/ImagesSquare.tsx new file mode 100644 index 000000000..e379f6649 --- /dev/null +++ b/src/icons/ImagesSquare.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ImagesSquare: Icon = forwardRef((props, ref) => ( + +)); + +ImagesSquare.displayName = "ImagesSquare"; + +export default ImagesSquare; diff --git a/src/icons/Infinity.tsx b/src/icons/Infinity.tsx index 549ab3f83..ae15ff8ad 100644 --- a/src/icons/Infinity.tsx +++ b/src/icons/Infinity.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Info.tsx b/src/icons/Info.tsx index 25819e26c..ee6a5b7d0 100644 --- a/src/icons/Info.tsx +++ b/src/icons/Info.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/InstagramLogo.tsx b/src/icons/InstagramLogo.tsx index b97ee4ca5..e529e9047 100644 --- a/src/icons/InstagramLogo.tsx +++ b/src/icons/InstagramLogo.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Intersect.tsx b/src/icons/Intersect.tsx index b9cc84a52..7efe9ba6d 100644 --- a/src/icons/Intersect.tsx +++ b/src/icons/Intersect.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/IntersectSquare.tsx b/src/icons/IntersectSquare.tsx new file mode 100644 index 000000000..814f383a1 --- /dev/null +++ b/src/icons/IntersectSquare.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const IntersectSquare: Icon = forwardRef((props, ref) => ( + +)); + +IntersectSquare.displayName = "IntersectSquare"; + +export default IntersectSquare; diff --git a/src/icons/IntersectThree.tsx b/src/icons/IntersectThree.tsx new file mode 100644 index 000000000..1cfb4ffc4 --- /dev/null +++ b/src/icons/IntersectThree.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const IntersectThree: Icon = forwardRef((props, ref) => ( + +)); + +IntersectThree.displayName = "IntersectThree"; + +export default IntersectThree; diff --git a/src/icons/Jeep.tsx b/src/icons/Jeep.tsx index fbb6ca69d..152be2ebe 100644 --- a/src/icons/Jeep.tsx +++ b/src/icons/Jeep.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Kanban.tsx b/src/icons/Kanban.tsx index 64bf9c059..5cc8fff1a 100644 --- a/src/icons/Kanban.tsx +++ b/src/icons/Kanban.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -22,7 +22,7 @@ const weights = new Map([ [ "fill", <> - + , ], [ @@ -40,7 +40,7 @@ const weights = new Map([ [ "thin", <> - + , ], ]); diff --git a/src/icons/Key.tsx b/src/icons/Key.tsx index 600cf274c..15eeba9b5 100644 --- a/src/icons/Key.tsx +++ b/src/icons/Key.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/KeyReturn.tsx b/src/icons/KeyReturn.tsx index 52b5662a3..796e4ea56 100644 --- a/src/icons/KeyReturn.tsx +++ b/src/icons/KeyReturn.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,56V200a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H216A8,8,0,0,1,224,56Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Keyboard.tsx b/src/icons/Keyboard.tsx index dd6f91cfb..b2a0aa655 100644 --- a/src/icons/Keyboard.tsx +++ b/src/icons/Keyboard.tsx @@ -6,45 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Keyhole.tsx b/src/icons/Keyhole.tsx index 41791d270..c37d666a0 100644 --- a/src/icons/Keyhole.tsx +++ b/src/icons/Keyhole.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Knife.tsx b/src/icons/Knife.tsx index 080662b32..bd69b7768 100644 --- a/src/icons/Knife.tsx +++ b/src/icons/Knife.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Ladder.tsx b/src/icons/Ladder.tsx index 9dcc97eb5..478132351 100644 --- a/src/icons/Ladder.tsx +++ b/src/icons/Ladder.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LadderSimple.tsx b/src/icons/LadderSimple.tsx index 97cfe233f..dfae1e6a9 100644 --- a/src/icons/LadderSimple.tsx +++ b/src/icons/LadderSimple.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Lamp.tsx b/src/icons/Lamp.tsx index c07c1e8b0..24296b5ab 100644 --- a/src/icons/Lamp.tsx +++ b/src/icons/Lamp.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Laptop.tsx b/src/icons/Laptop.tsx index d75b08016..992701e21 100644 --- a/src/icons/Laptop.tsx +++ b/src/icons/Laptop.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Layout.tsx b/src/icons/Layout.tsx index 4b77dd6d1..04318110c 100644 --- a/src/icons/Layout.tsx +++ b/src/icons/Layout.tsx @@ -6,14 +6,14 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ @@ -31,7 +31,7 @@ const weights = new Map([ [ "regular", <> - + , ], [ diff --git a/src/icons/Leaf.tsx b/src/icons/Leaf.tsx index bd9a0a264..d727cfdd2 100644 --- a/src/icons/Leaf.tsx +++ b/src/icons/Leaf.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Lifebuoy.tsx b/src/icons/Lifebuoy.tsx index 4147aa3dc..c18994c8a 100644 --- a/src/icons/Lifebuoy.tsx +++ b/src/icons/Lifebuoy.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Lightbulb.tsx b/src/icons/Lightbulb.tsx index 9e91fd7b8..437029647 100644 --- a/src/icons/Lightbulb.tsx +++ b/src/icons/Lightbulb.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LightbulbFilament.tsx b/src/icons/LightbulbFilament.tsx index ca692cb8a..7f50e0392 100644 --- a/src/icons/LightbulbFilament.tsx +++ b/src/icons/LightbulbFilament.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Lighthouse.tsx b/src/icons/Lighthouse.tsx new file mode 100644 index 000000000..16becd488 --- /dev/null +++ b/src/icons/Lighthouse.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Lighthouse: Icon = forwardRef((props, ref) => ( + +)); + +Lighthouse.displayName = "Lighthouse"; + +export default Lighthouse; diff --git a/src/icons/Lightning.tsx b/src/icons/Lightning.tsx index 95f741c1d..19f94fc58 100644 --- a/src/icons/Lightning.tsx +++ b/src/icons/Lightning.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LightningA.tsx b/src/icons/LightningA.tsx new file mode 100644 index 000000000..991164524 --- /dev/null +++ b/src/icons/LightningA.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const LightningA: Icon = forwardRef((props, ref) => ( + +)); + +LightningA.displayName = "LightningA"; + +export default LightningA; diff --git a/src/icons/LightningSlash.tsx b/src/icons/LightningSlash.tsx index b13724cfb..478c77fa2 100644 --- a/src/icons/LightningSlash.tsx +++ b/src/icons/LightningSlash.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LineSegment.tsx b/src/icons/LineSegment.tsx index 79ac868bf..37a0b146a 100644 --- a/src/icons/LineSegment.tsx +++ b/src/icons/LineSegment.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LineSegments.tsx b/src/icons/LineSegments.tsx index e2e9f8d6d..5882d7594 100644 --- a/src/icons/LineSegments.tsx +++ b/src/icons/LineSegments.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Link.tsx b/src/icons/Link.tsx index 201a526d4..24d45a717 100644 --- a/src/icons/Link.tsx +++ b/src/icons/Link.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LinkBreak.tsx b/src/icons/LinkBreak.tsx index 209336b92..05c8912ec 100644 --- a/src/icons/LinkBreak.tsx +++ b/src/icons/LinkBreak.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LinkSimple.tsx b/src/icons/LinkSimple.tsx index 22e005881..2128b33ba 100644 --- a/src/icons/LinkSimple.tsx +++ b/src/icons/LinkSimple.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LinkSimpleBreak.tsx b/src/icons/LinkSimpleBreak.tsx index 51a3ae27a..05c30c29a 100644 --- a/src/icons/LinkSimpleBreak.tsx +++ b/src/icons/LinkSimpleBreak.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LinkSimpleHorizontal.tsx b/src/icons/LinkSimpleHorizontal.tsx index 0a59e287a..00092df1b 100644 --- a/src/icons/LinkSimpleHorizontal.tsx +++ b/src/icons/LinkSimpleHorizontal.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/LinkSimpleHorizontalBreak.tsx b/src/icons/LinkSimpleHorizontalBreak.tsx index a96158df8..f05e49c58 100644 --- a/src/icons/LinkSimpleHorizontalBreak.tsx +++ b/src/icons/LinkSimpleHorizontalBreak.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ @@ -36,7 +40,7 @@ const weights = new Map([ [ "thin", <> - + , ], ]); diff --git a/src/icons/LinkedinLogo.tsx b/src/icons/LinkedinLogo.tsx index ceef50b29..be6f505d6 100644 --- a/src/icons/LinkedinLogo.tsx +++ b/src/icons/LinkedinLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LinuxLogo.tsx b/src/icons/LinuxLogo.tsx index da9de49df..6fa2ab2b6 100644 --- a/src/icons/LinuxLogo.tsx +++ b/src/icons/LinuxLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/List.tsx b/src/icons/List.tsx index ed413de2f..43c78497e 100644 --- a/src/icons/List.tsx +++ b/src/icons/List.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/ListBullets.tsx b/src/icons/ListBullets.tsx index eb7c107a4..befcc74b3 100644 --- a/src/icons/ListBullets.tsx +++ b/src/icons/ListBullets.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/ListChecks.tsx b/src/icons/ListChecks.tsx index e35b916d4..08c129afc 100644 --- a/src/icons/ListChecks.tsx +++ b/src/icons/ListChecks.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ListDashes.tsx b/src/icons/ListDashes.tsx index ab49cdecc..a0268d898 100644 --- a/src/icons/ListDashes.tsx +++ b/src/icons/ListDashes.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/ListMagnifyingGlass.tsx b/src/icons/ListMagnifyingGlass.tsx new file mode 100644 index 000000000..140bd526b --- /dev/null +++ b/src/icons/ListMagnifyingGlass.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ListMagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +ListMagnifyingGlass.displayName = "ListMagnifyingGlass"; + +export default ListMagnifyingGlass; diff --git a/src/icons/ListNumbers.tsx b/src/icons/ListNumbers.tsx index d7c34a09b..965f5e5f0 100644 --- a/src/icons/ListNumbers.tsx +++ b/src/icons/ListNumbers.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ListPlus.tsx b/src/icons/ListPlus.tsx index fdb6541f1..e54da80c8 100644 --- a/src/icons/ListPlus.tsx +++ b/src/icons/ListPlus.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/Lock.tsx b/src/icons/Lock.tsx index a3250e6a9..f4a2096d4 100644 --- a/src/icons/Lock.tsx +++ b/src/icons/Lock.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LockKey.tsx b/src/icons/LockKey.tsx index 4b3b62b1a..b6221828c 100644 --- a/src/icons/LockKey.tsx +++ b/src/icons/LockKey.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LockKeyOpen.tsx b/src/icons/LockKeyOpen.tsx index 31e7f0649..62e09e615 100644 --- a/src/icons/LockKeyOpen.tsx +++ b/src/icons/LockKeyOpen.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LockLaminated.tsx b/src/icons/LockLaminated.tsx index 2d319379d..5f284a416 100644 --- a/src/icons/LockLaminated.tsx +++ b/src/icons/LockLaminated.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LockLaminatedOpen.tsx b/src/icons/LockLaminatedOpen.tsx index 86e06d1a2..7213d75c5 100644 --- a/src/icons/LockLaminatedOpen.tsx +++ b/src/icons/LockLaminatedOpen.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LockOpen.tsx b/src/icons/LockOpen.tsx index 8923a5bca..493042b2b 100644 --- a/src/icons/LockOpen.tsx +++ b/src/icons/LockOpen.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LockSimple.tsx b/src/icons/LockSimple.tsx index 3c377a9e6..fc4e785b7 100644 --- a/src/icons/LockSimple.tsx +++ b/src/icons/LockSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/LockSimpleOpen.tsx b/src/icons/LockSimpleOpen.tsx index 3df884ae8..a1eb4af1d 100644 --- a/src/icons/LockSimpleOpen.tsx +++ b/src/icons/LockSimpleOpen.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Lockers.tsx b/src/icons/Lockers.tsx new file mode 100644 index 000000000..40cd7fc1e --- /dev/null +++ b/src/icons/Lockers.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Lockers: Icon = forwardRef((props, ref) => ( + +)); + +Lockers.displayName = "Lockers"; + +export default Lockers; diff --git a/src/icons/MagicWand.tsx b/src/icons/MagicWand.tsx index 001d5f521..66ea4f3b1 100644 --- a/src/icons/MagicWand.tsx +++ b/src/icons/MagicWand.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Magnet.tsx b/src/icons/Magnet.tsx index 8a691459b..46f492ee3 100644 --- a/src/icons/Magnet.tsx +++ b/src/icons/Magnet.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MagnetStraight.tsx b/src/icons/MagnetStraight.tsx index b3be771e9..385734338 100644 --- a/src/icons/MagnetStraight.tsx +++ b/src/icons/MagnetStraight.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M104,56V96H48V56a8,8,0,0,1,8-8H96A8,8,0,0,1,104,56Zm96-8H160a8,8,0,0,0-8,8V96h56V56A8,8,0,0,0,200,48Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MagnifyingGlass.tsx b/src/icons/MagnifyingGlass.tsx index bb7765f7d..f94ea2e64 100644 --- a/src/icons/MagnifyingGlass.tsx +++ b/src/icons/MagnifyingGlass.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MagnifyingGlassMinus.tsx b/src/icons/MagnifyingGlassMinus.tsx index 2757dfd65..666c9e3f1 100644 --- a/src/icons/MagnifyingGlassMinus.tsx +++ b/src/icons/MagnifyingGlassMinus.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MagnifyingGlassPlus.tsx b/src/icons/MagnifyingGlassPlus.tsx index d0ef462aa..4bdb3a227 100644 --- a/src/icons/MagnifyingGlassPlus.tsx +++ b/src/icons/MagnifyingGlassPlus.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MapPin.tsx b/src/icons/MapPin.tsx index 362a90301..8ad3a7f1c 100644 --- a/src/icons/MapPin.tsx +++ b/src/icons/MapPin.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MapPinLine.tsx b/src/icons/MapPinLine.tsx index e5814054c..eefc77862 100644 --- a/src/icons/MapPinLine.tsx +++ b/src/icons/MapPinLine.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MapTrifold.tsx b/src/icons/MapTrifold.tsx index 80c4fee02..622acfe1b 100644 --- a/src/icons/MapTrifold.tsx +++ b/src/icons/MapTrifold.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MarkerCircle.tsx b/src/icons/MarkerCircle.tsx index b832d8b93..e53cb469c 100644 --- a/src/icons/MarkerCircle.tsx +++ b/src/icons/MarkerCircle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Martini.tsx b/src/icons/Martini.tsx index ff9888eb5..0bdaaef8f 100644 --- a/src/icons/Martini.tsx +++ b/src/icons/Martini.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MaskHappy.tsx b/src/icons/MaskHappy.tsx index adb297738..279931cd6 100644 --- a/src/icons/MaskHappy.tsx +++ b/src/icons/MaskHappy.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MaskSad.tsx b/src/icons/MaskSad.tsx index 0abcc2f91..65da5d957 100644 --- a/src/icons/MaskSad.tsx +++ b/src/icons/MaskSad.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MathOperations.tsx b/src/icons/MathOperations.tsx index fa022e73d..c37177009 100644 --- a/src/icons/MathOperations.tsx +++ b/src/icons/MathOperations.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Medal.tsx b/src/icons/Medal.tsx index 764ee23e6..054e3937d 100644 --- a/src/icons/Medal.tsx +++ b/src/icons/Medal.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MedalMilitary.tsx b/src/icons/MedalMilitary.tsx new file mode 100644 index 000000000..6d25b71ef --- /dev/null +++ b/src/icons/MedalMilitary.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const MedalMilitary: Icon = forwardRef((props, ref) => ( + +)); + +MedalMilitary.displayName = "MedalMilitary"; + +export default MedalMilitary; diff --git a/src/icons/MediumLogo.tsx b/src/icons/MediumLogo.tsx index 18b344597..7682fc34b 100644 --- a/src/icons/MediumLogo.tsx +++ b/src/icons/MediumLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Megaphone.tsx b/src/icons/Megaphone.tsx index e166c92b1..dacd0d528 100644 --- a/src/icons/Megaphone.tsx +++ b/src/icons/Megaphone.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MegaphoneSimple.tsx b/src/icons/MegaphoneSimple.tsx index 53e26f35b..0bc36a3b2 100644 --- a/src/icons/MegaphoneSimple.tsx +++ b/src/icons/MegaphoneSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MessengerLogo.tsx b/src/icons/MessengerLogo.tsx index 08cee2f5f..4cd0e9f92 100644 --- a/src/icons/MessengerLogo.tsx +++ b/src/icons/MessengerLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MetaLogo.tsx b/src/icons/MetaLogo.tsx new file mode 100644 index 000000000..355ef1326 --- /dev/null +++ b/src/icons/MetaLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const MetaLogo: Icon = forwardRef((props, ref) => ( + +)); + +MetaLogo.displayName = "MetaLogo"; + +export default MetaLogo; diff --git a/src/icons/Metronome.tsx b/src/icons/Metronome.tsx new file mode 100644 index 000000000..b64110b50 --- /dev/null +++ b/src/icons/Metronome.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Metronome: Icon = forwardRef((props, ref) => ( + +)); + +Metronome.displayName = "Metronome"; + +export default Metronome; diff --git a/src/icons/Microphone.tsx b/src/icons/Microphone.tsx index c860f689e..efb644df6 100644 --- a/src/icons/Microphone.tsx +++ b/src/icons/Microphone.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MicrophoneSlash.tsx b/src/icons/MicrophoneSlash.tsx index 49ad5d8cd..294304444 100644 --- a/src/icons/MicrophoneSlash.tsx +++ b/src/icons/MicrophoneSlash.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MicrophoneStage.tsx b/src/icons/MicrophoneStage.tsx index e63726aef..aeaa64ab9 100644 --- a/src/icons/MicrophoneStage.tsx +++ b/src/icons/MicrophoneStage.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MicrosoftExcelLogo.tsx b/src/icons/MicrosoftExcelLogo.tsx index 9d6ed8016..9ec346ceb 100644 --- a/src/icons/MicrosoftExcelLogo.tsx +++ b/src/icons/MicrosoftExcelLogo.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M152,80v96a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H144A8,8,0,0,1,152,80Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MicrosoftOutlookLogo.tsx b/src/icons/MicrosoftOutlookLogo.tsx new file mode 100644 index 000000000..40b108857 --- /dev/null +++ b/src/icons/MicrosoftOutlookLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const MicrosoftOutlookLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftOutlookLogo.displayName = "MicrosoftOutlookLogo"; + +export default MicrosoftOutlookLogo; diff --git a/src/icons/MicrosoftPowerpointLogo.tsx b/src/icons/MicrosoftPowerpointLogo.tsx index 6e7e04f07..fc7a00e3a 100644 --- a/src/icons/MicrosoftPowerpointLogo.tsx +++ b/src/icons/MicrosoftPowerpointLogo.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,32 +16,31 @@ const weights = new Map([ d="M152,80v96a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H144A8,8,0,0,1,152,80Z" opacity="0.2" /> - + , ], [ "fill", <> - - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MicrosoftTeamsLogo.tsx b/src/icons/MicrosoftTeamsLogo.tsx index bc0cef955..c7f2a463f 100644 --- a/src/icons/MicrosoftTeamsLogo.tsx +++ b/src/icons/MicrosoftTeamsLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MicrosoftWordLogo.tsx b/src/icons/MicrosoftWordLogo.tsx index 324dca044..c4124ed69 100644 --- a/src/icons/MicrosoftWordLogo.tsx +++ b/src/icons/MicrosoftWordLogo.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M152,80v96a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H144A8,8,0,0,1,152,80Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Minus.tsx b/src/icons/Minus.tsx index 70deec1ad..e23a2d5a6 100644 --- a/src/icons/Minus.tsx +++ b/src/icons/Minus.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MinusCircle.tsx b/src/icons/MinusCircle.tsx index dede4f942..2d9de6629 100644 --- a/src/icons/MinusCircle.tsx +++ b/src/icons/MinusCircle.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MinusSquare.tsx b/src/icons/MinusSquare.tsx new file mode 100644 index 000000000..759d7c934 --- /dev/null +++ b/src/icons/MinusSquare.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const MinusSquare: Icon = forwardRef((props, ref) => ( + +)); + +MinusSquare.displayName = "MinusSquare"; + +export default MinusSquare; diff --git a/src/icons/Money.tsx b/src/icons/Money.tsx index a13832afc..de1214026 100644 --- a/src/icons/Money.tsx +++ b/src/icons/Money.tsx @@ -6,44 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Monitor.tsx b/src/icons/Monitor.tsx index c122e17a9..42d3de074 100644 --- a/src/icons/Monitor.tsx +++ b/src/icons/Monitor.tsx @@ -6,48 +6,42 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MonitorPlay.tsx b/src/icons/MonitorPlay.tsx index a563c0456..3d2db43f0 100644 --- a/src/icons/MonitorPlay.tsx +++ b/src/icons/MonitorPlay.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Moon.tsx b/src/icons/Moon.tsx index 7c77c13c5..8163e406b 100644 --- a/src/icons/Moon.tsx +++ b/src/icons/Moon.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MoonStars.tsx b/src/icons/MoonStars.tsx index 2cba6e721..fee0fb5db 100644 --- a/src/icons/MoonStars.tsx +++ b/src/icons/MoonStars.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Moped.tsx b/src/icons/Moped.tsx new file mode 100644 index 000000000..67b0f8fcf --- /dev/null +++ b/src/icons/Moped.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Moped: Icon = forwardRef((props, ref) => ( + +)); + +Moped.displayName = "Moped"; + +export default Moped; diff --git a/src/icons/MopedFront.tsx b/src/icons/MopedFront.tsx new file mode 100644 index 000000000..015c10ccf --- /dev/null +++ b/src/icons/MopedFront.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const MopedFront: Icon = forwardRef((props, ref) => ( + +)); + +MopedFront.displayName = "MopedFront"; + +export default MopedFront; diff --git a/src/icons/Mosque.tsx b/src/icons/Mosque.tsx new file mode 100644 index 000000000..2b364004c --- /dev/null +++ b/src/icons/Mosque.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Mosque: Icon = forwardRef((props, ref) => ( + +)); + +Mosque.displayName = "Mosque"; + +export default Mosque; diff --git a/src/icons/Motorcycle.tsx b/src/icons/Motorcycle.tsx new file mode 100644 index 000000000..66c2c4731 --- /dev/null +++ b/src/icons/Motorcycle.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Motorcycle: Icon = forwardRef((props, ref) => ( + +)); + +Motorcycle.displayName = "Motorcycle"; + +export default Motorcycle; diff --git a/src/icons/Mountains.tsx b/src/icons/Mountains.tsx index 33bde348a..30d4f4f50 100644 --- a/src/icons/Mountains.tsx +++ b/src/icons/Mountains.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Mouse.tsx b/src/icons/Mouse.tsx index 62b7bda86..7d5ec0274 100644 --- a/src/icons/Mouse.tsx +++ b/src/icons/Mouse.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MouseSimple.tsx b/src/icons/MouseSimple.tsx index 0a9b5654c..a818b336c 100644 --- a/src/icons/MouseSimple.tsx +++ b/src/icons/MouseSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MusicNote.tsx b/src/icons/MusicNote.tsx index 9f3b382db..a92136a02 100644 --- a/src/icons/MusicNote.tsx +++ b/src/icons/MusicNote.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MusicNoteSimple.tsx b/src/icons/MusicNoteSimple.tsx index 74b3ff0ff..46e90cf8a 100644 --- a/src/icons/MusicNoteSimple.tsx +++ b/src/icons/MusicNoteSimple.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MusicNotes.tsx b/src/icons/MusicNotes.tsx index 54d4f7d10..4e6f46917 100644 --- a/src/icons/MusicNotes.tsx +++ b/src/icons/MusicNotes.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MusicNotesPlus.tsx b/src/icons/MusicNotesPlus.tsx index 9e04029c1..5a9e9bc4c 100644 --- a/src/icons/MusicNotesPlus.tsx +++ b/src/icons/MusicNotesPlus.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,172a28,28,0,1,1-28-28A28,28,0,0,1,208,172ZM52,176a28,28,0,1,0,28,28A28,28,0,0,0,52,176Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/MusicNotesSimple.tsx b/src/icons/MusicNotesSimple.tsx index 1a522d70a..042a5c5da 100644 --- a/src/icons/MusicNotesSimple.tsx +++ b/src/icons/MusicNotesSimple.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NavigationArrow.tsx b/src/icons/NavigationArrow.tsx index 27cfb2f62..facf92f1e 100644 --- a/src/icons/NavigationArrow.tsx +++ b/src/icons/NavigationArrow.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Needle.tsx b/src/icons/Needle.tsx index 1a18906af..83e038b70 100644 --- a/src/icons/Needle.tsx +++ b/src/icons/Needle.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Newspaper.tsx b/src/icons/Newspaper.tsx index 139a5cf99..f3e6d91fb 100644 --- a/src/icons/Newspaper.tsx +++ b/src/icons/Newspaper.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NewspaperClipping.tsx b/src/icons/NewspaperClipping.tsx index 9785acf54..847c161c3 100644 --- a/src/icons/NewspaperClipping.tsx +++ b/src/icons/NewspaperClipping.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Notches.tsx b/src/icons/Notches.tsx new file mode 100644 index 000000000..78d0421fc --- /dev/null +++ b/src/icons/Notches.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Notches: Icon = forwardRef((props, ref) => ( + +)); + +Notches.displayName = "Notches"; + +export default Notches; diff --git a/src/icons/Note.tsx b/src/icons/Note.tsx index d23664576..1792079c7 100644 --- a/src/icons/Note.tsx +++ b/src/icons/Note.tsx @@ -6,43 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NoteBlank.tsx b/src/icons/NoteBlank.tsx index 6d3bcb696..54b79bc32 100644 --- a/src/icons/NoteBlank.tsx +++ b/src/icons/NoteBlank.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NotePencil.tsx b/src/icons/NotePencil.tsx index ea12d3041..6ef6318fd 100644 --- a/src/icons/NotePencil.tsx +++ b/src/icons/NotePencil.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Notebook.tsx b/src/icons/Notebook.tsx index 93110ff82..733e1eb92 100644 --- a/src/icons/Notebook.tsx +++ b/src/icons/Notebook.tsx @@ -6,18 +6,14 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ @@ -35,7 +31,7 @@ const weights = new Map([ [ "regular", <> - + , ], [ diff --git a/src/icons/Notepad.tsx b/src/icons/Notepad.tsx index 388f8a348..43fa8106c 100644 --- a/src/icons/Notepad.tsx +++ b/src/icons/Notepad.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Notification.tsx b/src/icons/Notification.tsx index 488bcdc69..7c69c1737 100644 --- a/src/icons/Notification.tsx +++ b/src/icons/Notification.tsx @@ -6,14 +6,14 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ @@ -25,19 +25,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NotionLogo.tsx b/src/icons/NotionLogo.tsx new file mode 100644 index 000000000..4a068b4e1 --- /dev/null +++ b/src/icons/NotionLogo.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const NotionLogo: Icon = forwardRef((props, ref) => ( + +)); + +NotionLogo.displayName = "NotionLogo"; + +export default NotionLogo; diff --git a/src/icons/NumberCircleEight.tsx b/src/icons/NumberCircleEight.tsx index 71747e238..28a9237f8 100644 --- a/src/icons/NumberCircleEight.tsx +++ b/src/icons/NumberCircleEight.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleFive.tsx b/src/icons/NumberCircleFive.tsx index 2d5e1790a..6ddf27d45 100644 --- a/src/icons/NumberCircleFive.tsx +++ b/src/icons/NumberCircleFive.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleFour.tsx b/src/icons/NumberCircleFour.tsx index 070ed0f8f..2fa1d8148 100644 --- a/src/icons/NumberCircleFour.tsx +++ b/src/icons/NumberCircleFour.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleNine.tsx b/src/icons/NumberCircleNine.tsx index 473984654..f1917cfe9 100644 --- a/src/icons/NumberCircleNine.tsx +++ b/src/icons/NumberCircleNine.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleOne.tsx b/src/icons/NumberCircleOne.tsx index 4f3413eef..eb1bc7d5b 100644 --- a/src/icons/NumberCircleOne.tsx +++ b/src/icons/NumberCircleOne.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleSeven.tsx b/src/icons/NumberCircleSeven.tsx index c3190dfd3..ee586c3a5 100644 --- a/src/icons/NumberCircleSeven.tsx +++ b/src/icons/NumberCircleSeven.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleSix.tsx b/src/icons/NumberCircleSix.tsx index 0eeaa09b0..8608601c1 100644 --- a/src/icons/NumberCircleSix.tsx +++ b/src/icons/NumberCircleSix.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleThree.tsx b/src/icons/NumberCircleThree.tsx index 26de8fd53..51863c437 100644 --- a/src/icons/NumberCircleThree.tsx +++ b/src/icons/NumberCircleThree.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleTwo.tsx b/src/icons/NumberCircleTwo.tsx index 912ed5705..5caeacdd6 100644 --- a/src/icons/NumberCircleTwo.tsx +++ b/src/icons/NumberCircleTwo.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberCircleZero.tsx b/src/icons/NumberCircleZero.tsx index 9682e9298..8a82f97f1 100644 --- a/src/icons/NumberCircleZero.tsx +++ b/src/icons/NumberCircleZero.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberEight.tsx b/src/icons/NumberEight.tsx index 798e2d8eb..9962265d1 100644 --- a/src/icons/NumberEight.tsx +++ b/src/icons/NumberEight.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberFive.tsx b/src/icons/NumberFive.tsx index 1680ad968..a853db504 100644 --- a/src/icons/NumberFive.tsx +++ b/src/icons/NumberFive.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberFour.tsx b/src/icons/NumberFour.tsx index bf2c704ee..931e8e93d 100644 --- a/src/icons/NumberFour.tsx +++ b/src/icons/NumberFour.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberNine.tsx b/src/icons/NumberNine.tsx index bea19a325..618330c6d 100644 --- a/src/icons/NumberNine.tsx +++ b/src/icons/NumberNine.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberOne.tsx b/src/icons/NumberOne.tsx index 105f0b5bb..6a9de8998 100644 --- a/src/icons/NumberOne.tsx +++ b/src/icons/NumberOne.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSeven.tsx b/src/icons/NumberSeven.tsx index bf67b7db8..89399822f 100644 --- a/src/icons/NumberSeven.tsx +++ b/src/icons/NumberSeven.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSix.tsx b/src/icons/NumberSix.tsx index b46bafc3a..497e9820d 100644 --- a/src/icons/NumberSix.tsx +++ b/src/icons/NumberSix.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareEight.tsx b/src/icons/NumberSquareEight.tsx index 27baaf7a6..00a247fe7 100644 --- a/src/icons/NumberSquareEight.tsx +++ b/src/icons/NumberSquareEight.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareFive.tsx b/src/icons/NumberSquareFive.tsx index 0cbc8f098..53991c302 100644 --- a/src/icons/NumberSquareFive.tsx +++ b/src/icons/NumberSquareFive.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareFour.tsx b/src/icons/NumberSquareFour.tsx index 4baef9cd9..89b8f35ed 100644 --- a/src/icons/NumberSquareFour.tsx +++ b/src/icons/NumberSquareFour.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareNine.tsx b/src/icons/NumberSquareNine.tsx index 7dc48cdc6..82055be35 100644 --- a/src/icons/NumberSquareNine.tsx +++ b/src/icons/NumberSquareNine.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareOne.tsx b/src/icons/NumberSquareOne.tsx index 82d21a057..34b0240a8 100644 --- a/src/icons/NumberSquareOne.tsx +++ b/src/icons/NumberSquareOne.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareSeven.tsx b/src/icons/NumberSquareSeven.tsx index 78632294f..c00443b90 100644 --- a/src/icons/NumberSquareSeven.tsx +++ b/src/icons/NumberSquareSeven.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareSix.tsx b/src/icons/NumberSquareSix.tsx index 59ce10b0e..4d1efcdcb 100644 --- a/src/icons/NumberSquareSix.tsx +++ b/src/icons/NumberSquareSix.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareThree.tsx b/src/icons/NumberSquareThree.tsx index 99604f914..376428b49 100644 --- a/src/icons/NumberSquareThree.tsx +++ b/src/icons/NumberSquareThree.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareTwo.tsx b/src/icons/NumberSquareTwo.tsx index 9ab85a01a..cc5a87fcf 100644 --- a/src/icons/NumberSquareTwo.tsx +++ b/src/icons/NumberSquareTwo.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberSquareZero.tsx b/src/icons/NumberSquareZero.tsx index 1062135e8..cdfa743ee 100644 --- a/src/icons/NumberSquareZero.tsx +++ b/src/icons/NumberSquareZero.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberThree.tsx b/src/icons/NumberThree.tsx index 5e45011c8..02ca9eec4 100644 --- a/src/icons/NumberThree.tsx +++ b/src/icons/NumberThree.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberTwo.tsx b/src/icons/NumberTwo.tsx index 7eaabff4b..54506a2ed 100644 --- a/src/icons/NumberTwo.tsx +++ b/src/icons/NumberTwo.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NumberZero.tsx b/src/icons/NumberZero.tsx index 82465417f..7a48c23da 100644 --- a/src/icons/NumberZero.tsx +++ b/src/icons/NumberZero.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Nut.tsx b/src/icons/Nut.tsx index 6a7906254..2212c2e8b 100644 --- a/src/icons/Nut.tsx +++ b/src/icons/Nut.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/NyTimesLogo.tsx b/src/icons/NyTimesLogo.tsx index 32cb2ca59..28cd92a78 100644 --- a/src/icons/NyTimesLogo.tsx +++ b/src/icons/NyTimesLogo.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Octagon.tsx b/src/icons/Octagon.tsx index 3fe4e4c8d..00137c8a6 100644 --- a/src/icons/Octagon.tsx +++ b/src/icons/Octagon.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/OfficeChair.tsx b/src/icons/OfficeChair.tsx new file mode 100644 index 000000000..b43136e2e --- /dev/null +++ b/src/icons/OfficeChair.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const OfficeChair: Icon = forwardRef((props, ref) => ( + +)); + +OfficeChair.displayName = "OfficeChair"; + +export default OfficeChair; diff --git a/src/icons/Option.tsx b/src/icons/Option.tsx index d4ba135fc..87eb62f5b 100644 --- a/src/icons/Option.tsx +++ b/src/icons/Option.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/OrangeSlice.tsx b/src/icons/OrangeSlice.tsx new file mode 100644 index 000000000..a01fa88bb --- /dev/null +++ b/src/icons/OrangeSlice.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const OrangeSlice: Icon = forwardRef((props, ref) => ( + +)); + +OrangeSlice.displayName = "OrangeSlice"; + +export default OrangeSlice; diff --git a/src/icons/Package.tsx b/src/icons/Package.tsx index 3358b5b43..e32e25349 100644 --- a/src/icons/Package.tsx +++ b/src/icons/Package.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaintBrush.tsx b/src/icons/PaintBrush.tsx index 597fe3119..1660b830d 100644 --- a/src/icons/PaintBrush.tsx +++ b/src/icons/PaintBrush.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaintBrushBroad.tsx b/src/icons/PaintBrushBroad.tsx index 322c50aa3..deb5e9d47 100644 --- a/src/icons/PaintBrushBroad.tsx +++ b/src/icons/PaintBrushBroad.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaintBrushHousehold.tsx b/src/icons/PaintBrushHousehold.tsx index fad38f944..e431764c2 100644 --- a/src/icons/PaintBrushHousehold.tsx +++ b/src/icons/PaintBrushHousehold.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaintBucket.tsx b/src/icons/PaintBucket.tsx index 29e9a8aa5..ac2dcaa8e 100644 --- a/src/icons/PaintBucket.tsx +++ b/src/icons/PaintBucket.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaintRoller.tsx b/src/icons/PaintRoller.tsx index acb3cce43..aeec66f3f 100644 --- a/src/icons/PaintRoller.tsx +++ b/src/icons/PaintRoller.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M208,64v64a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V64a8,8,0,0,1,8-8H200A8,8,0,0,1,208,64Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Palette.tsx b/src/icons/Palette.tsx index 51ee5dff1..d57c2e026 100644 --- a/src/icons/Palette.tsx +++ b/src/icons/Palette.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Pants.tsx b/src/icons/Pants.tsx new file mode 100644 index 000000000..35980ab46 --- /dev/null +++ b/src/icons/Pants.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Pants: Icon = forwardRef((props, ref) => ( + +)); + +Pants.displayName = "Pants"; + +export default Pants; diff --git a/src/icons/PaperPlane.tsx b/src/icons/PaperPlane.tsx index 7134b04a6..b250db149 100644 --- a/src/icons/PaperPlane.tsx +++ b/src/icons/PaperPlane.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaperPlaneRight.tsx b/src/icons/PaperPlaneRight.tsx index e536d6a5f..0067fc88a 100644 --- a/src/icons/PaperPlaneRight.tsx +++ b/src/icons/PaperPlaneRight.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaperPlaneTilt.tsx b/src/icons/PaperPlaneTilt.tsx index 01aae68f9..a836cfb54 100644 --- a/src/icons/PaperPlaneTilt.tsx +++ b/src/icons/PaperPlaneTilt.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Paperclip.tsx b/src/icons/Paperclip.tsx index 1a8bd457f..e3b3da4f9 100644 --- a/src/icons/Paperclip.tsx +++ b/src/icons/Paperclip.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaperclipHorizontal.tsx b/src/icons/PaperclipHorizontal.tsx index 75a1e1e75..87124686f 100644 --- a/src/icons/PaperclipHorizontal.tsx +++ b/src/icons/PaperclipHorizontal.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Parachute.tsx b/src/icons/Parachute.tsx index f222485a9..f9d761146 100644 --- a/src/icons/Parachute.tsx +++ b/src/icons/Parachute.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M128,24S88,48,88,120H32A96,96,0,0,1,128,24Zm0,0s40,24,40,96h56A96,96,0,0,0,128,24Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Paragraph.tsx b/src/icons/Paragraph.tsx new file mode 100644 index 000000000..8146951bd --- /dev/null +++ b/src/icons/Paragraph.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Paragraph: Icon = forwardRef((props, ref) => ( + +)); + +Paragraph.displayName = "Paragraph"; + +export default Paragraph; diff --git a/src/icons/Parallelogram.tsx b/src/icons/Parallelogram.tsx new file mode 100644 index 000000000..58838807e --- /dev/null +++ b/src/icons/Parallelogram.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Parallelogram: Icon = forwardRef((props, ref) => ( + +)); + +Parallelogram.displayName = "Parallelogram"; + +export default Parallelogram; diff --git a/src/icons/Park.tsx b/src/icons/Park.tsx new file mode 100644 index 000000000..931c8757c --- /dev/null +++ b/src/icons/Park.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Park: Icon = forwardRef((props, ref) => ( + +)); + +Park.displayName = "Park"; + +export default Park; diff --git a/src/icons/Password.tsx b/src/icons/Password.tsx index b0385965f..6ecb2af9d 100644 --- a/src/icons/Password.tsx +++ b/src/icons/Password.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Path.tsx b/src/icons/Path.tsx index 7a14d86c7..84bc9746f 100644 --- a/src/icons/Path.tsx +++ b/src/icons/Path.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PatreonLogo.tsx b/src/icons/PatreonLogo.tsx new file mode 100644 index 000000000..6142c689b --- /dev/null +++ b/src/icons/PatreonLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PatreonLogo: Icon = forwardRef((props, ref) => ( + +)); + +PatreonLogo.displayName = "PatreonLogo"; + +export default PatreonLogo; diff --git a/src/icons/Pause.tsx b/src/icons/Pause.tsx index 82ee47bfd..d64526824 100644 --- a/src/icons/Pause.tsx +++ b/src/icons/Pause.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PauseCircle.tsx b/src/icons/PauseCircle.tsx index 14bd48cca..9213e4b1d 100644 --- a/src/icons/PauseCircle.tsx +++ b/src/icons/PauseCircle.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PawPrint.tsx b/src/icons/PawPrint.tsx index ea3389cc5..53dd144ff 100644 --- a/src/icons/PawPrint.tsx +++ b/src/icons/PawPrint.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PaypalLogo.tsx b/src/icons/PaypalLogo.tsx new file mode 100644 index 000000000..5c492ff57 --- /dev/null +++ b/src/icons/PaypalLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PaypalLogo: Icon = forwardRef((props, ref) => ( + +)); + +PaypalLogo.displayName = "PaypalLogo"; + +export default PaypalLogo; diff --git a/src/icons/Peace.tsx b/src/icons/Peace.tsx index 96f5c9cf8..2ea38c771 100644 --- a/src/icons/Peace.tsx +++ b/src/icons/Peace.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Pen.tsx b/src/icons/Pen.tsx index 9970c3805..f19a6a556 100644 --- a/src/icons/Pen.tsx +++ b/src/icons/Pen.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PenNib.tsx b/src/icons/PenNib.tsx index b12dc4e0c..b52ec1ddd 100644 --- a/src/icons/PenNib.tsx +++ b/src/icons/PenNib.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PenNibStraight.tsx b/src/icons/PenNibStraight.tsx index 3d9e9cc54..0290902d7 100644 --- a/src/icons/PenNibStraight.tsx +++ b/src/icons/PenNibStraight.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Pencil.tsx b/src/icons/Pencil.tsx index 08ffebfe3..34296c6fd 100644 --- a/src/icons/Pencil.tsx +++ b/src/icons/Pencil.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PencilCircle.tsx b/src/icons/PencilCircle.tsx index a7b73076e..6608aee4f 100644 --- a/src/icons/PencilCircle.tsx +++ b/src/icons/PencilCircle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PencilLine.tsx b/src/icons/PencilLine.tsx index 4c8783a73..53aa7b921 100644 --- a/src/icons/PencilLine.tsx +++ b/src/icons/PencilLine.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PencilSimple.tsx b/src/icons/PencilSimple.tsx index 8c2fcefc7..f42f683d4 100644 --- a/src/icons/PencilSimple.tsx +++ b/src/icons/PencilSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PencilSimpleLine.tsx b/src/icons/PencilSimpleLine.tsx index 9da62cb7b..0061e66a5 100644 --- a/src/icons/PencilSimpleLine.tsx +++ b/src/icons/PencilSimpleLine.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PencilSimpleSlash.tsx b/src/icons/PencilSimpleSlash.tsx new file mode 100644 index 000000000..a84719143 --- /dev/null +++ b/src/icons/PencilSimpleSlash.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PencilSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +PencilSimpleSlash.displayName = "PencilSimpleSlash"; + +export default PencilSimpleSlash; diff --git a/src/icons/PencilSlash.tsx b/src/icons/PencilSlash.tsx new file mode 100644 index 000000000..fe3987ccb --- /dev/null +++ b/src/icons/PencilSlash.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PencilSlash: Icon = forwardRef((props, ref) => ( + +)); + +PencilSlash.displayName = "PencilSlash"; + +export default PencilSlash; diff --git a/src/icons/Pentagram.tsx b/src/icons/Pentagram.tsx new file mode 100644 index 000000000..da4a36c3d --- /dev/null +++ b/src/icons/Pentagram.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Pentagram: Icon = forwardRef((props, ref) => ( + +)); + +Pentagram.displayName = "Pentagram"; + +export default Pentagram; diff --git a/src/icons/Pepper.tsx b/src/icons/Pepper.tsx new file mode 100644 index 000000000..baae36952 --- /dev/null +++ b/src/icons/Pepper.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Pepper: Icon = forwardRef((props, ref) => ( + +)); + +Pepper.displayName = "Pepper"; + +export default Pepper; diff --git a/src/icons/Percent.tsx b/src/icons/Percent.tsx index 310dcb5b0..ba600a146 100644 --- a/src/icons/Percent.tsx +++ b/src/icons/Percent.tsx @@ -6,45 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Person.tsx b/src/icons/Person.tsx index 375a279e1..38201f136 100644 --- a/src/icons/Person.tsx +++ b/src/icons/Person.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PersonArmsSpread.tsx b/src/icons/PersonArmsSpread.tsx new file mode 100644 index 000000000..1aba93084 --- /dev/null +++ b/src/icons/PersonArmsSpread.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PersonArmsSpread: Icon = forwardRef((props, ref) => ( + +)); + +PersonArmsSpread.displayName = "PersonArmsSpread"; + +export default PersonArmsSpread; diff --git a/src/icons/PersonSimple.tsx b/src/icons/PersonSimple.tsx index 46159815f..e54efbf92 100644 --- a/src/icons/PersonSimple.tsx +++ b/src/icons/PersonSimple.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PersonSimpleBike.tsx b/src/icons/PersonSimpleBike.tsx new file mode 100644 index 000000000..7ac83bcb2 --- /dev/null +++ b/src/icons/PersonSimpleBike.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PersonSimpleBike: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleBike.displayName = "PersonSimpleBike"; + +export default PersonSimpleBike; diff --git a/src/icons/PersonSimpleRun.tsx b/src/icons/PersonSimpleRun.tsx index c96009fb8..fbbcf2671 100644 --- a/src/icons/PersonSimpleRun.tsx +++ b/src/icons/PersonSimpleRun.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PersonSimpleThrow.tsx b/src/icons/PersonSimpleThrow.tsx new file mode 100644 index 000000000..6b83b06a3 --- /dev/null +++ b/src/icons/PersonSimpleThrow.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PersonSimpleThrow: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleThrow.displayName = "PersonSimpleThrow"; + +export default PersonSimpleThrow; diff --git a/src/icons/PersonSimpleWalk.tsx b/src/icons/PersonSimpleWalk.tsx index 78527632a..d7975ab45 100644 --- a/src/icons/PersonSimpleWalk.tsx +++ b/src/icons/PersonSimpleWalk.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Perspective.tsx b/src/icons/Perspective.tsx index ba46e8190..205601861 100644 --- a/src/icons/Perspective.tsx +++ b/src/icons/Perspective.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Phone.tsx b/src/icons/Phone.tsx index bc6f47ae4..08ebb56ed 100644 --- a/src/icons/Phone.tsx +++ b/src/icons/Phone.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PhoneCall.tsx b/src/icons/PhoneCall.tsx index 1eaccc757..cf0cbd09b 100644 --- a/src/icons/PhoneCall.tsx +++ b/src/icons/PhoneCall.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PhoneDisconnect.tsx b/src/icons/PhoneDisconnect.tsx index 6cfdb4688..af31d35da 100644 --- a/src/icons/PhoneDisconnect.tsx +++ b/src/icons/PhoneDisconnect.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PhoneIncoming.tsx b/src/icons/PhoneIncoming.tsx index 283260dd0..aa6598ad1 100644 --- a/src/icons/PhoneIncoming.tsx +++ b/src/icons/PhoneIncoming.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PhoneOutgoing.tsx b/src/icons/PhoneOutgoing.tsx index 696c33ba7..d1fc756e4 100644 --- a/src/icons/PhoneOutgoing.tsx +++ b/src/icons/PhoneOutgoing.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PhonePlus.tsx b/src/icons/PhonePlus.tsx new file mode 100644 index 000000000..5af7744e8 --- /dev/null +++ b/src/icons/PhonePlus.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PhonePlus: Icon = forwardRef((props, ref) => ( + +)); + +PhonePlus.displayName = "PhonePlus"; + +export default PhonePlus; diff --git a/src/icons/PhoneSlash.tsx b/src/icons/PhoneSlash.tsx index 57b3cfd7c..30787ea80 100644 --- a/src/icons/PhoneSlash.tsx +++ b/src/icons/PhoneSlash.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PhoneX.tsx b/src/icons/PhoneX.tsx index 0be89ce33..81ea7bf29 100644 --- a/src/icons/PhoneX.tsx +++ b/src/icons/PhoneX.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PhosphorLogo.tsx b/src/icons/PhosphorLogo.tsx index 758285575..4d33974d2 100644 --- a/src/icons/PhosphorLogo.tsx +++ b/src/icons/PhosphorLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Pi.tsx b/src/icons/Pi.tsx new file mode 100644 index 000000000..0b1dbe46f --- /dev/null +++ b/src/icons/Pi.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Pi: Icon = forwardRef((props, ref) => ( + +)); + +Pi.displayName = "Pi"; + +export default Pi; diff --git a/src/icons/PianoKeys.tsx b/src/icons/PianoKeys.tsx index 80ba7f799..b6e7ab19a 100644 --- a/src/icons/PianoKeys.tsx +++ b/src/icons/PianoKeys.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PictureInPicture.tsx b/src/icons/PictureInPicture.tsx index 64e5c050b..eaeee4618 100644 --- a/src/icons/PictureInPicture.tsx +++ b/src/icons/PictureInPicture.tsx @@ -6,14 +6,14 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> @@ -22,7 +22,7 @@ const weights = new Map([ [ "fill", <> - + , ], [ diff --git a/src/icons/PiggyBank.tsx b/src/icons/PiggyBank.tsx new file mode 100644 index 000000000..b3094a6c1 --- /dev/null +++ b/src/icons/PiggyBank.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PiggyBank: Icon = forwardRef((props, ref) => ( + +)); + +PiggyBank.displayName = "PiggyBank"; + +export default PiggyBank; diff --git a/src/icons/Pill.tsx b/src/icons/Pill.tsx index d5aac5008..dd834dd65 100644 --- a/src/icons/Pill.tsx +++ b/src/icons/Pill.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PinterestLogo.tsx b/src/icons/PinterestLogo.tsx index 6d94bb689..3ddd1454a 100644 --- a/src/icons/PinterestLogo.tsx +++ b/src/icons/PinterestLogo.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Pinwheel.tsx b/src/icons/Pinwheel.tsx index 2afdefdf5..a4bfbfb94 100644 --- a/src/icons/Pinwheel.tsx +++ b/src/icons/Pinwheel.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Pizza.tsx b/src/icons/Pizza.tsx index ff5abfd9a..fa63d1007 100644 --- a/src/icons/Pizza.tsx +++ b/src/icons/Pizza.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Placeholder.tsx b/src/icons/Placeholder.tsx index 801376d4f..eeb9d3452 100644 --- a/src/icons/Placeholder.tsx +++ b/src/icons/Placeholder.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M216,48V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Planet.tsx b/src/icons/Planet.tsx index 120081c4c..1a45a21ab 100644 --- a/src/icons/Planet.tsx +++ b/src/icons/Planet.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Plant.tsx b/src/icons/Plant.tsx new file mode 100644 index 000000000..f7eb62e64 --- /dev/null +++ b/src/icons/Plant.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Plant: Icon = forwardRef((props, ref) => ( + +)); + +Plant.displayName = "Plant"; + +export default Plant; diff --git a/src/icons/Play.tsx b/src/icons/Play.tsx index 38015c5c7..e043e0c7a 100644 --- a/src/icons/Play.tsx +++ b/src/icons/Play.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PlayCircle.tsx b/src/icons/PlayCircle.tsx index d10b62323..4f422c69a 100644 --- a/src/icons/PlayCircle.tsx +++ b/src/icons/PlayCircle.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PlayPause.tsx b/src/icons/PlayPause.tsx new file mode 100644 index 000000000..01494a365 --- /dev/null +++ b/src/icons/PlayPause.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PlayPause: Icon = forwardRef((props, ref) => ( + +)); + +PlayPause.displayName = "PlayPause"; + +export default PlayPause; diff --git a/src/icons/Playlist.tsx b/src/icons/Playlist.tsx index 865d39bab..17b38e02c 100644 --- a/src/icons/Playlist.tsx +++ b/src/icons/Playlist.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Plug.tsx b/src/icons/Plug.tsx index 801de1d0e..0e4888998 100644 --- a/src/icons/Plug.tsx +++ b/src/icons/Plug.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PlugCharging.tsx b/src/icons/PlugCharging.tsx new file mode 100644 index 000000000..67d0c951f --- /dev/null +++ b/src/icons/PlugCharging.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PlugCharging: Icon = forwardRef((props, ref) => ( + +)); + +PlugCharging.displayName = "PlugCharging"; + +export default PlugCharging; diff --git a/src/icons/Plugs.tsx b/src/icons/Plugs.tsx index 3dbe52f60..7029a487c 100644 --- a/src/icons/Plugs.tsx +++ b/src/icons/Plugs.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PlugsConnected.tsx b/src/icons/PlugsConnected.tsx index b19d80cc1..9ecf51fb3 100644 --- a/src/icons/PlugsConnected.tsx +++ b/src/icons/PlugsConnected.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Plus.tsx b/src/icons/Plus.tsx index c6926f616..85f684232 100644 --- a/src/icons/Plus.tsx +++ b/src/icons/Plus.tsx @@ -12,13 +12,17 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/PlusCircle.tsx b/src/icons/PlusCircle.tsx index 3d4b0b60c..93a1e1d23 100644 --- a/src/icons/PlusCircle.tsx +++ b/src/icons/PlusCircle.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PlusMinus.tsx b/src/icons/PlusMinus.tsx index 467c2c046..d74c0893a 100644 --- a/src/icons/PlusMinus.tsx +++ b/src/icons/PlusMinus.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PlusSquare.tsx b/src/icons/PlusSquare.tsx new file mode 100644 index 000000000..2545d0ff2 --- /dev/null +++ b/src/icons/PlusSquare.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PlusSquare: Icon = forwardRef((props, ref) => ( + +)); + +PlusSquare.displayName = "PlusSquare"; + +export default PlusSquare; diff --git a/src/icons/PokerChip.tsx b/src/icons/PokerChip.tsx index 728232641..7327b7689 100644 --- a/src/icons/PokerChip.tsx +++ b/src/icons/PokerChip.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PoliceCar.tsx b/src/icons/PoliceCar.tsx index 22bfbf2fa..4ed65690c 100644 --- a/src/icons/PoliceCar.tsx +++ b/src/icons/PoliceCar.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Polygon.tsx b/src/icons/Polygon.tsx index 01607b06f..5896b578b 100644 --- a/src/icons/Polygon.tsx +++ b/src/icons/Polygon.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Popcorn.tsx b/src/icons/Popcorn.tsx index ee6c19b1b..3ddb2d082 100644 --- a/src/icons/Popcorn.tsx +++ b/src/icons/Popcorn.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PottedPlant.tsx b/src/icons/PottedPlant.tsx new file mode 100644 index 000000000..ede1d4d20 --- /dev/null +++ b/src/icons/PottedPlant.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const PottedPlant: Icon = forwardRef((props, ref) => ( + +)); + +PottedPlant.displayName = "PottedPlant"; + +export default PottedPlant; diff --git a/src/icons/Power.tsx b/src/icons/Power.tsx index 6ecc9b9ff..f20c22205 100644 --- a/src/icons/Power.tsx +++ b/src/icons/Power.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Prescription.tsx b/src/icons/Prescription.tsx index 53fb5d5fc..b6163df17 100644 --- a/src/icons/Prescription.tsx +++ b/src/icons/Prescription.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Presentation.tsx b/src/icons/Presentation.tsx index 973d14913..4fec63ef7 100644 --- a/src/icons/Presentation.tsx +++ b/src/icons/Presentation.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,56V176a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H216A8,8,0,0,1,224,56Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PresentationChart.tsx b/src/icons/PresentationChart.tsx index 25aa6b499..bf1d220f1 100644 --- a/src/icons/PresentationChart.tsx +++ b/src/icons/PresentationChart.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,56V176a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V56a8,8,0,0,1,8-8H216A8,8,0,0,1,224,56Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Printer.tsx b/src/icons/Printer.tsx index 0f97ce3f9..22975639a 100644 --- a/src/icons/Printer.tsx +++ b/src/icons/Printer.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Prohibit.tsx b/src/icons/Prohibit.tsx index 729fbe94b..0f2c0877d 100644 --- a/src/icons/Prohibit.tsx +++ b/src/icons/Prohibit.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ProhibitInset.tsx b/src/icons/ProhibitInset.tsx index ac08bfb43..21851ccfb 100644 --- a/src/icons/ProhibitInset.tsx +++ b/src/icons/ProhibitInset.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ProjectorScreen.tsx b/src/icons/ProjectorScreen.tsx index aa9d9cc0c..4a654bb76 100644 --- a/src/icons/ProjectorScreen.tsx +++ b/src/icons/ProjectorScreen.tsx @@ -6,32 +6,32 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ diff --git a/src/icons/ProjectorScreenChart.tsx b/src/icons/ProjectorScreenChart.tsx index bccf0dd21..8429842d7 100644 --- a/src/icons/ProjectorScreenChart.tsx +++ b/src/icons/ProjectorScreenChart.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Pulse.tsx b/src/icons/Pulse.tsx new file mode 100644 index 000000000..08d63dd5b --- /dev/null +++ b/src/icons/Pulse.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Pulse: Icon = forwardRef((props, ref) => ( + +)); + +Pulse.displayName = "Pulse"; + +export default Pulse; diff --git a/src/icons/PushPin.tsx b/src/icons/PushPin.tsx index 5283fba17..7df5de317 100644 --- a/src/icons/PushPin.tsx +++ b/src/icons/PushPin.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PushPinSimple.tsx b/src/icons/PushPinSimple.tsx index ed9dbbbb8..561a68211 100644 --- a/src/icons/PushPinSimple.tsx +++ b/src/icons/PushPinSimple.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PushPinSimpleSlash.tsx b/src/icons/PushPinSimpleSlash.tsx index 05b957512..d42a5d8ce 100644 --- a/src/icons/PushPinSimpleSlash.tsx +++ b/src/icons/PushPinSimpleSlash.tsx @@ -6,38 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PushPinSlash.tsx b/src/icons/PushPinSlash.tsx index 4c67f76df..fabc9f919 100644 --- a/src/icons/PushPinSlash.tsx +++ b/src/icons/PushPinSlash.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/PuzzlePiece.tsx b/src/icons/PuzzlePiece.tsx index 383823f8e..e4023cfc3 100644 --- a/src/icons/PuzzlePiece.tsx +++ b/src/icons/PuzzlePiece.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/QrCode.tsx b/src/icons/QrCode.tsx index b4ec45a4f..da86baff3 100644 --- a/src/icons/QrCode.tsx +++ b/src/icons/QrCode.tsx @@ -6,37 +6,28 @@ const weights = new Map([ [ "bold", <> - - - - - + , ], [ "duotone", <> - - - - - - - - - - - - - - - + + , ], [ "fill", <> - + + + + + + , ], [ diff --git a/src/icons/Question.tsx b/src/icons/Question.tsx index 051f34688..346f7c050 100644 --- a/src/icons/Question.tsx +++ b/src/icons/Question.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Queue.tsx b/src/icons/Queue.tsx index 7653635a1..bacfb4fe2 100644 --- a/src/icons/Queue.tsx +++ b/src/icons/Queue.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Quotes.tsx b/src/icons/Quotes.tsx index 93898f851..a840533a1 100644 --- a/src/icons/Quotes.tsx +++ b/src/icons/Quotes.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M108,72v72H40a8,8,0,0,1-8-8V72a8,8,0,0,1,8-8h60A8,8,0,0,1,108,72Zm108-8H156a8,8,0,0,0-8,8v64a8,8,0,0,0,8,8h68V72A8,8,0,0,0,216,64Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Radical.tsx b/src/icons/Radical.tsx index 8255ca847..659616da0 100644 --- a/src/icons/Radical.tsx +++ b/src/icons/Radical.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Radio.tsx b/src/icons/Radio.tsx index b71c1b5c2..2a97ecb79 100644 --- a/src/icons/Radio.tsx +++ b/src/icons/Radio.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M216,80H32V200a8,8,0,0,0,8,8H216a8,8,0,0,0,8-8V88A8,8,0,0,0,216,80Zm-56,96a32,32,0,1,1,32-32A32,32,0,0,1,160,176Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RadioButton.tsx b/src/icons/RadioButton.tsx index 56db25d11..4981196f3 100644 --- a/src/icons/RadioButton.tsx +++ b/src/icons/RadioButton.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Radioactive.tsx b/src/icons/Radioactive.tsx new file mode 100644 index 000000000..22321b803 --- /dev/null +++ b/src/icons/Radioactive.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Radioactive: Icon = forwardRef((props, ref) => ( + +)); + +Radioactive.displayName = "Radioactive"; + +export default Radioactive; diff --git a/src/icons/Rainbow.tsx b/src/icons/Rainbow.tsx index 6a96adca9..53ad414b5 100644 --- a/src/icons/Rainbow.tsx +++ b/src/icons/Rainbow.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RainbowCloud.tsx b/src/icons/RainbowCloud.tsx index 5f445fedf..9a29fcfb8 100644 --- a/src/icons/RainbowCloud.tsx +++ b/src/icons/RainbowCloud.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ReadCvLogo.tsx b/src/icons/ReadCvLogo.tsx new file mode 100644 index 000000000..2e169b0bc --- /dev/null +++ b/src/icons/ReadCvLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ReadCvLogo: Icon = forwardRef((props, ref) => ( + +)); + +ReadCvLogo.displayName = "ReadCvLogo"; + +export default ReadCvLogo; diff --git a/src/icons/Receipt.tsx b/src/icons/Receipt.tsx index 9ef391dde..1e6a01d63 100644 --- a/src/icons/Receipt.tsx +++ b/src/icons/Receipt.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ReceiptX.tsx b/src/icons/ReceiptX.tsx new file mode 100644 index 000000000..b3e3ad3aa --- /dev/null +++ b/src/icons/ReceiptX.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ReceiptX: Icon = forwardRef((props, ref) => ( + +)); + +ReceiptX.displayName = "ReceiptX"; + +export default ReceiptX; diff --git a/src/icons/Record.tsx b/src/icons/Record.tsx index 4d5f8e721..60bf62c73 100644 --- a/src/icons/Record.tsx +++ b/src/icons/Record.tsx @@ -6,41 +6,39 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Rectangle.tsx b/src/icons/Rectangle.tsx index 3b809facc..24f44975c 100644 --- a/src/icons/Rectangle.tsx +++ b/src/icons/Rectangle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Recycle.tsx b/src/icons/Recycle.tsx index 52a88e22b..b5d8b9cf7 100644 --- a/src/icons/Recycle.tsx +++ b/src/icons/Recycle.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RedditLogo.tsx b/src/icons/RedditLogo.tsx index c81bb150e..eddc19078 100644 --- a/src/icons/RedditLogo.tsx +++ b/src/icons/RedditLogo.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Repeat.tsx b/src/icons/Repeat.tsx index de92fc1ec..dd331be55 100644 --- a/src/icons/Repeat.tsx +++ b/src/icons/Repeat.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RepeatOnce.tsx b/src/icons/RepeatOnce.tsx index 79ee5e901..b09e7ed0c 100644 --- a/src/icons/RepeatOnce.tsx +++ b/src/icons/RepeatOnce.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Rewind.tsx b/src/icons/Rewind.tsx index e6bdcbb59..193adbf89 100644 --- a/src/icons/Rewind.tsx +++ b/src/icons/Rewind.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RewindCircle.tsx b/src/icons/RewindCircle.tsx index 7602b3dff..db1a6d5a5 100644 --- a/src/icons/RewindCircle.tsx +++ b/src/icons/RewindCircle.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RoadHorizon.tsx b/src/icons/RoadHorizon.tsx new file mode 100644 index 000000000..e3ba6ab3e --- /dev/null +++ b/src/icons/RoadHorizon.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const RoadHorizon: Icon = forwardRef((props, ref) => ( + +)); + +RoadHorizon.displayName = "RoadHorizon"; + +export default RoadHorizon; diff --git a/src/icons/Robot.tsx b/src/icons/Robot.tsx index c6a80715b..de5aaa8fa 100644 --- a/src/icons/Robot.tsx +++ b/src/icons/Robot.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Rocket.tsx b/src/icons/Rocket.tsx index 238a511de..10e47a492 100644 --- a/src/icons/Rocket.tsx +++ b/src/icons/Rocket.tsx @@ -6,45 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RocketLaunch.tsx b/src/icons/RocketLaunch.tsx index 71385d9cc..ac9fca30f 100644 --- a/src/icons/RocketLaunch.tsx +++ b/src/icons/RocketLaunch.tsx @@ -6,47 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Rows.tsx b/src/icons/Rows.tsx index ae9975648..6d7c20566 100644 --- a/src/icons/Rows.tsx +++ b/src/icons/Rows.tsx @@ -6,18 +6,16 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + , ], diff --git a/src/icons/Rss.tsx b/src/icons/Rss.tsx index 8ed451c70..c07718941 100644 --- a/src/icons/Rss.tsx +++ b/src/icons/Rss.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/RssSimple.tsx b/src/icons/RssSimple.tsx index 9a3242e79..22f1e71b2 100644 --- a/src/icons/RssSimple.tsx +++ b/src/icons/RssSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Rug.tsx b/src/icons/Rug.tsx index d29739f2d..6443494a2 100644 --- a/src/icons/Rug.tsx +++ b/src/icons/Rug.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Ruler.tsx b/src/icons/Ruler.tsx index 1c1bc387d..7314166f5 100644 --- a/src/icons/Ruler.tsx +++ b/src/icons/Ruler.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Scales.tsx b/src/icons/Scales.tsx index 2ea993f2a..942dbfdc2 100644 --- a/src/icons/Scales.tsx +++ b/src/icons/Scales.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Scan.tsx b/src/icons/Scan.tsx index 3224be877..a76b8aea3 100644 --- a/src/icons/Scan.tsx +++ b/src/icons/Scan.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -22,7 +22,7 @@ const weights = new Map([ [ "fill", <> - + , ], [ diff --git a/src/icons/Scissors.tsx b/src/icons/Scissors.tsx index b419730f9..5432b0303 100644 --- a/src/icons/Scissors.tsx +++ b/src/icons/Scissors.tsx @@ -6,44 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Scooter.tsx b/src/icons/Scooter.tsx new file mode 100644 index 000000000..d17200685 --- /dev/null +++ b/src/icons/Scooter.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Scooter: Icon = forwardRef((props, ref) => ( + +)); + +Scooter.displayName = "Scooter"; + +export default Scooter; diff --git a/src/icons/Screencast.tsx b/src/icons/Screencast.tsx index 20ec9b610..b53d8473a 100644 --- a/src/icons/Screencast.tsx +++ b/src/icons/Screencast.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ScribbleLoop.tsx b/src/icons/ScribbleLoop.tsx index 783d5110d..9b8e34aaf 100644 --- a/src/icons/ScribbleLoop.tsx +++ b/src/icons/ScribbleLoop.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Scroll.tsx b/src/icons/Scroll.tsx index afbe91ac4..b713223d0 100644 --- a/src/icons/Scroll.tsx +++ b/src/icons/Scroll.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Seal.tsx b/src/icons/Seal.tsx new file mode 100644 index 000000000..6d8bfca6b --- /dev/null +++ b/src/icons/Seal.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Seal: Icon = forwardRef((props, ref) => ( + +)); + +Seal.displayName = "Seal"; + +export default Seal; diff --git a/src/icons/SealCheck.tsx b/src/icons/SealCheck.tsx new file mode 100644 index 000000000..69bb5e034 --- /dev/null +++ b/src/icons/SealCheck.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SealCheck: Icon = forwardRef((props, ref) => ( + +)); + +SealCheck.displayName = "SealCheck"; + +export default SealCheck; diff --git a/src/icons/SealQuestion.tsx b/src/icons/SealQuestion.tsx new file mode 100644 index 000000000..87d54a651 --- /dev/null +++ b/src/icons/SealQuestion.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SealQuestion: Icon = forwardRef((props, ref) => ( + +)); + +SealQuestion.displayName = "SealQuestion"; + +export default SealQuestion; diff --git a/src/icons/SealWarning.tsx b/src/icons/SealWarning.tsx new file mode 100644 index 000000000..bd6dfb362 --- /dev/null +++ b/src/icons/SealWarning.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SealWarning: Icon = forwardRef((props, ref) => ( + +)); + +SealWarning.displayName = "SealWarning"; + +export default SealWarning; diff --git a/src/icons/Selection.tsx b/src/icons/Selection.tsx index da6c29b66..3fde51c68 100644 --- a/src/icons/Selection.tsx +++ b/src/icons/Selection.tsx @@ -6,19 +6,20 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/SelectionAll.tsx b/src/icons/SelectionAll.tsx index cdd0b7eff..d62134d74 100644 --- a/src/icons/SelectionAll.tsx +++ b/src/icons/SelectionAll.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -19,7 +19,7 @@ const weights = new Map([ [ "fill", <> - + , ], [ diff --git a/src/icons/SelectionBackground.tsx b/src/icons/SelectionBackground.tsx index 41f2a9272..ed8bbea6e 100644 --- a/src/icons/SelectionBackground.tsx +++ b/src/icons/SelectionBackground.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -22,7 +22,7 @@ const weights = new Map([ [ "fill", <> - + , ], [ diff --git a/src/icons/SelectionForeground.tsx b/src/icons/SelectionForeground.tsx index 8e843d900..71260bf73 100644 --- a/src/icons/SelectionForeground.tsx +++ b/src/icons/SelectionForeground.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M168,96V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V96a8,8,0,0,1,8-8H160A8,8,0,0,1,168,96Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SelectionInverse.tsx b/src/icons/SelectionInverse.tsx index b4a6086d9..bdc4b15e4 100644 --- a/src/icons/SelectionInverse.tsx +++ b/src/icons/SelectionInverse.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SelectionPlus.tsx b/src/icons/SelectionPlus.tsx index 291496576..31947090b 100644 --- a/src/icons/SelectionPlus.tsx +++ b/src/icons/SelectionPlus.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SelectionSlash.tsx b/src/icons/SelectionSlash.tsx index b12aafdab..491b3ea49 100644 --- a/src/icons/SelectionSlash.tsx +++ b/src/icons/SelectionSlash.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Shapes.tsx b/src/icons/Shapes.tsx new file mode 100644 index 000000000..77a02bad2 --- /dev/null +++ b/src/icons/Shapes.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Shapes: Icon = forwardRef((props, ref) => ( + +)); + +Shapes.displayName = "Shapes"; + +export default Shapes; diff --git a/src/icons/Share.tsx b/src/icons/Share.tsx index 7f0b17adb..7d3ae9e88 100644 --- a/src/icons/Share.tsx +++ b/src/icons/Share.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShareFat.tsx b/src/icons/ShareFat.tsx new file mode 100644 index 000000000..25e857a98 --- /dev/null +++ b/src/icons/ShareFat.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ShareFat: Icon = forwardRef((props, ref) => ( + +)); + +ShareFat.displayName = "ShareFat"; + +export default ShareFat; diff --git a/src/icons/ShareNetwork.tsx b/src/icons/ShareNetwork.tsx index fd433442f..e21472834 100644 --- a/src/icons/ShareNetwork.tsx +++ b/src/icons/ShareNetwork.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Shield.tsx b/src/icons/Shield.tsx index bf4510f04..dcea58af4 100644 --- a/src/icons/Shield.tsx +++ b/src/icons/Shield.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShieldCheck.tsx b/src/icons/ShieldCheck.tsx index 00178fd22..ce423d3e5 100644 --- a/src/icons/ShieldCheck.tsx +++ b/src/icons/ShieldCheck.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShieldCheckered.tsx b/src/icons/ShieldCheckered.tsx index 26d3e420a..b083ca607 100644 --- a/src/icons/ShieldCheckered.tsx +++ b/src/icons/ShieldCheckered.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShieldChevron.tsx b/src/icons/ShieldChevron.tsx index 9df4eeba6..e77e18b1d 100644 --- a/src/icons/ShieldChevron.tsx +++ b/src/icons/ShieldChevron.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShieldPlus.tsx b/src/icons/ShieldPlus.tsx index e99540539..1f18bd724 100644 --- a/src/icons/ShieldPlus.tsx +++ b/src/icons/ShieldPlus.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShieldSlash.tsx b/src/icons/ShieldSlash.tsx index 847345ff4..6b9663383 100644 --- a/src/icons/ShieldSlash.tsx +++ b/src/icons/ShieldSlash.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShieldStar.tsx b/src/icons/ShieldStar.tsx index bc34bde67..2041e681b 100644 --- a/src/icons/ShieldStar.tsx +++ b/src/icons/ShieldStar.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShieldWarning.tsx b/src/icons/ShieldWarning.tsx index 8ff1e795b..3184bfc79 100644 --- a/src/icons/ShieldWarning.tsx +++ b/src/icons/ShieldWarning.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShirtFolded.tsx b/src/icons/ShirtFolded.tsx new file mode 100644 index 000000000..f4034386a --- /dev/null +++ b/src/icons/ShirtFolded.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ShirtFolded: Icon = forwardRef((props, ref) => ( + +)); + +ShirtFolded.displayName = "ShirtFolded"; + +export default ShirtFolded; diff --git a/src/icons/ShootingStar.tsx b/src/icons/ShootingStar.tsx new file mode 100644 index 000000000..64b458613 --- /dev/null +++ b/src/icons/ShootingStar.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const ShootingStar: Icon = forwardRef((props, ref) => ( + +)); + +ShootingStar.displayName = "ShootingStar"; + +export default ShootingStar; diff --git a/src/icons/ShoppingBag.tsx b/src/icons/ShoppingBag.tsx index e35216013..93d23ea3d 100644 --- a/src/icons/ShoppingBag.tsx +++ b/src/icons/ShoppingBag.tsx @@ -6,23 +6,23 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/ShoppingBagOpen.tsx b/src/icons/ShoppingBagOpen.tsx index 6bdab7f07..59016a1e6 100644 --- a/src/icons/ShoppingBagOpen.tsx +++ b/src/icons/ShoppingBagOpen.tsx @@ -6,23 +6,23 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/ShoppingCart.tsx b/src/icons/ShoppingCart.tsx index 2f0355621..6b3c77b98 100644 --- a/src/icons/ShoppingCart.tsx +++ b/src/icons/ShoppingCart.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShoppingCartSimple.tsx b/src/icons/ShoppingCartSimple.tsx index e63017801..fea974d8b 100644 --- a/src/icons/ShoppingCartSimple.tsx +++ b/src/icons/ShoppingCartSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Shower.tsx b/src/icons/Shower.tsx index 9da1dd184..2e0be39c7 100644 --- a/src/icons/Shower.tsx +++ b/src/icons/Shower.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Shrimp.tsx b/src/icons/Shrimp.tsx new file mode 100644 index 000000000..b8428667d --- /dev/null +++ b/src/icons/Shrimp.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Shrimp: Icon = forwardRef((props, ref) => ( + +)); + +Shrimp.displayName = "Shrimp"; + +export default Shrimp; diff --git a/src/icons/Shuffle.tsx b/src/icons/Shuffle.tsx index 9f80f3c96..564ec8dc4 100644 --- a/src/icons/Shuffle.tsx +++ b/src/icons/Shuffle.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShuffleAngular.tsx b/src/icons/ShuffleAngular.tsx index 7a23d5bde..b43758da6 100644 --- a/src/icons/ShuffleAngular.tsx +++ b/src/icons/ShuffleAngular.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ShuffleSimple.tsx b/src/icons/ShuffleSimple.tsx index 4d1aa0482..4cc23edd8 100644 --- a/src/icons/ShuffleSimple.tsx +++ b/src/icons/ShuffleSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Sidebar.tsx b/src/icons/Sidebar.tsx index 25171149d..c3ad2fe69 100644 --- a/src/icons/Sidebar.tsx +++ b/src/icons/Sidebar.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/SidebarSimple.tsx b/src/icons/SidebarSimple.tsx index 47ebbb1b4..e81dd1ee6 100644 --- a/src/icons/SidebarSimple.tsx +++ b/src/icons/SidebarSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ diff --git a/src/icons/Sigma.tsx b/src/icons/Sigma.tsx new file mode 100644 index 000000000..5ce8ecdab --- /dev/null +++ b/src/icons/Sigma.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Sigma: Icon = forwardRef((props, ref) => ( + +)); + +Sigma.displayName = "Sigma"; + +export default Sigma; diff --git a/src/icons/SignIn.tsx b/src/icons/SignIn.tsx index 9554fd43c..3286ccf1a 100644 --- a/src/icons/SignIn.tsx +++ b/src/icons/SignIn.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SignOut.tsx b/src/icons/SignOut.tsx index e9ba6bcbe..37652389b 100644 --- a/src/icons/SignOut.tsx +++ b/src/icons/SignOut.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Signature.tsx b/src/icons/Signature.tsx new file mode 100644 index 000000000..e394db5f2 --- /dev/null +++ b/src/icons/Signature.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Signature: Icon = forwardRef((props, ref) => ( + +)); + +Signature.displayName = "Signature"; + +export default Signature; diff --git a/src/icons/Signpost.tsx b/src/icons/Signpost.tsx index 58d85e554..ba3743683 100644 --- a/src/icons/Signpost.tsx +++ b/src/icons/Signpost.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M240,112l-36,40H40a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H204Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SimCard.tsx b/src/icons/SimCard.tsx index 86c52f28c..8a1a8e314 100644 --- a/src/icons/SimCard.tsx +++ b/src/icons/SimCard.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Siren.tsx b/src/icons/Siren.tsx new file mode 100644 index 000000000..b8cadda5d --- /dev/null +++ b/src/icons/Siren.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Siren: Icon = forwardRef((props, ref) => ( + +)); + +Siren.displayName = "Siren"; + +export default Siren; diff --git a/src/icons/SketchLogo.tsx b/src/icons/SketchLogo.tsx index 73462c751..422f212a2 100644 --- a/src/icons/SketchLogo.tsx +++ b/src/icons/SketchLogo.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SkipBack.tsx b/src/icons/SkipBack.tsx index 27cff3cef..a1867f378 100644 --- a/src/icons/SkipBack.tsx +++ b/src/icons/SkipBack.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SkipBackCircle.tsx b/src/icons/SkipBackCircle.tsx index f91b7e69b..5977e48db 100644 --- a/src/icons/SkipBackCircle.tsx +++ b/src/icons/SkipBackCircle.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SkipForward.tsx b/src/icons/SkipForward.tsx index e6060b75e..c2571a98e 100644 --- a/src/icons/SkipForward.tsx +++ b/src/icons/SkipForward.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SkipForwardCircle.tsx b/src/icons/SkipForwardCircle.tsx index 867493546..680da1397 100644 --- a/src/icons/SkipForwardCircle.tsx +++ b/src/icons/SkipForwardCircle.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Skull.tsx b/src/icons/Skull.tsx index ba3e482bd..d0061569a 100644 --- a/src/icons/Skull.tsx +++ b/src/icons/Skull.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SlackLogo.tsx b/src/icons/SlackLogo.tsx index c79c19c00..45173f1d0 100644 --- a/src/icons/SlackLogo.tsx +++ b/src/icons/SlackLogo.tsx @@ -6,55 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Sliders.tsx b/src/icons/Sliders.tsx index 417a810bb..0fa39203d 100644 --- a/src/icons/Sliders.tsx +++ b/src/icons/Sliders.tsx @@ -6,44 +6,41 @@ const weights = new Map([ [ "bold", <> - - - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SlidersHorizontal.tsx b/src/icons/SlidersHorizontal.tsx index 7ca25457f..f65c76d24 100644 --- a/src/icons/SlidersHorizontal.tsx +++ b/src/icons/SlidersHorizontal.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Slideshow.tsx b/src/icons/Slideshow.tsx new file mode 100644 index 000000000..601a5c88d --- /dev/null +++ b/src/icons/Slideshow.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Slideshow: Icon = forwardRef((props, ref) => ( + +)); + +Slideshow.displayName = "Slideshow"; + +export default Slideshow; diff --git a/src/icons/Smiley.tsx b/src/icons/Smiley.tsx index 4f867d377..48bf6b329 100644 --- a/src/icons/Smiley.tsx +++ b/src/icons/Smiley.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SmileyAngry.tsx b/src/icons/SmileyAngry.tsx new file mode 100644 index 000000000..70c8f10c3 --- /dev/null +++ b/src/icons/SmileyAngry.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SmileyAngry: Icon = forwardRef((props, ref) => ( + +)); + +SmileyAngry.displayName = "SmileyAngry"; + +export default SmileyAngry; diff --git a/src/icons/SmileyBlank.tsx b/src/icons/SmileyBlank.tsx index 53bb5226f..432eb9806 100644 --- a/src/icons/SmileyBlank.tsx +++ b/src/icons/SmileyBlank.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SmileyMeh.tsx b/src/icons/SmileyMeh.tsx index 7972fbe74..a87041f6f 100644 --- a/src/icons/SmileyMeh.tsx +++ b/src/icons/SmileyMeh.tsx @@ -6,43 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SmileyNervous.tsx b/src/icons/SmileyNervous.tsx index 76200f004..b2b9a7240 100644 --- a/src/icons/SmileyNervous.tsx +++ b/src/icons/SmileyNervous.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SmileySad.tsx b/src/icons/SmileySad.tsx index 6d7267d1a..886ea3af0 100644 --- a/src/icons/SmileySad.tsx +++ b/src/icons/SmileySad.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SmileySticker.tsx b/src/icons/SmileySticker.tsx index 897222bd7..216a546ca 100644 --- a/src/icons/SmileySticker.tsx +++ b/src/icons/SmileySticker.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SmileyWink.tsx b/src/icons/SmileyWink.tsx index ccc05981a..6856233e1 100644 --- a/src/icons/SmileyWink.tsx +++ b/src/icons/SmileyWink.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SmileyXEyes.tsx b/src/icons/SmileyXEyes.tsx index 4635ae0d6..a9c2b88cc 100644 --- a/src/icons/SmileyXEyes.tsx +++ b/src/icons/SmileyXEyes.tsx @@ -6,43 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SnapchatLogo.tsx b/src/icons/SnapchatLogo.tsx index 65a943f95..6ebb69ff3 100644 --- a/src/icons/SnapchatLogo.tsx +++ b/src/icons/SnapchatLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Sneaker.tsx b/src/icons/Sneaker.tsx new file mode 100644 index 000000000..e73a29aa7 --- /dev/null +++ b/src/icons/Sneaker.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Sneaker: Icon = forwardRef((props, ref) => ( + +)); + +Sneaker.displayName = "Sneaker"; + +export default Sneaker; diff --git a/src/icons/SneakerMove.tsx b/src/icons/SneakerMove.tsx new file mode 100644 index 000000000..6ec04931f --- /dev/null +++ b/src/icons/SneakerMove.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SneakerMove: Icon = forwardRef((props, ref) => ( + +)); + +SneakerMove.displayName = "SneakerMove"; + +export default SneakerMove; diff --git a/src/icons/Snowflake.tsx b/src/icons/Snowflake.tsx index d32f9e3db..16c154426 100644 --- a/src/icons/Snowflake.tsx +++ b/src/icons/Snowflake.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SoccerBall.tsx b/src/icons/SoccerBall.tsx index 33b7dfb0a..1f4b99e6a 100644 --- a/src/icons/SoccerBall.tsx +++ b/src/icons/SoccerBall.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SortAscending.tsx b/src/icons/SortAscending.tsx index bdf65f598..b10bc757b 100644 --- a/src/icons/SortAscending.tsx +++ b/src/icons/SortAscending.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SortDescending.tsx b/src/icons/SortDescending.tsx index 924e625b5..9ca7ae6a5 100644 --- a/src/icons/SortDescending.tsx +++ b/src/icons/SortDescending.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SoundcloudLogo.tsx b/src/icons/SoundcloudLogo.tsx new file mode 100644 index 000000000..cc19abaa9 --- /dev/null +++ b/src/icons/SoundcloudLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SoundcloudLogo: Icon = forwardRef((props, ref) => ( + +)); + +SoundcloudLogo.displayName = "SoundcloudLogo"; + +export default SoundcloudLogo; diff --git a/src/icons/Spade.tsx b/src/icons/Spade.tsx index e94a39bc2..f20369529 100644 --- a/src/icons/Spade.tsx +++ b/src/icons/Spade.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Sparkle.tsx b/src/icons/Sparkle.tsx index 13b7563de..0be4f7fc4 100644 --- a/src/icons/Sparkle.tsx +++ b/src/icons/Sparkle.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerHifi.tsx b/src/icons/SpeakerHifi.tsx new file mode 100644 index 000000000..bc4e87771 --- /dev/null +++ b/src/icons/SpeakerHifi.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SpeakerHifi: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerHifi.displayName = "SpeakerHifi"; + +export default SpeakerHifi; diff --git a/src/icons/SpeakerHigh.tsx b/src/icons/SpeakerHigh.tsx index 09bb5a944..cdb8e1354 100644 --- a/src/icons/SpeakerHigh.tsx +++ b/src/icons/SpeakerHigh.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerLow.tsx b/src/icons/SpeakerLow.tsx index d4be88df3..841f847a9 100644 --- a/src/icons/SpeakerLow.tsx +++ b/src/icons/SpeakerLow.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerNone.tsx b/src/icons/SpeakerNone.tsx index cdfa9b838..c19f6b761 100644 --- a/src/icons/SpeakerNone.tsx +++ b/src/icons/SpeakerNone.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerSimpleHigh.tsx b/src/icons/SpeakerSimpleHigh.tsx index d5a6bcbab..71eab3504 100644 --- a/src/icons/SpeakerSimpleHigh.tsx +++ b/src/icons/SpeakerSimpleHigh.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerSimpleLow.tsx b/src/icons/SpeakerSimpleLow.tsx index da289ada9..5ba53eb6b 100644 --- a/src/icons/SpeakerSimpleLow.tsx +++ b/src/icons/SpeakerSimpleLow.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerSimpleNone.tsx b/src/icons/SpeakerSimpleNone.tsx index 723a86415..904d3bcc3 100644 --- a/src/icons/SpeakerSimpleNone.tsx +++ b/src/icons/SpeakerSimpleNone.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerSimpleSlash.tsx b/src/icons/SpeakerSimpleSlash.tsx index 5d1f69943..cb7313c5d 100644 --- a/src/icons/SpeakerSimpleSlash.tsx +++ b/src/icons/SpeakerSimpleSlash.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerSimpleX.tsx b/src/icons/SpeakerSimpleX.tsx index 04aa1d595..39a6a16b4 100644 --- a/src/icons/SpeakerSimpleX.tsx +++ b/src/icons/SpeakerSimpleX.tsx @@ -6,41 +6,42 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerSlash.tsx b/src/icons/SpeakerSlash.tsx index 112dd0bea..9b5192548 100644 --- a/src/icons/SpeakerSlash.tsx +++ b/src/icons/SpeakerSlash.tsx @@ -6,43 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpeakerX.tsx b/src/icons/SpeakerX.tsx index 95305ae0e..ab9c5f98d 100644 --- a/src/icons/SpeakerX.tsx +++ b/src/icons/SpeakerX.tsx @@ -6,41 +6,39 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Spinner.tsx b/src/icons/Spinner.tsx index a9fa97259..3af579608 100644 --- a/src/icons/Spinner.tsx +++ b/src/icons/Spinner.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SpinnerGap.tsx b/src/icons/SpinnerGap.tsx index 0db20a806..7bd0f8685 100644 --- a/src/icons/SpinnerGap.tsx +++ b/src/icons/SpinnerGap.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Spiral.tsx b/src/icons/Spiral.tsx index 196d5e007..105c9f3e7 100644 --- a/src/icons/Spiral.tsx +++ b/src/icons/Spiral.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SplitHorizontal.tsx b/src/icons/SplitHorizontal.tsx new file mode 100644 index 000000000..cc6f3313a --- /dev/null +++ b/src/icons/SplitHorizontal.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SplitHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SplitHorizontal.displayName = "SplitHorizontal"; + +export default SplitHorizontal; diff --git a/src/icons/SplitVertical.tsx b/src/icons/SplitVertical.tsx new file mode 100644 index 000000000..513eb6d0a --- /dev/null +++ b/src/icons/SplitVertical.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SplitVertical: Icon = forwardRef((props, ref) => ( + +)); + +SplitVertical.displayName = "SplitVertical"; + +export default SplitVertical; diff --git a/src/icons/SpotifyLogo.tsx b/src/icons/SpotifyLogo.tsx index 572a3229e..3c5f2eb3c 100644 --- a/src/icons/SpotifyLogo.tsx +++ b/src/icons/SpotifyLogo.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Square.tsx b/src/icons/Square.tsx index 5314447ca..b43be20d4 100644 --- a/src/icons/Square.tsx +++ b/src/icons/Square.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SquareHalf.tsx b/src/icons/SquareHalf.tsx index 2378428f1..3a4d49ade 100644 --- a/src/icons/SquareHalf.tsx +++ b/src/icons/SquareHalf.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SquareHalfBottom.tsx b/src/icons/SquareHalfBottom.tsx index 2e67a74b2..bfc7810bc 100644 --- a/src/icons/SquareHalfBottom.tsx +++ b/src/icons/SquareHalfBottom.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SquareLogo.tsx b/src/icons/SquareLogo.tsx index 7c9449b97..b25a7cd87 100644 --- a/src/icons/SquareLogo.tsx +++ b/src/icons/SquareLogo.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -19,7 +19,7 @@ const weights = new Map([ [ "fill", <> - + , ], [ diff --git a/src/icons/SquareSplitHorizontal.tsx b/src/icons/SquareSplitHorizontal.tsx new file mode 100644 index 000000000..f7fd6098b --- /dev/null +++ b/src/icons/SquareSplitHorizontal.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SquareSplitHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SquareSplitHorizontal.displayName = "SquareSplitHorizontal"; + +export default SquareSplitHorizontal; diff --git a/src/icons/SquareSplitVertical.tsx b/src/icons/SquareSplitVertical.tsx new file mode 100644 index 000000000..83ef69db7 --- /dev/null +++ b/src/icons/SquareSplitVertical.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SquareSplitVertical: Icon = forwardRef((props, ref) => ( + +)); + +SquareSplitVertical.displayName = "SquareSplitVertical"; + +export default SquareSplitVertical; diff --git a/src/icons/SquaresFour.tsx b/src/icons/SquaresFour.tsx index ec1e8559d..d00ef9ce3 100644 --- a/src/icons/SquaresFour.tsx +++ b/src/icons/SquaresFour.tsx @@ -6,55 +6,41 @@ const weights = new Map([ [ "bold", <> - - - - + , ], [ "duotone", <> - - - - - - - - - - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Stack.tsx b/src/icons/Stack.tsx index 9bd41b973..1041030bc 100644 --- a/src/icons/Stack.tsx +++ b/src/icons/Stack.tsx @@ -6,42 +6,40 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/StackOverflowLogo.tsx b/src/icons/StackOverflowLogo.tsx index 8f860f6b8..e4a7314d2 100644 --- a/src/icons/StackOverflowLogo.tsx +++ b/src/icons/StackOverflowLogo.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/StackSimple.tsx b/src/icons/StackSimple.tsx index d2130c052..5eeb268f2 100644 --- a/src/icons/StackSimple.tsx +++ b/src/icons/StackSimple.tsx @@ -6,41 +6,39 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Stairs.tsx b/src/icons/Stairs.tsx new file mode 100644 index 000000000..a010e4b83 --- /dev/null +++ b/src/icons/Stairs.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Stairs: Icon = forwardRef((props, ref) => ( + +)); + +Stairs.displayName = "Stairs"; + +export default Stairs; diff --git a/src/icons/Stamp.tsx b/src/icons/Stamp.tsx index f6a1a9092..e2d7a6a10 100644 --- a/src/icons/Stamp.tsx +++ b/src/icons/Stamp.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Star.tsx b/src/icons/Star.tsx index 2065e73c2..fc464f6fa 100644 --- a/src/icons/Star.tsx +++ b/src/icons/Star.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/StarAndCrescent.tsx b/src/icons/StarAndCrescent.tsx new file mode 100644 index 000000000..b484c6e9e --- /dev/null +++ b/src/icons/StarAndCrescent.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const StarAndCrescent: Icon = forwardRef((props, ref) => ( + +)); + +StarAndCrescent.displayName = "StarAndCrescent"; + +export default StarAndCrescent; diff --git a/src/icons/StarFour.tsx b/src/icons/StarFour.tsx index bbb8eb27d..caf47f5ee 100644 --- a/src/icons/StarFour.tsx +++ b/src/icons/StarFour.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/StarHalf.tsx b/src/icons/StarHalf.tsx index ca05f2461..ead5f93a2 100644 --- a/src/icons/StarHalf.tsx +++ b/src/icons/StarHalf.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/StarOfDavid.tsx b/src/icons/StarOfDavid.tsx new file mode 100644 index 000000000..af68cdc02 --- /dev/null +++ b/src/icons/StarOfDavid.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const StarOfDavid: Icon = forwardRef((props, ref) => ( + +)); + +StarOfDavid.displayName = "StarOfDavid"; + +export default StarOfDavid; diff --git a/src/icons/SteeringWheel.tsx b/src/icons/SteeringWheel.tsx new file mode 100644 index 000000000..2e988aafe --- /dev/null +++ b/src/icons/SteeringWheel.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SteeringWheel: Icon = forwardRef((props, ref) => ( + +)); + +SteeringWheel.displayName = "SteeringWheel"; + +export default SteeringWheel; diff --git a/src/icons/Steps.tsx b/src/icons/Steps.tsx new file mode 100644 index 000000000..8e95d6b2c --- /dev/null +++ b/src/icons/Steps.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Steps: Icon = forwardRef((props, ref) => ( + +)); + +Steps.displayName = "Steps"; + +export default Steps; diff --git a/src/icons/Stethoscope.tsx b/src/icons/Stethoscope.tsx new file mode 100644 index 000000000..a0f3ca5ea --- /dev/null +++ b/src/icons/Stethoscope.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Stethoscope: Icon = forwardRef((props, ref) => ( + +)); + +Stethoscope.displayName = "Stethoscope"; + +export default Stethoscope; diff --git a/src/icons/Sticker.tsx b/src/icons/Sticker.tsx index 73c35285f..7929b72f6 100644 --- a/src/icons/Sticker.tsx +++ b/src/icons/Sticker.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Stool.tsx b/src/icons/Stool.tsx new file mode 100644 index 000000000..96574c5b2 --- /dev/null +++ b/src/icons/Stool.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Stool: Icon = forwardRef((props, ref) => ( + +)); + +Stool.displayName = "Stool"; + +export default Stool; diff --git a/src/icons/Stop.tsx b/src/icons/Stop.tsx index f3ae59c0e..46a10cdff 100644 --- a/src/icons/Stop.tsx +++ b/src/icons/Stop.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/StopCircle.tsx b/src/icons/StopCircle.tsx index 6096a3c22..4facdbee0 100644 --- a/src/icons/StopCircle.tsx +++ b/src/icons/StopCircle.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Storefront.tsx b/src/icons/Storefront.tsx index 2642fc1aa..59c238573 100644 --- a/src/icons/Storefront.tsx +++ b/src/icons/Storefront.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Strategy.tsx b/src/icons/Strategy.tsx index 55119918b..8ab57e8d0 100644 --- a/src/icons/Strategy.tsx +++ b/src/icons/Strategy.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/StripeLogo.tsx b/src/icons/StripeLogo.tsx index 7ebe9e70a..5913c96bc 100644 --- a/src/icons/StripeLogo.tsx +++ b/src/icons/StripeLogo.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M216,48V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Student.tsx b/src/icons/Student.tsx index c0553b36f..830dcf32b 100644 --- a/src/icons/Student.tsx +++ b/src/icons/Student.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Subtitles.tsx b/src/icons/Subtitles.tsx new file mode 100644 index 000000000..b721ce5a1 --- /dev/null +++ b/src/icons/Subtitles.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Subtitles: Icon = forwardRef((props, ref) => ( + +)); + +Subtitles.displayName = "Subtitles"; + +export default Subtitles; diff --git a/src/icons/Subtract.tsx b/src/icons/Subtract.tsx new file mode 100644 index 000000000..fdfc34c52 --- /dev/null +++ b/src/icons/Subtract.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Subtract: Icon = forwardRef((props, ref) => ( + +)); + +Subtract.displayName = "Subtract"; + +export default Subtract; diff --git a/src/icons/SubtractSquare.tsx b/src/icons/SubtractSquare.tsx new file mode 100644 index 000000000..74fe8cf19 --- /dev/null +++ b/src/icons/SubtractSquare.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SubtractSquare: Icon = forwardRef((props, ref) => ( + +)); + +SubtractSquare.displayName = "SubtractSquare"; + +export default SubtractSquare; diff --git a/src/icons/Suitcase.tsx b/src/icons/Suitcase.tsx index ab548e8f5..b261c681c 100644 --- a/src/icons/Suitcase.tsx +++ b/src/icons/Suitcase.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SuitcaseRolling.tsx b/src/icons/SuitcaseRolling.tsx new file mode 100644 index 000000000..7b2f0cd7f --- /dev/null +++ b/src/icons/SuitcaseRolling.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SuitcaseRolling: Icon = forwardRef((props, ref) => ( + +)); + +SuitcaseRolling.displayName = "SuitcaseRolling"; + +export default SuitcaseRolling; diff --git a/src/icons/SuitcaseSimple.tsx b/src/icons/SuitcaseSimple.tsx index 24102d235..f4ac4d070 100644 --- a/src/icons/SuitcaseSimple.tsx +++ b/src/icons/SuitcaseSimple.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Sun.tsx b/src/icons/Sun.tsx index fc9bb2bfe..1c77739dd 100644 --- a/src/icons/Sun.tsx +++ b/src/icons/Sun.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SunDim.tsx b/src/icons/SunDim.tsx index 46146be66..9aa2dd764 100644 --- a/src/icons/SunDim.tsx +++ b/src/icons/SunDim.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SunHorizon.tsx b/src/icons/SunHorizon.tsx index fcd871f54..d29d283ea 100644 --- a/src/icons/SunHorizon.tsx +++ b/src/icons/SunHorizon.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Sunglasses.tsx b/src/icons/Sunglasses.tsx index 407aaf612..1b8e58492 100644 --- a/src/icons/Sunglasses.tsx +++ b/src/icons/Sunglasses.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Swap.tsx b/src/icons/Swap.tsx index 89a191b67..b03d01aad 100644 --- a/src/icons/Swap.tsx +++ b/src/icons/Swap.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M216,48V152a8,8,0,0,1-8,8H168v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V104a8,8,0,0,1,8-8H88V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Swatches.tsx b/src/icons/Swatches.tsx index c4890df9d..7aa8a0c34 100644 --- a/src/icons/Swatches.tsx +++ b/src/icons/Swatches.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/SwimmingPool.tsx b/src/icons/SwimmingPool.tsx new file mode 100644 index 000000000..50076a06b --- /dev/null +++ b/src/icons/SwimmingPool.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const SwimmingPool: Icon = forwardRef((props, ref) => ( + +)); + +SwimmingPool.displayName = "SwimmingPool"; + +export default SwimmingPool; diff --git a/src/icons/Sword.tsx b/src/icons/Sword.tsx index 461b867c2..9ba835830 100644 --- a/src/icons/Sword.tsx +++ b/src/icons/Sword.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Synagogue.tsx b/src/icons/Synagogue.tsx new file mode 100644 index 000000000..f59b8fa49 --- /dev/null +++ b/src/icons/Synagogue.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Synagogue: Icon = forwardRef((props, ref) => ( + +)); + +Synagogue.displayName = "Synagogue"; + +export default Synagogue; diff --git a/src/icons/Syringe.tsx b/src/icons/Syringe.tsx index f9f394f5a..2daf1aa58 100644 --- a/src/icons/Syringe.tsx +++ b/src/icons/Syringe.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TShirt.tsx b/src/icons/TShirt.tsx index 41ab20d40..4faa4ef32 100644 --- a/src/icons/TShirt.tsx +++ b/src/icons/TShirt.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Table.tsx b/src/icons/Table.tsx index facc47f9d..bc6ad6db0 100644 --- a/src/icons/Table.tsx +++ b/src/icons/Table.tsx @@ -6,15 +6,13 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - + , ], diff --git a/src/icons/Tabs.tsx b/src/icons/Tabs.tsx index 093c4ce6c..609aef8c5 100644 --- a/src/icons/Tabs.tsx +++ b/src/icons/Tabs.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Tag.tsx b/src/icons/Tag.tsx index a76f553b7..0025b3145 100644 --- a/src/icons/Tag.tsx +++ b/src/icons/Tag.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TagChevron.tsx b/src/icons/TagChevron.tsx index 0ad47ad9a..aa0b1f272 100644 --- a/src/icons/TagChevron.tsx +++ b/src/icons/TagChevron.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TagSimple.tsx b/src/icons/TagSimple.tsx index 7dc5e60e0..68f1ae3be 100644 --- a/src/icons/TagSimple.tsx +++ b/src/icons/TagSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Target.tsx b/src/icons/Target.tsx index a4ac96746..6dde5a342 100644 --- a/src/icons/Target.tsx +++ b/src/icons/Target.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Taxi.tsx b/src/icons/Taxi.tsx index e7780b87f..4743ea82c 100644 --- a/src/icons/Taxi.tsx +++ b/src/icons/Taxi.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TelegramLogo.tsx b/src/icons/TelegramLogo.tsx index 747e4c49e..16e37fc53 100644 --- a/src/icons/TelegramLogo.tsx +++ b/src/icons/TelegramLogo.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Television.tsx b/src/icons/Television.tsx index 667915e8a..44b58ba18 100644 --- a/src/icons/Television.tsx +++ b/src/icons/Television.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TelevisionSimple.tsx b/src/icons/TelevisionSimple.tsx index 71453a12e..fedb9d365 100644 --- a/src/icons/TelevisionSimple.tsx +++ b/src/icons/TelevisionSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,80V200a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H216A8,8,0,0,1,224,80Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TennisBall.tsx b/src/icons/TennisBall.tsx index 7a44498d4..52a93e1e2 100644 --- a/src/icons/TennisBall.tsx +++ b/src/icons/TennisBall.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Tent.tsx b/src/icons/Tent.tsx new file mode 100644 index 000000000..0d02f4258 --- /dev/null +++ b/src/icons/Tent.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Tent: Icon = forwardRef((props, ref) => ( + +)); + +Tent.displayName = "Tent"; + +export default Tent; diff --git a/src/icons/Terminal.tsx b/src/icons/Terminal.tsx index 91c8604b0..47084a588 100644 --- a/src/icons/Terminal.tsx +++ b/src/icons/Terminal.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TerminalWindow.tsx b/src/icons/TerminalWindow.tsx index e428c989f..42822343b 100644 --- a/src/icons/TerminalWindow.tsx +++ b/src/icons/TerminalWindow.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TestTube.tsx b/src/icons/TestTube.tsx index 5262043ae..6a52bc337 100644 --- a/src/icons/TestTube.tsx +++ b/src/icons/TestTube.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextAUnderline.tsx b/src/icons/TextAUnderline.tsx new file mode 100644 index 000000000..19539d9b2 --- /dev/null +++ b/src/icons/TextAUnderline.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const TextAUnderline: Icon = forwardRef((props, ref) => ( + +)); + +TextAUnderline.displayName = "TextAUnderline"; + +export default TextAUnderline; diff --git a/src/icons/TextAa.tsx b/src/icons/TextAa.tsx index d7ff73eea..f1c3debe1 100644 --- a/src/icons/TextAa.tsx +++ b/src/icons/TextAa.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextAlignCenter.tsx b/src/icons/TextAlignCenter.tsx index 666a00b35..11b69a11d 100644 --- a/src/icons/TextAlignCenter.tsx +++ b/src/icons/TextAlignCenter.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextAlignJustify.tsx b/src/icons/TextAlignJustify.tsx index d33eabed6..3bcb09c12 100644 --- a/src/icons/TextAlignJustify.tsx +++ b/src/icons/TextAlignJustify.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextAlignLeft.tsx b/src/icons/TextAlignLeft.tsx index f79bf94bc..9199066a2 100644 --- a/src/icons/TextAlignLeft.tsx +++ b/src/icons/TextAlignLeft.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextAlignRight.tsx b/src/icons/TextAlignRight.tsx index 47ad47ce9..a79250c29 100644 --- a/src/icons/TextAlignRight.tsx +++ b/src/icons/TextAlignRight.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextB.tsx b/src/icons/TextB.tsx new file mode 100644 index 000000000..80b9c9b29 --- /dev/null +++ b/src/icons/TextB.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const TextB: Icon = forwardRef((props, ref) => ( + +)); + +TextB.displayName = "TextB"; + +export default TextB; diff --git a/src/icons/TextBolder.tsx b/src/icons/TextBolder.tsx deleted file mode 100644 index 6db833fa2..000000000 --- a/src/icons/TextBolder.tsx +++ /dev/null @@ -1,50 +0,0 @@ -/* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; - -const weights = new Map([ - [ - "bold", - <> - - , - ], - [ - "duotone", - <> - - , - ], - [ - "fill", - <> - - , - ], - [ - "light", - <> - - , - ], - [ - "regular", - <> - - , - ], - [ - "thin", - <> - - , - ], -]); - -const TextBolder: Icon = forwardRef((props, ref) => ( - -)); - -TextBolder.displayName = "TextBolder"; - -export default TextBolder; diff --git a/src/icons/TextColumns.tsx b/src/icons/TextColumns.tsx new file mode 100644 index 000000000..7caebacbf --- /dev/null +++ b/src/icons/TextColumns.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const TextColumns: Icon = forwardRef((props, ref) => ( + +)); + +TextColumns.displayName = "TextColumns"; + +export default TextColumns; diff --git a/src/icons/TextH.tsx b/src/icons/TextH.tsx index a8ad9b085..cd07873e3 100644 --- a/src/icons/TextH.tsx +++ b/src/icons/TextH.tsx @@ -12,13 +12,14 @@ const weights = new Map([ [ "duotone", <> + , ], [ "fill", <> - + , ], [ diff --git a/src/icons/TextHFive.tsx b/src/icons/TextHFive.tsx index 7da88a0a4..505dd4074 100644 --- a/src/icons/TextHFive.tsx +++ b/src/icons/TextHFive.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextHFour.tsx b/src/icons/TextHFour.tsx index 6299ce1ef..6e4e25850 100644 --- a/src/icons/TextHFour.tsx +++ b/src/icons/TextHFour.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextHOne.tsx b/src/icons/TextHOne.tsx index d51c94c5a..794b3e695 100644 --- a/src/icons/TextHOne.tsx +++ b/src/icons/TextHOne.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextHSix.tsx b/src/icons/TextHSix.tsx index 7d4d93c92..5cb2bf154 100644 --- a/src/icons/TextHSix.tsx +++ b/src/icons/TextHSix.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextHThree.tsx b/src/icons/TextHThree.tsx index 1f5b41962..c878dd381 100644 --- a/src/icons/TextHThree.tsx +++ b/src/icons/TextHThree.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextHTwo.tsx b/src/icons/TextHTwo.tsx index 02831126e..ed5d2c824 100644 --- a/src/icons/TextHTwo.tsx +++ b/src/icons/TextHTwo.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextIndent.tsx b/src/icons/TextIndent.tsx index 0dd201d42..83d0d13e4 100644 --- a/src/icons/TextIndent.tsx +++ b/src/icons/TextIndent.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextItalic.tsx b/src/icons/TextItalic.tsx index 8f3bc25f5..dc5310423 100644 --- a/src/icons/TextItalic.tsx +++ b/src/icons/TextItalic.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextOutdent.tsx b/src/icons/TextOutdent.tsx index 7edbe0d0c..bb15cf571 100644 --- a/src/icons/TextOutdent.tsx +++ b/src/icons/TextOutdent.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextStrikethrough.tsx b/src/icons/TextStrikethrough.tsx index 4fc07eb0e..4932bc598 100644 --- a/src/icons/TextStrikethrough.tsx +++ b/src/icons/TextStrikethrough.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextT.tsx b/src/icons/TextT.tsx index c9a534fcb..b9d128c1d 100644 --- a/src/icons/TextT.tsx +++ b/src/icons/TextT.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TextUnderline.tsx b/src/icons/TextUnderline.tsx index 979e41eb2..662c647ef 100644 --- a/src/icons/TextUnderline.tsx +++ b/src/icons/TextUnderline.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Textbox.tsx b/src/icons/Textbox.tsx index 63416ba96..25b202a94 100644 --- a/src/icons/Textbox.tsx +++ b/src/icons/Textbox.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M240,80v96a8,8,0,0,1-8,8H24a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8H232A8,8,0,0,1,240,80Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Thermometer.tsx b/src/icons/Thermometer.tsx index 2641ec53d..db1b9673c 100644 --- a/src/icons/Thermometer.tsx +++ b/src/icons/Thermometer.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ThermometerCold.tsx b/src/icons/ThermometerCold.tsx index 1ae47b3fb..a9131ff8b 100644 --- a/src/icons/ThermometerCold.tsx +++ b/src/icons/ThermometerCold.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ThermometerHot.tsx b/src/icons/ThermometerHot.tsx index 90b1d64e5..b8ee65ce6 100644 --- a/src/icons/ThermometerHot.tsx +++ b/src/icons/ThermometerHot.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ThermometerSimple.tsx b/src/icons/ThermometerSimple.tsx index 605e42568..cd76b0cf3 100644 --- a/src/icons/ThermometerSimple.tsx +++ b/src/icons/ThermometerSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ThumbsDown.tsx b/src/icons/ThumbsDown.tsx index 78b07a5c9..a45cd8d77 100644 --- a/src/icons/ThumbsDown.tsx +++ b/src/icons/ThumbsDown.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ThumbsUp.tsx b/src/icons/ThumbsUp.tsx index 6463d44f1..0b7f5b0d1 100644 --- a/src/icons/ThumbsUp.tsx +++ b/src/icons/ThumbsUp.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Ticket.tsx b/src/icons/Ticket.tsx index b5052c81f..23ed22221 100644 --- a/src/icons/Ticket.tsx +++ b/src/icons/Ticket.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TidalLogo.tsx b/src/icons/TidalLogo.tsx new file mode 100644 index 000000000..2f4f7b428 --- /dev/null +++ b/src/icons/TidalLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const TidalLogo: Icon = forwardRef((props, ref) => ( + +)); + +TidalLogo.displayName = "TidalLogo"; + +export default TidalLogo; diff --git a/src/icons/TiktokLogo.tsx b/src/icons/TiktokLogo.tsx index 350a88377..52607fd54 100644 --- a/src/icons/TiktokLogo.tsx +++ b/src/icons/TiktokLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Timer.tsx b/src/icons/Timer.tsx index d82858851..56f14abfd 100644 --- a/src/icons/Timer.tsx +++ b/src/icons/Timer.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Tipi.tsx b/src/icons/Tipi.tsx new file mode 100644 index 000000000..f6e276208 --- /dev/null +++ b/src/icons/Tipi.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Tipi: Icon = forwardRef((props, ref) => ( + +)); + +Tipi.displayName = "Tipi"; + +export default Tipi; diff --git a/src/icons/ToggleLeft.tsx b/src/icons/ToggleLeft.tsx index 008782c47..13b30f795 100644 --- a/src/icons/ToggleLeft.tsx +++ b/src/icons/ToggleLeft.tsx @@ -13,7 +13,7 @@ const weights = new Map([ "duotone", <> - + , ], [ @@ -25,19 +25,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ToggleRight.tsx b/src/icons/ToggleRight.tsx index 9739bb3ad..a4be58b98 100644 --- a/src/icons/ToggleRight.tsx +++ b/src/icons/ToggleRight.tsx @@ -13,7 +13,7 @@ const weights = new Map([ "duotone", <> - + , ], [ @@ -25,19 +25,19 @@ const weights = new Map([ [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Toilet.tsx b/src/icons/Toilet.tsx index ef32ddc83..2f5f76a79 100644 --- a/src/icons/Toilet.tsx +++ b/src/icons/Toilet.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ToiletPaper.tsx b/src/icons/ToiletPaper.tsx index 6b876e922..1c4ad4106 100644 --- a/src/icons/ToiletPaper.tsx +++ b/src/icons/ToiletPaper.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Toolbox.tsx b/src/icons/Toolbox.tsx new file mode 100644 index 000000000..41aaaed34 --- /dev/null +++ b/src/icons/Toolbox.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Toolbox: Icon = forwardRef((props, ref) => ( + +)); + +Toolbox.displayName = "Toolbox"; + +export default Toolbox; diff --git a/src/icons/Tooth.tsx b/src/icons/Tooth.tsx new file mode 100644 index 000000000..d75075684 --- /dev/null +++ b/src/icons/Tooth.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Tooth: Icon = forwardRef((props, ref) => ( + +)); + +Tooth.displayName = "Tooth"; + +export default Tooth; diff --git a/src/icons/Tote.tsx b/src/icons/Tote.tsx index 8c4acf775..491a28356 100644 --- a/src/icons/Tote.tsx +++ b/src/icons/Tote.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/ToteSimple.tsx b/src/icons/ToteSimple.tsx index 53baaf68d..c0a79d9bb 100644 --- a/src/icons/ToteSimple.tsx +++ b/src/icons/ToteSimple.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Trademark.tsx b/src/icons/Trademark.tsx new file mode 100644 index 000000000..7aed15fe9 --- /dev/null +++ b/src/icons/Trademark.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Trademark: Icon = forwardRef((props, ref) => ( + +)); + +Trademark.displayName = "Trademark"; + +export default Trademark; diff --git a/src/icons/TrademarkRegistered.tsx b/src/icons/TrademarkRegistered.tsx index db0a3cc15..e160f1057 100644 --- a/src/icons/TrademarkRegistered.tsx +++ b/src/icons/TrademarkRegistered.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrafficCone.tsx b/src/icons/TrafficCone.tsx index c1a181681..e1c1867fe 100644 --- a/src/icons/TrafficCone.tsx +++ b/src/icons/TrafficCone.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrafficSign.tsx b/src/icons/TrafficSign.tsx index 0d755c0cd..5361e93b2 100644 --- a/src/icons/TrafficSign.tsx +++ b/src/icons/TrafficSign.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrafficSignal.tsx b/src/icons/TrafficSignal.tsx index 971c46748..80baf58e7 100644 --- a/src/icons/TrafficSignal.tsx +++ b/src/icons/TrafficSignal.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Train.tsx b/src/icons/Train.tsx index 69174dd89..7c7463816 100644 --- a/src/icons/Train.tsx +++ b/src/icons/Train.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrainRegional.tsx b/src/icons/TrainRegional.tsx index 025bcfde2..16a530bb7 100644 --- a/src/icons/TrainRegional.tsx +++ b/src/icons/TrainRegional.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrainSimple.tsx b/src/icons/TrainSimple.tsx index 752a31cc0..e13f00873 100644 --- a/src/icons/TrainSimple.tsx +++ b/src/icons/TrainSimple.tsx @@ -6,42 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Tram.tsx b/src/icons/Tram.tsx new file mode 100644 index 000000000..cfda38bfc --- /dev/null +++ b/src/icons/Tram.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Tram: Icon = forwardRef((props, ref) => ( + +)); + +Tram.displayName = "Tram"; + +export default Tram; diff --git a/src/icons/Translate.tsx b/src/icons/Translate.tsx index 4fc70802c..3fc3b39b7 100644 --- a/src/icons/Translate.tsx +++ b/src/icons/Translate.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Trash.tsx b/src/icons/Trash.tsx index f6191f938..7b84aa875 100644 --- a/src/icons/Trash.tsx +++ b/src/icons/Trash.tsx @@ -6,42 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrashSimple.tsx b/src/icons/TrashSimple.tsx index a918e8408..cfaff449a 100644 --- a/src/icons/TrashSimple.tsx +++ b/src/icons/TrashSimple.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -19,8 +19,7 @@ const weights = new Map([ [ "fill", <> - - + , ], [ diff --git a/src/icons/Tray.tsx b/src/icons/Tray.tsx index 74f808540..6b5a02b7f 100644 --- a/src/icons/Tray.tsx +++ b/src/icons/Tray.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Tree.tsx b/src/icons/Tree.tsx index 20a5f4c54..b9833ede1 100644 --- a/src/icons/Tree.tsx +++ b/src/icons/Tree.tsx @@ -6,41 +6,42 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TreeEvergreen.tsx b/src/icons/TreeEvergreen.tsx index 90dbcb01e..c1f272cae 100644 --- a/src/icons/TreeEvergreen.tsx +++ b/src/icons/TreeEvergreen.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TreePalm.tsx b/src/icons/TreePalm.tsx new file mode 100644 index 000000000..e1e11d890 --- /dev/null +++ b/src/icons/TreePalm.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const TreePalm: Icon = forwardRef((props, ref) => ( + +)); + +TreePalm.displayName = "TreePalm"; + +export default TreePalm; diff --git a/src/icons/TreeStructure.tsx b/src/icons/TreeStructure.tsx index 18d4f86a2..a3ab130ff 100644 --- a/src/icons/TreeStructure.tsx +++ b/src/icons/TreeStructure.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrendDown.tsx b/src/icons/TrendDown.tsx index d0619b1ca..b642b3f66 100644 --- a/src/icons/TrendDown.tsx +++ b/src/icons/TrendDown.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TrendUp.tsx b/src/icons/TrendUp.tsx index 5a572960f..fda24bc79 100644 --- a/src/icons/TrendUp.tsx +++ b/src/icons/TrendUp.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Triangle.tsx b/src/icons/Triangle.tsx index 735cbed54..1995d5a86 100644 --- a/src/icons/Triangle.tsx +++ b/src/icons/Triangle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Trophy.tsx b/src/icons/Trophy.tsx index 5a0325236..e3c3d69fa 100644 --- a/src/icons/Trophy.tsx +++ b/src/icons/Trophy.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Truck.tsx b/src/icons/Truck.tsx index 057124b33..baebe348e 100644 --- a/src/icons/Truck.tsx +++ b/src/icons/Truck.tsx @@ -6,43 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/TwitchLogo.tsx b/src/icons/TwitchLogo.tsx index 9798c9e2a..c38890ead 100644 --- a/src/icons/TwitchLogo.tsx +++ b/src/icons/TwitchLogo.tsx @@ -6,48 +6,41 @@ const weights = new Map([ [ "bold", <> - - - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - - - + , ], [ "regular", <> - - - + , ], [ "thin", <> - - - + , ], ]); diff --git a/src/icons/TwitterLogo.tsx b/src/icons/TwitterLogo.tsx index b6250dad5..bf67be06f 100644 --- a/src/icons/TwitterLogo.tsx +++ b/src/icons/TwitterLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Umbrella.tsx b/src/icons/Umbrella.tsx index 50b7cee8f..43e2353a6 100644 --- a/src/icons/Umbrella.tsx +++ b/src/icons/Umbrella.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UmbrellaSimple.tsx b/src/icons/UmbrellaSimple.tsx index 652a7d3f1..07bd0d7ff 100644 --- a/src/icons/UmbrellaSimple.tsx +++ b/src/icons/UmbrellaSimple.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Unite.tsx b/src/icons/Unite.tsx new file mode 100644 index 000000000..8ffff37a2 --- /dev/null +++ b/src/icons/Unite.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Unite: Icon = forwardRef((props, ref) => ( + +)); + +Unite.displayName = "Unite"; + +export default Unite; diff --git a/src/icons/UniteSquare.tsx b/src/icons/UniteSquare.tsx new file mode 100644 index 000000000..2f02bda6d --- /dev/null +++ b/src/icons/UniteSquare.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const UniteSquare: Icon = forwardRef((props, ref) => ( + +)); + +UniteSquare.displayName = "UniteSquare"; + +export default UniteSquare; diff --git a/src/icons/Upload.tsx b/src/icons/Upload.tsx index cc60b5166..5fc0a5371 100644 --- a/src/icons/Upload.tsx +++ b/src/icons/Upload.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M232,136v64a8,8,0,0,1-8,8H32a8,8,0,0,1-8-8V136a8,8,0,0,1,8-8H224A8,8,0,0,1,232,136Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UploadSimple.tsx b/src/icons/UploadSimple.tsx index 5236b0fec..844f22ebe 100644 --- a/src/icons/UploadSimple.tsx +++ b/src/icons/UploadSimple.tsx @@ -6,37 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Usb.tsx b/src/icons/Usb.tsx new file mode 100644 index 000000000..3259ec091 --- /dev/null +++ b/src/icons/Usb.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Usb: Icon = forwardRef((props, ref) => ( + +)); + +Usb.displayName = "Usb"; + +export default Usb; diff --git a/src/icons/User.tsx b/src/icons/User.tsx index 482a9123d..2305752eb 100644 --- a/src/icons/User.tsx +++ b/src/icons/User.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserCircle.tsx b/src/icons/UserCircle.tsx index d9e5e9cfa..febd8b53e 100644 --- a/src/icons/UserCircle.tsx +++ b/src/icons/UserCircle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserCircleGear.tsx b/src/icons/UserCircleGear.tsx index 0ea0b1bc3..b1d96485d 100644 --- a/src/icons/UserCircleGear.tsx +++ b/src/icons/UserCircleGear.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserCircleMinus.tsx b/src/icons/UserCircleMinus.tsx index 623189f5a..e722ebf01 100644 --- a/src/icons/UserCircleMinus.tsx +++ b/src/icons/UserCircleMinus.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserCirclePlus.tsx b/src/icons/UserCirclePlus.tsx index d62a4ee3e..af29d8af6 100644 --- a/src/icons/UserCirclePlus.tsx +++ b/src/icons/UserCirclePlus.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserFocus.tsx b/src/icons/UserFocus.tsx index 969535748..5f068463f 100644 --- a/src/icons/UserFocus.tsx +++ b/src/icons/UserFocus.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserGear.tsx b/src/icons/UserGear.tsx index 3774f41d0..7ba192612 100644 --- a/src/icons/UserGear.tsx +++ b/src/icons/UserGear.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserList.tsx b/src/icons/UserList.tsx index 204d12a22..a4d8c6484 100644 --- a/src/icons/UserList.tsx +++ b/src/icons/UserList.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserMinus.tsx b/src/icons/UserMinus.tsx index 0261bd1fe..2046b247e 100644 --- a/src/icons/UserMinus.tsx +++ b/src/icons/UserMinus.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserPlus.tsx b/src/icons/UserPlus.tsx index 61f716bda..c9ff476bc 100644 --- a/src/icons/UserPlus.tsx +++ b/src/icons/UserPlus.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserRectangle.tsx b/src/icons/UserRectangle.tsx index 1d3845216..eaf654067 100644 --- a/src/icons/UserRectangle.tsx +++ b/src/icons/UserRectangle.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserSquare.tsx b/src/icons/UserSquare.tsx index d074dcd8f..9d15c5243 100644 --- a/src/icons/UserSquare.tsx +++ b/src/icons/UserSquare.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UserSwitch.tsx b/src/icons/UserSwitch.tsx index 56dd5f403..221117dc0 100644 --- a/src/icons/UserSwitch.tsx +++ b/src/icons/UserSwitch.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Users.tsx b/src/icons/Users.tsx index 135d252c8..522230164 100644 --- a/src/icons/Users.tsx +++ b/src/icons/Users.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UsersFour.tsx b/src/icons/UsersFour.tsx index 216b08a16..18c6937b6 100644 --- a/src/icons/UsersFour.tsx +++ b/src/icons/UsersFour.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M112,168a32,32,0,1,1-32-32A32,32,0,0,1,112,168ZM80,32a32,32,0,1,0,32,32A32,32,0,0,0,80,32Zm96,104a32,32,0,1,0,32,32A32,32,0,0,0,176,136Zm0-40a32,32,0,1,0-32-32A32,32,0,0,0,176,96Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/UsersThree.tsx b/src/icons/UsersThree.tsx index b170ad3ed..18598112e 100644 --- a/src/icons/UsersThree.tsx +++ b/src/icons/UsersThree.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Van.tsx b/src/icons/Van.tsx new file mode 100644 index 000000000..6af3654a8 --- /dev/null +++ b/src/icons/Van.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Van: Icon = forwardRef((props, ref) => ( + +)); + +Van.displayName = "Van"; + +export default Van; diff --git a/src/icons/Vault.tsx b/src/icons/Vault.tsx index 53df34aa1..8f8de526d 100644 --- a/src/icons/Vault.tsx +++ b/src/icons/Vault.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M216,48H40a8,8,0,0,0-8,8V192a8,8,0,0,0,8,8H216a8,8,0,0,0,8-8V56A8,8,0,0,0,216,48ZM152,168a40,40,0,1,1,40-40A40,40,0,0,1,152,168Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Vibrate.tsx b/src/icons/Vibrate.tsx index ead47a54f..720197221 100644 --- a/src/icons/Vibrate.tsx +++ b/src/icons/Vibrate.tsx @@ -6,51 +6,45 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - - - - + + , ], [ "fill", <> - + + + + + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Video.tsx b/src/icons/Video.tsx new file mode 100644 index 000000000..acc2145b2 --- /dev/null +++ b/src/icons/Video.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Video: Icon = forwardRef((props, ref) => ( + +)); + +Video.displayName = "Video"; + +export default Video; diff --git a/src/icons/VideoCamera.tsx b/src/icons/VideoCamera.tsx index 6f68d914f..7f3b4315e 100644 --- a/src/icons/VideoCamera.tsx +++ b/src/icons/VideoCamera.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/VideoCameraSlash.tsx b/src/icons/VideoCameraSlash.tsx index 78a50fd38..2837ea51d 100644 --- a/src/icons/VideoCameraSlash.tsx +++ b/src/icons/VideoCameraSlash.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Vignette.tsx b/src/icons/Vignette.tsx index 6fb6ebab9..6a97dde22 100644 --- a/src/icons/Vignette.tsx +++ b/src/icons/Vignette.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/VinylRecord.tsx b/src/icons/VinylRecord.tsx new file mode 100644 index 000000000..6515bdc09 --- /dev/null +++ b/src/icons/VinylRecord.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const VinylRecord: Icon = forwardRef((props, ref) => ( + +)); + +VinylRecord.displayName = "VinylRecord"; + +export default VinylRecord; diff --git a/src/icons/VirtualReality.tsx b/src/icons/VirtualReality.tsx new file mode 100644 index 000000000..7a18066db --- /dev/null +++ b/src/icons/VirtualReality.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const VirtualReality: Icon = forwardRef((props, ref) => ( + +)); + +VirtualReality.displayName = "VirtualReality"; + +export default VirtualReality; diff --git a/src/icons/Virus.tsx b/src/icons/Virus.tsx new file mode 100644 index 000000000..1c8edd26f --- /dev/null +++ b/src/icons/Virus.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Virus: Icon = forwardRef((props, ref) => ( + +)); + +Virus.displayName = "Virus"; + +export default Virus; diff --git a/src/icons/Voicemail.tsx b/src/icons/Voicemail.tsx index 13652e485..25d9cbe0c 100644 --- a/src/icons/Voicemail.tsx +++ b/src/icons/Voicemail.tsx @@ -12,37 +12,35 @@ const weights = new Map([ [ "duotone", <> - - - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Volleyball.tsx b/src/icons/Volleyball.tsx index 6e4dd2997..fbeee0caf 100644 --- a/src/icons/Volleyball.tsx +++ b/src/icons/Volleyball.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Wall.tsx b/src/icons/Wall.tsx index 7edaa3d9c..da4c721f6 100644 --- a/src/icons/Wall.tsx +++ b/src/icons/Wall.tsx @@ -19,7 +19,13 @@ const weights = new Map([ [ "fill", <> - + + + + + + + , ], [ diff --git a/src/icons/Wallet.tsx b/src/icons/Wallet.tsx index c345ac62d..c7ca77807 100644 --- a/src/icons/Wallet.tsx +++ b/src/icons/Wallet.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,88V200a8,8,0,0,1-8,8H56a16,16,0,0,1-16-16V64A16,16,0,0,0,56,80H216A8,8,0,0,1,224,88Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Warehouse.tsx b/src/icons/Warehouse.tsx new file mode 100644 index 000000000..957e12021 --- /dev/null +++ b/src/icons/Warehouse.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Warehouse: Icon = forwardRef((props, ref) => ( + +)); + +Warehouse.displayName = "Warehouse"; + +export default Warehouse; diff --git a/src/icons/Warning.tsx b/src/icons/Warning.tsx index 649a1b230..d27df450b 100644 --- a/src/icons/Warning.tsx +++ b/src/icons/Warning.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WarningCircle.tsx b/src/icons/WarningCircle.tsx index dbafc4dd1..ca211b21e 100644 --- a/src/icons/WarningCircle.tsx +++ b/src/icons/WarningCircle.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WarningDiamond.tsx b/src/icons/WarningDiamond.tsx new file mode 100644 index 000000000..7da8e3e41 --- /dev/null +++ b/src/icons/WarningDiamond.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const WarningDiamond: Icon = forwardRef((props, ref) => ( + +)); + +WarningDiamond.displayName = "WarningDiamond"; + +export default WarningDiamond; diff --git a/src/icons/WarningOctagon.tsx b/src/icons/WarningOctagon.tsx index 20283f1df..6a9a3cc08 100644 --- a/src/icons/WarningOctagon.tsx +++ b/src/icons/WarningOctagon.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Watch.tsx b/src/icons/Watch.tsx index 44c2cdf10..c3eadb749 100644 --- a/src/icons/Watch.tsx +++ b/src/icons/Watch.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WaveSawtooth.tsx b/src/icons/WaveSawtooth.tsx index cf200baf3..d866327a0 100644 --- a/src/icons/WaveSawtooth.tsx +++ b/src/icons/WaveSawtooth.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WaveSine.tsx b/src/icons/WaveSine.tsx index a34e5e36c..ce1c943ad 100644 --- a/src/icons/WaveSine.tsx +++ b/src/icons/WaveSine.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WaveSquare.tsx b/src/icons/WaveSquare.tsx index 6b5501f97..35d5027e0 100644 --- a/src/icons/WaveSquare.tsx +++ b/src/icons/WaveSquare.tsx @@ -19,7 +19,7 @@ const weights = new Map([ [ "fill", <> - + , ], [ diff --git a/src/icons/WaveTriangle.tsx b/src/icons/WaveTriangle.tsx index 8d34ef9e2..621524f1d 100644 --- a/src/icons/WaveTriangle.tsx +++ b/src/icons/WaveTriangle.tsx @@ -6,38 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Waveform.tsx b/src/icons/Waveform.tsx new file mode 100644 index 000000000..58730e2e9 --- /dev/null +++ b/src/icons/Waveform.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const Waveform: Icon = forwardRef((props, ref) => ( + +)); + +Waveform.displayName = "Waveform"; + +export default Waveform; diff --git a/src/icons/Waves.tsx b/src/icons/Waves.tsx index 50bfb3080..d27f5cb3f 100644 --- a/src/icons/Waves.tsx +++ b/src/icons/Waves.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Webcam.tsx b/src/icons/Webcam.tsx index 9a4e6949f..8e7bd7077 100644 --- a/src/icons/Webcam.tsx +++ b/src/icons/Webcam.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M128,32a72,72,0,1,0,72,72A72,72,0,0,0,128,32Zm0,104a32,32,0,1,1,32-32A32,32,0,0,1,128,136Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WebcamSlash.tsx b/src/icons/WebcamSlash.tsx new file mode 100644 index 000000000..f62b7be9f --- /dev/null +++ b/src/icons/WebcamSlash.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const WebcamSlash: Icon = forwardRef((props, ref) => ( + +)); + +WebcamSlash.displayName = "WebcamSlash"; + +export default WebcamSlash; diff --git a/src/icons/WebhooksLogo.tsx b/src/icons/WebhooksLogo.tsx new file mode 100644 index 000000000..e4f12d0f7 --- /dev/null +++ b/src/icons/WebhooksLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const WebhooksLogo: Icon = forwardRef((props, ref) => ( + +)); + +WebhooksLogo.displayName = "WebhooksLogo"; + +export default WebhooksLogo; diff --git a/src/icons/WechatLogo.tsx b/src/icons/WechatLogo.tsx new file mode 100644 index 000000000..9036c6e58 --- /dev/null +++ b/src/icons/WechatLogo.tsx @@ -0,0 +1,54 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const WechatLogo: Icon = forwardRef((props, ref) => ( + +)); + +WechatLogo.displayName = "WechatLogo"; + +export default WechatLogo; diff --git a/src/icons/WhatsappLogo.tsx b/src/icons/WhatsappLogo.tsx index 5ad79ef6c..72da7880b 100644 --- a/src/icons/WhatsappLogo.tsx +++ b/src/icons/WhatsappLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Wheelchair.tsx b/src/icons/Wheelchair.tsx index 184ebb620..cf063cfc6 100644 --- a/src/icons/Wheelchair.tsx +++ b/src/icons/Wheelchair.tsx @@ -6,40 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WheelchairMotion.tsx b/src/icons/WheelchairMotion.tsx new file mode 100644 index 000000000..10bc3ec6d --- /dev/null +++ b/src/icons/WheelchairMotion.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { forwardRef, ReactElement } from "react"; +import { IconWeight, Icon, IconBase } from "../lib"; + +const weights = new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); + +const WheelchairMotion: Icon = forwardRef((props, ref) => ( + +)); + +WheelchairMotion.displayName = "WheelchairMotion"; + +export default WheelchairMotion; diff --git a/src/icons/WifiHigh.tsx b/src/icons/WifiHigh.tsx index 544123487..262512afb 100644 --- a/src/icons/WifiHigh.tsx +++ b/src/icons/WifiHigh.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WifiLow.tsx b/src/icons/WifiLow.tsx index f875175b8..2bc11248a 100644 --- a/src/icons/WifiLow.tsx +++ b/src/icons/WifiLow.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WifiMedium.tsx b/src/icons/WifiMedium.tsx index a093552d3..43b56ee78 100644 --- a/src/icons/WifiMedium.tsx +++ b/src/icons/WifiMedium.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WifiNone.tsx b/src/icons/WifiNone.tsx index b3658c8b4..ceca046c6 100644 --- a/src/icons/WifiNone.tsx +++ b/src/icons/WifiNone.tsx @@ -6,37 +6,37 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WifiSlash.tsx b/src/icons/WifiSlash.tsx index e901d866f..652e92372 100644 --- a/src/icons/WifiSlash.tsx +++ b/src/icons/WifiSlash.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WifiX.tsx b/src/icons/WifiX.tsx index e2753a176..e551b76d3 100644 --- a/src/icons/WifiX.tsx +++ b/src/icons/WifiX.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Wind.tsx b/src/icons/Wind.tsx index 00ec133c3..4968434b7 100644 --- a/src/icons/Wind.tsx +++ b/src/icons/Wind.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/WindowsLogo.tsx b/src/icons/WindowsLogo.tsx index ba964a29e..d957ae12e 100644 --- a/src/icons/WindowsLogo.tsx +++ b/src/icons/WindowsLogo.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Wine.tsx b/src/icons/Wine.tsx index 9c2eb41e8..3921eb01c 100644 --- a/src/icons/Wine.tsx +++ b/src/icons/Wine.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/Wrench.tsx b/src/icons/Wrench.tsx index c148fa237..362e0b86f 100644 --- a/src/icons/Wrench.tsx +++ b/src/icons/Wrench.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/X.tsx b/src/icons/X.tsx index 8bd939f87..a10e8f4a6 100644 --- a/src/icons/X.tsx +++ b/src/icons/X.tsx @@ -6,37 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/XCircle.tsx b/src/icons/XCircle.tsx index 34f6397ec..e19d06c50 100644 --- a/src/icons/XCircle.tsx +++ b/src/icons/XCircle.tsx @@ -6,41 +6,38 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/XSquare.tsx b/src/icons/XSquare.tsx index e455af081..0c4e90c95 100644 --- a/src/icons/XSquare.tsx +++ b/src/icons/XSquare.tsx @@ -6,41 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/YinYang.tsx b/src/icons/YinYang.tsx index 1cb3c6fbe..982df6e8e 100644 --- a/src/icons/YinYang.tsx +++ b/src/icons/YinYang.tsx @@ -6,7 +6,7 @@ const weights = new Map([ [ "bold", <> - + , ], [ @@ -16,31 +16,31 @@ const weights = new Map([ d="M224,128a96,96,0,0,1-96,96,48,48,0,0,1,0-96,48,48,0,0,0,0-96A96,96,0,0,1,224,128Z" opacity="0.2" /> - + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/icons/YoutubeLogo.tsx b/src/icons/YoutubeLogo.tsx index d4604d615..9a813b046 100644 --- a/src/icons/YoutubeLogo.tsx +++ b/src/icons/YoutubeLogo.tsx @@ -6,40 +6,41 @@ const weights = new Map([ [ "bold", <> - + , ], [ "duotone", <> - - - - + + , ], [ "fill", <> - + , ], [ "light", <> - + , ], [ "regular", <> - + , ], [ "thin", <> - + , ], ]); diff --git a/src/index.ts b/src/index.ts index 02984be09..baa3577e7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,8 +2,8 @@ export type { Icon, IconProps, IconWeight } from "./lib"; export { IconContext, IconBase } from "./lib"; -export { default as Activity } from "./icons/Activity"; export { default as AddressBook } from "./icons/AddressBook"; +export { default as AirTrafficControl } from "./icons/AirTrafficControl"; export { default as Airplane } from "./icons/Airplane"; export { default as AirplaneInFlight } from "./icons/AirplaneInFlight"; export { default as AirplaneLanding } from "./icons/AirplaneLanding"; @@ -24,6 +24,7 @@ export { default as AlignRight } from "./icons/AlignRight"; export { default as AlignRightSimple } from "./icons/AlignRightSimple"; export { default as AlignTop } from "./icons/AlignTop"; export { default as AlignTopSimple } from "./icons/AlignTopSimple"; +export { default as AmazonLogo } from "./icons/AmazonLogo"; export { default as Anchor } from "./icons/Anchor"; export { default as AnchorSimple } from "./icons/AnchorSimple"; export { default as AndroidLogo } from "./icons/AndroidLogo"; @@ -125,11 +126,13 @@ export { default as ArrowsInLineHorizontal } from "./icons/ArrowsInLineHorizonta export { default as ArrowsInLineVertical } from "./icons/ArrowsInLineVertical"; export { default as ArrowsInSimple } from "./icons/ArrowsInSimple"; export { default as ArrowsLeftRight } from "./icons/ArrowsLeftRight"; +export { default as ArrowsMerge } from "./icons/ArrowsMerge"; export { default as ArrowsOut } from "./icons/ArrowsOut"; export { default as ArrowsOutCardinal } from "./icons/ArrowsOutCardinal"; export { default as ArrowsOutLineHorizontal } from "./icons/ArrowsOutLineHorizontal"; export { default as ArrowsOutLineVertical } from "./icons/ArrowsOutLineVertical"; export { default as ArrowsOutSimple } from "./icons/ArrowsOutSimple"; +export { default as ArrowsSplit } from "./icons/ArrowsSplit"; export { default as ArrowsVertical } from "./icons/ArrowsVertical"; export { default as Article } from "./icons/Article"; export { default as ArticleMedium } from "./icons/ArticleMedium"; @@ -150,6 +153,8 @@ export { default as Barbell } from "./icons/Barbell"; export { default as Barcode } from "./icons/Barcode"; export { default as Barricade } from "./icons/Barricade"; export { default as Baseball } from "./icons/Baseball"; +export { default as BaseballCap } from "./icons/BaseballCap"; +export { default as Basket } from "./icons/Basket"; export { default as Basketball } from "./icons/Basketball"; export { default as Bathtub } from "./icons/Bathtub"; export { default as BatteryCharging } from "./icons/BatteryCharging"; @@ -160,10 +165,17 @@ export { default as BatteryHigh } from "./icons/BatteryHigh"; export { default as BatteryLow } from "./icons/BatteryLow"; export { default as BatteryMedium } from "./icons/BatteryMedium"; export { default as BatteryPlus } from "./icons/BatteryPlus"; +export { default as BatteryPlusVertical } from "./icons/BatteryPlusVertical"; +export { default as BatteryVerticalEmpty } from "./icons/BatteryVerticalEmpty"; +export { default as BatteryVerticalFull } from "./icons/BatteryVerticalFull"; +export { default as BatteryVerticalHigh } from "./icons/BatteryVerticalHigh"; +export { default as BatteryVerticalLow } from "./icons/BatteryVerticalLow"; +export { default as BatteryVerticalMedium } from "./icons/BatteryVerticalMedium"; export { default as BatteryWarning } from "./icons/BatteryWarning"; export { default as BatteryWarningVertical } from "./icons/BatteryWarningVertical"; export { default as Bed } from "./icons/Bed"; export { default as BeerBottle } from "./icons/BeerBottle"; +export { default as BeerStein } from "./icons/BeerStein"; export { default as BehanceLogo } from "./icons/BehanceLogo"; export { default as Bell } from "./icons/Bell"; export { default as BellRinging } from "./icons/BellRinging"; @@ -182,24 +194,30 @@ export { default as BluetoothConnected } from "./icons/BluetoothConnected"; export { default as BluetoothSlash } from "./icons/BluetoothSlash"; export { default as BluetoothX } from "./icons/BluetoothX"; export { default as Boat } from "./icons/Boat"; +export { default as Bone } from "./icons/Bone"; export { default as Book } from "./icons/Book"; export { default as BookBookmark } from "./icons/BookBookmark"; export { default as BookOpen } from "./icons/BookOpen"; +export { default as BookOpenText } from "./icons/BookOpenText"; export { default as Bookmark } from "./icons/Bookmark"; export { default as BookmarkSimple } from "./icons/BookmarkSimple"; export { default as Bookmarks } from "./icons/Bookmarks"; export { default as BookmarksSimple } from "./icons/BookmarksSimple"; export { default as Books } from "./icons/Books"; +export { default as Boot } from "./icons/Boot"; export { default as BoundingBox } from "./icons/BoundingBox"; +export { default as BowlFood } from "./icons/BowlFood"; export { default as BracketsAngle } from "./icons/BracketsAngle"; export { default as BracketsCurly } from "./icons/BracketsCurly"; export { default as BracketsRound } from "./icons/BracketsRound"; export { default as BracketsSquare } from "./icons/BracketsSquare"; export { default as Brain } from "./icons/Brain"; export { default as Brandy } from "./icons/Brandy"; +export { default as Bridge } from "./icons/Bridge"; export { default as Briefcase } from "./icons/Briefcase"; export { default as BriefcaseMetal } from "./icons/BriefcaseMetal"; export { default as Broadcast } from "./icons/Broadcast"; +export { default as Broom } from "./icons/Broom"; export { default as Browser } from "./icons/Browser"; export { default as Browsers } from "./icons/Browsers"; export { default as BugBeetle } from "./icons/BugBeetle"; @@ -216,11 +234,14 @@ export { default as Calendar } from "./icons/Calendar"; export { default as CalendarCheck } from "./icons/CalendarCheck"; export { default as CalendarPlus } from "./icons/CalendarPlus"; export { default as CalendarX } from "./icons/CalendarX"; +export { default as CallBell } from "./icons/CallBell"; export { default as Camera } from "./icons/Camera"; +export { default as CameraPlus } from "./icons/CameraPlus"; export { default as CameraRotate } from "./icons/CameraRotate"; export { default as CameraSlash } from "./icons/CameraSlash"; export { default as Campfire } from "./icons/Campfire"; export { default as Car } from "./icons/Car"; +export { default as CarProfile } from "./icons/CarProfile"; export { default as CarSimple } from "./icons/CarSimple"; export { default as Cardholder } from "./icons/Cardholder"; export { default as Cards } from "./icons/Cards"; @@ -232,6 +253,7 @@ export { default as CaretCircleDown } from "./icons/CaretCircleDown"; export { default as CaretCircleLeft } from "./icons/CaretCircleLeft"; export { default as CaretCircleRight } from "./icons/CaretCircleRight"; export { default as CaretCircleUp } from "./icons/CaretCircleUp"; +export { default as CaretCircleUpDown } from "./icons/CaretCircleUpDown"; export { default as CaretDoubleDown } from "./icons/CaretDoubleDown"; export { default as CaretDoubleLeft } from "./icons/CaretDoubleLeft"; export { default as CaretDoubleRight } from "./icons/CaretDoubleRight"; @@ -240,6 +262,10 @@ export { default as CaretDown } from "./icons/CaretDown"; export { default as CaretLeft } from "./icons/CaretLeft"; export { default as CaretRight } from "./icons/CaretRight"; export { default as CaretUp } from "./icons/CaretUp"; +export { default as CaretUpDown } from "./icons/CaretUpDown"; +export { default as Carrot } from "./icons/Carrot"; +export { default as CassetteTape } from "./icons/CassetteTape"; +export { default as CastleTurret } from "./icons/CastleTurret"; export { default as Cat } from "./icons/Cat"; export { default as CellSignalFull } from "./icons/CellSignalFull"; export { default as CellSignalHigh } from "./icons/CellSignalHigh"; @@ -248,15 +274,23 @@ export { default as CellSignalMedium } from "./icons/CellSignalMedium"; export { default as CellSignalNone } from "./icons/CellSignalNone"; export { default as CellSignalSlash } from "./icons/CellSignalSlash"; export { default as CellSignalX } from "./icons/CellSignalX"; +export { default as Certificate } from "./icons/Certificate"; +export { default as Chair } from "./icons/Chair"; export { default as Chalkboard } from "./icons/Chalkboard"; export { default as ChalkboardSimple } from "./icons/ChalkboardSimple"; export { default as ChalkboardTeacher } from "./icons/ChalkboardTeacher"; +export { default as Champagne } from "./icons/Champagne"; +export { default as ChargingStation } from "./icons/ChargingStation"; export { default as ChartBar } from "./icons/ChartBar"; export { default as ChartBarHorizontal } from "./icons/ChartBarHorizontal"; +export { default as ChartDonut } from "./icons/ChartDonut"; export { default as ChartLine } from "./icons/ChartLine"; +export { default as ChartLineDown } from "./icons/ChartLineDown"; export { default as ChartLineUp } from "./icons/ChartLineUp"; export { default as ChartPie } from "./icons/ChartPie"; export { default as ChartPieSlice } from "./icons/ChartPieSlice"; +export { default as ChartPolar } from "./icons/ChartPolar"; +export { default as ChartScatter } from "./icons/ChartScatter"; export { default as Chat } from "./icons/Chat"; export { default as ChatCentered } from "./icons/ChatCentered"; export { default as ChatCenteredDots } from "./icons/ChatCenteredDots"; @@ -274,26 +308,26 @@ export { default as ChatsCircle } from "./icons/ChatsCircle"; export { default as ChatsTeardrop } from "./icons/ChatsTeardrop"; export { default as Check } from "./icons/Check"; export { default as CheckCircle } from "./icons/CheckCircle"; +export { default as CheckFat } from "./icons/CheckFat"; export { default as CheckSquare } from "./icons/CheckSquare"; export { default as CheckSquareOffset } from "./icons/CheckSquareOffset"; export { default as Checks } from "./icons/Checks"; +export { default as Church } from "./icons/Church"; export { default as Circle } from "./icons/Circle"; export { default as CircleDashed } from "./icons/CircleDashed"; export { default as CircleHalf } from "./icons/CircleHalf"; export { default as CircleHalfTilt } from "./icons/CircleHalfTilt"; export { default as CircleNotch } from "./icons/CircleNotch"; -export { default as CircleWavy } from "./icons/CircleWavy"; -export { default as CircleWavyCheck } from "./icons/CircleWavyCheck"; -export { default as CircleWavyQuestion } from "./icons/CircleWavyQuestion"; -export { default as CircleWavyWarning } from "./icons/CircleWavyWarning"; export { default as CirclesFour } from "./icons/CirclesFour"; export { default as CirclesThree } from "./icons/CirclesThree"; export { default as CirclesThreePlus } from "./icons/CirclesThreePlus"; +export { default as Circuitry } from "./icons/Circuitry"; export { default as Clipboard } from "./icons/Clipboard"; export { default as ClipboardText } from "./icons/ClipboardText"; export { default as ClockAfternoon } from "./icons/ClockAfternoon"; export { default as Clock } from "./icons/Clock"; export { default as ClockClockwise } from "./icons/ClockClockwise"; +export { default as ClockCountdown } from "./icons/ClockCountdown"; export { default as ClockCounterClockwise } from "./icons/ClockCounterClockwise"; export { default as ClosedCaptioning } from "./icons/ClosedCaptioning"; export { default as CloudArrowDown } from "./icons/CloudArrowDown"; @@ -307,8 +341,12 @@ export { default as CloudRain } from "./icons/CloudRain"; export { default as CloudSlash } from "./icons/CloudSlash"; export { default as CloudSnow } from "./icons/CloudSnow"; export { default as CloudSun } from "./icons/CloudSun"; +export { default as CloudWarning } from "./icons/CloudWarning"; +export { default as CloudX } from "./icons/CloudX"; export { default as Club } from "./icons/Club"; export { default as CoatHanger } from "./icons/CoatHanger"; +export { default as CodaLogo } from "./icons/CodaLogo"; +export { default as CodeBlock } from "./icons/CodeBlock"; export { default as Code } from "./icons/Code"; export { default as CodeSimple } from "./icons/CodeSimple"; export { default as CodepenLogo } from "./icons/CodepenLogo"; @@ -320,8 +358,11 @@ export { default as Coins } from "./icons/Coins"; export { default as Columns } from "./icons/Columns"; export { default as Command } from "./icons/Command"; export { default as Compass } from "./icons/Compass"; +export { default as CompassTool } from "./icons/CompassTool"; export { default as ComputerTower } from "./icons/ComputerTower"; export { default as Confetti } from "./icons/Confetti"; +export { default as ContactlessPayment } from "./icons/ContactlessPayment"; +export { default as Control } from "./icons/Control"; export { default as Cookie } from "./icons/Cookie"; export { default as CookingPot } from "./icons/CookingPot"; export { default as Copy } from "./icons/Copy"; @@ -330,14 +371,18 @@ export { default as Copyleft } from "./icons/Copyleft"; export { default as Copyright } from "./icons/Copyright"; export { default as CornersIn } from "./icons/CornersIn"; export { default as CornersOut } from "./icons/CornersOut"; +export { default as Couch } from "./icons/Couch"; export { default as Cpu } from "./icons/Cpu"; export { default as CreditCard } from "./icons/CreditCard"; export { default as Crop } from "./icons/Crop"; +export { default as Cross } from "./icons/Cross"; export { default as Crosshair } from "./icons/Crosshair"; export { default as CrosshairSimple } from "./icons/CrosshairSimple"; export { default as Crown } from "./icons/Crown"; export { default as CrownSimple } from "./icons/CrownSimple"; export { default as Cube } from "./icons/Cube"; +export { default as CubeFocus } from "./icons/CubeFocus"; +export { default as CubeTransparent } from "./icons/CubeTransparent"; export { default as CurrencyBtc } from "./icons/CurrencyBtc"; export { default as CurrencyCircleDollar } from "./icons/CurrencyCircleDollar"; export { default as CurrencyCny } from "./icons/CurrencyCny"; @@ -353,18 +398,21 @@ export { default as CurrencyKzt } from "./icons/CurrencyKzt"; export { default as CurrencyNgn } from "./icons/CurrencyNgn"; export { default as CurrencyRub } from "./icons/CurrencyRub"; export { default as Cursor } from "./icons/Cursor"; +export { default as CursorClick } from "./icons/CursorClick"; export { default as CursorText } from "./icons/CursorText"; export { default as Cylinder } from "./icons/Cylinder"; export { default as Database } from "./icons/Database"; export { default as Desktop } from "./icons/Desktop"; export { default as DesktopTower } from "./icons/DesktopTower"; export { default as Detective } from "./icons/Detective"; +export { default as DevToLogo } from "./icons/DevToLogo"; export { default as DeviceMobile } from "./icons/DeviceMobile"; export { default as DeviceMobileCamera } from "./icons/DeviceMobileCamera"; export { default as DeviceMobileSpeaker } from "./icons/DeviceMobileSpeaker"; export { default as DeviceTablet } from "./icons/DeviceTablet"; export { default as DeviceTabletCamera } from "./icons/DeviceTabletCamera"; export { default as DeviceTabletSpeaker } from "./icons/DeviceTabletSpeaker"; +export { default as Devices } from "./icons/Devices"; export { default as Diamond } from "./icons/Diamond"; export { default as DiamondsFour } from "./icons/DiamondsFour"; export { default as DiceFive } from "./icons/DiceFive"; @@ -376,8 +424,12 @@ export { default as DiceTwo } from "./icons/DiceTwo"; export { default as Disc } from "./icons/Disc"; export { default as DiscordLogo } from "./icons/DiscordLogo"; export { default as Divide } from "./icons/Divide"; +export { default as Dna } from "./icons/Dna"; export { default as Dog } from "./icons/Dog"; export { default as Door } from "./icons/Door"; +export { default as DoorOpen } from "./icons/DoorOpen"; +export { default as Dot } from "./icons/Dot"; +export { default as DotOutline } from "./icons/DotOutline"; export { default as DotsNine } from "./icons/DotsNine"; export { default as DotsSix } from "./icons/DotsSix"; export { default as DotsSixVertical } from "./icons/DotsSixVertical"; @@ -389,16 +441,20 @@ export { default as DotsThreeOutlineVertical } from "./icons/DotsThreeOutlineVer export { default as DotsThreeVertical } from "./icons/DotsThreeVertical"; export { default as Download } from "./icons/Download"; export { default as DownloadSimple } from "./icons/DownloadSimple"; +export { default as Dress } from "./icons/Dress"; export { default as DribbbleLogo } from "./icons/DribbbleLogo"; export { default as Drop } from "./icons/Drop"; export { default as DropHalf } from "./icons/DropHalf"; export { default as DropHalfBottom } from "./icons/DropHalfBottom"; +export { default as DropboxLogo } from "./icons/DropboxLogo"; export { default as Ear } from "./icons/Ear"; export { default as EarSlash } from "./icons/EarSlash"; export { default as Egg } from "./icons/Egg"; export { default as EggCrack } from "./icons/EggCrack"; export { default as Eject } from "./icons/Eject"; export { default as EjectSimple } from "./icons/EjectSimple"; +export { default as Elevator } from "./icons/Elevator"; +export { default as Engine } from "./icons/Engine"; export { default as Envelope } from "./icons/Envelope"; export { default as EnvelopeOpen } from "./icons/EnvelopeOpen"; export { default as EnvelopeSimple } from "./icons/EnvelopeSimple"; @@ -406,7 +462,11 @@ export { default as EnvelopeSimpleOpen } from "./icons/EnvelopeSimpleOpen"; export { default as Equalizer } from "./icons/Equalizer"; export { default as Equals } from "./icons/Equals"; export { default as Eraser } from "./icons/Eraser"; +export { default as EscalatorDown } from "./icons/EscalatorDown"; +export { default as EscalatorUp } from "./icons/EscalatorUp"; export { default as Exam } from "./icons/Exam"; +export { default as Exclude } from "./icons/Exclude"; +export { default as ExcludeSquare } from "./icons/ExcludeSquare"; export { default as Export } from "./icons/Export"; export { default as Eye } from "./icons/Eye"; export { default as EyeClosed } from "./icons/EyeClosed"; @@ -419,9 +479,12 @@ export { default as FacebookLogo } from "./icons/FacebookLogo"; export { default as Factory } from "./icons/Factory"; export { default as Faders } from "./icons/Faders"; export { default as FadersHorizontal } from "./icons/FadersHorizontal"; +export { default as Fan } from "./icons/Fan"; export { default as FastForward } from "./icons/FastForward"; export { default as FastForwardCircle } from "./icons/FastForwardCircle"; +export { default as Feather } from "./icons/Feather"; export { default as FigmaLogo } from "./icons/FigmaLogo"; +export { default as FileArchive } from "./icons/FileArchive"; export { default as FileArrowDown } from "./icons/FileArrowDown"; export { default as FileArrowUp } from "./icons/FileArrowUp"; export { default as FileAudio } from "./icons/FileAudio"; @@ -430,21 +493,29 @@ export { default as FileCloud } from "./icons/FileCloud"; export { default as FileCode } from "./icons/FileCode"; export { default as FileCss } from "./icons/FileCss"; export { default as FileCsv } from "./icons/FileCsv"; +export { + default as FileDashed, + default as FileDotted, +} from "./icons/FileDashed"; export { default as FileDoc } from "./icons/FileDoc"; -export { default as FileDotted } from "./icons/FileDotted"; export { default as FileHtml } from "./icons/FileHtml"; export { default as FileImage } from "./icons/FileImage"; export { default as FileJpg } from "./icons/FileJpg"; export { default as FileJs } from "./icons/FileJs"; export { default as FileJsx } from "./icons/FileJsx"; export { default as FileLock } from "./icons/FileLock"; +export { + default as FileMagnifyingGlass, + default as FileSearch, +} from "./icons/FileMagnifyingGlass"; export { default as FileMinus } from "./icons/FileMinus"; export { default as FilePdf } from "./icons/FilePdf"; export { default as FilePlus } from "./icons/FilePlus"; export { default as FilePng } from "./icons/FilePng"; export { default as FilePpt } from "./icons/FilePpt"; export { default as FileRs } from "./icons/FileRs"; -export { default as FileSearch } from "./icons/FileSearch"; +export { default as FileSql } from "./icons/FileSql"; +export { default as FileSvg } from "./icons/FileSvg"; export { default as FileText } from "./icons/FileText"; export { default as FileTs } from "./icons/FileTs"; export { default as FileTsx } from "./icons/FileTsx"; @@ -454,6 +525,7 @@ export { default as FileX } from "./icons/FileX"; export { default as FileXls } from "./icons/FileXls"; export { default as FileZip } from "./icons/FileZip"; export { default as Files } from "./icons/Files"; +export { default as FilmReel } from "./icons/FilmReel"; export { default as FilmScript } from "./icons/FilmScript"; export { default as FilmSlate } from "./icons/FilmSlate"; export { default as FilmStrip } from "./icons/FilmStrip"; @@ -461,6 +533,7 @@ export { default as Fingerprint } from "./icons/Fingerprint"; export { default as FingerprintSimple } from "./icons/FingerprintSimple"; export { default as FinnTheHuman } from "./icons/FinnTheHuman"; export { default as Fire } from "./icons/Fire"; +export { default as FireExtinguisher } from "./icons/FireExtinguisher"; export { default as FireSimple } from "./icons/FireSimple"; export { default as FirstAid } from "./icons/FirstAid"; export { default as FirstAidKit } from "./icons/FirstAidKit"; @@ -469,6 +542,7 @@ export { default as FishSimple } from "./icons/FishSimple"; export { default as FlagBanner } from "./icons/FlagBanner"; export { default as Flag } from "./icons/Flag"; export { default as FlagCheckered } from "./icons/FlagCheckered"; +export { default as FlagPennant } from "./icons/FlagPennant"; export { default as Flame } from "./icons/Flame"; export { default as Flashlight } from "./icons/Flashlight"; export { default as Flask } from "./icons/Flask"; @@ -477,9 +551,13 @@ export { default as FloppyDisk } from "./icons/FloppyDisk"; export { default as FlowArrow } from "./icons/FlowArrow"; export { default as Flower } from "./icons/Flower"; export { default as FlowerLotus } from "./icons/FlowerLotus"; +export { default as FlowerTulip } from "./icons/FlowerTulip"; export { default as FlyingSaucer } from "./icons/FlyingSaucer"; export { default as Folder } from "./icons/Folder"; -export { default as FolderDotted } from "./icons/FolderDotted"; +export { + default as FolderDashed, + default as FolderDotted, +} from "./icons/FolderDashed"; export { default as FolderLock } from "./icons/FolderLock"; export { default as FolderMinus } from "./icons/FolderMinus"; export { default as FolderNotch } from "./icons/FolderNotch"; @@ -489,7 +567,10 @@ export { default as FolderNotchPlus } from "./icons/FolderNotchPlus"; export { default as FolderOpen } from "./icons/FolderOpen"; export { default as FolderPlus } from "./icons/FolderPlus"; export { default as FolderSimple } from "./icons/FolderSimple"; -export { default as FolderSimpleDotted } from "./icons/FolderSimpleDotted"; +export { + default as FolderSimpleDashed, + default as FolderSimpleDotted, +} from "./icons/FolderSimpleDashed"; export { default as FolderSimpleLock } from "./icons/FolderSimpleLock"; export { default as FolderSimpleMinus } from "./icons/FolderSimpleMinus"; export { default as FolderSimplePlus } from "./icons/FolderSimplePlus"; @@ -499,6 +580,7 @@ export { default as FolderStar } from "./icons/FolderStar"; export { default as FolderUser } from "./icons/FolderUser"; export { default as Folders } from "./icons/Folders"; export { default as Football } from "./icons/Football"; +export { default as Footprints } from "./icons/Footprints"; export { default as ForkKnife } from "./icons/ForkKnife"; export { default as FrameCorners } from "./icons/FrameCorners"; export { default as FramerLogo } from "./icons/FramerLogo"; @@ -506,9 +588,13 @@ export { default as Function } from "./icons/Function"; export { default as Funnel } from "./icons/Funnel"; export { default as FunnelSimple } from "./icons/FunnelSimple"; export { default as GameController } from "./icons/GameController"; +export { default as Garage } from "./icons/Garage"; +export { default as GasCan } from "./icons/GasCan"; export { default as GasPump } from "./icons/GasPump"; export { default as Gauge } from "./icons/Gauge"; +export { default as Gavel } from "./icons/Gavel"; export { default as Gear } from "./icons/Gear"; +export { default as GearFine } from "./icons/GearFine"; export { default as GearSix } from "./icons/GearSix"; export { default as GenderFemale } from "./icons/GenderFemale"; export { default as GenderIntersex } from "./icons/GenderIntersex"; @@ -533,27 +619,42 @@ export { default as GlobeHemisphereEast } from "./icons/GlobeHemisphereEast"; export { default as GlobeHemisphereWest } from "./icons/GlobeHemisphereWest"; export { default as GlobeSimple } from "./icons/GlobeSimple"; export { default as GlobeStand } from "./icons/GlobeStand"; +export { default as Goggles } from "./icons/Goggles"; +export { default as GoodreadsLogo } from "./icons/GoodreadsLogo"; +export { default as GoogleCardboardLogo } from "./icons/GoogleCardboardLogo"; export { default as GoogleChromeLogo } from "./icons/GoogleChromeLogo"; +export { default as GoogleDriveLogo } from "./icons/GoogleDriveLogo"; export { default as GoogleLogo } from "./icons/GoogleLogo"; export { default as GooglePhotosLogo } from "./icons/GooglePhotosLogo"; export { default as GooglePlayLogo } from "./icons/GooglePlayLogo"; export { default as GooglePodcastsLogo } from "./icons/GooglePodcastsLogo"; export { default as Gradient } from "./icons/Gradient"; export { default as GraduationCap } from "./icons/GraduationCap"; +export { default as Grains } from "./icons/Grains"; +export { default as GrainsSlash } from "./icons/GrainsSlash"; export { default as Graph } from "./icons/Graph"; export { default as GridFour } from "./icons/GridFour"; +export { default as GridNine } from "./icons/GridNine"; +export { default as Guitar } from "./icons/Guitar"; export { default as Hamburger } from "./icons/Hamburger"; +export { default as Hammer } from "./icons/Hammer"; export { default as Hand } from "./icons/Hand"; +export { default as HandCoins } from "./icons/HandCoins"; export { default as HandEye } from "./icons/HandEye"; export { default as HandFist } from "./icons/HandFist"; export { default as HandGrabbing } from "./icons/HandGrabbing"; +export { default as HandHeart } from "./icons/HandHeart"; export { default as HandPalm } from "./icons/HandPalm"; export { default as HandPointing } from "./icons/HandPointing"; export { default as HandSoap } from "./icons/HandSoap"; +export { default as HandSwipeLeft } from "./icons/HandSwipeLeft"; +export { default as HandSwipeRight } from "./icons/HandSwipeRight"; +export { default as HandTap } from "./icons/HandTap"; export { default as HandWaving } from "./icons/HandWaving"; export { default as Handbag } from "./icons/Handbag"; export { default as HandbagSimple } from "./icons/HandbagSimple"; export { default as HandsClapping } from "./icons/HandsClapping"; +export { default as HandsPraying } from "./icons/HandsPraying"; export { default as Handshake } from "./icons/Handshake"; export { default as HardDrive } from "./icons/HardDrive"; export { default as HardDrives } from "./icons/HardDrives"; @@ -564,11 +665,14 @@ export { default as Headphones } from "./icons/Headphones"; export { default as Headset } from "./icons/Headset"; export { default as Heart } from "./icons/Heart"; export { default as HeartBreak } from "./icons/HeartBreak"; +export { default as HeartHalf } from "./icons/HeartHalf"; export { default as HeartStraight } from "./icons/HeartStraight"; export { default as HeartStraightBreak } from "./icons/HeartStraightBreak"; export { default as Heartbeat } from "./icons/Heartbeat"; export { default as Hexagon } from "./icons/Hexagon"; +export { default as HighHeel } from "./icons/HighHeel"; export { default as HighlighterCircle } from "./icons/HighlighterCircle"; +export { default as Hoodie } from "./icons/Hoodie"; export { default as Horse } from "./icons/Horse"; export { default as Hourglass } from "./icons/Hourglass"; export { default as HourglassHigh } from "./icons/HourglassHigh"; @@ -581,14 +685,19 @@ export { default as HourglassSimpleMedium } from "./icons/HourglassSimpleMedium" export { default as House } from "./icons/House"; export { default as HouseLine } from "./icons/HouseLine"; export { default as HouseSimple } from "./icons/HouseSimple"; +export { default as IceCream } from "./icons/IceCream"; export { default as IdentificationBadge } from "./icons/IdentificationBadge"; export { default as IdentificationCard } from "./icons/IdentificationCard"; export { default as Image } from "./icons/Image"; export { default as ImageSquare } from "./icons/ImageSquare"; +export { default as Images } from "./icons/Images"; +export { default as ImagesSquare } from "./icons/ImagesSquare"; export { default as Infinity } from "./icons/Infinity"; export { default as Info } from "./icons/Info"; export { default as InstagramLogo } from "./icons/InstagramLogo"; export { default as Intersect } from "./icons/Intersect"; +export { default as IntersectSquare } from "./icons/IntersectSquare"; +export { default as IntersectThree } from "./icons/IntersectThree"; export { default as Jeep } from "./icons/Jeep"; export { default as Kanban } from "./icons/Kanban"; export { default as Key } from "./icons/Key"; @@ -605,6 +714,8 @@ export { default as Leaf } from "./icons/Leaf"; export { default as Lifebuoy } from "./icons/Lifebuoy"; export { default as Lightbulb } from "./icons/Lightbulb"; export { default as LightbulbFilament } from "./icons/LightbulbFilament"; +export { default as Lighthouse } from "./icons/Lighthouse"; +export { default as LightningA } from "./icons/LightningA"; export { default as Lightning } from "./icons/Lightning"; export { default as LightningSlash } from "./icons/LightningSlash"; export { default as LineSegment } from "./icons/LineSegment"; @@ -621,6 +732,7 @@ export { default as List } from "./icons/List"; export { default as ListBullets } from "./icons/ListBullets"; export { default as ListChecks } from "./icons/ListChecks"; export { default as ListDashes } from "./icons/ListDashes"; +export { default as ListMagnifyingGlass } from "./icons/ListMagnifyingGlass"; export { default as ListNumbers } from "./icons/ListNumbers"; export { default as ListPlus } from "./icons/ListPlus"; export { default as Lock } from "./icons/Lock"; @@ -631,6 +743,7 @@ export { default as LockLaminatedOpen } from "./icons/LockLaminatedOpen"; export { default as LockOpen } from "./icons/LockOpen"; export { default as LockSimple } from "./icons/LockSimple"; export { default as LockSimpleOpen } from "./icons/LockSimpleOpen"; +export { default as Lockers } from "./icons/Lockers"; export { default as MagicWand } from "./icons/MagicWand"; export { default as Magnet } from "./icons/Magnet"; export { default as MagnetStraight } from "./icons/MagnetStraight"; @@ -646,24 +759,33 @@ export { default as MaskHappy } from "./icons/MaskHappy"; export { default as MaskSad } from "./icons/MaskSad"; export { default as MathOperations } from "./icons/MathOperations"; export { default as Medal } from "./icons/Medal"; +export { default as MedalMilitary } from "./icons/MedalMilitary"; export { default as MediumLogo } from "./icons/MediumLogo"; export { default as Megaphone } from "./icons/Megaphone"; export { default as MegaphoneSimple } from "./icons/MegaphoneSimple"; export { default as MessengerLogo } from "./icons/MessengerLogo"; +export { default as MetaLogo } from "./icons/MetaLogo"; +export { default as Metronome } from "./icons/Metronome"; export { default as Microphone } from "./icons/Microphone"; export { default as MicrophoneSlash } from "./icons/MicrophoneSlash"; export { default as MicrophoneStage } from "./icons/MicrophoneStage"; export { default as MicrosoftExcelLogo } from "./icons/MicrosoftExcelLogo"; +export { default as MicrosoftOutlookLogo } from "./icons/MicrosoftOutlookLogo"; export { default as MicrosoftPowerpointLogo } from "./icons/MicrosoftPowerpointLogo"; export { default as MicrosoftTeamsLogo } from "./icons/MicrosoftTeamsLogo"; export { default as MicrosoftWordLogo } from "./icons/MicrosoftWordLogo"; export { default as Minus } from "./icons/Minus"; export { default as MinusCircle } from "./icons/MinusCircle"; +export { default as MinusSquare } from "./icons/MinusSquare"; export { default as Money } from "./icons/Money"; export { default as Monitor } from "./icons/Monitor"; export { default as MonitorPlay } from "./icons/MonitorPlay"; export { default as Moon } from "./icons/Moon"; export { default as MoonStars } from "./icons/MoonStars"; +export { default as Moped } from "./icons/Moped"; +export { default as MopedFront } from "./icons/MopedFront"; +export { default as Mosque } from "./icons/Mosque"; +export { default as Motorcycle } from "./icons/Motorcycle"; export { default as Mountains } from "./icons/Mountains"; export { default as Mouse } from "./icons/Mouse"; export { default as MouseSimple } from "./icons/MouseSimple"; @@ -676,12 +798,14 @@ export { default as NavigationArrow } from "./icons/NavigationArrow"; export { default as Needle } from "./icons/Needle"; export { default as Newspaper } from "./icons/Newspaper"; export { default as NewspaperClipping } from "./icons/NewspaperClipping"; +export { default as Notches } from "./icons/Notches"; export { default as NoteBlank } from "./icons/NoteBlank"; export { default as Note } from "./icons/Note"; export { default as NotePencil } from "./icons/NotePencil"; export { default as Notebook } from "./icons/Notebook"; export { default as Notepad } from "./icons/Notepad"; export { default as Notification } from "./icons/Notification"; +export { default as NotionLogo } from "./icons/NotionLogo"; export { default as NumberCircleEight } from "./icons/NumberCircleEight"; export { default as NumberCircleFive } from "./icons/NumberCircleFive"; export { default as NumberCircleFour } from "./icons/NumberCircleFour"; @@ -715,7 +839,9 @@ export { default as NumberZero } from "./icons/NumberZero"; export { default as Nut } from "./icons/Nut"; export { default as NyTimesLogo } from "./icons/NyTimesLogo"; export { default as Octagon } from "./icons/Octagon"; +export { default as OfficeChair } from "./icons/OfficeChair"; export { default as Option } from "./icons/Option"; +export { default as OrangeSlice } from "./icons/OrangeSlice"; export { default as Package } from "./icons/Package"; export { default as PaintBrush } from "./icons/PaintBrush"; export { default as PaintBrushBroad } from "./icons/PaintBrushBroad"; @@ -723,17 +849,23 @@ export { default as PaintBrushHousehold } from "./icons/PaintBrushHousehold"; export { default as PaintBucket } from "./icons/PaintBucket"; export { default as PaintRoller } from "./icons/PaintRoller"; export { default as Palette } from "./icons/Palette"; +export { default as Pants } from "./icons/Pants"; export { default as PaperPlane } from "./icons/PaperPlane"; export { default as PaperPlaneRight } from "./icons/PaperPlaneRight"; export { default as PaperPlaneTilt } from "./icons/PaperPlaneTilt"; export { default as Paperclip } from "./icons/Paperclip"; export { default as PaperclipHorizontal } from "./icons/PaperclipHorizontal"; export { default as Parachute } from "./icons/Parachute"; +export { default as Paragraph } from "./icons/Paragraph"; +export { default as Parallelogram } from "./icons/Parallelogram"; +export { default as Park } from "./icons/Park"; export { default as Password } from "./icons/Password"; export { default as Path } from "./icons/Path"; +export { default as PatreonLogo } from "./icons/PatreonLogo"; export { default as Pause } from "./icons/Pause"; export { default as PauseCircle } from "./icons/PauseCircle"; export { default as PawPrint } from "./icons/PawPrint"; +export { default as PaypalLogo } from "./icons/PaypalLogo"; export { default as Peace } from "./icons/Peace"; export { default as Pen } from "./icons/Pen"; export { default as PenNib } from "./icons/PenNib"; @@ -743,10 +875,17 @@ export { default as PencilCircle } from "./icons/PencilCircle"; export { default as PencilLine } from "./icons/PencilLine"; export { default as PencilSimple } from "./icons/PencilSimple"; export { default as PencilSimpleLine } from "./icons/PencilSimpleLine"; +export { default as PencilSimpleSlash } from "./icons/PencilSimpleSlash"; +export { default as PencilSlash } from "./icons/PencilSlash"; +export { default as Pentagram } from "./icons/Pentagram"; +export { default as Pepper } from "./icons/Pepper"; export { default as Percent } from "./icons/Percent"; +export { default as PersonArmsSpread } from "./icons/PersonArmsSpread"; export { default as Person } from "./icons/Person"; +export { default as PersonSimpleBike } from "./icons/PersonSimpleBike"; export { default as PersonSimple } from "./icons/PersonSimple"; export { default as PersonSimpleRun } from "./icons/PersonSimpleRun"; +export { default as PersonSimpleThrow } from "./icons/PersonSimpleThrow"; export { default as PersonSimpleWalk } from "./icons/PersonSimpleWalk"; export { default as Perspective } from "./icons/Perspective"; export { default as Phone } from "./icons/Phone"; @@ -754,30 +893,38 @@ export { default as PhoneCall } from "./icons/PhoneCall"; export { default as PhoneDisconnect } from "./icons/PhoneDisconnect"; export { default as PhoneIncoming } from "./icons/PhoneIncoming"; export { default as PhoneOutgoing } from "./icons/PhoneOutgoing"; +export { default as PhonePlus } from "./icons/PhonePlus"; export { default as PhoneSlash } from "./icons/PhoneSlash"; export { default as PhoneX } from "./icons/PhoneX"; export { default as PhosphorLogo } from "./icons/PhosphorLogo"; +export { default as Pi } from "./icons/Pi"; export { default as PianoKeys } from "./icons/PianoKeys"; export { default as PictureInPicture } from "./icons/PictureInPicture"; +export { default as PiggyBank } from "./icons/PiggyBank"; export { default as Pill } from "./icons/Pill"; export { default as PinterestLogo } from "./icons/PinterestLogo"; export { default as Pinwheel } from "./icons/Pinwheel"; export { default as Pizza } from "./icons/Pizza"; export { default as Placeholder } from "./icons/Placeholder"; export { default as Planet } from "./icons/Planet"; +export { default as Plant } from "./icons/Plant"; export { default as Play } from "./icons/Play"; export { default as PlayCircle } from "./icons/PlayCircle"; +export { default as PlayPause } from "./icons/PlayPause"; export { default as Playlist } from "./icons/Playlist"; export { default as Plug } from "./icons/Plug"; +export { default as PlugCharging } from "./icons/PlugCharging"; export { default as Plugs } from "./icons/Plugs"; export { default as PlugsConnected } from "./icons/PlugsConnected"; export { default as Plus } from "./icons/Plus"; export { default as PlusCircle } from "./icons/PlusCircle"; export { default as PlusMinus } from "./icons/PlusMinus"; +export { default as PlusSquare } from "./icons/PlusSquare"; export { default as PokerChip } from "./icons/PokerChip"; export { default as PoliceCar } from "./icons/PoliceCar"; export { default as Polygon } from "./icons/Polygon"; export { default as Popcorn } from "./icons/Popcorn"; +export { default as PottedPlant } from "./icons/PottedPlant"; export { default as Power } from "./icons/Power"; export { default as Prescription } from "./icons/Prescription"; export { default as Presentation } from "./icons/Presentation"; @@ -787,6 +934,7 @@ export { default as Prohibit } from "./icons/Prohibit"; export { default as ProhibitInset } from "./icons/ProhibitInset"; export { default as ProjectorScreen } from "./icons/ProjectorScreen"; export { default as ProjectorScreenChart } from "./icons/ProjectorScreenChart"; +export { default as Pulse, default as Activity } from "./icons/Pulse"; export { default as PushPin } from "./icons/PushPin"; export { default as PushPinSimple } from "./icons/PushPinSimple"; export { default as PushPinSimpleSlash } from "./icons/PushPinSimpleSlash"; @@ -799,9 +947,12 @@ export { default as Quotes } from "./icons/Quotes"; export { default as Radical } from "./icons/Radical"; export { default as Radio } from "./icons/Radio"; export { default as RadioButton } from "./icons/RadioButton"; +export { default as Radioactive } from "./icons/Radioactive"; export { default as Rainbow } from "./icons/Rainbow"; export { default as RainbowCloud } from "./icons/RainbowCloud"; +export { default as ReadCvLogo } from "./icons/ReadCvLogo"; export { default as Receipt } from "./icons/Receipt"; +export { default as ReceiptX } from "./icons/ReceiptX"; export { default as Record } from "./icons/Record"; export { default as Rectangle } from "./icons/Rectangle"; export { default as Recycle } from "./icons/Recycle"; @@ -810,6 +961,7 @@ export { default as Repeat } from "./icons/Repeat"; export { default as RepeatOnce } from "./icons/RepeatOnce"; export { default as Rewind } from "./icons/Rewind"; export { default as RewindCircle } from "./icons/RewindCircle"; +export { default as RoadHorizon } from "./icons/RoadHorizon"; export { default as Robot } from "./icons/Robot"; export { default as Rocket } from "./icons/Rocket"; export { default as RocketLaunch } from "./icons/RocketLaunch"; @@ -821,9 +973,23 @@ export { default as Ruler } from "./icons/Ruler"; export { default as Scales } from "./icons/Scales"; export { default as Scan } from "./icons/Scan"; export { default as Scissors } from "./icons/Scissors"; +export { default as Scooter } from "./icons/Scooter"; export { default as Screencast } from "./icons/Screencast"; export { default as ScribbleLoop } from "./icons/ScribbleLoop"; export { default as Scroll } from "./icons/Scroll"; +export { default as Seal, default as CircleWavy } from "./icons/Seal"; +export { + default as SealCheck, + default as CircleWavyCheck, +} from "./icons/SealCheck"; +export { + default as SealQuestion, + default as CircleWavyQuestion, +} from "./icons/SealQuestion"; +export { + default as SealWarning, + default as CircleWavyWarning, +} from "./icons/SealWarning"; export { default as SelectionAll } from "./icons/SelectionAll"; export { default as SelectionBackground } from "./icons/SelectionBackground"; export { default as Selection } from "./icons/Selection"; @@ -831,7 +997,9 @@ export { default as SelectionForeground } from "./icons/SelectionForeground"; export { default as SelectionInverse } from "./icons/SelectionInverse"; export { default as SelectionPlus } from "./icons/SelectionPlus"; export { default as SelectionSlash } from "./icons/SelectionSlash"; +export { default as Shapes } from "./icons/Shapes"; export { default as Share } from "./icons/Share"; +export { default as ShareFat } from "./icons/ShareFat"; export { default as ShareNetwork } from "./icons/ShareNetwork"; export { default as Shield } from "./icons/Shield"; export { default as ShieldCheck } from "./icons/ShieldCheck"; @@ -841,20 +1009,26 @@ export { default as ShieldPlus } from "./icons/ShieldPlus"; export { default as ShieldSlash } from "./icons/ShieldSlash"; export { default as ShieldStar } from "./icons/ShieldStar"; export { default as ShieldWarning } from "./icons/ShieldWarning"; +export { default as ShirtFolded } from "./icons/ShirtFolded"; +export { default as ShootingStar } from "./icons/ShootingStar"; export { default as ShoppingBag } from "./icons/ShoppingBag"; export { default as ShoppingBagOpen } from "./icons/ShoppingBagOpen"; export { default as ShoppingCart } from "./icons/ShoppingCart"; export { default as ShoppingCartSimple } from "./icons/ShoppingCartSimple"; export { default as Shower } from "./icons/Shower"; +export { default as Shrimp } from "./icons/Shrimp"; export { default as ShuffleAngular } from "./icons/ShuffleAngular"; export { default as Shuffle } from "./icons/Shuffle"; export { default as ShuffleSimple } from "./icons/ShuffleSimple"; export { default as Sidebar } from "./icons/Sidebar"; export { default as SidebarSimple } from "./icons/SidebarSimple"; +export { default as Sigma } from "./icons/Sigma"; export { default as SignIn } from "./icons/SignIn"; export { default as SignOut } from "./icons/SignOut"; +export { default as Signature } from "./icons/Signature"; export { default as Signpost } from "./icons/Signpost"; export { default as SimCard } from "./icons/SimCard"; +export { default as Siren } from "./icons/Siren"; export { default as SketchLogo } from "./icons/SketchLogo"; export { default as SkipBack } from "./icons/SkipBack"; export { default as SkipBackCircle } from "./icons/SkipBackCircle"; @@ -864,6 +1038,8 @@ export { default as Skull } from "./icons/Skull"; export { default as SlackLogo } from "./icons/SlackLogo"; export { default as Sliders } from "./icons/Sliders"; export { default as SlidersHorizontal } from "./icons/SlidersHorizontal"; +export { default as Slideshow } from "./icons/Slideshow"; +export { default as SmileyAngry } from "./icons/SmileyAngry"; export { default as SmileyBlank } from "./icons/SmileyBlank"; export { default as Smiley } from "./icons/Smiley"; export { default as SmileyMeh } from "./icons/SmileyMeh"; @@ -873,12 +1049,16 @@ export { default as SmileySticker } from "./icons/SmileySticker"; export { default as SmileyWink } from "./icons/SmileyWink"; export { default as SmileyXEyes } from "./icons/SmileyXEyes"; export { default as SnapchatLogo } from "./icons/SnapchatLogo"; +export { default as Sneaker } from "./icons/Sneaker"; +export { default as SneakerMove } from "./icons/SneakerMove"; export { default as Snowflake } from "./icons/Snowflake"; export { default as SoccerBall } from "./icons/SoccerBall"; export { default as SortAscending } from "./icons/SortAscending"; export { default as SortDescending } from "./icons/SortDescending"; +export { default as SoundcloudLogo } from "./icons/SoundcloudLogo"; export { default as Spade } from "./icons/Spade"; export { default as Sparkle } from "./icons/Sparkle"; +export { default as SpeakerHifi } from "./icons/SpeakerHifi"; export { default as SpeakerHigh } from "./icons/SpeakerHigh"; export { default as SpeakerLow } from "./icons/SpeakerLow"; export { default as SpeakerNone } from "./icons/SpeakerNone"; @@ -892,27 +1072,42 @@ export { default as SpeakerX } from "./icons/SpeakerX"; export { default as Spinner } from "./icons/Spinner"; export { default as SpinnerGap } from "./icons/SpinnerGap"; export { default as Spiral } from "./icons/Spiral"; +export { default as SplitHorizontal } from "./icons/SplitHorizontal"; +export { default as SplitVertical } from "./icons/SplitVertical"; export { default as SpotifyLogo } from "./icons/SpotifyLogo"; export { default as Square } from "./icons/Square"; export { default as SquareHalf } from "./icons/SquareHalf"; export { default as SquareHalfBottom } from "./icons/SquareHalfBottom"; export { default as SquareLogo } from "./icons/SquareLogo"; +export { default as SquareSplitHorizontal } from "./icons/SquareSplitHorizontal"; +export { default as SquareSplitVertical } from "./icons/SquareSplitVertical"; export { default as SquaresFour } from "./icons/SquaresFour"; export { default as Stack } from "./icons/Stack"; export { default as StackOverflowLogo } from "./icons/StackOverflowLogo"; export { default as StackSimple } from "./icons/StackSimple"; +export { default as Stairs } from "./icons/Stairs"; export { default as Stamp } from "./icons/Stamp"; +export { default as StarAndCrescent } from "./icons/StarAndCrescent"; export { default as Star } from "./icons/Star"; export { default as StarFour } from "./icons/StarFour"; export { default as StarHalf } from "./icons/StarHalf"; +export { default as StarOfDavid } from "./icons/StarOfDavid"; +export { default as SteeringWheel } from "./icons/SteeringWheel"; +export { default as Steps } from "./icons/Steps"; +export { default as Stethoscope } from "./icons/Stethoscope"; export { default as Sticker } from "./icons/Sticker"; +export { default as Stool } from "./icons/Stool"; export { default as Stop } from "./icons/Stop"; export { default as StopCircle } from "./icons/StopCircle"; export { default as Storefront } from "./icons/Storefront"; export { default as Strategy } from "./icons/Strategy"; export { default as StripeLogo } from "./icons/StripeLogo"; export { default as Student } from "./icons/Student"; +export { default as Subtitles } from "./icons/Subtitles"; +export { default as Subtract } from "./icons/Subtract"; +export { default as SubtractSquare } from "./icons/SubtractSquare"; export { default as Suitcase } from "./icons/Suitcase"; +export { default as SuitcaseRolling } from "./icons/SuitcaseRolling"; export { default as SuitcaseSimple } from "./icons/SuitcaseSimple"; export { default as Sun } from "./icons/Sun"; export { default as SunDim } from "./icons/SunDim"; @@ -920,7 +1115,9 @@ export { default as SunHorizon } from "./icons/SunHorizon"; export { default as Sunglasses } from "./icons/Sunglasses"; export { default as Swap } from "./icons/Swap"; export { default as Swatches } from "./icons/Swatches"; +export { default as SwimmingPool } from "./icons/SwimmingPool"; export { default as Sword } from "./icons/Sword"; +export { default as Synagogue } from "./icons/Synagogue"; export { default as Syringe } from "./icons/Syringe"; export { default as TShirt } from "./icons/TShirt"; export { default as Table } from "./icons/Table"; @@ -934,15 +1131,18 @@ export { default as TelegramLogo } from "./icons/TelegramLogo"; export { default as Television } from "./icons/Television"; export { default as TelevisionSimple } from "./icons/TelevisionSimple"; export { default as TennisBall } from "./icons/TennisBall"; +export { default as Tent } from "./icons/Tent"; export { default as Terminal } from "./icons/Terminal"; export { default as TerminalWindow } from "./icons/TerminalWindow"; export { default as TestTube } from "./icons/TestTube"; +export { default as TextAUnderline } from "./icons/TextAUnderline"; export { default as TextAa } from "./icons/TextAa"; export { default as TextAlignCenter } from "./icons/TextAlignCenter"; export { default as TextAlignJustify } from "./icons/TextAlignJustify"; export { default as TextAlignLeft } from "./icons/TextAlignLeft"; export { default as TextAlignRight } from "./icons/TextAlignRight"; -export { default as TextBolder } from "./icons/TextBolder"; +export { default as TextB, default as TextBolder } from "./icons/TextB"; +export { default as TextColumns } from "./icons/TextColumns"; export { default as TextH } from "./icons/TextH"; export { default as TextHFive } from "./icons/TextHFive"; export { default as TextHFour } from "./icons/TextHFour"; @@ -964,14 +1164,19 @@ export { default as ThermometerSimple } from "./icons/ThermometerSimple"; export { default as ThumbsDown } from "./icons/ThumbsDown"; export { default as ThumbsUp } from "./icons/ThumbsUp"; export { default as Ticket } from "./icons/Ticket"; +export { default as TidalLogo } from "./icons/TidalLogo"; export { default as TiktokLogo } from "./icons/TiktokLogo"; export { default as Timer } from "./icons/Timer"; +export { default as Tipi } from "./icons/Tipi"; export { default as ToggleLeft } from "./icons/ToggleLeft"; export { default as ToggleRight } from "./icons/ToggleRight"; export { default as Toilet } from "./icons/Toilet"; export { default as ToiletPaper } from "./icons/ToiletPaper"; +export { default as Toolbox } from "./icons/Toolbox"; +export { default as Tooth } from "./icons/Tooth"; export { default as Tote } from "./icons/Tote"; export { default as ToteSimple } from "./icons/ToteSimple"; +export { default as Trademark } from "./icons/Trademark"; export { default as TrademarkRegistered } from "./icons/TrademarkRegistered"; export { default as TrafficCone } from "./icons/TrafficCone"; export { default as TrafficSign } from "./icons/TrafficSign"; @@ -979,12 +1184,14 @@ export { default as TrafficSignal } from "./icons/TrafficSignal"; export { default as Train } from "./icons/Train"; export { default as TrainRegional } from "./icons/TrainRegional"; export { default as TrainSimple } from "./icons/TrainSimple"; +export { default as Tram } from "./icons/Tram"; export { default as Translate } from "./icons/Translate"; export { default as Trash } from "./icons/Trash"; export { default as TrashSimple } from "./icons/TrashSimple"; export { default as Tray } from "./icons/Tray"; export { default as Tree } from "./icons/Tree"; export { default as TreeEvergreen } from "./icons/TreeEvergreen"; +export { default as TreePalm } from "./icons/TreePalm"; export { default as TreeStructure } from "./icons/TreeStructure"; export { default as TrendDown } from "./icons/TrendDown"; export { default as TrendUp } from "./icons/TrendUp"; @@ -995,8 +1202,11 @@ export { default as TwitchLogo } from "./icons/TwitchLogo"; export { default as TwitterLogo } from "./icons/TwitterLogo"; export { default as Umbrella } from "./icons/Umbrella"; export { default as UmbrellaSimple } from "./icons/UmbrellaSimple"; +export { default as Unite } from "./icons/Unite"; +export { default as UniteSquare } from "./icons/UniteSquare"; export { default as Upload } from "./icons/Upload"; export { default as UploadSimple } from "./icons/UploadSimple"; +export { default as Usb } from "./icons/Usb"; export { default as User } from "./icons/User"; export { default as UserCircle } from "./icons/UserCircle"; export { default as UserCircleGear } from "./icons/UserCircleGear"; @@ -1013,27 +1223,39 @@ export { default as UserSwitch } from "./icons/UserSwitch"; export { default as Users } from "./icons/Users"; export { default as UsersFour } from "./icons/UsersFour"; export { default as UsersThree } from "./icons/UsersThree"; +export { default as Van } from "./icons/Van"; export { default as Vault } from "./icons/Vault"; export { default as Vibrate } from "./icons/Vibrate"; +export { default as Video } from "./icons/Video"; export { default as VideoCamera } from "./icons/VideoCamera"; export { default as VideoCameraSlash } from "./icons/VideoCameraSlash"; export { default as Vignette } from "./icons/Vignette"; +export { default as VinylRecord } from "./icons/VinylRecord"; +export { default as VirtualReality } from "./icons/VirtualReality"; +export { default as Virus } from "./icons/Virus"; export { default as Voicemail } from "./icons/Voicemail"; export { default as Volleyball } from "./icons/Volleyball"; export { default as Wall } from "./icons/Wall"; export { default as Wallet } from "./icons/Wallet"; +export { default as Warehouse } from "./icons/Warehouse"; export { default as Warning } from "./icons/Warning"; export { default as WarningCircle } from "./icons/WarningCircle"; +export { default as WarningDiamond } from "./icons/WarningDiamond"; export { default as WarningOctagon } from "./icons/WarningOctagon"; export { default as Watch } from "./icons/Watch"; export { default as WaveSawtooth } from "./icons/WaveSawtooth"; export { default as WaveSine } from "./icons/WaveSine"; export { default as WaveSquare } from "./icons/WaveSquare"; export { default as WaveTriangle } from "./icons/WaveTriangle"; +export { default as Waveform } from "./icons/Waveform"; export { default as Waves } from "./icons/Waves"; export { default as Webcam } from "./icons/Webcam"; +export { default as WebcamSlash } from "./icons/WebcamSlash"; +export { default as WebhooksLogo } from "./icons/WebhooksLogo"; +export { default as WechatLogo } from "./icons/WechatLogo"; export { default as WhatsappLogo } from "./icons/WhatsappLogo"; export { default as Wheelchair } from "./icons/Wheelchair"; +export { default as WheelchairMotion } from "./icons/WheelchairMotion"; export { default as WifiHigh } from "./icons/WifiHigh"; export { default as WifiLow } from "./icons/WifiLow"; export { default as WifiMedium } from "./icons/WifiMedium"; diff --git a/src/lib/IconBase.tsx b/src/lib/IconBase.tsx index 7bca308fb..faf4c25ac 100644 --- a/src/lib/IconBase.tsx +++ b/src/lib/IconBase.tsx @@ -42,7 +42,6 @@ const IconBase = forwardRef((props, ref) => { > {!!alt && {alt}} {children} - {weights.get(weight ?? contextWeight)} ); diff --git a/test/index.test.tsx b/test/index.test.tsx index 1c8f349c0..657a91123 100644 --- a/test/index.test.tsx +++ b/test/index.test.tsx @@ -5,12 +5,29 @@ import { render, getByTestId } from "@testing-library/react"; import * as Icons from "../src"; import { Icon, IconBase, IconWeight } from "../src/lib"; +const aliases = new Set([ + "FileDotted", + "FileSearch", + "FolderDotted", + "FolderSimpleDotted", + "Activity", + "CircleWavy", + "CircleWavyCheck", + "CircleWavyQuestion", + "CircleWavyWarning", + "TextBolder", +]); + const isIcon = (candidate: any): candidate is Icon => "displayName" in candidate && candidate.displayName !== "IconBase"; +const allIcons = Object.entries(Icons).filter( + ([name, module]) => !aliases.has(name) && isIcon(module) +) as [string, Icons.Icon][]; + describe("All icons exist", () => { - Object.entries(Icons).forEach(([name, TestIcon]) => { - if (!isIcon(TestIcon)) return; + allIcons.forEach(([name, TestIcon]) => { + if (aliases.has(name) || !isIcon(TestIcon)) return; it(`${name} is truthy`, () => { expect(TestIcon).toBeTruthy(); }); @@ -21,7 +38,7 @@ describe("All icons exist", () => { }); describe("All icons render content", () => { - Object.entries(Icons).forEach(([name, TestIcon]) => { + allIcons.forEach(([name, TestIcon]) => { if (!isIcon(TestIcon)) return; it(`${name} renders`, () => { const result = render(); @@ -31,7 +48,7 @@ describe("All icons render content", () => { }); describe("All icon weights render", () => { - Object.entries(Icons).forEach(([name, TestIcon]) => { + allIcons.forEach(([name, TestIcon]) => { if (!isIcon(TestIcon)) return; it(`${name} [thin] renders`, () => { const result = render();