diff --git a/package.json b/package.json index 48138a112..0df7488d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@phosphor-icons/react", - "version": "2.1.2", + "version": "2.1.3", "description": "A clean and friendly icon family for React", "author": { "name": "Tobias Fried", @@ -22,19 +22,34 @@ "types": "./dist/index.d.ts" }, "./dist/icons/*": { - "import": "./dist/icons/*.mjs", + "import": "./dist/csr/*.mjs", "require": "./dist/index.cjs", - "types": "./dist/icons/*.d.ts" + "types": "./dist/csr/*.d.ts" + }, + "./dist/csr/*": { + "import": "./dist/csr/*.mjs", + "require": "./dist/index.cjs", + "types": "./dist/csr/*.d.ts" }, "./dist/lib/*": { "import": "./dist/lib/*.mjs", "require": "./dist/index.cjs", "types": "./dist/lib/*.d.ts" }, + "./dist/ssr": { + "import": "./dist/ssr/index.mjs", + "require": "./dist/index.cjs", + "types": "./dist/ssr/*.d.ts" + }, + "./dist/ssr/*": { + "import": "./dist/ssr/*.mjs", + "require": "./dist/index.cjs", + "types": "./dist/ssr/*.d.ts" + }, "./*": { - "import": "./dist/icons/*.mjs", + "import": "./dist/csr/*.mjs", "require": "./dist/index.cjs", - "types": "./dist/icons/*.d.ts" + "types": "./dist/csr/*.d.ts" } }, "types": "./dist/index.d.ts", diff --git a/scripts/assemble.mjs b/scripts/assemble.mjs index 699d29d03..bf8cba66a 100644 --- a/scripts/assemble.mjs +++ b/scripts/assemble.mjs @@ -4,7 +4,13 @@ import path from "node:path"; import chalk from "chalk"; import { exec } from "node:child_process"; -import { ASSETS_PATH, COMPONENTS_PATH, INDEX_PATH } from "./index.mjs"; +import { + ASSETS_PATH, + CSR_PATH, + SSR_PATH, + DEFS_PATH, + INDEX_PATH, +} from "./index.mjs"; import { ALIASES } from "../core/bin/index.js"; const icons = {}; @@ -103,10 +109,15 @@ function generateComponents() { let passes = 0; let fails = 0; - if (fs.existsSync(COMPONENTS_PATH)) { - fs.rmSync(COMPONENTS_PATH, { recursive: true }); + if (fs.existsSync(CSR_PATH)) { + fs.rmSync(CSR_PATH, { recursive: true }); } - fs.mkdirSync(COMPONENTS_PATH); + fs.mkdirSync(CSR_PATH); + + if (fs.existsSync(SSR_PATH)) { + fs.rmSync(SSR_PATH, { recursive: true }); + } + fs.mkdirSync(SSR_PATH); for (let key in icons) { const icon = icons[key]; @@ -123,33 +134,56 @@ function generateComponents() { continue; } - let componentString = `\ + let defString = `\ /* GENERATED FILE */ -import { forwardRef, ReactElement } from "react"; -import { IconWeight, Icon, IconBase } from "../lib"; +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; -const weights = new Map([ +export default new Map([ ${Object.entries(icon) .map(([weight, path]) => `["${weight}", <>${path.trim()}]`) .join(",")} ]); `; - componentString += ` + let csrString = ` +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/${name}"; + export const ${name}: Icon = forwardRef((props, ref) => ( )); ${name}.displayName = "${name}"; `; + + let ssrString = ` +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/${name}"; + +export const ${name}: Icon = forwardRef((props, ref) => ( + +)); + +${name}.displayName = "${name}"; +`; + try { - fs.writeFileSync( - path.join(COMPONENTS_PATH, `${name}.tsx`), - componentString, - { - flag: "w", - } - ); + fs.writeFileSync(path.join(CSR_PATH, `${name}.tsx`), csrString, { + flag: "w", + }); + fs.writeFileSync(path.join(SSR_PATH, `${name}.tsx`), ssrString, { + flag: "w", + }); + fs.writeFileSync(path.join(DEFS_PATH, `${name}.tsx`), defString, { + flag: "w", + }); console.log(`${chalk.inverse.green(" DONE ")} ${name}`); passes += 1; } catch (err) { @@ -172,22 +206,34 @@ ${name}.displayName = "${name}"; } function generateExports() { - let indexString = `\ + let csrIndex = `\ /* GENERATED FILE */ export type { Icon, IconProps, IconWeight } from "./lib"; export { IconContext, IconBase } from "./lib"; `; + + let ssrIndex = `\ + /* GENERATED FILE */ + `; for (let key in icons) { const name = pascalize(key); - indexString += `\ + csrIndex += `\ export { ${name}${ !!ALIASES[key] ? `, ${name} as ${pascalize(ALIASES[key])}` : "" - } } from "./icons/${name}"; + } } from "./csr/${name}"; +`; + ssrIndex += `\ +export { ${name}${ + !!ALIASES[key] ? `, ${name} as ${pascalize(ALIASES[key])}` : "" + } } from "./${name}"; `; } try { - fs.writeFileSync(INDEX_PATH, indexString, { + fs.writeFileSync(INDEX_PATH, csrIndex, { + flag: "w", + }); + fs.writeFileSync(path.join(SSR_PATH, "index.ts"), ssrIndex, { flag: "w", }); console.log(chalk.green("Export success")); diff --git a/scripts/index.mjs b/scripts/index.mjs index 8094b608d..af245a5c1 100644 --- a/scripts/index.mjs +++ b/scripts/index.mjs @@ -5,5 +5,7 @@ const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); export const ASSETS_PATH = path.join(__dirname, "../core/assets"); -export const COMPONENTS_PATH = path.join(__dirname, "../src/icons"); +export const DEFS_PATH = path.join(__dirname, "../src/defs"); +export const CSR_PATH = path.join(__dirname, "../src/csr"); +export const SSR_PATH = path.join(__dirname, "../src/ssr"); export const INDEX_PATH = path.join(__dirname, "../src/index.ts"); diff --git a/src/csr/AddressBook.tsx b/src/csr/AddressBook.tsx new file mode 100644 index 000000000..4caee7276 --- /dev/null +++ b/src/csr/AddressBook.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AddressBook"; + +export const AddressBook: Icon = forwardRef((props, ref) => ( + +)); + +AddressBook.displayName = "AddressBook"; diff --git a/src/csr/AirTrafficControl.tsx b/src/csr/AirTrafficControl.tsx new file mode 100644 index 000000000..c73843af4 --- /dev/null +++ b/src/csr/AirTrafficControl.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AirTrafficControl"; + +export const AirTrafficControl: Icon = forwardRef((props, ref) => ( + +)); + +AirTrafficControl.displayName = "AirTrafficControl"; diff --git a/src/csr/Airplane.tsx b/src/csr/Airplane.tsx new file mode 100644 index 000000000..7a5ca4eb2 --- /dev/null +++ b/src/csr/Airplane.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Airplane"; + +export const Airplane: Icon = forwardRef((props, ref) => ( + +)); + +Airplane.displayName = "Airplane"; diff --git a/src/csr/AirplaneInFlight.tsx b/src/csr/AirplaneInFlight.tsx new file mode 100644 index 000000000..c1cde9d40 --- /dev/null +++ b/src/csr/AirplaneInFlight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AirplaneInFlight"; + +export const AirplaneInFlight: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneInFlight.displayName = "AirplaneInFlight"; diff --git a/src/csr/AirplaneLanding.tsx b/src/csr/AirplaneLanding.tsx new file mode 100644 index 000000000..392f6b62a --- /dev/null +++ b/src/csr/AirplaneLanding.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AirplaneLanding"; + +export const AirplaneLanding: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneLanding.displayName = "AirplaneLanding"; diff --git a/src/csr/AirplaneTakeoff.tsx b/src/csr/AirplaneTakeoff.tsx new file mode 100644 index 000000000..b73bb43b1 --- /dev/null +++ b/src/csr/AirplaneTakeoff.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AirplaneTakeoff"; + +export const AirplaneTakeoff: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneTakeoff.displayName = "AirplaneTakeoff"; diff --git a/src/csr/AirplaneTilt.tsx b/src/csr/AirplaneTilt.tsx new file mode 100644 index 000000000..7978fd53d --- /dev/null +++ b/src/csr/AirplaneTilt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AirplaneTilt"; + +export const AirplaneTilt: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneTilt.displayName = "AirplaneTilt"; diff --git a/src/csr/Airplay.tsx b/src/csr/Airplay.tsx new file mode 100644 index 000000000..ec864f345 --- /dev/null +++ b/src/csr/Airplay.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Airplay"; + +export const Airplay: Icon = forwardRef((props, ref) => ( + +)); + +Airplay.displayName = "Airplay"; diff --git a/src/csr/Alarm.tsx b/src/csr/Alarm.tsx new file mode 100644 index 000000000..356e3e307 --- /dev/null +++ b/src/csr/Alarm.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Alarm"; + +export const Alarm: Icon = forwardRef((props, ref) => ( + +)); + +Alarm.displayName = "Alarm"; diff --git a/src/csr/Alien.tsx b/src/csr/Alien.tsx new file mode 100644 index 000000000..1aed39cd0 --- /dev/null +++ b/src/csr/Alien.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Alien"; + +export const Alien: Icon = forwardRef((props, ref) => ( + +)); + +Alien.displayName = "Alien"; diff --git a/src/csr/AlignBottom.tsx b/src/csr/AlignBottom.tsx new file mode 100644 index 000000000..1c6d93497 --- /dev/null +++ b/src/csr/AlignBottom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignBottom"; + +export const AlignBottom: Icon = forwardRef((props, ref) => ( + +)); + +AlignBottom.displayName = "AlignBottom"; diff --git a/src/csr/AlignBottomSimple.tsx b/src/csr/AlignBottomSimple.tsx new file mode 100644 index 000000000..6ab5b17c7 --- /dev/null +++ b/src/csr/AlignBottomSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignBottomSimple"; + +export const AlignBottomSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignBottomSimple.displayName = "AlignBottomSimple"; diff --git a/src/csr/AlignCenterHorizontal.tsx b/src/csr/AlignCenterHorizontal.tsx new file mode 100644 index 000000000..3d27f9ef8 --- /dev/null +++ b/src/csr/AlignCenterHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignCenterHorizontal"; + +export const AlignCenterHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterHorizontal.displayName = "AlignCenterHorizontal"; diff --git a/src/csr/AlignCenterHorizontalSimple.tsx b/src/csr/AlignCenterHorizontalSimple.tsx new file mode 100644 index 000000000..154898174 --- /dev/null +++ b/src/csr/AlignCenterHorizontalSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignCenterHorizontalSimple"; + +export const AlignCenterHorizontalSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterHorizontalSimple.displayName = "AlignCenterHorizontalSimple"; diff --git a/src/csr/AlignCenterVertical.tsx b/src/csr/AlignCenterVertical.tsx new file mode 100644 index 000000000..af83b7711 --- /dev/null +++ b/src/csr/AlignCenterVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignCenterVertical"; + +export const AlignCenterVertical: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterVertical.displayName = "AlignCenterVertical"; diff --git a/src/csr/AlignCenterVerticalSimple.tsx b/src/csr/AlignCenterVerticalSimple.tsx new file mode 100644 index 000000000..0ac0f90f0 --- /dev/null +++ b/src/csr/AlignCenterVerticalSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignCenterVerticalSimple"; + +export const AlignCenterVerticalSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterVerticalSimple.displayName = "AlignCenterVerticalSimple"; diff --git a/src/csr/AlignLeft.tsx b/src/csr/AlignLeft.tsx new file mode 100644 index 000000000..d1eb5e4e3 --- /dev/null +++ b/src/csr/AlignLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignLeft"; + +export const AlignLeft: Icon = forwardRef((props, ref) => ( + +)); + +AlignLeft.displayName = "AlignLeft"; diff --git a/src/csr/AlignLeftSimple.tsx b/src/csr/AlignLeftSimple.tsx new file mode 100644 index 000000000..960bc649b --- /dev/null +++ b/src/csr/AlignLeftSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignLeftSimple"; + +export const AlignLeftSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignLeftSimple.displayName = "AlignLeftSimple"; diff --git a/src/csr/AlignRight.tsx b/src/csr/AlignRight.tsx new file mode 100644 index 000000000..16df90fb4 --- /dev/null +++ b/src/csr/AlignRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignRight"; + +export const AlignRight: Icon = forwardRef((props, ref) => ( + +)); + +AlignRight.displayName = "AlignRight"; diff --git a/src/csr/AlignRightSimple.tsx b/src/csr/AlignRightSimple.tsx new file mode 100644 index 000000000..2c7ab4e67 --- /dev/null +++ b/src/csr/AlignRightSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignRightSimple"; + +export const AlignRightSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignRightSimple.displayName = "AlignRightSimple"; diff --git a/src/csr/AlignTop.tsx b/src/csr/AlignTop.tsx new file mode 100644 index 000000000..06f45ca0b --- /dev/null +++ b/src/csr/AlignTop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignTop"; + +export const AlignTop: Icon = forwardRef((props, ref) => ( + +)); + +AlignTop.displayName = "AlignTop"; diff --git a/src/csr/AlignTopSimple.tsx b/src/csr/AlignTopSimple.tsx new file mode 100644 index 000000000..c226676e7 --- /dev/null +++ b/src/csr/AlignTopSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AlignTopSimple"; + +export const AlignTopSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignTopSimple.displayName = "AlignTopSimple"; diff --git a/src/csr/AmazonLogo.tsx b/src/csr/AmazonLogo.tsx new file mode 100644 index 000000000..4a7511369 --- /dev/null +++ b/src/csr/AmazonLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AmazonLogo"; + +export const AmazonLogo: Icon = forwardRef((props, ref) => ( + +)); + +AmazonLogo.displayName = "AmazonLogo"; diff --git a/src/csr/Anchor.tsx b/src/csr/Anchor.tsx new file mode 100644 index 000000000..6b97dc169 --- /dev/null +++ b/src/csr/Anchor.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Anchor"; + +export const Anchor: Icon = forwardRef((props, ref) => ( + +)); + +Anchor.displayName = "Anchor"; diff --git a/src/csr/AnchorSimple.tsx b/src/csr/AnchorSimple.tsx new file mode 100644 index 000000000..67d17edbb --- /dev/null +++ b/src/csr/AnchorSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AnchorSimple"; + +export const AnchorSimple: Icon = forwardRef((props, ref) => ( + +)); + +AnchorSimple.displayName = "AnchorSimple"; diff --git a/src/csr/AndroidLogo.tsx b/src/csr/AndroidLogo.tsx new file mode 100644 index 000000000..3fd58dc66 --- /dev/null +++ b/src/csr/AndroidLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AndroidLogo"; + +export const AndroidLogo: Icon = forwardRef((props, ref) => ( + +)); + +AndroidLogo.displayName = "AndroidLogo"; diff --git a/src/csr/AngularLogo.tsx b/src/csr/AngularLogo.tsx new file mode 100644 index 000000000..a2d023434 --- /dev/null +++ b/src/csr/AngularLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AngularLogo"; + +export const AngularLogo: Icon = forwardRef((props, ref) => ( + +)); + +AngularLogo.displayName = "AngularLogo"; diff --git a/src/csr/Aperture.tsx b/src/csr/Aperture.tsx new file mode 100644 index 000000000..4e6f54307 --- /dev/null +++ b/src/csr/Aperture.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Aperture"; + +export const Aperture: Icon = forwardRef((props, ref) => ( + +)); + +Aperture.displayName = "Aperture"; diff --git a/src/csr/AppStoreLogo.tsx b/src/csr/AppStoreLogo.tsx new file mode 100644 index 000000000..f7e585bf9 --- /dev/null +++ b/src/csr/AppStoreLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AppStoreLogo"; + +export const AppStoreLogo: Icon = forwardRef((props, ref) => ( + +)); + +AppStoreLogo.displayName = "AppStoreLogo"; diff --git a/src/csr/AppWindow.tsx b/src/csr/AppWindow.tsx new file mode 100644 index 000000000..be1c470ea --- /dev/null +++ b/src/csr/AppWindow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AppWindow"; + +export const AppWindow: Icon = forwardRef((props, ref) => ( + +)); + +AppWindow.displayName = "AppWindow"; diff --git a/src/csr/AppleLogo.tsx b/src/csr/AppleLogo.tsx new file mode 100644 index 000000000..08942a5ef --- /dev/null +++ b/src/csr/AppleLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AppleLogo"; + +export const AppleLogo: Icon = forwardRef((props, ref) => ( + +)); + +AppleLogo.displayName = "AppleLogo"; diff --git a/src/csr/ApplePodcastsLogo.tsx b/src/csr/ApplePodcastsLogo.tsx new file mode 100644 index 000000000..123afa9a7 --- /dev/null +++ b/src/csr/ApplePodcastsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ApplePodcastsLogo"; + +export const ApplePodcastsLogo: Icon = forwardRef((props, ref) => ( + +)); + +ApplePodcastsLogo.displayName = "ApplePodcastsLogo"; diff --git a/src/csr/Archive.tsx b/src/csr/Archive.tsx new file mode 100644 index 000000000..3869f7a20 --- /dev/null +++ b/src/csr/Archive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Archive"; + +export const Archive: Icon = forwardRef((props, ref) => ( + +)); + +Archive.displayName = "Archive"; diff --git a/src/csr/ArchiveBox.tsx b/src/csr/ArchiveBox.tsx new file mode 100644 index 000000000..b5b59493c --- /dev/null +++ b/src/csr/ArchiveBox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArchiveBox"; + +export const ArchiveBox: Icon = forwardRef((props, ref) => ( + +)); + +ArchiveBox.displayName = "ArchiveBox"; diff --git a/src/csr/ArchiveTray.tsx b/src/csr/ArchiveTray.tsx new file mode 100644 index 000000000..39aef71a4 --- /dev/null +++ b/src/csr/ArchiveTray.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArchiveTray"; + +export const ArchiveTray: Icon = forwardRef((props, ref) => ( + +)); + +ArchiveTray.displayName = "ArchiveTray"; diff --git a/src/csr/Armchair.tsx b/src/csr/Armchair.tsx new file mode 100644 index 000000000..4e80f1f8c --- /dev/null +++ b/src/csr/Armchair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Armchair"; + +export const Armchair: Icon = forwardRef((props, ref) => ( + +)); + +Armchair.displayName = "Armchair"; diff --git a/src/csr/ArrowArcLeft.tsx b/src/csr/ArrowArcLeft.tsx new file mode 100644 index 000000000..16ecb04ce --- /dev/null +++ b/src/csr/ArrowArcLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowArcLeft"; + +export const ArrowArcLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowArcLeft.displayName = "ArrowArcLeft"; diff --git a/src/csr/ArrowArcRight.tsx b/src/csr/ArrowArcRight.tsx new file mode 100644 index 000000000..ca4a8b3ec --- /dev/null +++ b/src/csr/ArrowArcRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowArcRight"; + +export const ArrowArcRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowArcRight.displayName = "ArrowArcRight"; diff --git a/src/csr/ArrowBendDoubleUpLeft.tsx b/src/csr/ArrowBendDoubleUpLeft.tsx new file mode 100644 index 000000000..b97ef4fbf --- /dev/null +++ b/src/csr/ArrowBendDoubleUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendDoubleUpLeft"; + +export const ArrowBendDoubleUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDoubleUpLeft.displayName = "ArrowBendDoubleUpLeft"; diff --git a/src/csr/ArrowBendDoubleUpRight.tsx b/src/csr/ArrowBendDoubleUpRight.tsx new file mode 100644 index 000000000..360feb46f --- /dev/null +++ b/src/csr/ArrowBendDoubleUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendDoubleUpRight"; + +export const ArrowBendDoubleUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDoubleUpRight.displayName = "ArrowBendDoubleUpRight"; diff --git a/src/csr/ArrowBendDownLeft.tsx b/src/csr/ArrowBendDownLeft.tsx new file mode 100644 index 000000000..78516236d --- /dev/null +++ b/src/csr/ArrowBendDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendDownLeft"; + +export const ArrowBendDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDownLeft.displayName = "ArrowBendDownLeft"; diff --git a/src/csr/ArrowBendDownRight.tsx b/src/csr/ArrowBendDownRight.tsx new file mode 100644 index 000000000..0de792889 --- /dev/null +++ b/src/csr/ArrowBendDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendDownRight"; + +export const ArrowBendDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDownRight.displayName = "ArrowBendDownRight"; diff --git a/src/csr/ArrowBendLeftDown.tsx b/src/csr/ArrowBendLeftDown.tsx new file mode 100644 index 000000000..56f328108 --- /dev/null +++ b/src/csr/ArrowBendLeftDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendLeftDown"; + +export const ArrowBendLeftDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendLeftDown.displayName = "ArrowBendLeftDown"; diff --git a/src/csr/ArrowBendLeftUp.tsx b/src/csr/ArrowBendLeftUp.tsx new file mode 100644 index 000000000..aa72140dd --- /dev/null +++ b/src/csr/ArrowBendLeftUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendLeftUp"; + +export const ArrowBendLeftUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendLeftUp.displayName = "ArrowBendLeftUp"; diff --git a/src/csr/ArrowBendRightDown.tsx b/src/csr/ArrowBendRightDown.tsx new file mode 100644 index 000000000..69f902db3 --- /dev/null +++ b/src/csr/ArrowBendRightDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendRightDown"; + +export const ArrowBendRightDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendRightDown.displayName = "ArrowBendRightDown"; diff --git a/src/csr/ArrowBendRightUp.tsx b/src/csr/ArrowBendRightUp.tsx new file mode 100644 index 000000000..edbacafd2 --- /dev/null +++ b/src/csr/ArrowBendRightUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendRightUp"; + +export const ArrowBendRightUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendRightUp.displayName = "ArrowBendRightUp"; diff --git a/src/csr/ArrowBendUpLeft.tsx b/src/csr/ArrowBendUpLeft.tsx new file mode 100644 index 000000000..f123d32bd --- /dev/null +++ b/src/csr/ArrowBendUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendUpLeft"; + +export const ArrowBendUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendUpLeft.displayName = "ArrowBendUpLeft"; diff --git a/src/csr/ArrowBendUpRight.tsx b/src/csr/ArrowBendUpRight.tsx new file mode 100644 index 000000000..c896faa73 --- /dev/null +++ b/src/csr/ArrowBendUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowBendUpRight"; + +export const ArrowBendUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendUpRight.displayName = "ArrowBendUpRight"; diff --git a/src/csr/ArrowCircleDown.tsx b/src/csr/ArrowCircleDown.tsx new file mode 100644 index 000000000..0cf3bbc96 --- /dev/null +++ b/src/csr/ArrowCircleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleDown"; + +export const ArrowCircleDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleDown.displayName = "ArrowCircleDown"; diff --git a/src/csr/ArrowCircleDownLeft.tsx b/src/csr/ArrowCircleDownLeft.tsx new file mode 100644 index 000000000..810be5c02 --- /dev/null +++ b/src/csr/ArrowCircleDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleDownLeft"; + +export const ArrowCircleDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleDownLeft.displayName = "ArrowCircleDownLeft"; diff --git a/src/csr/ArrowCircleDownRight.tsx b/src/csr/ArrowCircleDownRight.tsx new file mode 100644 index 000000000..e89ed3c2c --- /dev/null +++ b/src/csr/ArrowCircleDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleDownRight"; + +export const ArrowCircleDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleDownRight.displayName = "ArrowCircleDownRight"; diff --git a/src/csr/ArrowCircleLeft.tsx b/src/csr/ArrowCircleLeft.tsx new file mode 100644 index 000000000..6bc61f350 --- /dev/null +++ b/src/csr/ArrowCircleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleLeft"; + +export const ArrowCircleLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleLeft.displayName = "ArrowCircleLeft"; diff --git a/src/csr/ArrowCircleRight.tsx b/src/csr/ArrowCircleRight.tsx new file mode 100644 index 000000000..7fc3ae158 --- /dev/null +++ b/src/csr/ArrowCircleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleRight"; + +export const ArrowCircleRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleRight.displayName = "ArrowCircleRight"; diff --git a/src/csr/ArrowCircleUp.tsx b/src/csr/ArrowCircleUp.tsx new file mode 100644 index 000000000..d3ce2f9ac --- /dev/null +++ b/src/csr/ArrowCircleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleUp"; + +export const ArrowCircleUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleUp.displayName = "ArrowCircleUp"; diff --git a/src/csr/ArrowCircleUpLeft.tsx b/src/csr/ArrowCircleUpLeft.tsx new file mode 100644 index 000000000..e8a5fe519 --- /dev/null +++ b/src/csr/ArrowCircleUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleUpLeft"; + +export const ArrowCircleUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleUpLeft.displayName = "ArrowCircleUpLeft"; diff --git a/src/csr/ArrowCircleUpRight.tsx b/src/csr/ArrowCircleUpRight.tsx new file mode 100644 index 000000000..44e5fa0c9 --- /dev/null +++ b/src/csr/ArrowCircleUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCircleUpRight"; + +export const ArrowCircleUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleUpRight.displayName = "ArrowCircleUpRight"; diff --git a/src/csr/ArrowClockwise.tsx b/src/csr/ArrowClockwise.tsx new file mode 100644 index 000000000..b25299028 --- /dev/null +++ b/src/csr/ArrowClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowClockwise"; + +export const ArrowClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowClockwise.displayName = "ArrowClockwise"; diff --git a/src/csr/ArrowCounterClockwise.tsx b/src/csr/ArrowCounterClockwise.tsx new file mode 100644 index 000000000..912dedecf --- /dev/null +++ b/src/csr/ArrowCounterClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowCounterClockwise"; + +export const ArrowCounterClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCounterClockwise.displayName = "ArrowCounterClockwise"; diff --git a/src/csr/ArrowDown.tsx b/src/csr/ArrowDown.tsx new file mode 100644 index 000000000..0c2a7c04b --- /dev/null +++ b/src/csr/ArrowDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowDown"; + +export const ArrowDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowDown.displayName = "ArrowDown"; diff --git a/src/csr/ArrowDownLeft.tsx b/src/csr/ArrowDownLeft.tsx new file mode 100644 index 000000000..9dfa9f26e --- /dev/null +++ b/src/csr/ArrowDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowDownLeft"; + +export const ArrowDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowDownLeft.displayName = "ArrowDownLeft"; diff --git a/src/csr/ArrowDownRight.tsx b/src/csr/ArrowDownRight.tsx new file mode 100644 index 000000000..4ccef39e0 --- /dev/null +++ b/src/csr/ArrowDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowDownRight"; + +export const ArrowDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowDownRight.displayName = "ArrowDownRight"; diff --git a/src/csr/ArrowElbowDownLeft.tsx b/src/csr/ArrowElbowDownLeft.tsx new file mode 100644 index 000000000..266feff07 --- /dev/null +++ b/src/csr/ArrowElbowDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowDownLeft"; + +export const ArrowElbowDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowDownLeft.displayName = "ArrowElbowDownLeft"; diff --git a/src/csr/ArrowElbowDownRight.tsx b/src/csr/ArrowElbowDownRight.tsx new file mode 100644 index 000000000..19a36bd6c --- /dev/null +++ b/src/csr/ArrowElbowDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowDownRight"; + +export const ArrowElbowDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowDownRight.displayName = "ArrowElbowDownRight"; diff --git a/src/csr/ArrowElbowLeft.tsx b/src/csr/ArrowElbowLeft.tsx new file mode 100644 index 000000000..dc05307b9 --- /dev/null +++ b/src/csr/ArrowElbowLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowLeft"; + +export const ArrowElbowLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowLeft.displayName = "ArrowElbowLeft"; diff --git a/src/csr/ArrowElbowLeftDown.tsx b/src/csr/ArrowElbowLeftDown.tsx new file mode 100644 index 000000000..0e6684b44 --- /dev/null +++ b/src/csr/ArrowElbowLeftDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowLeftDown"; + +export const ArrowElbowLeftDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowLeftDown.displayName = "ArrowElbowLeftDown"; diff --git a/src/csr/ArrowElbowLeftUp.tsx b/src/csr/ArrowElbowLeftUp.tsx new file mode 100644 index 000000000..d75b03e76 --- /dev/null +++ b/src/csr/ArrowElbowLeftUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowLeftUp"; + +export const ArrowElbowLeftUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowLeftUp.displayName = "ArrowElbowLeftUp"; diff --git a/src/csr/ArrowElbowRight.tsx b/src/csr/ArrowElbowRight.tsx new file mode 100644 index 000000000..c3d80f277 --- /dev/null +++ b/src/csr/ArrowElbowRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowRight"; + +export const ArrowElbowRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowRight.displayName = "ArrowElbowRight"; diff --git a/src/csr/ArrowElbowRightDown.tsx b/src/csr/ArrowElbowRightDown.tsx new file mode 100644 index 000000000..1a34c8fa6 --- /dev/null +++ b/src/csr/ArrowElbowRightDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowRightDown"; + +export const ArrowElbowRightDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowRightDown.displayName = "ArrowElbowRightDown"; diff --git a/src/csr/ArrowElbowRightUp.tsx b/src/csr/ArrowElbowRightUp.tsx new file mode 100644 index 000000000..969708a7e --- /dev/null +++ b/src/csr/ArrowElbowRightUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowRightUp"; + +export const ArrowElbowRightUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowRightUp.displayName = "ArrowElbowRightUp"; diff --git a/src/csr/ArrowElbowUpLeft.tsx b/src/csr/ArrowElbowUpLeft.tsx new file mode 100644 index 000000000..736ae2226 --- /dev/null +++ b/src/csr/ArrowElbowUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowUpLeft"; + +export const ArrowElbowUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowUpLeft.displayName = "ArrowElbowUpLeft"; diff --git a/src/csr/ArrowElbowUpRight.tsx b/src/csr/ArrowElbowUpRight.tsx new file mode 100644 index 000000000..1f249056e --- /dev/null +++ b/src/csr/ArrowElbowUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowElbowUpRight"; + +export const ArrowElbowUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowUpRight.displayName = "ArrowElbowUpRight"; diff --git a/src/csr/ArrowFatDown.tsx b/src/csr/ArrowFatDown.tsx new file mode 100644 index 000000000..a2504d1a4 --- /dev/null +++ b/src/csr/ArrowFatDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatDown"; + +export const ArrowFatDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatDown.displayName = "ArrowFatDown"; diff --git a/src/csr/ArrowFatLeft.tsx b/src/csr/ArrowFatLeft.tsx new file mode 100644 index 000000000..8f8e9b457 --- /dev/null +++ b/src/csr/ArrowFatLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLeft"; + +export const ArrowFatLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLeft.displayName = "ArrowFatLeft"; diff --git a/src/csr/ArrowFatLineDown.tsx b/src/csr/ArrowFatLineDown.tsx new file mode 100644 index 000000000..56264506d --- /dev/null +++ b/src/csr/ArrowFatLineDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLineDown"; + +export const ArrowFatLineDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineDown.displayName = "ArrowFatLineDown"; diff --git a/src/csr/ArrowFatLineLeft.tsx b/src/csr/ArrowFatLineLeft.tsx new file mode 100644 index 000000000..ddbfa661b --- /dev/null +++ b/src/csr/ArrowFatLineLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLineLeft"; + +export const ArrowFatLineLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineLeft.displayName = "ArrowFatLineLeft"; diff --git a/src/csr/ArrowFatLineRight.tsx b/src/csr/ArrowFatLineRight.tsx new file mode 100644 index 000000000..1cece3f23 --- /dev/null +++ b/src/csr/ArrowFatLineRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLineRight"; + +export const ArrowFatLineRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineRight.displayName = "ArrowFatLineRight"; diff --git a/src/csr/ArrowFatLineUp.tsx b/src/csr/ArrowFatLineUp.tsx new file mode 100644 index 000000000..6db976327 --- /dev/null +++ b/src/csr/ArrowFatLineUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLineUp"; + +export const ArrowFatLineUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineUp.displayName = "ArrowFatLineUp"; diff --git a/src/csr/ArrowFatLinesDown.tsx b/src/csr/ArrowFatLinesDown.tsx new file mode 100644 index 000000000..1092f95bc --- /dev/null +++ b/src/csr/ArrowFatLinesDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLinesDown"; + +export const ArrowFatLinesDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesDown.displayName = "ArrowFatLinesDown"; diff --git a/src/csr/ArrowFatLinesLeft.tsx b/src/csr/ArrowFatLinesLeft.tsx new file mode 100644 index 000000000..9dee1717c --- /dev/null +++ b/src/csr/ArrowFatLinesLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLinesLeft"; + +export const ArrowFatLinesLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesLeft.displayName = "ArrowFatLinesLeft"; diff --git a/src/csr/ArrowFatLinesRight.tsx b/src/csr/ArrowFatLinesRight.tsx new file mode 100644 index 000000000..9b870a097 --- /dev/null +++ b/src/csr/ArrowFatLinesRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLinesRight"; + +export const ArrowFatLinesRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesRight.displayName = "ArrowFatLinesRight"; diff --git a/src/csr/ArrowFatLinesUp.tsx b/src/csr/ArrowFatLinesUp.tsx new file mode 100644 index 000000000..e5e03f855 --- /dev/null +++ b/src/csr/ArrowFatLinesUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatLinesUp"; + +export const ArrowFatLinesUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesUp.displayName = "ArrowFatLinesUp"; diff --git a/src/csr/ArrowFatRight.tsx b/src/csr/ArrowFatRight.tsx new file mode 100644 index 000000000..3588ebfbf --- /dev/null +++ b/src/csr/ArrowFatRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatRight"; + +export const ArrowFatRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatRight.displayName = "ArrowFatRight"; diff --git a/src/csr/ArrowFatUp.tsx b/src/csr/ArrowFatUp.tsx new file mode 100644 index 000000000..7b7f11807 --- /dev/null +++ b/src/csr/ArrowFatUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowFatUp"; + +export const ArrowFatUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatUp.displayName = "ArrowFatUp"; diff --git a/src/csr/ArrowLeft.tsx b/src/csr/ArrowLeft.tsx new file mode 100644 index 000000000..e164402e8 --- /dev/null +++ b/src/csr/ArrowLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLeft"; + +export const ArrowLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLeft.displayName = "ArrowLeft"; diff --git a/src/csr/ArrowLineDown.tsx b/src/csr/ArrowLineDown.tsx new file mode 100644 index 000000000..bb26c8892 --- /dev/null +++ b/src/csr/ArrowLineDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineDown"; + +export const ArrowLineDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineDown.displayName = "ArrowLineDown"; diff --git a/src/csr/ArrowLineDownLeft.tsx b/src/csr/ArrowLineDownLeft.tsx new file mode 100644 index 000000000..e54c27544 --- /dev/null +++ b/src/csr/ArrowLineDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineDownLeft"; + +export const ArrowLineDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineDownLeft.displayName = "ArrowLineDownLeft"; diff --git a/src/csr/ArrowLineDownRight.tsx b/src/csr/ArrowLineDownRight.tsx new file mode 100644 index 000000000..f8aeb72bb --- /dev/null +++ b/src/csr/ArrowLineDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineDownRight"; + +export const ArrowLineDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineDownRight.displayName = "ArrowLineDownRight"; diff --git a/src/csr/ArrowLineLeft.tsx b/src/csr/ArrowLineLeft.tsx new file mode 100644 index 000000000..b1ec0e9db --- /dev/null +++ b/src/csr/ArrowLineLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineLeft"; + +export const ArrowLineLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineLeft.displayName = "ArrowLineLeft"; diff --git a/src/csr/ArrowLineRight.tsx b/src/csr/ArrowLineRight.tsx new file mode 100644 index 000000000..dac9ccbf1 --- /dev/null +++ b/src/csr/ArrowLineRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineRight"; + +export const ArrowLineRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineRight.displayName = "ArrowLineRight"; diff --git a/src/csr/ArrowLineUp.tsx b/src/csr/ArrowLineUp.tsx new file mode 100644 index 000000000..af691b082 --- /dev/null +++ b/src/csr/ArrowLineUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineUp"; + +export const ArrowLineUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineUp.displayName = "ArrowLineUp"; diff --git a/src/csr/ArrowLineUpLeft.tsx b/src/csr/ArrowLineUpLeft.tsx new file mode 100644 index 000000000..54ce12528 --- /dev/null +++ b/src/csr/ArrowLineUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineUpLeft"; + +export const ArrowLineUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineUpLeft.displayName = "ArrowLineUpLeft"; diff --git a/src/csr/ArrowLineUpRight.tsx b/src/csr/ArrowLineUpRight.tsx new file mode 100644 index 000000000..6a68ceec2 --- /dev/null +++ b/src/csr/ArrowLineUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowLineUpRight"; + +export const ArrowLineUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineUpRight.displayName = "ArrowLineUpRight"; diff --git a/src/csr/ArrowRight.tsx b/src/csr/ArrowRight.tsx new file mode 100644 index 000000000..41e1d936e --- /dev/null +++ b/src/csr/ArrowRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowRight"; + +export const ArrowRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowRight.displayName = "ArrowRight"; diff --git a/src/csr/ArrowSquareDown.tsx b/src/csr/ArrowSquareDown.tsx new file mode 100644 index 000000000..7cdfb1254 --- /dev/null +++ b/src/csr/ArrowSquareDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareDown"; + +export const ArrowSquareDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareDown.displayName = "ArrowSquareDown"; diff --git a/src/csr/ArrowSquareDownLeft.tsx b/src/csr/ArrowSquareDownLeft.tsx new file mode 100644 index 000000000..0f316870c --- /dev/null +++ b/src/csr/ArrowSquareDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareDownLeft"; + +export const ArrowSquareDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareDownLeft.displayName = "ArrowSquareDownLeft"; diff --git a/src/csr/ArrowSquareDownRight.tsx b/src/csr/ArrowSquareDownRight.tsx new file mode 100644 index 000000000..4d0f00520 --- /dev/null +++ b/src/csr/ArrowSquareDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareDownRight"; + +export const ArrowSquareDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareDownRight.displayName = "ArrowSquareDownRight"; diff --git a/src/csr/ArrowSquareIn.tsx b/src/csr/ArrowSquareIn.tsx new file mode 100644 index 000000000..96758ce4a --- /dev/null +++ b/src/csr/ArrowSquareIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareIn"; + +export const ArrowSquareIn: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareIn.displayName = "ArrowSquareIn"; diff --git a/src/csr/ArrowSquareLeft.tsx b/src/csr/ArrowSquareLeft.tsx new file mode 100644 index 000000000..fd260b1c8 --- /dev/null +++ b/src/csr/ArrowSquareLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareLeft"; + +export const ArrowSquareLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareLeft.displayName = "ArrowSquareLeft"; diff --git a/src/csr/ArrowSquareOut.tsx b/src/csr/ArrowSquareOut.tsx new file mode 100644 index 000000000..c18f6cde7 --- /dev/null +++ b/src/csr/ArrowSquareOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareOut"; + +export const ArrowSquareOut: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareOut.displayName = "ArrowSquareOut"; diff --git a/src/csr/ArrowSquareRight.tsx b/src/csr/ArrowSquareRight.tsx new file mode 100644 index 000000000..d81e09d1e --- /dev/null +++ b/src/csr/ArrowSquareRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareRight"; + +export const ArrowSquareRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareRight.displayName = "ArrowSquareRight"; diff --git a/src/csr/ArrowSquareUp.tsx b/src/csr/ArrowSquareUp.tsx new file mode 100644 index 000000000..01ddba4d8 --- /dev/null +++ b/src/csr/ArrowSquareUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareUp"; + +export const ArrowSquareUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareUp.displayName = "ArrowSquareUp"; diff --git a/src/csr/ArrowSquareUpLeft.tsx b/src/csr/ArrowSquareUpLeft.tsx new file mode 100644 index 000000000..fcbf3d4bf --- /dev/null +++ b/src/csr/ArrowSquareUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareUpLeft"; + +export const ArrowSquareUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareUpLeft.displayName = "ArrowSquareUpLeft"; diff --git a/src/csr/ArrowSquareUpRight.tsx b/src/csr/ArrowSquareUpRight.tsx new file mode 100644 index 000000000..535fa08bb --- /dev/null +++ b/src/csr/ArrowSquareUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowSquareUpRight"; + +export const ArrowSquareUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareUpRight.displayName = "ArrowSquareUpRight"; diff --git a/src/csr/ArrowUDownLeft.tsx b/src/csr/ArrowUDownLeft.tsx new file mode 100644 index 000000000..fa6879a68 --- /dev/null +++ b/src/csr/ArrowUDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowUDownLeft"; + +export const ArrowUDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUDownLeft.displayName = "ArrowUDownLeft"; diff --git a/src/csr/ArrowUDownRight.tsx b/src/csr/ArrowUDownRight.tsx new file mode 100644 index 000000000..a9036bbe1 --- /dev/null +++ b/src/csr/ArrowUDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowUDownRight"; + +export const ArrowUDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUDownRight.displayName = "ArrowUDownRight"; diff --git a/src/csr/ArrowULeftDown.tsx b/src/csr/ArrowULeftDown.tsx new file mode 100644 index 000000000..d2b9e138e --- /dev/null +++ b/src/csr/ArrowULeftDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowULeftDown"; + +export const ArrowULeftDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowULeftDown.displayName = "ArrowULeftDown"; diff --git a/src/csr/ArrowULeftUp.tsx b/src/csr/ArrowULeftUp.tsx new file mode 100644 index 000000000..bec88348d --- /dev/null +++ b/src/csr/ArrowULeftUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowULeftUp"; + +export const ArrowULeftUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowULeftUp.displayName = "ArrowULeftUp"; diff --git a/src/csr/ArrowURightDown.tsx b/src/csr/ArrowURightDown.tsx new file mode 100644 index 000000000..894cb1328 --- /dev/null +++ b/src/csr/ArrowURightDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowURightDown"; + +export const ArrowURightDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowURightDown.displayName = "ArrowURightDown"; diff --git a/src/csr/ArrowURightUp.tsx b/src/csr/ArrowURightUp.tsx new file mode 100644 index 000000000..8ea490c5b --- /dev/null +++ b/src/csr/ArrowURightUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowURightUp"; + +export const ArrowURightUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowURightUp.displayName = "ArrowURightUp"; diff --git a/src/csr/ArrowUUpLeft.tsx b/src/csr/ArrowUUpLeft.tsx new file mode 100644 index 000000000..72d823345 --- /dev/null +++ b/src/csr/ArrowUUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowUUpLeft"; + +export const ArrowUUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUUpLeft.displayName = "ArrowUUpLeft"; diff --git a/src/csr/ArrowUUpRight.tsx b/src/csr/ArrowUUpRight.tsx new file mode 100644 index 000000000..085ca1335 --- /dev/null +++ b/src/csr/ArrowUUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowUUpRight"; + +export const ArrowUUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUUpRight.displayName = "ArrowUUpRight"; diff --git a/src/csr/ArrowUp.tsx b/src/csr/ArrowUp.tsx new file mode 100644 index 000000000..f5418c53a --- /dev/null +++ b/src/csr/ArrowUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowUp"; + +export const ArrowUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUp.displayName = "ArrowUp"; diff --git a/src/csr/ArrowUpLeft.tsx b/src/csr/ArrowUpLeft.tsx new file mode 100644 index 000000000..069d11c75 --- /dev/null +++ b/src/csr/ArrowUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowUpLeft"; + +export const ArrowUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUpLeft.displayName = "ArrowUpLeft"; diff --git a/src/csr/ArrowUpRight.tsx b/src/csr/ArrowUpRight.tsx new file mode 100644 index 000000000..3da04ce46 --- /dev/null +++ b/src/csr/ArrowUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowUpRight"; + +export const ArrowUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUpRight.displayName = "ArrowUpRight"; diff --git a/src/csr/ArrowsClockwise.tsx b/src/csr/ArrowsClockwise.tsx new file mode 100644 index 000000000..c97995a8f --- /dev/null +++ b/src/csr/ArrowsClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsClockwise"; + +export const ArrowsClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsClockwise.displayName = "ArrowsClockwise"; diff --git a/src/csr/ArrowsCounterClockwise.tsx b/src/csr/ArrowsCounterClockwise.tsx new file mode 100644 index 000000000..b11881624 --- /dev/null +++ b/src/csr/ArrowsCounterClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsCounterClockwise"; + +export const ArrowsCounterClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsCounterClockwise.displayName = "ArrowsCounterClockwise"; diff --git a/src/csr/ArrowsDownUp.tsx b/src/csr/ArrowsDownUp.tsx new file mode 100644 index 000000000..44db10191 --- /dev/null +++ b/src/csr/ArrowsDownUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsDownUp"; + +export const ArrowsDownUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsDownUp.displayName = "ArrowsDownUp"; diff --git a/src/csr/ArrowsHorizontal.tsx b/src/csr/ArrowsHorizontal.tsx new file mode 100644 index 000000000..3efb9c394 --- /dev/null +++ b/src/csr/ArrowsHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsHorizontal"; + +export const ArrowsHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsHorizontal.displayName = "ArrowsHorizontal"; diff --git a/src/csr/ArrowsIn.tsx b/src/csr/ArrowsIn.tsx new file mode 100644 index 000000000..fab698a26 --- /dev/null +++ b/src/csr/ArrowsIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsIn"; + +export const ArrowsIn: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsIn.displayName = "ArrowsIn"; diff --git a/src/csr/ArrowsInCardinal.tsx b/src/csr/ArrowsInCardinal.tsx new file mode 100644 index 000000000..bfc422505 --- /dev/null +++ b/src/csr/ArrowsInCardinal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsInCardinal"; + +export const ArrowsInCardinal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInCardinal.displayName = "ArrowsInCardinal"; diff --git a/src/csr/ArrowsInLineHorizontal.tsx b/src/csr/ArrowsInLineHorizontal.tsx new file mode 100644 index 000000000..5a865ed52 --- /dev/null +++ b/src/csr/ArrowsInLineHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsInLineHorizontal"; + +export const ArrowsInLineHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInLineHorizontal.displayName = "ArrowsInLineHorizontal"; diff --git a/src/csr/ArrowsInLineVertical.tsx b/src/csr/ArrowsInLineVertical.tsx new file mode 100644 index 000000000..f944f66fc --- /dev/null +++ b/src/csr/ArrowsInLineVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsInLineVertical"; + +export const ArrowsInLineVertical: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInLineVertical.displayName = "ArrowsInLineVertical"; diff --git a/src/csr/ArrowsInSimple.tsx b/src/csr/ArrowsInSimple.tsx new file mode 100644 index 000000000..049d83816 --- /dev/null +++ b/src/csr/ArrowsInSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsInSimple"; + +export const ArrowsInSimple: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInSimple.displayName = "ArrowsInSimple"; diff --git a/src/csr/ArrowsLeftRight.tsx b/src/csr/ArrowsLeftRight.tsx new file mode 100644 index 000000000..291c8db76 --- /dev/null +++ b/src/csr/ArrowsLeftRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsLeftRight"; + +export const ArrowsLeftRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsLeftRight.displayName = "ArrowsLeftRight"; diff --git a/src/csr/ArrowsMerge.tsx b/src/csr/ArrowsMerge.tsx new file mode 100644 index 000000000..84ee1dc4e --- /dev/null +++ b/src/csr/ArrowsMerge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsMerge"; + +export const ArrowsMerge: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsMerge.displayName = "ArrowsMerge"; diff --git a/src/csr/ArrowsOut.tsx b/src/csr/ArrowsOut.tsx new file mode 100644 index 000000000..37c34bfcd --- /dev/null +++ b/src/csr/ArrowsOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsOut"; + +export const ArrowsOut: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOut.displayName = "ArrowsOut"; diff --git a/src/csr/ArrowsOutCardinal.tsx b/src/csr/ArrowsOutCardinal.tsx new file mode 100644 index 000000000..9260be7f2 --- /dev/null +++ b/src/csr/ArrowsOutCardinal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsOutCardinal"; + +export const ArrowsOutCardinal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutCardinal.displayName = "ArrowsOutCardinal"; diff --git a/src/csr/ArrowsOutLineHorizontal.tsx b/src/csr/ArrowsOutLineHorizontal.tsx new file mode 100644 index 000000000..4ea70d0d5 --- /dev/null +++ b/src/csr/ArrowsOutLineHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsOutLineHorizontal"; + +export const ArrowsOutLineHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutLineHorizontal.displayName = "ArrowsOutLineHorizontal"; diff --git a/src/csr/ArrowsOutLineVertical.tsx b/src/csr/ArrowsOutLineVertical.tsx new file mode 100644 index 000000000..013bc23de --- /dev/null +++ b/src/csr/ArrowsOutLineVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsOutLineVertical"; + +export const ArrowsOutLineVertical: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutLineVertical.displayName = "ArrowsOutLineVertical"; diff --git a/src/csr/ArrowsOutSimple.tsx b/src/csr/ArrowsOutSimple.tsx new file mode 100644 index 000000000..947d70b0c --- /dev/null +++ b/src/csr/ArrowsOutSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsOutSimple"; + +export const ArrowsOutSimple: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutSimple.displayName = "ArrowsOutSimple"; diff --git a/src/csr/ArrowsSplit.tsx b/src/csr/ArrowsSplit.tsx new file mode 100644 index 000000000..077ff4173 --- /dev/null +++ b/src/csr/ArrowsSplit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsSplit"; + +export const ArrowsSplit: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsSplit.displayName = "ArrowsSplit"; diff --git a/src/csr/ArrowsVertical.tsx b/src/csr/ArrowsVertical.tsx new file mode 100644 index 000000000..388699bac --- /dev/null +++ b/src/csr/ArrowsVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArrowsVertical"; + +export const ArrowsVertical: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsVertical.displayName = "ArrowsVertical"; diff --git a/src/csr/Article.tsx b/src/csr/Article.tsx new file mode 100644 index 000000000..41c011b16 --- /dev/null +++ b/src/csr/Article.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Article"; + +export const Article: Icon = forwardRef((props, ref) => ( + +)); + +Article.displayName = "Article"; diff --git a/src/csr/ArticleMedium.tsx b/src/csr/ArticleMedium.tsx new file mode 100644 index 000000000..8c39530f9 --- /dev/null +++ b/src/csr/ArticleMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArticleMedium"; + +export const ArticleMedium: Icon = forwardRef((props, ref) => ( + +)); + +ArticleMedium.displayName = "ArticleMedium"; diff --git a/src/csr/ArticleNyTimes.tsx b/src/csr/ArticleNyTimes.tsx new file mode 100644 index 000000000..68157b97f --- /dev/null +++ b/src/csr/ArticleNyTimes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ArticleNyTimes"; + +export const ArticleNyTimes: Icon = forwardRef((props, ref) => ( + +)); + +ArticleNyTimes.displayName = "ArticleNyTimes"; diff --git a/src/csr/Asterisk.tsx b/src/csr/Asterisk.tsx new file mode 100644 index 000000000..494f69f27 --- /dev/null +++ b/src/csr/Asterisk.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Asterisk"; + +export const Asterisk: Icon = forwardRef((props, ref) => ( + +)); + +Asterisk.displayName = "Asterisk"; diff --git a/src/csr/AsteriskSimple.tsx b/src/csr/AsteriskSimple.tsx new file mode 100644 index 000000000..61eaa0d87 --- /dev/null +++ b/src/csr/AsteriskSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/AsteriskSimple"; + +export const AsteriskSimple: Icon = forwardRef((props, ref) => ( + +)); + +AsteriskSimple.displayName = "AsteriskSimple"; diff --git a/src/csr/At.tsx b/src/csr/At.tsx new file mode 100644 index 000000000..fc9ba05d0 --- /dev/null +++ b/src/csr/At.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/At"; + +export const At: Icon = forwardRef((props, ref) => ( + +)); + +At.displayName = "At"; diff --git a/src/csr/Atom.tsx b/src/csr/Atom.tsx new file mode 100644 index 000000000..4b3e6398d --- /dev/null +++ b/src/csr/Atom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Atom"; + +export const Atom: Icon = forwardRef((props, ref) => ( + +)); + +Atom.displayName = "Atom"; diff --git a/src/csr/Baby.tsx b/src/csr/Baby.tsx new file mode 100644 index 000000000..3991ee756 --- /dev/null +++ b/src/csr/Baby.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Baby"; + +export const Baby: Icon = forwardRef((props, ref) => ( + +)); + +Baby.displayName = "Baby"; diff --git a/src/csr/Backpack.tsx b/src/csr/Backpack.tsx new file mode 100644 index 000000000..9031f791a --- /dev/null +++ b/src/csr/Backpack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Backpack"; + +export const Backpack: Icon = forwardRef((props, ref) => ( + +)); + +Backpack.displayName = "Backpack"; diff --git a/src/csr/Backspace.tsx b/src/csr/Backspace.tsx new file mode 100644 index 000000000..fff918838 --- /dev/null +++ b/src/csr/Backspace.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Backspace"; + +export const Backspace: Icon = forwardRef((props, ref) => ( + +)); + +Backspace.displayName = "Backspace"; diff --git a/src/csr/Bag.tsx b/src/csr/Bag.tsx new file mode 100644 index 000000000..f8ddfae00 --- /dev/null +++ b/src/csr/Bag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bag"; + +export const Bag: Icon = forwardRef((props, ref) => ( + +)); + +Bag.displayName = "Bag"; diff --git a/src/csr/BagSimple.tsx b/src/csr/BagSimple.tsx new file mode 100644 index 000000000..0b8ccc485 --- /dev/null +++ b/src/csr/BagSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BagSimple"; + +export const BagSimple: Icon = forwardRef((props, ref) => ( + +)); + +BagSimple.displayName = "BagSimple"; diff --git a/src/csr/Balloon.tsx b/src/csr/Balloon.tsx new file mode 100644 index 000000000..c7753da49 --- /dev/null +++ b/src/csr/Balloon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Balloon"; + +export const Balloon: Icon = forwardRef((props, ref) => ( + +)); + +Balloon.displayName = "Balloon"; diff --git a/src/csr/Bandaids.tsx b/src/csr/Bandaids.tsx new file mode 100644 index 000000000..c4d45bfc8 --- /dev/null +++ b/src/csr/Bandaids.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bandaids"; + +export const Bandaids: Icon = forwardRef((props, ref) => ( + +)); + +Bandaids.displayName = "Bandaids"; diff --git a/src/csr/Bank.tsx b/src/csr/Bank.tsx new file mode 100644 index 000000000..6671aa75b --- /dev/null +++ b/src/csr/Bank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bank"; + +export const Bank: Icon = forwardRef((props, ref) => ( + +)); + +Bank.displayName = "Bank"; diff --git a/src/csr/Barbell.tsx b/src/csr/Barbell.tsx new file mode 100644 index 000000000..a8c37fd22 --- /dev/null +++ b/src/csr/Barbell.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Barbell"; + +export const Barbell: Icon = forwardRef((props, ref) => ( + +)); + +Barbell.displayName = "Barbell"; diff --git a/src/csr/Barcode.tsx b/src/csr/Barcode.tsx new file mode 100644 index 000000000..d52d99c8a --- /dev/null +++ b/src/csr/Barcode.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Barcode"; + +export const Barcode: Icon = forwardRef((props, ref) => ( + +)); + +Barcode.displayName = "Barcode"; diff --git a/src/csr/Barricade.tsx b/src/csr/Barricade.tsx new file mode 100644 index 000000000..e926d8821 --- /dev/null +++ b/src/csr/Barricade.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Barricade"; + +export const Barricade: Icon = forwardRef((props, ref) => ( + +)); + +Barricade.displayName = "Barricade"; diff --git a/src/csr/Baseball.tsx b/src/csr/Baseball.tsx new file mode 100644 index 000000000..fd7e1d217 --- /dev/null +++ b/src/csr/Baseball.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Baseball"; + +export const Baseball: Icon = forwardRef((props, ref) => ( + +)); + +Baseball.displayName = "Baseball"; diff --git a/src/csr/BaseballCap.tsx b/src/csr/BaseballCap.tsx new file mode 100644 index 000000000..e0da2fa8d --- /dev/null +++ b/src/csr/BaseballCap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BaseballCap"; + +export const BaseballCap: Icon = forwardRef((props, ref) => ( + +)); + +BaseballCap.displayName = "BaseballCap"; diff --git a/src/csr/Basket.tsx b/src/csr/Basket.tsx new file mode 100644 index 000000000..d1d26181b --- /dev/null +++ b/src/csr/Basket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Basket"; + +export const Basket: Icon = forwardRef((props, ref) => ( + +)); + +Basket.displayName = "Basket"; diff --git a/src/csr/Basketball.tsx b/src/csr/Basketball.tsx new file mode 100644 index 000000000..45cc03de7 --- /dev/null +++ b/src/csr/Basketball.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Basketball"; + +export const Basketball: Icon = forwardRef((props, ref) => ( + +)); + +Basketball.displayName = "Basketball"; diff --git a/src/csr/Bathtub.tsx b/src/csr/Bathtub.tsx new file mode 100644 index 000000000..6a2d2c040 --- /dev/null +++ b/src/csr/Bathtub.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bathtub"; + +export const Bathtub: Icon = forwardRef((props, ref) => ( + +)); + +Bathtub.displayName = "Bathtub"; diff --git a/src/csr/BatteryCharging.tsx b/src/csr/BatteryCharging.tsx new file mode 100644 index 000000000..5ae224b1b --- /dev/null +++ b/src/csr/BatteryCharging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryCharging"; + +export const BatteryCharging: Icon = forwardRef((props, ref) => ( + +)); + +BatteryCharging.displayName = "BatteryCharging"; diff --git a/src/csr/BatteryChargingVertical.tsx b/src/csr/BatteryChargingVertical.tsx new file mode 100644 index 000000000..2fcfc8c96 --- /dev/null +++ b/src/csr/BatteryChargingVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryChargingVertical"; + +export const BatteryChargingVertical: Icon = forwardRef((props, ref) => ( + +)); + +BatteryChargingVertical.displayName = "BatteryChargingVertical"; diff --git a/src/csr/BatteryEmpty.tsx b/src/csr/BatteryEmpty.tsx new file mode 100644 index 000000000..97454df8f --- /dev/null +++ b/src/csr/BatteryEmpty.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryEmpty"; + +export const BatteryEmpty: Icon = forwardRef((props, ref) => ( + +)); + +BatteryEmpty.displayName = "BatteryEmpty"; diff --git a/src/csr/BatteryFull.tsx b/src/csr/BatteryFull.tsx new file mode 100644 index 000000000..6b98af82d --- /dev/null +++ b/src/csr/BatteryFull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryFull"; + +export const BatteryFull: Icon = forwardRef((props, ref) => ( + +)); + +BatteryFull.displayName = "BatteryFull"; diff --git a/src/csr/BatteryHigh.tsx b/src/csr/BatteryHigh.tsx new file mode 100644 index 000000000..362e5716e --- /dev/null +++ b/src/csr/BatteryHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryHigh"; + +export const BatteryHigh: Icon = forwardRef((props, ref) => ( + +)); + +BatteryHigh.displayName = "BatteryHigh"; diff --git a/src/csr/BatteryLow.tsx b/src/csr/BatteryLow.tsx new file mode 100644 index 000000000..851414fb3 --- /dev/null +++ b/src/csr/BatteryLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryLow"; + +export const BatteryLow: Icon = forwardRef((props, ref) => ( + +)); + +BatteryLow.displayName = "BatteryLow"; diff --git a/src/csr/BatteryMedium.tsx b/src/csr/BatteryMedium.tsx new file mode 100644 index 000000000..d4bdcc7cf --- /dev/null +++ b/src/csr/BatteryMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryMedium"; + +export const BatteryMedium: Icon = forwardRef((props, ref) => ( + +)); + +BatteryMedium.displayName = "BatteryMedium"; diff --git a/src/csr/BatteryPlus.tsx b/src/csr/BatteryPlus.tsx new file mode 100644 index 000000000..5f7b77c4e --- /dev/null +++ b/src/csr/BatteryPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryPlus"; + +export const BatteryPlus: Icon = forwardRef((props, ref) => ( + +)); + +BatteryPlus.displayName = "BatteryPlus"; diff --git a/src/csr/BatteryPlusVertical.tsx b/src/csr/BatteryPlusVertical.tsx new file mode 100644 index 000000000..f8627c92c --- /dev/null +++ b/src/csr/BatteryPlusVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryPlusVertical"; + +export const BatteryPlusVertical: Icon = forwardRef((props, ref) => ( + +)); + +BatteryPlusVertical.displayName = "BatteryPlusVertical"; diff --git a/src/csr/BatteryVerticalEmpty.tsx b/src/csr/BatteryVerticalEmpty.tsx new file mode 100644 index 000000000..ab3fb5293 --- /dev/null +++ b/src/csr/BatteryVerticalEmpty.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryVerticalEmpty"; + +export const BatteryVerticalEmpty: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalEmpty.displayName = "BatteryVerticalEmpty"; diff --git a/src/csr/BatteryVerticalFull.tsx b/src/csr/BatteryVerticalFull.tsx new file mode 100644 index 000000000..a8f344390 --- /dev/null +++ b/src/csr/BatteryVerticalFull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryVerticalFull"; + +export const BatteryVerticalFull: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalFull.displayName = "BatteryVerticalFull"; diff --git a/src/csr/BatteryVerticalHigh.tsx b/src/csr/BatteryVerticalHigh.tsx new file mode 100644 index 000000000..e36d66c0e --- /dev/null +++ b/src/csr/BatteryVerticalHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryVerticalHigh"; + +export const BatteryVerticalHigh: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalHigh.displayName = "BatteryVerticalHigh"; diff --git a/src/csr/BatteryVerticalLow.tsx b/src/csr/BatteryVerticalLow.tsx new file mode 100644 index 000000000..adfeaace8 --- /dev/null +++ b/src/csr/BatteryVerticalLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryVerticalLow"; + +export const BatteryVerticalLow: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalLow.displayName = "BatteryVerticalLow"; diff --git a/src/csr/BatteryVerticalMedium.tsx b/src/csr/BatteryVerticalMedium.tsx new file mode 100644 index 000000000..30a547480 --- /dev/null +++ b/src/csr/BatteryVerticalMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryVerticalMedium"; + +export const BatteryVerticalMedium: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalMedium.displayName = "BatteryVerticalMedium"; diff --git a/src/csr/BatteryWarning.tsx b/src/csr/BatteryWarning.tsx new file mode 100644 index 000000000..f57a1fe2d --- /dev/null +++ b/src/csr/BatteryWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryWarning"; + +export const BatteryWarning: Icon = forwardRef((props, ref) => ( + +)); + +BatteryWarning.displayName = "BatteryWarning"; diff --git a/src/csr/BatteryWarningVertical.tsx b/src/csr/BatteryWarningVertical.tsx new file mode 100644 index 000000000..4629d37a8 --- /dev/null +++ b/src/csr/BatteryWarningVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BatteryWarningVertical"; + +export const BatteryWarningVertical: Icon = forwardRef((props, ref) => ( + +)); + +BatteryWarningVertical.displayName = "BatteryWarningVertical"; diff --git a/src/csr/Bed.tsx b/src/csr/Bed.tsx new file mode 100644 index 000000000..8ac0281ca --- /dev/null +++ b/src/csr/Bed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bed"; + +export const Bed: Icon = forwardRef((props, ref) => ( + +)); + +Bed.displayName = "Bed"; diff --git a/src/csr/BeerBottle.tsx b/src/csr/BeerBottle.tsx new file mode 100644 index 000000000..185b6cf88 --- /dev/null +++ b/src/csr/BeerBottle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BeerBottle"; + +export const BeerBottle: Icon = forwardRef((props, ref) => ( + +)); + +BeerBottle.displayName = "BeerBottle"; diff --git a/src/csr/BeerStein.tsx b/src/csr/BeerStein.tsx new file mode 100644 index 000000000..5dc87c6ea --- /dev/null +++ b/src/csr/BeerStein.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BeerStein"; + +export const BeerStein: Icon = forwardRef((props, ref) => ( + +)); + +BeerStein.displayName = "BeerStein"; diff --git a/src/csr/BehanceLogo.tsx b/src/csr/BehanceLogo.tsx new file mode 100644 index 000000000..5ced761f0 --- /dev/null +++ b/src/csr/BehanceLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BehanceLogo"; + +export const BehanceLogo: Icon = forwardRef((props, ref) => ( + +)); + +BehanceLogo.displayName = "BehanceLogo"; diff --git a/src/csr/Bell.tsx b/src/csr/Bell.tsx new file mode 100644 index 000000000..cae08ffef --- /dev/null +++ b/src/csr/Bell.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bell"; + +export const Bell: Icon = forwardRef((props, ref) => ( + +)); + +Bell.displayName = "Bell"; diff --git a/src/csr/BellRinging.tsx b/src/csr/BellRinging.tsx new file mode 100644 index 000000000..c5acb8b94 --- /dev/null +++ b/src/csr/BellRinging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BellRinging"; + +export const BellRinging: Icon = forwardRef((props, ref) => ( + +)); + +BellRinging.displayName = "BellRinging"; diff --git a/src/csr/BellSimple.tsx b/src/csr/BellSimple.tsx new file mode 100644 index 000000000..db29028c7 --- /dev/null +++ b/src/csr/BellSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BellSimple"; + +export const BellSimple: Icon = forwardRef((props, ref) => ( + +)); + +BellSimple.displayName = "BellSimple"; diff --git a/src/csr/BellSimpleRinging.tsx b/src/csr/BellSimpleRinging.tsx new file mode 100644 index 000000000..f390be850 --- /dev/null +++ b/src/csr/BellSimpleRinging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BellSimpleRinging"; + +export const BellSimpleRinging: Icon = forwardRef((props, ref) => ( + +)); + +BellSimpleRinging.displayName = "BellSimpleRinging"; diff --git a/src/csr/BellSimpleSlash.tsx b/src/csr/BellSimpleSlash.tsx new file mode 100644 index 000000000..108ea70eb --- /dev/null +++ b/src/csr/BellSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BellSimpleSlash"; + +export const BellSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +BellSimpleSlash.displayName = "BellSimpleSlash"; diff --git a/src/csr/BellSimpleZ.tsx b/src/csr/BellSimpleZ.tsx new file mode 100644 index 000000000..7c3c58031 --- /dev/null +++ b/src/csr/BellSimpleZ.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BellSimpleZ"; + +export const BellSimpleZ: Icon = forwardRef((props, ref) => ( + +)); + +BellSimpleZ.displayName = "BellSimpleZ"; diff --git a/src/csr/BellSlash.tsx b/src/csr/BellSlash.tsx new file mode 100644 index 000000000..38668cce3 --- /dev/null +++ b/src/csr/BellSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BellSlash"; + +export const BellSlash: Icon = forwardRef((props, ref) => ( + +)); + +BellSlash.displayName = "BellSlash"; diff --git a/src/csr/BellZ.tsx b/src/csr/BellZ.tsx new file mode 100644 index 000000000..063bec397 --- /dev/null +++ b/src/csr/BellZ.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BellZ"; + +export const BellZ: Icon = forwardRef((props, ref) => ( + +)); + +BellZ.displayName = "BellZ"; diff --git a/src/csr/BezierCurve.tsx b/src/csr/BezierCurve.tsx new file mode 100644 index 000000000..f82771b66 --- /dev/null +++ b/src/csr/BezierCurve.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BezierCurve"; + +export const BezierCurve: Icon = forwardRef((props, ref) => ( + +)); + +BezierCurve.displayName = "BezierCurve"; diff --git a/src/csr/Bicycle.tsx b/src/csr/Bicycle.tsx new file mode 100644 index 000000000..8b9bcb4e4 --- /dev/null +++ b/src/csr/Bicycle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bicycle"; + +export const Bicycle: Icon = forwardRef((props, ref) => ( + +)); + +Bicycle.displayName = "Bicycle"; diff --git a/src/csr/Binoculars.tsx b/src/csr/Binoculars.tsx new file mode 100644 index 000000000..9246206e0 --- /dev/null +++ b/src/csr/Binoculars.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Binoculars"; + +export const Binoculars: Icon = forwardRef((props, ref) => ( + +)); + +Binoculars.displayName = "Binoculars"; diff --git a/src/csr/Bird.tsx b/src/csr/Bird.tsx new file mode 100644 index 000000000..048f8e0b7 --- /dev/null +++ b/src/csr/Bird.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bird"; + +export const Bird: Icon = forwardRef((props, ref) => ( + +)); + +Bird.displayName = "Bird"; diff --git a/src/csr/Bluetooth.tsx b/src/csr/Bluetooth.tsx new file mode 100644 index 000000000..cfa248160 --- /dev/null +++ b/src/csr/Bluetooth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bluetooth"; + +export const Bluetooth: Icon = forwardRef((props, ref) => ( + +)); + +Bluetooth.displayName = "Bluetooth"; diff --git a/src/csr/BluetoothConnected.tsx b/src/csr/BluetoothConnected.tsx new file mode 100644 index 000000000..11d7be25c --- /dev/null +++ b/src/csr/BluetoothConnected.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BluetoothConnected"; + +export const BluetoothConnected: Icon = forwardRef((props, ref) => ( + +)); + +BluetoothConnected.displayName = "BluetoothConnected"; diff --git a/src/csr/BluetoothSlash.tsx b/src/csr/BluetoothSlash.tsx new file mode 100644 index 000000000..b33adfce7 --- /dev/null +++ b/src/csr/BluetoothSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BluetoothSlash"; + +export const BluetoothSlash: Icon = forwardRef((props, ref) => ( + +)); + +BluetoothSlash.displayName = "BluetoothSlash"; diff --git a/src/csr/BluetoothX.tsx b/src/csr/BluetoothX.tsx new file mode 100644 index 000000000..3dd876461 --- /dev/null +++ b/src/csr/BluetoothX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BluetoothX"; + +export const BluetoothX: Icon = forwardRef((props, ref) => ( + +)); + +BluetoothX.displayName = "BluetoothX"; diff --git a/src/csr/Boat.tsx b/src/csr/Boat.tsx new file mode 100644 index 000000000..662e7cb5f --- /dev/null +++ b/src/csr/Boat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Boat"; + +export const Boat: Icon = forwardRef((props, ref) => ( + +)); + +Boat.displayName = "Boat"; diff --git a/src/csr/Bone.tsx b/src/csr/Bone.tsx new file mode 100644 index 000000000..53a1832ac --- /dev/null +++ b/src/csr/Bone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bone"; + +export const Bone: Icon = forwardRef((props, ref) => ( + +)); + +Bone.displayName = "Bone"; diff --git a/src/csr/Book.tsx b/src/csr/Book.tsx new file mode 100644 index 000000000..4c698583d --- /dev/null +++ b/src/csr/Book.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Book"; + +export const Book: Icon = forwardRef((props, ref) => ( + +)); + +Book.displayName = "Book"; diff --git a/src/csr/BookBookmark.tsx b/src/csr/BookBookmark.tsx new file mode 100644 index 000000000..2cb0c2633 --- /dev/null +++ b/src/csr/BookBookmark.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BookBookmark"; + +export const BookBookmark: Icon = forwardRef((props, ref) => ( + +)); + +BookBookmark.displayName = "BookBookmark"; diff --git a/src/csr/BookOpen.tsx b/src/csr/BookOpen.tsx new file mode 100644 index 000000000..5509ebc2f --- /dev/null +++ b/src/csr/BookOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BookOpen"; + +export const BookOpen: Icon = forwardRef((props, ref) => ( + +)); + +BookOpen.displayName = "BookOpen"; diff --git a/src/csr/BookOpenText.tsx b/src/csr/BookOpenText.tsx new file mode 100644 index 000000000..2a9335232 --- /dev/null +++ b/src/csr/BookOpenText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BookOpenText"; + +export const BookOpenText: Icon = forwardRef((props, ref) => ( + +)); + +BookOpenText.displayName = "BookOpenText"; diff --git a/src/csr/Bookmark.tsx b/src/csr/Bookmark.tsx new file mode 100644 index 000000000..263e2ab07 --- /dev/null +++ b/src/csr/Bookmark.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bookmark"; + +export const Bookmark: Icon = forwardRef((props, ref) => ( + +)); + +Bookmark.displayName = "Bookmark"; diff --git a/src/csr/BookmarkSimple.tsx b/src/csr/BookmarkSimple.tsx new file mode 100644 index 000000000..79109b9f3 --- /dev/null +++ b/src/csr/BookmarkSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BookmarkSimple"; + +export const BookmarkSimple: Icon = forwardRef((props, ref) => ( + +)); + +BookmarkSimple.displayName = "BookmarkSimple"; diff --git a/src/csr/Bookmarks.tsx b/src/csr/Bookmarks.tsx new file mode 100644 index 000000000..2829f7979 --- /dev/null +++ b/src/csr/Bookmarks.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bookmarks"; + +export const Bookmarks: Icon = forwardRef((props, ref) => ( + +)); + +Bookmarks.displayName = "Bookmarks"; diff --git a/src/csr/BookmarksSimple.tsx b/src/csr/BookmarksSimple.tsx new file mode 100644 index 000000000..534949610 --- /dev/null +++ b/src/csr/BookmarksSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BookmarksSimple"; + +export const BookmarksSimple: Icon = forwardRef((props, ref) => ( + +)); + +BookmarksSimple.displayName = "BookmarksSimple"; diff --git a/src/csr/Books.tsx b/src/csr/Books.tsx new file mode 100644 index 000000000..36e639846 --- /dev/null +++ b/src/csr/Books.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Books"; + +export const Books: Icon = forwardRef((props, ref) => ( + +)); + +Books.displayName = "Books"; diff --git a/src/csr/Boot.tsx b/src/csr/Boot.tsx new file mode 100644 index 000000000..13f81f0b4 --- /dev/null +++ b/src/csr/Boot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Boot"; + +export const Boot: Icon = forwardRef((props, ref) => ( + +)); + +Boot.displayName = "Boot"; diff --git a/src/csr/BoundingBox.tsx b/src/csr/BoundingBox.tsx new file mode 100644 index 000000000..5808def2e --- /dev/null +++ b/src/csr/BoundingBox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BoundingBox"; + +export const BoundingBox: Icon = forwardRef((props, ref) => ( + +)); + +BoundingBox.displayName = "BoundingBox"; diff --git a/src/csr/BowlFood.tsx b/src/csr/BowlFood.tsx new file mode 100644 index 000000000..8a3f5b49b --- /dev/null +++ b/src/csr/BowlFood.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BowlFood"; + +export const BowlFood: Icon = forwardRef((props, ref) => ( + +)); + +BowlFood.displayName = "BowlFood"; diff --git a/src/csr/BracketsAngle.tsx b/src/csr/BracketsAngle.tsx new file mode 100644 index 000000000..31b212d4d --- /dev/null +++ b/src/csr/BracketsAngle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BracketsAngle"; + +export const BracketsAngle: Icon = forwardRef((props, ref) => ( + +)); + +BracketsAngle.displayName = "BracketsAngle"; diff --git a/src/csr/BracketsCurly.tsx b/src/csr/BracketsCurly.tsx new file mode 100644 index 000000000..016f68130 --- /dev/null +++ b/src/csr/BracketsCurly.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BracketsCurly"; + +export const BracketsCurly: Icon = forwardRef((props, ref) => ( + +)); + +BracketsCurly.displayName = "BracketsCurly"; diff --git a/src/csr/BracketsRound.tsx b/src/csr/BracketsRound.tsx new file mode 100644 index 000000000..111750012 --- /dev/null +++ b/src/csr/BracketsRound.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BracketsRound"; + +export const BracketsRound: Icon = forwardRef((props, ref) => ( + +)); + +BracketsRound.displayName = "BracketsRound"; diff --git a/src/csr/BracketsSquare.tsx b/src/csr/BracketsSquare.tsx new file mode 100644 index 000000000..e2f5d6b12 --- /dev/null +++ b/src/csr/BracketsSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BracketsSquare"; + +export const BracketsSquare: Icon = forwardRef((props, ref) => ( + +)); + +BracketsSquare.displayName = "BracketsSquare"; diff --git a/src/csr/Brain.tsx b/src/csr/Brain.tsx new file mode 100644 index 000000000..c65108812 --- /dev/null +++ b/src/csr/Brain.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Brain"; + +export const Brain: Icon = forwardRef((props, ref) => ( + +)); + +Brain.displayName = "Brain"; diff --git a/src/csr/Brandy.tsx b/src/csr/Brandy.tsx new file mode 100644 index 000000000..0a2c85497 --- /dev/null +++ b/src/csr/Brandy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Brandy"; + +export const Brandy: Icon = forwardRef((props, ref) => ( + +)); + +Brandy.displayName = "Brandy"; diff --git a/src/csr/Bridge.tsx b/src/csr/Bridge.tsx new file mode 100644 index 000000000..1e6036f44 --- /dev/null +++ b/src/csr/Bridge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bridge"; + +export const Bridge: Icon = forwardRef((props, ref) => ( + +)); + +Bridge.displayName = "Bridge"; diff --git a/src/csr/Briefcase.tsx b/src/csr/Briefcase.tsx new file mode 100644 index 000000000..0485b8d4a --- /dev/null +++ b/src/csr/Briefcase.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Briefcase"; + +export const Briefcase: Icon = forwardRef((props, ref) => ( + +)); + +Briefcase.displayName = "Briefcase"; diff --git a/src/csr/BriefcaseMetal.tsx b/src/csr/BriefcaseMetal.tsx new file mode 100644 index 000000000..d9166b1d8 --- /dev/null +++ b/src/csr/BriefcaseMetal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BriefcaseMetal"; + +export const BriefcaseMetal: Icon = forwardRef((props, ref) => ( + +)); + +BriefcaseMetal.displayName = "BriefcaseMetal"; diff --git a/src/csr/Broadcast.tsx b/src/csr/Broadcast.tsx new file mode 100644 index 000000000..68de86d12 --- /dev/null +++ b/src/csr/Broadcast.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Broadcast"; + +export const Broadcast: Icon = forwardRef((props, ref) => ( + +)); + +Broadcast.displayName = "Broadcast"; diff --git a/src/csr/Broom.tsx b/src/csr/Broom.tsx new file mode 100644 index 000000000..0650861a7 --- /dev/null +++ b/src/csr/Broom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Broom"; + +export const Broom: Icon = forwardRef((props, ref) => ( + +)); + +Broom.displayName = "Broom"; diff --git a/src/csr/Browser.tsx b/src/csr/Browser.tsx new file mode 100644 index 000000000..8198c1384 --- /dev/null +++ b/src/csr/Browser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Browser"; + +export const Browser: Icon = forwardRef((props, ref) => ( + +)); + +Browser.displayName = "Browser"; diff --git a/src/csr/Browsers.tsx b/src/csr/Browsers.tsx new file mode 100644 index 000000000..04c110d62 --- /dev/null +++ b/src/csr/Browsers.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Browsers"; + +export const Browsers: Icon = forwardRef((props, ref) => ( + +)); + +Browsers.displayName = "Browsers"; diff --git a/src/csr/Bug.tsx b/src/csr/Bug.tsx new file mode 100644 index 000000000..b3100b59c --- /dev/null +++ b/src/csr/Bug.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bug"; + +export const Bug: Icon = forwardRef((props, ref) => ( + +)); + +Bug.displayName = "Bug"; diff --git a/src/csr/BugBeetle.tsx b/src/csr/BugBeetle.tsx new file mode 100644 index 000000000..1f9d5acee --- /dev/null +++ b/src/csr/BugBeetle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BugBeetle"; + +export const BugBeetle: Icon = forwardRef((props, ref) => ( + +)); + +BugBeetle.displayName = "BugBeetle"; diff --git a/src/csr/BugDroid.tsx b/src/csr/BugDroid.tsx new file mode 100644 index 000000000..d25604d96 --- /dev/null +++ b/src/csr/BugDroid.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/BugDroid"; + +export const BugDroid: Icon = forwardRef((props, ref) => ( + +)); + +BugDroid.displayName = "BugDroid"; diff --git a/src/csr/Buildings.tsx b/src/csr/Buildings.tsx new file mode 100644 index 000000000..7f055bf82 --- /dev/null +++ b/src/csr/Buildings.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Buildings"; + +export const Buildings: Icon = forwardRef((props, ref) => ( + +)); + +Buildings.displayName = "Buildings"; diff --git a/src/csr/Bus.tsx b/src/csr/Bus.tsx new file mode 100644 index 000000000..cab26e052 --- /dev/null +++ b/src/csr/Bus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Bus"; + +export const Bus: Icon = forwardRef((props, ref) => ( + +)); + +Bus.displayName = "Bus"; diff --git a/src/csr/Butterfly.tsx b/src/csr/Butterfly.tsx new file mode 100644 index 000000000..06b2937bb --- /dev/null +++ b/src/csr/Butterfly.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Butterfly"; + +export const Butterfly: Icon = forwardRef((props, ref) => ( + +)); + +Butterfly.displayName = "Butterfly"; diff --git a/src/csr/Cactus.tsx b/src/csr/Cactus.tsx new file mode 100644 index 000000000..af709527e --- /dev/null +++ b/src/csr/Cactus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cactus"; + +export const Cactus: Icon = forwardRef((props, ref) => ( + +)); + +Cactus.displayName = "Cactus"; diff --git a/src/csr/Cake.tsx b/src/csr/Cake.tsx new file mode 100644 index 000000000..76c92f82f --- /dev/null +++ b/src/csr/Cake.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cake"; + +export const Cake: Icon = forwardRef((props, ref) => ( + +)); + +Cake.displayName = "Cake"; diff --git a/src/csr/Calculator.tsx b/src/csr/Calculator.tsx new file mode 100644 index 000000000..9d525e080 --- /dev/null +++ b/src/csr/Calculator.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Calculator"; + +export const Calculator: Icon = forwardRef((props, ref) => ( + +)); + +Calculator.displayName = "Calculator"; diff --git a/src/csr/Calendar.tsx b/src/csr/Calendar.tsx new file mode 100644 index 000000000..8144b9163 --- /dev/null +++ b/src/csr/Calendar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Calendar"; + +export const Calendar: Icon = forwardRef((props, ref) => ( + +)); + +Calendar.displayName = "Calendar"; diff --git a/src/csr/CalendarBlank.tsx b/src/csr/CalendarBlank.tsx new file mode 100644 index 000000000..448d92d2d --- /dev/null +++ b/src/csr/CalendarBlank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CalendarBlank"; + +export const CalendarBlank: Icon = forwardRef((props, ref) => ( + +)); + +CalendarBlank.displayName = "CalendarBlank"; diff --git a/src/csr/CalendarCheck.tsx b/src/csr/CalendarCheck.tsx new file mode 100644 index 000000000..087104708 --- /dev/null +++ b/src/csr/CalendarCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CalendarCheck"; + +export const CalendarCheck: Icon = forwardRef((props, ref) => ( + +)); + +CalendarCheck.displayName = "CalendarCheck"; diff --git a/src/csr/CalendarPlus.tsx b/src/csr/CalendarPlus.tsx new file mode 100644 index 000000000..7ab0c29ab --- /dev/null +++ b/src/csr/CalendarPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CalendarPlus"; + +export const CalendarPlus: Icon = forwardRef((props, ref) => ( + +)); + +CalendarPlus.displayName = "CalendarPlus"; diff --git a/src/csr/CalendarX.tsx b/src/csr/CalendarX.tsx new file mode 100644 index 000000000..42dd7df13 --- /dev/null +++ b/src/csr/CalendarX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CalendarX"; + +export const CalendarX: Icon = forwardRef((props, ref) => ( + +)); + +CalendarX.displayName = "CalendarX"; diff --git a/src/csr/CallBell.tsx b/src/csr/CallBell.tsx new file mode 100644 index 000000000..76c5b0410 --- /dev/null +++ b/src/csr/CallBell.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CallBell"; + +export const CallBell: Icon = forwardRef((props, ref) => ( + +)); + +CallBell.displayName = "CallBell"; diff --git a/src/csr/Camera.tsx b/src/csr/Camera.tsx new file mode 100644 index 000000000..e0ad3dc50 --- /dev/null +++ b/src/csr/Camera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Camera"; + +export const Camera: Icon = forwardRef((props, ref) => ( + +)); + +Camera.displayName = "Camera"; diff --git a/src/csr/CameraPlus.tsx b/src/csr/CameraPlus.tsx new file mode 100644 index 000000000..9197987d7 --- /dev/null +++ b/src/csr/CameraPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CameraPlus"; + +export const CameraPlus: Icon = forwardRef((props, ref) => ( + +)); + +CameraPlus.displayName = "CameraPlus"; diff --git a/src/csr/CameraRotate.tsx b/src/csr/CameraRotate.tsx new file mode 100644 index 000000000..5a6c67ca9 --- /dev/null +++ b/src/csr/CameraRotate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CameraRotate"; + +export const CameraRotate: Icon = forwardRef((props, ref) => ( + +)); + +CameraRotate.displayName = "CameraRotate"; diff --git a/src/csr/CameraSlash.tsx b/src/csr/CameraSlash.tsx new file mode 100644 index 000000000..be3be9b7d --- /dev/null +++ b/src/csr/CameraSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CameraSlash"; + +export const CameraSlash: Icon = forwardRef((props, ref) => ( + +)); + +CameraSlash.displayName = "CameraSlash"; diff --git a/src/csr/Campfire.tsx b/src/csr/Campfire.tsx new file mode 100644 index 000000000..b230563aa --- /dev/null +++ b/src/csr/Campfire.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Campfire"; + +export const Campfire: Icon = forwardRef((props, ref) => ( + +)); + +Campfire.displayName = "Campfire"; diff --git a/src/csr/Car.tsx b/src/csr/Car.tsx new file mode 100644 index 000000000..dce7df168 --- /dev/null +++ b/src/csr/Car.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Car"; + +export const Car: Icon = forwardRef((props, ref) => ( + +)); + +Car.displayName = "Car"; diff --git a/src/csr/CarProfile.tsx b/src/csr/CarProfile.tsx new file mode 100644 index 000000000..4b25031ea --- /dev/null +++ b/src/csr/CarProfile.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CarProfile"; + +export const CarProfile: Icon = forwardRef((props, ref) => ( + +)); + +CarProfile.displayName = "CarProfile"; diff --git a/src/csr/CarSimple.tsx b/src/csr/CarSimple.tsx new file mode 100644 index 000000000..78a6f6e9a --- /dev/null +++ b/src/csr/CarSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CarSimple"; + +export const CarSimple: Icon = forwardRef((props, ref) => ( + +)); + +CarSimple.displayName = "CarSimple"; diff --git a/src/csr/Cardholder.tsx b/src/csr/Cardholder.tsx new file mode 100644 index 000000000..889a55329 --- /dev/null +++ b/src/csr/Cardholder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cardholder"; + +export const Cardholder: Icon = forwardRef((props, ref) => ( + +)); + +Cardholder.displayName = "Cardholder"; diff --git a/src/csr/Cards.tsx b/src/csr/Cards.tsx new file mode 100644 index 000000000..2218b6d6d --- /dev/null +++ b/src/csr/Cards.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cards"; + +export const Cards: Icon = forwardRef((props, ref) => ( + +)); + +Cards.displayName = "Cards"; diff --git a/src/csr/CaretCircleDoubleDown.tsx b/src/csr/CaretCircleDoubleDown.tsx new file mode 100644 index 000000000..59189b292 --- /dev/null +++ b/src/csr/CaretCircleDoubleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleDoubleDown"; + +export const CaretCircleDoubleDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleDown.displayName = "CaretCircleDoubleDown"; diff --git a/src/csr/CaretCircleDoubleLeft.tsx b/src/csr/CaretCircleDoubleLeft.tsx new file mode 100644 index 000000000..d5b33b13a --- /dev/null +++ b/src/csr/CaretCircleDoubleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleDoubleLeft"; + +export const CaretCircleDoubleLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleLeft.displayName = "CaretCircleDoubleLeft"; diff --git a/src/csr/CaretCircleDoubleRight.tsx b/src/csr/CaretCircleDoubleRight.tsx new file mode 100644 index 000000000..a00da1b0c --- /dev/null +++ b/src/csr/CaretCircleDoubleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleDoubleRight"; + +export const CaretCircleDoubleRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleRight.displayName = "CaretCircleDoubleRight"; diff --git a/src/csr/CaretCircleDoubleUp.tsx b/src/csr/CaretCircleDoubleUp.tsx new file mode 100644 index 000000000..7cb700ee2 --- /dev/null +++ b/src/csr/CaretCircleDoubleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleDoubleUp"; + +export const CaretCircleDoubleUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleUp.displayName = "CaretCircleDoubleUp"; diff --git a/src/csr/CaretCircleDown.tsx b/src/csr/CaretCircleDown.tsx new file mode 100644 index 000000000..1e561dbc2 --- /dev/null +++ b/src/csr/CaretCircleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleDown"; + +export const CaretCircleDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDown.displayName = "CaretCircleDown"; diff --git a/src/csr/CaretCircleLeft.tsx b/src/csr/CaretCircleLeft.tsx new file mode 100644 index 000000000..dfea1b6a9 --- /dev/null +++ b/src/csr/CaretCircleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleLeft"; + +export const CaretCircleLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleLeft.displayName = "CaretCircleLeft"; diff --git a/src/csr/CaretCircleRight.tsx b/src/csr/CaretCircleRight.tsx new file mode 100644 index 000000000..c7b084221 --- /dev/null +++ b/src/csr/CaretCircleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleRight"; + +export const CaretCircleRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleRight.displayName = "CaretCircleRight"; diff --git a/src/csr/CaretCircleUp.tsx b/src/csr/CaretCircleUp.tsx new file mode 100644 index 000000000..631c5468b --- /dev/null +++ b/src/csr/CaretCircleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleUp"; + +export const CaretCircleUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleUp.displayName = "CaretCircleUp"; diff --git a/src/csr/CaretCircleUpDown.tsx b/src/csr/CaretCircleUpDown.tsx new file mode 100644 index 000000000..bb82fb97b --- /dev/null +++ b/src/csr/CaretCircleUpDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretCircleUpDown"; + +export const CaretCircleUpDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleUpDown.displayName = "CaretCircleUpDown"; diff --git a/src/csr/CaretDoubleDown.tsx b/src/csr/CaretDoubleDown.tsx new file mode 100644 index 000000000..b15a29731 --- /dev/null +++ b/src/csr/CaretDoubleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretDoubleDown"; + +export const CaretDoubleDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleDown.displayName = "CaretDoubleDown"; diff --git a/src/csr/CaretDoubleLeft.tsx b/src/csr/CaretDoubleLeft.tsx new file mode 100644 index 000000000..ecf3ba645 --- /dev/null +++ b/src/csr/CaretDoubleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretDoubleLeft"; + +export const CaretDoubleLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleLeft.displayName = "CaretDoubleLeft"; diff --git a/src/csr/CaretDoubleRight.tsx b/src/csr/CaretDoubleRight.tsx new file mode 100644 index 000000000..f5a2cbff3 --- /dev/null +++ b/src/csr/CaretDoubleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretDoubleRight"; + +export const CaretDoubleRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleRight.displayName = "CaretDoubleRight"; diff --git a/src/csr/CaretDoubleUp.tsx b/src/csr/CaretDoubleUp.tsx new file mode 100644 index 000000000..a2123c254 --- /dev/null +++ b/src/csr/CaretDoubleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretDoubleUp"; + +export const CaretDoubleUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleUp.displayName = "CaretDoubleUp"; diff --git a/src/csr/CaretDown.tsx b/src/csr/CaretDown.tsx new file mode 100644 index 000000000..83dec3644 --- /dev/null +++ b/src/csr/CaretDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretDown"; + +export const CaretDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretDown.displayName = "CaretDown"; diff --git a/src/csr/CaretLeft.tsx b/src/csr/CaretLeft.tsx new file mode 100644 index 000000000..a58cfbde5 --- /dev/null +++ b/src/csr/CaretLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretLeft"; + +export const CaretLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretLeft.displayName = "CaretLeft"; diff --git a/src/csr/CaretRight.tsx b/src/csr/CaretRight.tsx new file mode 100644 index 000000000..2e1093342 --- /dev/null +++ b/src/csr/CaretRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretRight"; + +export const CaretRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretRight.displayName = "CaretRight"; diff --git a/src/csr/CaretUp.tsx b/src/csr/CaretUp.tsx new file mode 100644 index 000000000..f73ffbf81 --- /dev/null +++ b/src/csr/CaretUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretUp"; + +export const CaretUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretUp.displayName = "CaretUp"; diff --git a/src/csr/CaretUpDown.tsx b/src/csr/CaretUpDown.tsx new file mode 100644 index 000000000..c9f0f5cc0 --- /dev/null +++ b/src/csr/CaretUpDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CaretUpDown"; + +export const CaretUpDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretUpDown.displayName = "CaretUpDown"; diff --git a/src/csr/Carrot.tsx b/src/csr/Carrot.tsx new file mode 100644 index 000000000..c9afe0317 --- /dev/null +++ b/src/csr/Carrot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Carrot"; + +export const Carrot: Icon = forwardRef((props, ref) => ( + +)); + +Carrot.displayName = "Carrot"; diff --git a/src/csr/CassetteTape.tsx b/src/csr/CassetteTape.tsx new file mode 100644 index 000000000..069be47eb --- /dev/null +++ b/src/csr/CassetteTape.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CassetteTape"; + +export const CassetteTape: Icon = forwardRef((props, ref) => ( + +)); + +CassetteTape.displayName = "CassetteTape"; diff --git a/src/csr/CastleTurret.tsx b/src/csr/CastleTurret.tsx new file mode 100644 index 000000000..7f0dcd773 --- /dev/null +++ b/src/csr/CastleTurret.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CastleTurret"; + +export const CastleTurret: Icon = forwardRef((props, ref) => ( + +)); + +CastleTurret.displayName = "CastleTurret"; diff --git a/src/csr/Cat.tsx b/src/csr/Cat.tsx new file mode 100644 index 000000000..3a78930f4 --- /dev/null +++ b/src/csr/Cat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cat"; + +export const Cat: Icon = forwardRef((props, ref) => ( + +)); + +Cat.displayName = "Cat"; diff --git a/src/csr/CellSignalFull.tsx b/src/csr/CellSignalFull.tsx new file mode 100644 index 000000000..7c0bb3acc --- /dev/null +++ b/src/csr/CellSignalFull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CellSignalFull"; + +export const CellSignalFull: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalFull.displayName = "CellSignalFull"; diff --git a/src/csr/CellSignalHigh.tsx b/src/csr/CellSignalHigh.tsx new file mode 100644 index 000000000..1049f6583 --- /dev/null +++ b/src/csr/CellSignalHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CellSignalHigh"; + +export const CellSignalHigh: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalHigh.displayName = "CellSignalHigh"; diff --git a/src/csr/CellSignalLow.tsx b/src/csr/CellSignalLow.tsx new file mode 100644 index 000000000..6d7167784 --- /dev/null +++ b/src/csr/CellSignalLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CellSignalLow"; + +export const CellSignalLow: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalLow.displayName = "CellSignalLow"; diff --git a/src/csr/CellSignalMedium.tsx b/src/csr/CellSignalMedium.tsx new file mode 100644 index 000000000..70920e498 --- /dev/null +++ b/src/csr/CellSignalMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CellSignalMedium"; + +export const CellSignalMedium: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalMedium.displayName = "CellSignalMedium"; diff --git a/src/csr/CellSignalNone.tsx b/src/csr/CellSignalNone.tsx new file mode 100644 index 000000000..e038cfc41 --- /dev/null +++ b/src/csr/CellSignalNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CellSignalNone"; + +export const CellSignalNone: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalNone.displayName = "CellSignalNone"; diff --git a/src/csr/CellSignalSlash.tsx b/src/csr/CellSignalSlash.tsx new file mode 100644 index 000000000..ecaadbca8 --- /dev/null +++ b/src/csr/CellSignalSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CellSignalSlash"; + +export const CellSignalSlash: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalSlash.displayName = "CellSignalSlash"; diff --git a/src/csr/CellSignalX.tsx b/src/csr/CellSignalX.tsx new file mode 100644 index 000000000..4e32c02a5 --- /dev/null +++ b/src/csr/CellSignalX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CellSignalX"; + +export const CellSignalX: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalX.displayName = "CellSignalX"; diff --git a/src/csr/Certificate.tsx b/src/csr/Certificate.tsx new file mode 100644 index 000000000..14f7010ae --- /dev/null +++ b/src/csr/Certificate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Certificate"; + +export const Certificate: Icon = forwardRef((props, ref) => ( + +)); + +Certificate.displayName = "Certificate"; diff --git a/src/csr/Chair.tsx b/src/csr/Chair.tsx new file mode 100644 index 000000000..559605a8b --- /dev/null +++ b/src/csr/Chair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Chair"; + +export const Chair: Icon = forwardRef((props, ref) => ( + +)); + +Chair.displayName = "Chair"; diff --git a/src/csr/Chalkboard.tsx b/src/csr/Chalkboard.tsx new file mode 100644 index 000000000..1371d66fe --- /dev/null +++ b/src/csr/Chalkboard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Chalkboard"; + +export const Chalkboard: Icon = forwardRef((props, ref) => ( + +)); + +Chalkboard.displayName = "Chalkboard"; diff --git a/src/csr/ChalkboardSimple.tsx b/src/csr/ChalkboardSimple.tsx new file mode 100644 index 000000000..36445035f --- /dev/null +++ b/src/csr/ChalkboardSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChalkboardSimple"; + +export const ChalkboardSimple: Icon = forwardRef((props, ref) => ( + +)); + +ChalkboardSimple.displayName = "ChalkboardSimple"; diff --git a/src/csr/ChalkboardTeacher.tsx b/src/csr/ChalkboardTeacher.tsx new file mode 100644 index 000000000..b9d755afc --- /dev/null +++ b/src/csr/ChalkboardTeacher.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChalkboardTeacher"; + +export const ChalkboardTeacher: Icon = forwardRef((props, ref) => ( + +)); + +ChalkboardTeacher.displayName = "ChalkboardTeacher"; diff --git a/src/csr/Champagne.tsx b/src/csr/Champagne.tsx new file mode 100644 index 000000000..9ecd94e35 --- /dev/null +++ b/src/csr/Champagne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Champagne"; + +export const Champagne: Icon = forwardRef((props, ref) => ( + +)); + +Champagne.displayName = "Champagne"; diff --git a/src/csr/ChargingStation.tsx b/src/csr/ChargingStation.tsx new file mode 100644 index 000000000..b3eccf79d --- /dev/null +++ b/src/csr/ChargingStation.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChargingStation"; + +export const ChargingStation: Icon = forwardRef((props, ref) => ( + +)); + +ChargingStation.displayName = "ChargingStation"; diff --git a/src/csr/ChartBar.tsx b/src/csr/ChartBar.tsx new file mode 100644 index 000000000..268a6f585 --- /dev/null +++ b/src/csr/ChartBar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartBar"; + +export const ChartBar: Icon = forwardRef((props, ref) => ( + +)); + +ChartBar.displayName = "ChartBar"; diff --git a/src/csr/ChartBarHorizontal.tsx b/src/csr/ChartBarHorizontal.tsx new file mode 100644 index 000000000..2082c0aa0 --- /dev/null +++ b/src/csr/ChartBarHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartBarHorizontal"; + +export const ChartBarHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ChartBarHorizontal.displayName = "ChartBarHorizontal"; diff --git a/src/csr/ChartDonut.tsx b/src/csr/ChartDonut.tsx new file mode 100644 index 000000000..982716f77 --- /dev/null +++ b/src/csr/ChartDonut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartDonut"; + +export const ChartDonut: Icon = forwardRef((props, ref) => ( + +)); + +ChartDonut.displayName = "ChartDonut"; diff --git a/src/csr/ChartLine.tsx b/src/csr/ChartLine.tsx new file mode 100644 index 000000000..7c43bb566 --- /dev/null +++ b/src/csr/ChartLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartLine"; + +export const ChartLine: Icon = forwardRef((props, ref) => ( + +)); + +ChartLine.displayName = "ChartLine"; diff --git a/src/csr/ChartLineDown.tsx b/src/csr/ChartLineDown.tsx new file mode 100644 index 000000000..33af6277d --- /dev/null +++ b/src/csr/ChartLineDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartLineDown"; + +export const ChartLineDown: Icon = forwardRef((props, ref) => ( + +)); + +ChartLineDown.displayName = "ChartLineDown"; diff --git a/src/csr/ChartLineUp.tsx b/src/csr/ChartLineUp.tsx new file mode 100644 index 000000000..065286345 --- /dev/null +++ b/src/csr/ChartLineUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartLineUp"; + +export const ChartLineUp: Icon = forwardRef((props, ref) => ( + +)); + +ChartLineUp.displayName = "ChartLineUp"; diff --git a/src/csr/ChartPie.tsx b/src/csr/ChartPie.tsx new file mode 100644 index 000000000..b4bab81e7 --- /dev/null +++ b/src/csr/ChartPie.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartPie"; + +export const ChartPie: Icon = forwardRef((props, ref) => ( + +)); + +ChartPie.displayName = "ChartPie"; diff --git a/src/csr/ChartPieSlice.tsx b/src/csr/ChartPieSlice.tsx new file mode 100644 index 000000000..3e51db3d2 --- /dev/null +++ b/src/csr/ChartPieSlice.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartPieSlice"; + +export const ChartPieSlice: Icon = forwardRef((props, ref) => ( + +)); + +ChartPieSlice.displayName = "ChartPieSlice"; diff --git a/src/csr/ChartPolar.tsx b/src/csr/ChartPolar.tsx new file mode 100644 index 000000000..9f1b0f353 --- /dev/null +++ b/src/csr/ChartPolar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartPolar"; + +export const ChartPolar: Icon = forwardRef((props, ref) => ( + +)); + +ChartPolar.displayName = "ChartPolar"; diff --git a/src/csr/ChartScatter.tsx b/src/csr/ChartScatter.tsx new file mode 100644 index 000000000..665518e6d --- /dev/null +++ b/src/csr/ChartScatter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChartScatter"; + +export const ChartScatter: Icon = forwardRef((props, ref) => ( + +)); + +ChartScatter.displayName = "ChartScatter"; diff --git a/src/csr/Chat.tsx b/src/csr/Chat.tsx new file mode 100644 index 000000000..70503acd3 --- /dev/null +++ b/src/csr/Chat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Chat"; + +export const Chat: Icon = forwardRef((props, ref) => ( + +)); + +Chat.displayName = "Chat"; diff --git a/src/csr/ChatCentered.tsx b/src/csr/ChatCentered.tsx new file mode 100644 index 000000000..0967afae8 --- /dev/null +++ b/src/csr/ChatCentered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatCentered"; + +export const ChatCentered: Icon = forwardRef((props, ref) => ( + +)); + +ChatCentered.displayName = "ChatCentered"; diff --git a/src/csr/ChatCenteredDots.tsx b/src/csr/ChatCenteredDots.tsx new file mode 100644 index 000000000..72b28eb89 --- /dev/null +++ b/src/csr/ChatCenteredDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatCenteredDots"; + +export const ChatCenteredDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatCenteredDots.displayName = "ChatCenteredDots"; diff --git a/src/csr/ChatCenteredText.tsx b/src/csr/ChatCenteredText.tsx new file mode 100644 index 000000000..5253ef1de --- /dev/null +++ b/src/csr/ChatCenteredText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatCenteredText"; + +export const ChatCenteredText: Icon = forwardRef((props, ref) => ( + +)); + +ChatCenteredText.displayName = "ChatCenteredText"; diff --git a/src/csr/ChatCircle.tsx b/src/csr/ChatCircle.tsx new file mode 100644 index 000000000..024209561 --- /dev/null +++ b/src/csr/ChatCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatCircle"; + +export const ChatCircle: Icon = forwardRef((props, ref) => ( + +)); + +ChatCircle.displayName = "ChatCircle"; diff --git a/src/csr/ChatCircleDots.tsx b/src/csr/ChatCircleDots.tsx new file mode 100644 index 000000000..da8d940b8 --- /dev/null +++ b/src/csr/ChatCircleDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatCircleDots"; + +export const ChatCircleDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatCircleDots.displayName = "ChatCircleDots"; diff --git a/src/csr/ChatCircleText.tsx b/src/csr/ChatCircleText.tsx new file mode 100644 index 000000000..869327cf0 --- /dev/null +++ b/src/csr/ChatCircleText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatCircleText"; + +export const ChatCircleText: Icon = forwardRef((props, ref) => ( + +)); + +ChatCircleText.displayName = "ChatCircleText"; diff --git a/src/csr/ChatDots.tsx b/src/csr/ChatDots.tsx new file mode 100644 index 000000000..f10d1f750 --- /dev/null +++ b/src/csr/ChatDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatDots"; + +export const ChatDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatDots.displayName = "ChatDots"; diff --git a/src/csr/ChatTeardrop.tsx b/src/csr/ChatTeardrop.tsx new file mode 100644 index 000000000..7664be4e1 --- /dev/null +++ b/src/csr/ChatTeardrop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatTeardrop"; + +export const ChatTeardrop: Icon = forwardRef((props, ref) => ( + +)); + +ChatTeardrop.displayName = "ChatTeardrop"; diff --git a/src/csr/ChatTeardropDots.tsx b/src/csr/ChatTeardropDots.tsx new file mode 100644 index 000000000..bdeed13a8 --- /dev/null +++ b/src/csr/ChatTeardropDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatTeardropDots"; + +export const ChatTeardropDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatTeardropDots.displayName = "ChatTeardropDots"; diff --git a/src/csr/ChatTeardropText.tsx b/src/csr/ChatTeardropText.tsx new file mode 100644 index 000000000..83dce91d3 --- /dev/null +++ b/src/csr/ChatTeardropText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatTeardropText"; + +export const ChatTeardropText: Icon = forwardRef((props, ref) => ( + +)); + +ChatTeardropText.displayName = "ChatTeardropText"; diff --git a/src/csr/ChatText.tsx b/src/csr/ChatText.tsx new file mode 100644 index 000000000..349878cc1 --- /dev/null +++ b/src/csr/ChatText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatText"; + +export const ChatText: Icon = forwardRef((props, ref) => ( + +)); + +ChatText.displayName = "ChatText"; diff --git a/src/csr/Chats.tsx b/src/csr/Chats.tsx new file mode 100644 index 000000000..57c194a8d --- /dev/null +++ b/src/csr/Chats.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Chats"; + +export const Chats: Icon = forwardRef((props, ref) => ( + +)); + +Chats.displayName = "Chats"; diff --git a/src/csr/ChatsCircle.tsx b/src/csr/ChatsCircle.tsx new file mode 100644 index 000000000..ba70b6c03 --- /dev/null +++ b/src/csr/ChatsCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatsCircle"; + +export const ChatsCircle: Icon = forwardRef((props, ref) => ( + +)); + +ChatsCircle.displayName = "ChatsCircle"; diff --git a/src/csr/ChatsTeardrop.tsx b/src/csr/ChatsTeardrop.tsx new file mode 100644 index 000000000..30a02cc90 --- /dev/null +++ b/src/csr/ChatsTeardrop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ChatsTeardrop"; + +export const ChatsTeardrop: Icon = forwardRef((props, ref) => ( + +)); + +ChatsTeardrop.displayName = "ChatsTeardrop"; diff --git a/src/csr/Check.tsx b/src/csr/Check.tsx new file mode 100644 index 000000000..9e13eb9f9 --- /dev/null +++ b/src/csr/Check.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Check"; + +export const Check: Icon = forwardRef((props, ref) => ( + +)); + +Check.displayName = "Check"; diff --git a/src/csr/CheckCircle.tsx b/src/csr/CheckCircle.tsx new file mode 100644 index 000000000..f7595a95c --- /dev/null +++ b/src/csr/CheckCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CheckCircle"; + +export const CheckCircle: Icon = forwardRef((props, ref) => ( + +)); + +CheckCircle.displayName = "CheckCircle"; diff --git a/src/csr/CheckFat.tsx b/src/csr/CheckFat.tsx new file mode 100644 index 000000000..398345d9e --- /dev/null +++ b/src/csr/CheckFat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CheckFat"; + +export const CheckFat: Icon = forwardRef((props, ref) => ( + +)); + +CheckFat.displayName = "CheckFat"; diff --git a/src/csr/CheckSquare.tsx b/src/csr/CheckSquare.tsx new file mode 100644 index 000000000..ca81a916f --- /dev/null +++ b/src/csr/CheckSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CheckSquare"; + +export const CheckSquare: Icon = forwardRef((props, ref) => ( + +)); + +CheckSquare.displayName = "CheckSquare"; diff --git a/src/csr/CheckSquareOffset.tsx b/src/csr/CheckSquareOffset.tsx new file mode 100644 index 000000000..34e75cc21 --- /dev/null +++ b/src/csr/CheckSquareOffset.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CheckSquareOffset"; + +export const CheckSquareOffset: Icon = forwardRef((props, ref) => ( + +)); + +CheckSquareOffset.displayName = "CheckSquareOffset"; diff --git a/src/csr/Checks.tsx b/src/csr/Checks.tsx new file mode 100644 index 000000000..73ec224ea --- /dev/null +++ b/src/csr/Checks.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Checks"; + +export const Checks: Icon = forwardRef((props, ref) => ( + +)); + +Checks.displayName = "Checks"; diff --git a/src/csr/Church.tsx b/src/csr/Church.tsx new file mode 100644 index 000000000..8fe4c8dfd --- /dev/null +++ b/src/csr/Church.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Church"; + +export const Church: Icon = forwardRef((props, ref) => ( + +)); + +Church.displayName = "Church"; diff --git a/src/csr/Circle.tsx b/src/csr/Circle.tsx new file mode 100644 index 000000000..15970198b --- /dev/null +++ b/src/csr/Circle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Circle"; + +export const Circle: Icon = forwardRef((props, ref) => ( + +)); + +Circle.displayName = "Circle"; diff --git a/src/csr/CircleDashed.tsx b/src/csr/CircleDashed.tsx new file mode 100644 index 000000000..a73e71826 --- /dev/null +++ b/src/csr/CircleDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CircleDashed"; + +export const CircleDashed: Icon = forwardRef((props, ref) => ( + +)); + +CircleDashed.displayName = "CircleDashed"; diff --git a/src/csr/CircleHalf.tsx b/src/csr/CircleHalf.tsx new file mode 100644 index 000000000..e156788a9 --- /dev/null +++ b/src/csr/CircleHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CircleHalf"; + +export const CircleHalf: Icon = forwardRef((props, ref) => ( + +)); + +CircleHalf.displayName = "CircleHalf"; diff --git a/src/csr/CircleHalfTilt.tsx b/src/csr/CircleHalfTilt.tsx new file mode 100644 index 000000000..3cfd51577 --- /dev/null +++ b/src/csr/CircleHalfTilt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CircleHalfTilt"; + +export const CircleHalfTilt: Icon = forwardRef((props, ref) => ( + +)); + +CircleHalfTilt.displayName = "CircleHalfTilt"; diff --git a/src/csr/CircleNotch.tsx b/src/csr/CircleNotch.tsx new file mode 100644 index 000000000..562d7b888 --- /dev/null +++ b/src/csr/CircleNotch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CircleNotch"; + +export const CircleNotch: Icon = forwardRef((props, ref) => ( + +)); + +CircleNotch.displayName = "CircleNotch"; diff --git a/src/csr/CirclesFour.tsx b/src/csr/CirclesFour.tsx new file mode 100644 index 000000000..d66f3774a --- /dev/null +++ b/src/csr/CirclesFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CirclesFour"; + +export const CirclesFour: Icon = forwardRef((props, ref) => ( + +)); + +CirclesFour.displayName = "CirclesFour"; diff --git a/src/csr/CirclesThree.tsx b/src/csr/CirclesThree.tsx new file mode 100644 index 000000000..28d608b3d --- /dev/null +++ b/src/csr/CirclesThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CirclesThree"; + +export const CirclesThree: Icon = forwardRef((props, ref) => ( + +)); + +CirclesThree.displayName = "CirclesThree"; diff --git a/src/csr/CirclesThreePlus.tsx b/src/csr/CirclesThreePlus.tsx new file mode 100644 index 000000000..0e06b88ac --- /dev/null +++ b/src/csr/CirclesThreePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CirclesThreePlus"; + +export const CirclesThreePlus: Icon = forwardRef((props, ref) => ( + +)); + +CirclesThreePlus.displayName = "CirclesThreePlus"; diff --git a/src/csr/Circuitry.tsx b/src/csr/Circuitry.tsx new file mode 100644 index 000000000..3876bff11 --- /dev/null +++ b/src/csr/Circuitry.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Circuitry"; + +export const Circuitry: Icon = forwardRef((props, ref) => ( + +)); + +Circuitry.displayName = "Circuitry"; diff --git a/src/csr/Clipboard.tsx b/src/csr/Clipboard.tsx new file mode 100644 index 000000000..35cb1917d --- /dev/null +++ b/src/csr/Clipboard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Clipboard"; + +export const Clipboard: Icon = forwardRef((props, ref) => ( + +)); + +Clipboard.displayName = "Clipboard"; diff --git a/src/csr/ClipboardText.tsx b/src/csr/ClipboardText.tsx new file mode 100644 index 000000000..c7bddd370 --- /dev/null +++ b/src/csr/ClipboardText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ClipboardText"; + +export const ClipboardText: Icon = forwardRef((props, ref) => ( + +)); + +ClipboardText.displayName = "ClipboardText"; diff --git a/src/csr/Clock.tsx b/src/csr/Clock.tsx new file mode 100644 index 000000000..f2dcb0270 --- /dev/null +++ b/src/csr/Clock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Clock"; + +export const Clock: Icon = forwardRef((props, ref) => ( + +)); + +Clock.displayName = "Clock"; diff --git a/src/csr/ClockAfternoon.tsx b/src/csr/ClockAfternoon.tsx new file mode 100644 index 000000000..f1e2ac737 --- /dev/null +++ b/src/csr/ClockAfternoon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ClockAfternoon"; + +export const ClockAfternoon: Icon = forwardRef((props, ref) => ( + +)); + +ClockAfternoon.displayName = "ClockAfternoon"; diff --git a/src/csr/ClockClockwise.tsx b/src/csr/ClockClockwise.tsx new file mode 100644 index 000000000..2f28576a3 --- /dev/null +++ b/src/csr/ClockClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ClockClockwise"; + +export const ClockClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ClockClockwise.displayName = "ClockClockwise"; diff --git a/src/csr/ClockCountdown.tsx b/src/csr/ClockCountdown.tsx new file mode 100644 index 000000000..d2951fbab --- /dev/null +++ b/src/csr/ClockCountdown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ClockCountdown"; + +export const ClockCountdown: Icon = forwardRef((props, ref) => ( + +)); + +ClockCountdown.displayName = "ClockCountdown"; diff --git a/src/csr/ClockCounterClockwise.tsx b/src/csr/ClockCounterClockwise.tsx new file mode 100644 index 000000000..b371a633c --- /dev/null +++ b/src/csr/ClockCounterClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ClockCounterClockwise"; + +export const ClockCounterClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ClockCounterClockwise.displayName = "ClockCounterClockwise"; diff --git a/src/csr/ClosedCaptioning.tsx b/src/csr/ClosedCaptioning.tsx new file mode 100644 index 000000000..0ddbf119a --- /dev/null +++ b/src/csr/ClosedCaptioning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ClosedCaptioning"; + +export const ClosedCaptioning: Icon = forwardRef((props, ref) => ( + +)); + +ClosedCaptioning.displayName = "ClosedCaptioning"; diff --git a/src/csr/Cloud.tsx b/src/csr/Cloud.tsx new file mode 100644 index 000000000..1ba7428a7 --- /dev/null +++ b/src/csr/Cloud.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cloud"; + +export const Cloud: Icon = forwardRef((props, ref) => ( + +)); + +Cloud.displayName = "Cloud"; diff --git a/src/csr/CloudArrowDown.tsx b/src/csr/CloudArrowDown.tsx new file mode 100644 index 000000000..a76d33a51 --- /dev/null +++ b/src/csr/CloudArrowDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudArrowDown"; + +export const CloudArrowDown: Icon = forwardRef((props, ref) => ( + +)); + +CloudArrowDown.displayName = "CloudArrowDown"; diff --git a/src/csr/CloudArrowUp.tsx b/src/csr/CloudArrowUp.tsx new file mode 100644 index 000000000..ef6d4044a --- /dev/null +++ b/src/csr/CloudArrowUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudArrowUp"; + +export const CloudArrowUp: Icon = forwardRef((props, ref) => ( + +)); + +CloudArrowUp.displayName = "CloudArrowUp"; diff --git a/src/csr/CloudCheck.tsx b/src/csr/CloudCheck.tsx new file mode 100644 index 000000000..4c573a00f --- /dev/null +++ b/src/csr/CloudCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudCheck"; + +export const CloudCheck: Icon = forwardRef((props, ref) => ( + +)); + +CloudCheck.displayName = "CloudCheck"; diff --git a/src/csr/CloudFog.tsx b/src/csr/CloudFog.tsx new file mode 100644 index 000000000..0f8a2d678 --- /dev/null +++ b/src/csr/CloudFog.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudFog"; + +export const CloudFog: Icon = forwardRef((props, ref) => ( + +)); + +CloudFog.displayName = "CloudFog"; diff --git a/src/csr/CloudLightning.tsx b/src/csr/CloudLightning.tsx new file mode 100644 index 000000000..bc4dd6e36 --- /dev/null +++ b/src/csr/CloudLightning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudLightning"; + +export const CloudLightning: Icon = forwardRef((props, ref) => ( + +)); + +CloudLightning.displayName = "CloudLightning"; diff --git a/src/csr/CloudMoon.tsx b/src/csr/CloudMoon.tsx new file mode 100644 index 000000000..0474ed2d8 --- /dev/null +++ b/src/csr/CloudMoon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudMoon"; + +export const CloudMoon: Icon = forwardRef((props, ref) => ( + +)); + +CloudMoon.displayName = "CloudMoon"; diff --git a/src/csr/CloudRain.tsx b/src/csr/CloudRain.tsx new file mode 100644 index 000000000..9c376d62d --- /dev/null +++ b/src/csr/CloudRain.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudRain"; + +export const CloudRain: Icon = forwardRef((props, ref) => ( + +)); + +CloudRain.displayName = "CloudRain"; diff --git a/src/csr/CloudSlash.tsx b/src/csr/CloudSlash.tsx new file mode 100644 index 000000000..6ad040a3d --- /dev/null +++ b/src/csr/CloudSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudSlash"; + +export const CloudSlash: Icon = forwardRef((props, ref) => ( + +)); + +CloudSlash.displayName = "CloudSlash"; diff --git a/src/csr/CloudSnow.tsx b/src/csr/CloudSnow.tsx new file mode 100644 index 000000000..20f2f9a78 --- /dev/null +++ b/src/csr/CloudSnow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudSnow"; + +export const CloudSnow: Icon = forwardRef((props, ref) => ( + +)); + +CloudSnow.displayName = "CloudSnow"; diff --git a/src/csr/CloudSun.tsx b/src/csr/CloudSun.tsx new file mode 100644 index 000000000..674c71a9e --- /dev/null +++ b/src/csr/CloudSun.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudSun"; + +export const CloudSun: Icon = forwardRef((props, ref) => ( + +)); + +CloudSun.displayName = "CloudSun"; diff --git a/src/csr/CloudWarning.tsx b/src/csr/CloudWarning.tsx new file mode 100644 index 000000000..f4f4cc7b9 --- /dev/null +++ b/src/csr/CloudWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudWarning"; + +export const CloudWarning: Icon = forwardRef((props, ref) => ( + +)); + +CloudWarning.displayName = "CloudWarning"; diff --git a/src/csr/CloudX.tsx b/src/csr/CloudX.tsx new file mode 100644 index 000000000..618f30f82 --- /dev/null +++ b/src/csr/CloudX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CloudX"; + +export const CloudX: Icon = forwardRef((props, ref) => ( + +)); + +CloudX.displayName = "CloudX"; diff --git a/src/csr/Club.tsx b/src/csr/Club.tsx new file mode 100644 index 000000000..d9fecb25a --- /dev/null +++ b/src/csr/Club.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Club"; + +export const Club: Icon = forwardRef((props, ref) => ( + +)); + +Club.displayName = "Club"; diff --git a/src/csr/CoatHanger.tsx b/src/csr/CoatHanger.tsx new file mode 100644 index 000000000..c3618a17d --- /dev/null +++ b/src/csr/CoatHanger.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CoatHanger"; + +export const CoatHanger: Icon = forwardRef((props, ref) => ( + +)); + +CoatHanger.displayName = "CoatHanger"; diff --git a/src/csr/CodaLogo.tsx b/src/csr/CodaLogo.tsx new file mode 100644 index 000000000..b92414d80 --- /dev/null +++ b/src/csr/CodaLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CodaLogo"; + +export const CodaLogo: Icon = forwardRef((props, ref) => ( + +)); + +CodaLogo.displayName = "CodaLogo"; diff --git a/src/csr/Code.tsx b/src/csr/Code.tsx new file mode 100644 index 000000000..78c87d8dd --- /dev/null +++ b/src/csr/Code.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Code"; + +export const Code: Icon = forwardRef((props, ref) => ( + +)); + +Code.displayName = "Code"; diff --git a/src/csr/CodeBlock.tsx b/src/csr/CodeBlock.tsx new file mode 100644 index 000000000..75b8be923 --- /dev/null +++ b/src/csr/CodeBlock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CodeBlock"; + +export const CodeBlock: Icon = forwardRef((props, ref) => ( + +)); + +CodeBlock.displayName = "CodeBlock"; diff --git a/src/csr/CodeSimple.tsx b/src/csr/CodeSimple.tsx new file mode 100644 index 000000000..70ab47d2b --- /dev/null +++ b/src/csr/CodeSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CodeSimple"; + +export const CodeSimple: Icon = forwardRef((props, ref) => ( + +)); + +CodeSimple.displayName = "CodeSimple"; diff --git a/src/csr/CodepenLogo.tsx b/src/csr/CodepenLogo.tsx new file mode 100644 index 000000000..ece0a702e --- /dev/null +++ b/src/csr/CodepenLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CodepenLogo"; + +export const CodepenLogo: Icon = forwardRef((props, ref) => ( + +)); + +CodepenLogo.displayName = "CodepenLogo"; diff --git a/src/csr/CodesandboxLogo.tsx b/src/csr/CodesandboxLogo.tsx new file mode 100644 index 000000000..eca55fe6a --- /dev/null +++ b/src/csr/CodesandboxLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CodesandboxLogo"; + +export const CodesandboxLogo: Icon = forwardRef((props, ref) => ( + +)); + +CodesandboxLogo.displayName = "CodesandboxLogo"; diff --git a/src/csr/Coffee.tsx b/src/csr/Coffee.tsx new file mode 100644 index 000000000..c61ba7b37 --- /dev/null +++ b/src/csr/Coffee.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Coffee"; + +export const Coffee: Icon = forwardRef((props, ref) => ( + +)); + +Coffee.displayName = "Coffee"; diff --git a/src/csr/Coin.tsx b/src/csr/Coin.tsx new file mode 100644 index 000000000..5d4ae22e3 --- /dev/null +++ b/src/csr/Coin.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Coin"; + +export const Coin: Icon = forwardRef((props, ref) => ( + +)); + +Coin.displayName = "Coin"; diff --git a/src/csr/CoinVertical.tsx b/src/csr/CoinVertical.tsx new file mode 100644 index 000000000..3fb67f4dc --- /dev/null +++ b/src/csr/CoinVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CoinVertical"; + +export const CoinVertical: Icon = forwardRef((props, ref) => ( + +)); + +CoinVertical.displayName = "CoinVertical"; diff --git a/src/csr/Coins.tsx b/src/csr/Coins.tsx new file mode 100644 index 000000000..e88d72f5f --- /dev/null +++ b/src/csr/Coins.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Coins"; + +export const Coins: Icon = forwardRef((props, ref) => ( + +)); + +Coins.displayName = "Coins"; diff --git a/src/csr/Columns.tsx b/src/csr/Columns.tsx new file mode 100644 index 000000000..cd5579c80 --- /dev/null +++ b/src/csr/Columns.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Columns"; + +export const Columns: Icon = forwardRef((props, ref) => ( + +)); + +Columns.displayName = "Columns"; diff --git a/src/csr/Command.tsx b/src/csr/Command.tsx new file mode 100644 index 000000000..dc18aa300 --- /dev/null +++ b/src/csr/Command.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Command"; + +export const Command: Icon = forwardRef((props, ref) => ( + +)); + +Command.displayName = "Command"; diff --git a/src/csr/Compass.tsx b/src/csr/Compass.tsx new file mode 100644 index 000000000..9508cc26c --- /dev/null +++ b/src/csr/Compass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Compass"; + +export const Compass: Icon = forwardRef((props, ref) => ( + +)); + +Compass.displayName = "Compass"; diff --git a/src/csr/CompassTool.tsx b/src/csr/CompassTool.tsx new file mode 100644 index 000000000..d2e9e3f0e --- /dev/null +++ b/src/csr/CompassTool.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CompassTool"; + +export const CompassTool: Icon = forwardRef((props, ref) => ( + +)); + +CompassTool.displayName = "CompassTool"; diff --git a/src/csr/ComputerTower.tsx b/src/csr/ComputerTower.tsx new file mode 100644 index 000000000..092291e54 --- /dev/null +++ b/src/csr/ComputerTower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ComputerTower"; + +export const ComputerTower: Icon = forwardRef((props, ref) => ( + +)); + +ComputerTower.displayName = "ComputerTower"; diff --git a/src/csr/Confetti.tsx b/src/csr/Confetti.tsx new file mode 100644 index 000000000..f100b996d --- /dev/null +++ b/src/csr/Confetti.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Confetti"; + +export const Confetti: Icon = forwardRef((props, ref) => ( + +)); + +Confetti.displayName = "Confetti"; diff --git a/src/csr/ContactlessPayment.tsx b/src/csr/ContactlessPayment.tsx new file mode 100644 index 000000000..2e5f43947 --- /dev/null +++ b/src/csr/ContactlessPayment.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ContactlessPayment"; + +export const ContactlessPayment: Icon = forwardRef((props, ref) => ( + +)); + +ContactlessPayment.displayName = "ContactlessPayment"; diff --git a/src/csr/Control.tsx b/src/csr/Control.tsx new file mode 100644 index 000000000..ed4c193fb --- /dev/null +++ b/src/csr/Control.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Control"; + +export const Control: Icon = forwardRef((props, ref) => ( + +)); + +Control.displayName = "Control"; diff --git a/src/csr/Cookie.tsx b/src/csr/Cookie.tsx new file mode 100644 index 000000000..ca7f3956f --- /dev/null +++ b/src/csr/Cookie.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cookie"; + +export const Cookie: Icon = forwardRef((props, ref) => ( + +)); + +Cookie.displayName = "Cookie"; diff --git a/src/csr/CookingPot.tsx b/src/csr/CookingPot.tsx new file mode 100644 index 000000000..2177e2165 --- /dev/null +++ b/src/csr/CookingPot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CookingPot"; + +export const CookingPot: Icon = forwardRef((props, ref) => ( + +)); + +CookingPot.displayName = "CookingPot"; diff --git a/src/csr/Copy.tsx b/src/csr/Copy.tsx new file mode 100644 index 000000000..71aaefdf9 --- /dev/null +++ b/src/csr/Copy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Copy"; + +export const Copy: Icon = forwardRef((props, ref) => ( + +)); + +Copy.displayName = "Copy"; diff --git a/src/csr/CopySimple.tsx b/src/csr/CopySimple.tsx new file mode 100644 index 000000000..506b809b1 --- /dev/null +++ b/src/csr/CopySimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CopySimple"; + +export const CopySimple: Icon = forwardRef((props, ref) => ( + +)); + +CopySimple.displayName = "CopySimple"; diff --git a/src/csr/Copyleft.tsx b/src/csr/Copyleft.tsx new file mode 100644 index 000000000..3df41a002 --- /dev/null +++ b/src/csr/Copyleft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Copyleft"; + +export const Copyleft: Icon = forwardRef((props, ref) => ( + +)); + +Copyleft.displayName = "Copyleft"; diff --git a/src/csr/Copyright.tsx b/src/csr/Copyright.tsx new file mode 100644 index 000000000..f93204c3b --- /dev/null +++ b/src/csr/Copyright.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Copyright"; + +export const Copyright: Icon = forwardRef((props, ref) => ( + +)); + +Copyright.displayName = "Copyright"; diff --git a/src/csr/CornersIn.tsx b/src/csr/CornersIn.tsx new file mode 100644 index 000000000..ea4473c6a --- /dev/null +++ b/src/csr/CornersIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CornersIn"; + +export const CornersIn: Icon = forwardRef((props, ref) => ( + +)); + +CornersIn.displayName = "CornersIn"; diff --git a/src/csr/CornersOut.tsx b/src/csr/CornersOut.tsx new file mode 100644 index 000000000..942018784 --- /dev/null +++ b/src/csr/CornersOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CornersOut"; + +export const CornersOut: Icon = forwardRef((props, ref) => ( + +)); + +CornersOut.displayName = "CornersOut"; diff --git a/src/csr/Couch.tsx b/src/csr/Couch.tsx new file mode 100644 index 000000000..b9afb3a6a --- /dev/null +++ b/src/csr/Couch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Couch"; + +export const Couch: Icon = forwardRef((props, ref) => ( + +)); + +Couch.displayName = "Couch"; diff --git a/src/csr/Cpu.tsx b/src/csr/Cpu.tsx new file mode 100644 index 000000000..89d2f8ca4 --- /dev/null +++ b/src/csr/Cpu.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cpu"; + +export const Cpu: Icon = forwardRef((props, ref) => ( + +)); + +Cpu.displayName = "Cpu"; diff --git a/src/csr/CreditCard.tsx b/src/csr/CreditCard.tsx new file mode 100644 index 000000000..2425c38e8 --- /dev/null +++ b/src/csr/CreditCard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CreditCard"; + +export const CreditCard: Icon = forwardRef((props, ref) => ( + +)); + +CreditCard.displayName = "CreditCard"; diff --git a/src/csr/Crop.tsx b/src/csr/Crop.tsx new file mode 100644 index 000000000..3530516db --- /dev/null +++ b/src/csr/Crop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Crop"; + +export const Crop: Icon = forwardRef((props, ref) => ( + +)); + +Crop.displayName = "Crop"; diff --git a/src/csr/Cross.tsx b/src/csr/Cross.tsx new file mode 100644 index 000000000..f4b84f488 --- /dev/null +++ b/src/csr/Cross.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cross"; + +export const Cross: Icon = forwardRef((props, ref) => ( + +)); + +Cross.displayName = "Cross"; diff --git a/src/csr/Crosshair.tsx b/src/csr/Crosshair.tsx new file mode 100644 index 000000000..39b7b1aee --- /dev/null +++ b/src/csr/Crosshair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Crosshair"; + +export const Crosshair: Icon = forwardRef((props, ref) => ( + +)); + +Crosshair.displayName = "Crosshair"; diff --git a/src/csr/CrosshairSimple.tsx b/src/csr/CrosshairSimple.tsx new file mode 100644 index 000000000..d8c7a796a --- /dev/null +++ b/src/csr/CrosshairSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CrosshairSimple"; + +export const CrosshairSimple: Icon = forwardRef((props, ref) => ( + +)); + +CrosshairSimple.displayName = "CrosshairSimple"; diff --git a/src/csr/Crown.tsx b/src/csr/Crown.tsx new file mode 100644 index 000000000..d4ff17730 --- /dev/null +++ b/src/csr/Crown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Crown"; + +export const Crown: Icon = forwardRef((props, ref) => ( + +)); + +Crown.displayName = "Crown"; diff --git a/src/csr/CrownSimple.tsx b/src/csr/CrownSimple.tsx new file mode 100644 index 000000000..03687748e --- /dev/null +++ b/src/csr/CrownSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CrownSimple"; + +export const CrownSimple: Icon = forwardRef((props, ref) => ( + +)); + +CrownSimple.displayName = "CrownSimple"; diff --git a/src/csr/Cube.tsx b/src/csr/Cube.tsx new file mode 100644 index 000000000..96609fc2b --- /dev/null +++ b/src/csr/Cube.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cube"; + +export const Cube: Icon = forwardRef((props, ref) => ( + +)); + +Cube.displayName = "Cube"; diff --git a/src/csr/CubeFocus.tsx b/src/csr/CubeFocus.tsx new file mode 100644 index 000000000..386f9a372 --- /dev/null +++ b/src/csr/CubeFocus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CubeFocus"; + +export const CubeFocus: Icon = forwardRef((props, ref) => ( + +)); + +CubeFocus.displayName = "CubeFocus"; diff --git a/src/csr/CubeTransparent.tsx b/src/csr/CubeTransparent.tsx new file mode 100644 index 000000000..a365d6568 --- /dev/null +++ b/src/csr/CubeTransparent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CubeTransparent"; + +export const CubeTransparent: Icon = forwardRef((props, ref) => ( + +)); + +CubeTransparent.displayName = "CubeTransparent"; diff --git a/src/csr/CurrencyBtc.tsx b/src/csr/CurrencyBtc.tsx new file mode 100644 index 000000000..fff1a2c81 --- /dev/null +++ b/src/csr/CurrencyBtc.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyBtc"; + +export const CurrencyBtc: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyBtc.displayName = "CurrencyBtc"; diff --git a/src/csr/CurrencyCircleDollar.tsx b/src/csr/CurrencyCircleDollar.tsx new file mode 100644 index 000000000..1606c6235 --- /dev/null +++ b/src/csr/CurrencyCircleDollar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyCircleDollar"; + +export const CurrencyCircleDollar: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyCircleDollar.displayName = "CurrencyCircleDollar"; diff --git a/src/csr/CurrencyCny.tsx b/src/csr/CurrencyCny.tsx new file mode 100644 index 000000000..c8db2750f --- /dev/null +++ b/src/csr/CurrencyCny.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyCny"; + +export const CurrencyCny: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyCny.displayName = "CurrencyCny"; diff --git a/src/csr/CurrencyDollar.tsx b/src/csr/CurrencyDollar.tsx new file mode 100644 index 000000000..6acc33c8d --- /dev/null +++ b/src/csr/CurrencyDollar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyDollar"; + +export const CurrencyDollar: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyDollar.displayName = "CurrencyDollar"; diff --git a/src/csr/CurrencyDollarSimple.tsx b/src/csr/CurrencyDollarSimple.tsx new file mode 100644 index 000000000..945ebf53c --- /dev/null +++ b/src/csr/CurrencyDollarSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyDollarSimple"; + +export const CurrencyDollarSimple: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyDollarSimple.displayName = "CurrencyDollarSimple"; diff --git a/src/csr/CurrencyEth.tsx b/src/csr/CurrencyEth.tsx new file mode 100644 index 000000000..a70021956 --- /dev/null +++ b/src/csr/CurrencyEth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyEth"; + +export const CurrencyEth: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyEth.displayName = "CurrencyEth"; diff --git a/src/csr/CurrencyEur.tsx b/src/csr/CurrencyEur.tsx new file mode 100644 index 000000000..9fbdf80eb --- /dev/null +++ b/src/csr/CurrencyEur.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyEur"; + +export const CurrencyEur: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyEur.displayName = "CurrencyEur"; diff --git a/src/csr/CurrencyGbp.tsx b/src/csr/CurrencyGbp.tsx new file mode 100644 index 000000000..c9758753b --- /dev/null +++ b/src/csr/CurrencyGbp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyGbp"; + +export const CurrencyGbp: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyGbp.displayName = "CurrencyGbp"; diff --git a/src/csr/CurrencyInr.tsx b/src/csr/CurrencyInr.tsx new file mode 100644 index 000000000..c9af77b48 --- /dev/null +++ b/src/csr/CurrencyInr.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyInr"; + +export const CurrencyInr: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyInr.displayName = "CurrencyInr"; diff --git a/src/csr/CurrencyJpy.tsx b/src/csr/CurrencyJpy.tsx new file mode 100644 index 000000000..81678d141 --- /dev/null +++ b/src/csr/CurrencyJpy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyJpy"; + +export const CurrencyJpy: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyJpy.displayName = "CurrencyJpy"; diff --git a/src/csr/CurrencyKrw.tsx b/src/csr/CurrencyKrw.tsx new file mode 100644 index 000000000..705d4538d --- /dev/null +++ b/src/csr/CurrencyKrw.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyKrw"; + +export const CurrencyKrw: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyKrw.displayName = "CurrencyKrw"; diff --git a/src/csr/CurrencyKzt.tsx b/src/csr/CurrencyKzt.tsx new file mode 100644 index 000000000..9ff4b6601 --- /dev/null +++ b/src/csr/CurrencyKzt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyKzt"; + +export const CurrencyKzt: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyKzt.displayName = "CurrencyKzt"; diff --git a/src/csr/CurrencyNgn.tsx b/src/csr/CurrencyNgn.tsx new file mode 100644 index 000000000..c57666f27 --- /dev/null +++ b/src/csr/CurrencyNgn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyNgn"; + +export const CurrencyNgn: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyNgn.displayName = "CurrencyNgn"; diff --git a/src/csr/CurrencyRub.tsx b/src/csr/CurrencyRub.tsx new file mode 100644 index 000000000..a4b8f193a --- /dev/null +++ b/src/csr/CurrencyRub.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CurrencyRub"; + +export const CurrencyRub: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyRub.displayName = "CurrencyRub"; diff --git a/src/csr/Cursor.tsx b/src/csr/Cursor.tsx new file mode 100644 index 000000000..8120e2aa6 --- /dev/null +++ b/src/csr/Cursor.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cursor"; + +export const Cursor: Icon = forwardRef((props, ref) => ( + +)); + +Cursor.displayName = "Cursor"; diff --git a/src/csr/CursorClick.tsx b/src/csr/CursorClick.tsx new file mode 100644 index 000000000..fd648f4c6 --- /dev/null +++ b/src/csr/CursorClick.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CursorClick"; + +export const CursorClick: Icon = forwardRef((props, ref) => ( + +)); + +CursorClick.displayName = "CursorClick"; diff --git a/src/csr/CursorText.tsx b/src/csr/CursorText.tsx new file mode 100644 index 000000000..54e79f7a4 --- /dev/null +++ b/src/csr/CursorText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/CursorText"; + +export const CursorText: Icon = forwardRef((props, ref) => ( + +)); + +CursorText.displayName = "CursorText"; diff --git a/src/csr/Cylinder.tsx b/src/csr/Cylinder.tsx new file mode 100644 index 000000000..82bb9ec89 --- /dev/null +++ b/src/csr/Cylinder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Cylinder"; + +export const Cylinder: Icon = forwardRef((props, ref) => ( + +)); + +Cylinder.displayName = "Cylinder"; diff --git a/src/csr/Database.tsx b/src/csr/Database.tsx new file mode 100644 index 000000000..19f4892b2 --- /dev/null +++ b/src/csr/Database.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Database"; + +export const Database: Icon = forwardRef((props, ref) => ( + +)); + +Database.displayName = "Database"; diff --git a/src/csr/Desktop.tsx b/src/csr/Desktop.tsx new file mode 100644 index 000000000..8bc82662f --- /dev/null +++ b/src/csr/Desktop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Desktop"; + +export const Desktop: Icon = forwardRef((props, ref) => ( + +)); + +Desktop.displayName = "Desktop"; diff --git a/src/csr/DesktopTower.tsx b/src/csr/DesktopTower.tsx new file mode 100644 index 000000000..02e84c8eb --- /dev/null +++ b/src/csr/DesktopTower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DesktopTower"; + +export const DesktopTower: Icon = forwardRef((props, ref) => ( + +)); + +DesktopTower.displayName = "DesktopTower"; diff --git a/src/csr/Detective.tsx b/src/csr/Detective.tsx new file mode 100644 index 000000000..e42d47edd --- /dev/null +++ b/src/csr/Detective.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Detective"; + +export const Detective: Icon = forwardRef((props, ref) => ( + +)); + +Detective.displayName = "Detective"; diff --git a/src/csr/DevToLogo.tsx b/src/csr/DevToLogo.tsx new file mode 100644 index 000000000..7f27047c3 --- /dev/null +++ b/src/csr/DevToLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DevToLogo"; + +export const DevToLogo: Icon = forwardRef((props, ref) => ( + +)); + +DevToLogo.displayName = "DevToLogo"; diff --git a/src/csr/DeviceMobile.tsx b/src/csr/DeviceMobile.tsx new file mode 100644 index 000000000..b5b045b0e --- /dev/null +++ b/src/csr/DeviceMobile.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DeviceMobile"; + +export const DeviceMobile: Icon = forwardRef((props, ref) => ( + +)); + +DeviceMobile.displayName = "DeviceMobile"; diff --git a/src/csr/DeviceMobileCamera.tsx b/src/csr/DeviceMobileCamera.tsx new file mode 100644 index 000000000..0660eb9c1 --- /dev/null +++ b/src/csr/DeviceMobileCamera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DeviceMobileCamera"; + +export const DeviceMobileCamera: Icon = forwardRef((props, ref) => ( + +)); + +DeviceMobileCamera.displayName = "DeviceMobileCamera"; diff --git a/src/csr/DeviceMobileSpeaker.tsx b/src/csr/DeviceMobileSpeaker.tsx new file mode 100644 index 000000000..776afaf6e --- /dev/null +++ b/src/csr/DeviceMobileSpeaker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DeviceMobileSpeaker"; + +export const DeviceMobileSpeaker: Icon = forwardRef((props, ref) => ( + +)); + +DeviceMobileSpeaker.displayName = "DeviceMobileSpeaker"; diff --git a/src/csr/DeviceTablet.tsx b/src/csr/DeviceTablet.tsx new file mode 100644 index 000000000..15ba719e6 --- /dev/null +++ b/src/csr/DeviceTablet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DeviceTablet"; + +export const DeviceTablet: Icon = forwardRef((props, ref) => ( + +)); + +DeviceTablet.displayName = "DeviceTablet"; diff --git a/src/csr/DeviceTabletCamera.tsx b/src/csr/DeviceTabletCamera.tsx new file mode 100644 index 000000000..d7aaa56bb --- /dev/null +++ b/src/csr/DeviceTabletCamera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DeviceTabletCamera"; + +export const DeviceTabletCamera: Icon = forwardRef((props, ref) => ( + +)); + +DeviceTabletCamera.displayName = "DeviceTabletCamera"; diff --git a/src/csr/DeviceTabletSpeaker.tsx b/src/csr/DeviceTabletSpeaker.tsx new file mode 100644 index 000000000..b3978a27e --- /dev/null +++ b/src/csr/DeviceTabletSpeaker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DeviceTabletSpeaker"; + +export const DeviceTabletSpeaker: Icon = forwardRef((props, ref) => ( + +)); + +DeviceTabletSpeaker.displayName = "DeviceTabletSpeaker"; diff --git a/src/csr/Devices.tsx b/src/csr/Devices.tsx new file mode 100644 index 000000000..06227c6ab --- /dev/null +++ b/src/csr/Devices.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Devices"; + +export const Devices: Icon = forwardRef((props, ref) => ( + +)); + +Devices.displayName = "Devices"; diff --git a/src/csr/Diamond.tsx b/src/csr/Diamond.tsx new file mode 100644 index 000000000..9a21982ce --- /dev/null +++ b/src/csr/Diamond.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Diamond"; + +export const Diamond: Icon = forwardRef((props, ref) => ( + +)); + +Diamond.displayName = "Diamond"; diff --git a/src/csr/DiamondsFour.tsx b/src/csr/DiamondsFour.tsx new file mode 100644 index 000000000..00ad60b18 --- /dev/null +++ b/src/csr/DiamondsFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiamondsFour"; + +export const DiamondsFour: Icon = forwardRef((props, ref) => ( + +)); + +DiamondsFour.displayName = "DiamondsFour"; diff --git a/src/csr/DiceFive.tsx b/src/csr/DiceFive.tsx new file mode 100644 index 000000000..33799f02f --- /dev/null +++ b/src/csr/DiceFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiceFive"; + +export const DiceFive: Icon = forwardRef((props, ref) => ( + +)); + +DiceFive.displayName = "DiceFive"; diff --git a/src/csr/DiceFour.tsx b/src/csr/DiceFour.tsx new file mode 100644 index 000000000..ff0a7760c --- /dev/null +++ b/src/csr/DiceFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiceFour"; + +export const DiceFour: Icon = forwardRef((props, ref) => ( + +)); + +DiceFour.displayName = "DiceFour"; diff --git a/src/csr/DiceOne.tsx b/src/csr/DiceOne.tsx new file mode 100644 index 000000000..8a9f10fce --- /dev/null +++ b/src/csr/DiceOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiceOne"; + +export const DiceOne: Icon = forwardRef((props, ref) => ( + +)); + +DiceOne.displayName = "DiceOne"; diff --git a/src/csr/DiceSix.tsx b/src/csr/DiceSix.tsx new file mode 100644 index 000000000..94739960d --- /dev/null +++ b/src/csr/DiceSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiceSix"; + +export const DiceSix: Icon = forwardRef((props, ref) => ( + +)); + +DiceSix.displayName = "DiceSix"; diff --git a/src/csr/DiceThree.tsx b/src/csr/DiceThree.tsx new file mode 100644 index 000000000..c36d229bc --- /dev/null +++ b/src/csr/DiceThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiceThree"; + +export const DiceThree: Icon = forwardRef((props, ref) => ( + +)); + +DiceThree.displayName = "DiceThree"; diff --git a/src/csr/DiceTwo.tsx b/src/csr/DiceTwo.tsx new file mode 100644 index 000000000..a25055282 --- /dev/null +++ b/src/csr/DiceTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiceTwo"; + +export const DiceTwo: Icon = forwardRef((props, ref) => ( + +)); + +DiceTwo.displayName = "DiceTwo"; diff --git a/src/csr/Disc.tsx b/src/csr/Disc.tsx new file mode 100644 index 000000000..e6db58671 --- /dev/null +++ b/src/csr/Disc.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Disc"; + +export const Disc: Icon = forwardRef((props, ref) => ( + +)); + +Disc.displayName = "Disc"; diff --git a/src/csr/DiscordLogo.tsx b/src/csr/DiscordLogo.tsx new file mode 100644 index 000000000..a9a997003 --- /dev/null +++ b/src/csr/DiscordLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DiscordLogo"; + +export const DiscordLogo: Icon = forwardRef((props, ref) => ( + +)); + +DiscordLogo.displayName = "DiscordLogo"; diff --git a/src/csr/Divide.tsx b/src/csr/Divide.tsx new file mode 100644 index 000000000..f8ea1b5f2 --- /dev/null +++ b/src/csr/Divide.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Divide"; + +export const Divide: Icon = forwardRef((props, ref) => ( + +)); + +Divide.displayName = "Divide"; diff --git a/src/csr/Dna.tsx b/src/csr/Dna.tsx new file mode 100644 index 000000000..456988dba --- /dev/null +++ b/src/csr/Dna.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Dna"; + +export const Dna: Icon = forwardRef((props, ref) => ( + +)); + +Dna.displayName = "Dna"; diff --git a/src/csr/Dog.tsx b/src/csr/Dog.tsx new file mode 100644 index 000000000..dd86212ae --- /dev/null +++ b/src/csr/Dog.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Dog"; + +export const Dog: Icon = forwardRef((props, ref) => ( + +)); + +Dog.displayName = "Dog"; diff --git a/src/csr/Door.tsx b/src/csr/Door.tsx new file mode 100644 index 000000000..19337cf96 --- /dev/null +++ b/src/csr/Door.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Door"; + +export const Door: Icon = forwardRef((props, ref) => ( + +)); + +Door.displayName = "Door"; diff --git a/src/csr/DoorOpen.tsx b/src/csr/DoorOpen.tsx new file mode 100644 index 000000000..b061c0a8a --- /dev/null +++ b/src/csr/DoorOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DoorOpen"; + +export const DoorOpen: Icon = forwardRef((props, ref) => ( + +)); + +DoorOpen.displayName = "DoorOpen"; diff --git a/src/csr/Dot.tsx b/src/csr/Dot.tsx new file mode 100644 index 000000000..07c45092e --- /dev/null +++ b/src/csr/Dot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Dot"; + +export const Dot: Icon = forwardRef((props, ref) => ( + +)); + +Dot.displayName = "Dot"; diff --git a/src/csr/DotOutline.tsx b/src/csr/DotOutline.tsx new file mode 100644 index 000000000..d52b951c6 --- /dev/null +++ b/src/csr/DotOutline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotOutline"; + +export const DotOutline: Icon = forwardRef((props, ref) => ( + +)); + +DotOutline.displayName = "DotOutline"; diff --git a/src/csr/DotsNine.tsx b/src/csr/DotsNine.tsx new file mode 100644 index 000000000..e228e397c --- /dev/null +++ b/src/csr/DotsNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsNine"; + +export const DotsNine: Icon = forwardRef((props, ref) => ( + +)); + +DotsNine.displayName = "DotsNine"; diff --git a/src/csr/DotsSix.tsx b/src/csr/DotsSix.tsx new file mode 100644 index 000000000..9e9d6bee4 --- /dev/null +++ b/src/csr/DotsSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsSix"; + +export const DotsSix: Icon = forwardRef((props, ref) => ( + +)); + +DotsSix.displayName = "DotsSix"; diff --git a/src/csr/DotsSixVertical.tsx b/src/csr/DotsSixVertical.tsx new file mode 100644 index 000000000..c5c269ff2 --- /dev/null +++ b/src/csr/DotsSixVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsSixVertical"; + +export const DotsSixVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsSixVertical.displayName = "DotsSixVertical"; diff --git a/src/csr/DotsThree.tsx b/src/csr/DotsThree.tsx new file mode 100644 index 000000000..28e84ddff --- /dev/null +++ b/src/csr/DotsThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsThree"; + +export const DotsThree: Icon = forwardRef((props, ref) => ( + +)); + +DotsThree.displayName = "DotsThree"; diff --git a/src/csr/DotsThreeCircle.tsx b/src/csr/DotsThreeCircle.tsx new file mode 100644 index 000000000..b64488801 --- /dev/null +++ b/src/csr/DotsThreeCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsThreeCircle"; + +export const DotsThreeCircle: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeCircle.displayName = "DotsThreeCircle"; diff --git a/src/csr/DotsThreeCircleVertical.tsx b/src/csr/DotsThreeCircleVertical.tsx new file mode 100644 index 000000000..c15631f50 --- /dev/null +++ b/src/csr/DotsThreeCircleVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsThreeCircleVertical"; + +export const DotsThreeCircleVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeCircleVertical.displayName = "DotsThreeCircleVertical"; diff --git a/src/csr/DotsThreeOutline.tsx b/src/csr/DotsThreeOutline.tsx new file mode 100644 index 000000000..55f5a1619 --- /dev/null +++ b/src/csr/DotsThreeOutline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsThreeOutline"; + +export const DotsThreeOutline: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeOutline.displayName = "DotsThreeOutline"; diff --git a/src/csr/DotsThreeOutlineVertical.tsx b/src/csr/DotsThreeOutlineVertical.tsx new file mode 100644 index 000000000..3d1031d40 --- /dev/null +++ b/src/csr/DotsThreeOutlineVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsThreeOutlineVertical"; + +export const DotsThreeOutlineVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeOutlineVertical.displayName = "DotsThreeOutlineVertical"; diff --git a/src/csr/DotsThreeVertical.tsx b/src/csr/DotsThreeVertical.tsx new file mode 100644 index 000000000..5f1f07d59 --- /dev/null +++ b/src/csr/DotsThreeVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DotsThreeVertical"; + +export const DotsThreeVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeVertical.displayName = "DotsThreeVertical"; diff --git a/src/csr/Download.tsx b/src/csr/Download.tsx new file mode 100644 index 000000000..08b630597 --- /dev/null +++ b/src/csr/Download.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Download"; + +export const Download: Icon = forwardRef((props, ref) => ( + +)); + +Download.displayName = "Download"; diff --git a/src/csr/DownloadSimple.tsx b/src/csr/DownloadSimple.tsx new file mode 100644 index 000000000..c4c6df656 --- /dev/null +++ b/src/csr/DownloadSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DownloadSimple"; + +export const DownloadSimple: Icon = forwardRef((props, ref) => ( + +)); + +DownloadSimple.displayName = "DownloadSimple"; diff --git a/src/csr/Dress.tsx b/src/csr/Dress.tsx new file mode 100644 index 000000000..2da7e9cfc --- /dev/null +++ b/src/csr/Dress.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Dress"; + +export const Dress: Icon = forwardRef((props, ref) => ( + +)); + +Dress.displayName = "Dress"; diff --git a/src/csr/DribbbleLogo.tsx b/src/csr/DribbbleLogo.tsx new file mode 100644 index 000000000..374c6377a --- /dev/null +++ b/src/csr/DribbbleLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DribbbleLogo"; + +export const DribbbleLogo: Icon = forwardRef((props, ref) => ( + +)); + +DribbbleLogo.displayName = "DribbbleLogo"; diff --git a/src/csr/Drop.tsx b/src/csr/Drop.tsx new file mode 100644 index 000000000..ee6dab9a6 --- /dev/null +++ b/src/csr/Drop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Drop"; + +export const Drop: Icon = forwardRef((props, ref) => ( + +)); + +Drop.displayName = "Drop"; diff --git a/src/csr/DropHalf.tsx b/src/csr/DropHalf.tsx new file mode 100644 index 000000000..4c814c7aa --- /dev/null +++ b/src/csr/DropHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DropHalf"; + +export const DropHalf: Icon = forwardRef((props, ref) => ( + +)); + +DropHalf.displayName = "DropHalf"; diff --git a/src/csr/DropHalfBottom.tsx b/src/csr/DropHalfBottom.tsx new file mode 100644 index 000000000..639add96a --- /dev/null +++ b/src/csr/DropHalfBottom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DropHalfBottom"; + +export const DropHalfBottom: Icon = forwardRef((props, ref) => ( + +)); + +DropHalfBottom.displayName = "DropHalfBottom"; diff --git a/src/csr/DropboxLogo.tsx b/src/csr/DropboxLogo.tsx new file mode 100644 index 000000000..e45082274 --- /dev/null +++ b/src/csr/DropboxLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/DropboxLogo"; + +export const DropboxLogo: Icon = forwardRef((props, ref) => ( + +)); + +DropboxLogo.displayName = "DropboxLogo"; diff --git a/src/csr/Ear.tsx b/src/csr/Ear.tsx new file mode 100644 index 000000000..5de80e057 --- /dev/null +++ b/src/csr/Ear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Ear"; + +export const Ear: Icon = forwardRef((props, ref) => ( + +)); + +Ear.displayName = "Ear"; diff --git a/src/csr/EarSlash.tsx b/src/csr/EarSlash.tsx new file mode 100644 index 000000000..0053c02bd --- /dev/null +++ b/src/csr/EarSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EarSlash"; + +export const EarSlash: Icon = forwardRef((props, ref) => ( + +)); + +EarSlash.displayName = "EarSlash"; diff --git a/src/csr/Egg.tsx b/src/csr/Egg.tsx new file mode 100644 index 000000000..6487d5482 --- /dev/null +++ b/src/csr/Egg.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Egg"; + +export const Egg: Icon = forwardRef((props, ref) => ( + +)); + +Egg.displayName = "Egg"; diff --git a/src/csr/EggCrack.tsx b/src/csr/EggCrack.tsx new file mode 100644 index 000000000..c3828ba91 --- /dev/null +++ b/src/csr/EggCrack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EggCrack"; + +export const EggCrack: Icon = forwardRef((props, ref) => ( + +)); + +EggCrack.displayName = "EggCrack"; diff --git a/src/csr/Eject.tsx b/src/csr/Eject.tsx new file mode 100644 index 000000000..f79a90812 --- /dev/null +++ b/src/csr/Eject.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Eject"; + +export const Eject: Icon = forwardRef((props, ref) => ( + +)); + +Eject.displayName = "Eject"; diff --git a/src/csr/EjectSimple.tsx b/src/csr/EjectSimple.tsx new file mode 100644 index 000000000..3901b894e --- /dev/null +++ b/src/csr/EjectSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EjectSimple"; + +export const EjectSimple: Icon = forwardRef((props, ref) => ( + +)); + +EjectSimple.displayName = "EjectSimple"; diff --git a/src/csr/Elevator.tsx b/src/csr/Elevator.tsx new file mode 100644 index 000000000..b39dc86d4 --- /dev/null +++ b/src/csr/Elevator.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Elevator"; + +export const Elevator: Icon = forwardRef((props, ref) => ( + +)); + +Elevator.displayName = "Elevator"; diff --git a/src/csr/Engine.tsx b/src/csr/Engine.tsx new file mode 100644 index 000000000..54667c27b --- /dev/null +++ b/src/csr/Engine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Engine"; + +export const Engine: Icon = forwardRef((props, ref) => ( + +)); + +Engine.displayName = "Engine"; diff --git a/src/csr/Envelope.tsx b/src/csr/Envelope.tsx new file mode 100644 index 000000000..ff1a37903 --- /dev/null +++ b/src/csr/Envelope.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Envelope"; + +export const Envelope: Icon = forwardRef((props, ref) => ( + +)); + +Envelope.displayName = "Envelope"; diff --git a/src/csr/EnvelopeOpen.tsx b/src/csr/EnvelopeOpen.tsx new file mode 100644 index 000000000..67fa3fe5c --- /dev/null +++ b/src/csr/EnvelopeOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EnvelopeOpen"; + +export const EnvelopeOpen: Icon = forwardRef((props, ref) => ( + +)); + +EnvelopeOpen.displayName = "EnvelopeOpen"; diff --git a/src/csr/EnvelopeSimple.tsx b/src/csr/EnvelopeSimple.tsx new file mode 100644 index 000000000..d36d6d90e --- /dev/null +++ b/src/csr/EnvelopeSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EnvelopeSimple"; + +export const EnvelopeSimple: Icon = forwardRef((props, ref) => ( + +)); + +EnvelopeSimple.displayName = "EnvelopeSimple"; diff --git a/src/csr/EnvelopeSimpleOpen.tsx b/src/csr/EnvelopeSimpleOpen.tsx new file mode 100644 index 000000000..466f5ac63 --- /dev/null +++ b/src/csr/EnvelopeSimpleOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EnvelopeSimpleOpen"; + +export const EnvelopeSimpleOpen: Icon = forwardRef((props, ref) => ( + +)); + +EnvelopeSimpleOpen.displayName = "EnvelopeSimpleOpen"; diff --git a/src/csr/Equalizer.tsx b/src/csr/Equalizer.tsx new file mode 100644 index 000000000..3956bdbdb --- /dev/null +++ b/src/csr/Equalizer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Equalizer"; + +export const Equalizer: Icon = forwardRef((props, ref) => ( + +)); + +Equalizer.displayName = "Equalizer"; diff --git a/src/csr/Equals.tsx b/src/csr/Equals.tsx new file mode 100644 index 000000000..7948b7914 --- /dev/null +++ b/src/csr/Equals.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Equals"; + +export const Equals: Icon = forwardRef((props, ref) => ( + +)); + +Equals.displayName = "Equals"; diff --git a/src/csr/Eraser.tsx b/src/csr/Eraser.tsx new file mode 100644 index 000000000..c8c3719f3 --- /dev/null +++ b/src/csr/Eraser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Eraser"; + +export const Eraser: Icon = forwardRef((props, ref) => ( + +)); + +Eraser.displayName = "Eraser"; diff --git a/src/csr/EscalatorDown.tsx b/src/csr/EscalatorDown.tsx new file mode 100644 index 000000000..0f6385a3d --- /dev/null +++ b/src/csr/EscalatorDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EscalatorDown"; + +export const EscalatorDown: Icon = forwardRef((props, ref) => ( + +)); + +EscalatorDown.displayName = "EscalatorDown"; diff --git a/src/csr/EscalatorUp.tsx b/src/csr/EscalatorUp.tsx new file mode 100644 index 000000000..6504d7b7b --- /dev/null +++ b/src/csr/EscalatorUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EscalatorUp"; + +export const EscalatorUp: Icon = forwardRef((props, ref) => ( + +)); + +EscalatorUp.displayName = "EscalatorUp"; diff --git a/src/csr/Exam.tsx b/src/csr/Exam.tsx new file mode 100644 index 000000000..b9071bf96 --- /dev/null +++ b/src/csr/Exam.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Exam"; + +export const Exam: Icon = forwardRef((props, ref) => ( + +)); + +Exam.displayName = "Exam"; diff --git a/src/csr/Exclude.tsx b/src/csr/Exclude.tsx new file mode 100644 index 000000000..d2e7c987e --- /dev/null +++ b/src/csr/Exclude.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Exclude"; + +export const Exclude: Icon = forwardRef((props, ref) => ( + +)); + +Exclude.displayName = "Exclude"; diff --git a/src/csr/ExcludeSquare.tsx b/src/csr/ExcludeSquare.tsx new file mode 100644 index 000000000..bdc0818c6 --- /dev/null +++ b/src/csr/ExcludeSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ExcludeSquare"; + +export const ExcludeSquare: Icon = forwardRef((props, ref) => ( + +)); + +ExcludeSquare.displayName = "ExcludeSquare"; diff --git a/src/csr/Export.tsx b/src/csr/Export.tsx new file mode 100644 index 000000000..a9d49f2e7 --- /dev/null +++ b/src/csr/Export.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Export"; + +export const Export: Icon = forwardRef((props, ref) => ( + +)); + +Export.displayName = "Export"; diff --git a/src/csr/Eye.tsx b/src/csr/Eye.tsx new file mode 100644 index 000000000..ecc36b6a8 --- /dev/null +++ b/src/csr/Eye.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Eye"; + +export const Eye: Icon = forwardRef((props, ref) => ( + +)); + +Eye.displayName = "Eye"; diff --git a/src/csr/EyeClosed.tsx b/src/csr/EyeClosed.tsx new file mode 100644 index 000000000..ec7ff0f7e --- /dev/null +++ b/src/csr/EyeClosed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EyeClosed"; + +export const EyeClosed: Icon = forwardRef((props, ref) => ( + +)); + +EyeClosed.displayName = "EyeClosed"; diff --git a/src/csr/EyeSlash.tsx b/src/csr/EyeSlash.tsx new file mode 100644 index 000000000..f87a1f2ed --- /dev/null +++ b/src/csr/EyeSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EyeSlash"; + +export const EyeSlash: Icon = forwardRef((props, ref) => ( + +)); + +EyeSlash.displayName = "EyeSlash"; diff --git a/src/csr/Eyedropper.tsx b/src/csr/Eyedropper.tsx new file mode 100644 index 000000000..ec0716ad6 --- /dev/null +++ b/src/csr/Eyedropper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Eyedropper"; + +export const Eyedropper: Icon = forwardRef((props, ref) => ( + +)); + +Eyedropper.displayName = "Eyedropper"; diff --git a/src/csr/EyedropperSample.tsx b/src/csr/EyedropperSample.tsx new file mode 100644 index 000000000..5fdfe0145 --- /dev/null +++ b/src/csr/EyedropperSample.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/EyedropperSample"; + +export const EyedropperSample: Icon = forwardRef((props, ref) => ( + +)); + +EyedropperSample.displayName = "EyedropperSample"; diff --git a/src/csr/Eyeglasses.tsx b/src/csr/Eyeglasses.tsx new file mode 100644 index 000000000..e4c7f8968 --- /dev/null +++ b/src/csr/Eyeglasses.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Eyeglasses"; + +export const Eyeglasses: Icon = forwardRef((props, ref) => ( + +)); + +Eyeglasses.displayName = "Eyeglasses"; diff --git a/src/csr/FaceMask.tsx b/src/csr/FaceMask.tsx new file mode 100644 index 000000000..1d03cf01f --- /dev/null +++ b/src/csr/FaceMask.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FaceMask"; + +export const FaceMask: Icon = forwardRef((props, ref) => ( + +)); + +FaceMask.displayName = "FaceMask"; diff --git a/src/csr/FacebookLogo.tsx b/src/csr/FacebookLogo.tsx new file mode 100644 index 000000000..29a8be338 --- /dev/null +++ b/src/csr/FacebookLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FacebookLogo"; + +export const FacebookLogo: Icon = forwardRef((props, ref) => ( + +)); + +FacebookLogo.displayName = "FacebookLogo"; diff --git a/src/csr/Factory.tsx b/src/csr/Factory.tsx new file mode 100644 index 000000000..d8fbdb245 --- /dev/null +++ b/src/csr/Factory.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Factory"; + +export const Factory: Icon = forwardRef((props, ref) => ( + +)); + +Factory.displayName = "Factory"; diff --git a/src/csr/Faders.tsx b/src/csr/Faders.tsx new file mode 100644 index 000000000..96b9d4c0b --- /dev/null +++ b/src/csr/Faders.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Faders"; + +export const Faders: Icon = forwardRef((props, ref) => ( + +)); + +Faders.displayName = "Faders"; diff --git a/src/csr/FadersHorizontal.tsx b/src/csr/FadersHorizontal.tsx new file mode 100644 index 000000000..8f0aa7221 --- /dev/null +++ b/src/csr/FadersHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FadersHorizontal"; + +export const FadersHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +FadersHorizontal.displayName = "FadersHorizontal"; diff --git a/src/csr/Fan.tsx b/src/csr/Fan.tsx new file mode 100644 index 000000000..f895fe20c --- /dev/null +++ b/src/csr/Fan.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Fan"; + +export const Fan: Icon = forwardRef((props, ref) => ( + +)); + +Fan.displayName = "Fan"; diff --git a/src/csr/FastForward.tsx b/src/csr/FastForward.tsx new file mode 100644 index 000000000..135a0d535 --- /dev/null +++ b/src/csr/FastForward.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FastForward"; + +export const FastForward: Icon = forwardRef((props, ref) => ( + +)); + +FastForward.displayName = "FastForward"; diff --git a/src/csr/FastForwardCircle.tsx b/src/csr/FastForwardCircle.tsx new file mode 100644 index 000000000..43dc2ad36 --- /dev/null +++ b/src/csr/FastForwardCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FastForwardCircle"; + +export const FastForwardCircle: Icon = forwardRef((props, ref) => ( + +)); + +FastForwardCircle.displayName = "FastForwardCircle"; diff --git a/src/csr/Feather.tsx b/src/csr/Feather.tsx new file mode 100644 index 000000000..f28566782 --- /dev/null +++ b/src/csr/Feather.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Feather"; + +export const Feather: Icon = forwardRef((props, ref) => ( + +)); + +Feather.displayName = "Feather"; diff --git a/src/csr/FigmaLogo.tsx b/src/csr/FigmaLogo.tsx new file mode 100644 index 000000000..5671276f0 --- /dev/null +++ b/src/csr/FigmaLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FigmaLogo"; + +export const FigmaLogo: Icon = forwardRef((props, ref) => ( + +)); + +FigmaLogo.displayName = "FigmaLogo"; diff --git a/src/csr/File.tsx b/src/csr/File.tsx new file mode 100644 index 000000000..b2d498bb9 --- /dev/null +++ b/src/csr/File.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/File"; + +export const File: Icon = forwardRef((props, ref) => ( + +)); + +File.displayName = "File"; diff --git a/src/csr/FileArchive.tsx b/src/csr/FileArchive.tsx new file mode 100644 index 000000000..463948015 --- /dev/null +++ b/src/csr/FileArchive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileArchive"; + +export const FileArchive: Icon = forwardRef((props, ref) => ( + +)); + +FileArchive.displayName = "FileArchive"; diff --git a/src/csr/FileArrowDown.tsx b/src/csr/FileArrowDown.tsx new file mode 100644 index 000000000..30175101b --- /dev/null +++ b/src/csr/FileArrowDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileArrowDown"; + +export const FileArrowDown: Icon = forwardRef((props, ref) => ( + +)); + +FileArrowDown.displayName = "FileArrowDown"; diff --git a/src/csr/FileArrowUp.tsx b/src/csr/FileArrowUp.tsx new file mode 100644 index 000000000..03443a912 --- /dev/null +++ b/src/csr/FileArrowUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileArrowUp"; + +export const FileArrowUp: Icon = forwardRef((props, ref) => ( + +)); + +FileArrowUp.displayName = "FileArrowUp"; diff --git a/src/csr/FileAudio.tsx b/src/csr/FileAudio.tsx new file mode 100644 index 000000000..abfea3fe0 --- /dev/null +++ b/src/csr/FileAudio.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileAudio"; + +export const FileAudio: Icon = forwardRef((props, ref) => ( + +)); + +FileAudio.displayName = "FileAudio"; diff --git a/src/csr/FileCloud.tsx b/src/csr/FileCloud.tsx new file mode 100644 index 000000000..ef96b0992 --- /dev/null +++ b/src/csr/FileCloud.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileCloud"; + +export const FileCloud: Icon = forwardRef((props, ref) => ( + +)); + +FileCloud.displayName = "FileCloud"; diff --git a/src/csr/FileCode.tsx b/src/csr/FileCode.tsx new file mode 100644 index 000000000..8dc3f0bbe --- /dev/null +++ b/src/csr/FileCode.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileCode"; + +export const FileCode: Icon = forwardRef((props, ref) => ( + +)); + +FileCode.displayName = "FileCode"; diff --git a/src/csr/FileCss.tsx b/src/csr/FileCss.tsx new file mode 100644 index 000000000..a632e4ab6 --- /dev/null +++ b/src/csr/FileCss.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileCss"; + +export const FileCss: Icon = forwardRef((props, ref) => ( + +)); + +FileCss.displayName = "FileCss"; diff --git a/src/csr/FileCsv.tsx b/src/csr/FileCsv.tsx new file mode 100644 index 000000000..b07ec1382 --- /dev/null +++ b/src/csr/FileCsv.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileCsv"; + +export const FileCsv: Icon = forwardRef((props, ref) => ( + +)); + +FileCsv.displayName = "FileCsv"; diff --git a/src/csr/FileDashed.tsx b/src/csr/FileDashed.tsx new file mode 100644 index 000000000..b36916ddd --- /dev/null +++ b/src/csr/FileDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileDashed"; + +export const FileDashed: Icon = forwardRef((props, ref) => ( + +)); + +FileDashed.displayName = "FileDashed"; diff --git a/src/csr/FileDoc.tsx b/src/csr/FileDoc.tsx new file mode 100644 index 000000000..a3789fc5d --- /dev/null +++ b/src/csr/FileDoc.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileDoc"; + +export const FileDoc: Icon = forwardRef((props, ref) => ( + +)); + +FileDoc.displayName = "FileDoc"; diff --git a/src/csr/FileHtml.tsx b/src/csr/FileHtml.tsx new file mode 100644 index 000000000..426c329c2 --- /dev/null +++ b/src/csr/FileHtml.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileHtml"; + +export const FileHtml: Icon = forwardRef((props, ref) => ( + +)); + +FileHtml.displayName = "FileHtml"; diff --git a/src/csr/FileImage.tsx b/src/csr/FileImage.tsx new file mode 100644 index 000000000..f899d7e13 --- /dev/null +++ b/src/csr/FileImage.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileImage"; + +export const FileImage: Icon = forwardRef((props, ref) => ( + +)); + +FileImage.displayName = "FileImage"; diff --git a/src/csr/FileJpg.tsx b/src/csr/FileJpg.tsx new file mode 100644 index 000000000..6ae15c322 --- /dev/null +++ b/src/csr/FileJpg.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileJpg"; + +export const FileJpg: Icon = forwardRef((props, ref) => ( + +)); + +FileJpg.displayName = "FileJpg"; diff --git a/src/csr/FileJs.tsx b/src/csr/FileJs.tsx new file mode 100644 index 000000000..b00e39678 --- /dev/null +++ b/src/csr/FileJs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileJs"; + +export const FileJs: Icon = forwardRef((props, ref) => ( + +)); + +FileJs.displayName = "FileJs"; diff --git a/src/csr/FileJsx.tsx b/src/csr/FileJsx.tsx new file mode 100644 index 000000000..7a43d09ff --- /dev/null +++ b/src/csr/FileJsx.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileJsx"; + +export const FileJsx: Icon = forwardRef((props, ref) => ( + +)); + +FileJsx.displayName = "FileJsx"; diff --git a/src/csr/FileLock.tsx b/src/csr/FileLock.tsx new file mode 100644 index 000000000..df7943b91 --- /dev/null +++ b/src/csr/FileLock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileLock"; + +export const FileLock: Icon = forwardRef((props, ref) => ( + +)); + +FileLock.displayName = "FileLock"; diff --git a/src/csr/FileMagnifyingGlass.tsx b/src/csr/FileMagnifyingGlass.tsx new file mode 100644 index 000000000..f16c85bb3 --- /dev/null +++ b/src/csr/FileMagnifyingGlass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileMagnifyingGlass"; + +export const FileMagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +FileMagnifyingGlass.displayName = "FileMagnifyingGlass"; diff --git a/src/csr/FileMinus.tsx b/src/csr/FileMinus.tsx new file mode 100644 index 000000000..b09a30543 --- /dev/null +++ b/src/csr/FileMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileMinus"; + +export const FileMinus: Icon = forwardRef((props, ref) => ( + +)); + +FileMinus.displayName = "FileMinus"; diff --git a/src/csr/FilePdf.tsx b/src/csr/FilePdf.tsx new file mode 100644 index 000000000..a565f8cd7 --- /dev/null +++ b/src/csr/FilePdf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilePdf"; + +export const FilePdf: Icon = forwardRef((props, ref) => ( + +)); + +FilePdf.displayName = "FilePdf"; diff --git a/src/csr/FilePlus.tsx b/src/csr/FilePlus.tsx new file mode 100644 index 000000000..a6f62d13f --- /dev/null +++ b/src/csr/FilePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilePlus"; + +export const FilePlus: Icon = forwardRef((props, ref) => ( + +)); + +FilePlus.displayName = "FilePlus"; diff --git a/src/csr/FilePng.tsx b/src/csr/FilePng.tsx new file mode 100644 index 000000000..90053b589 --- /dev/null +++ b/src/csr/FilePng.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilePng"; + +export const FilePng: Icon = forwardRef((props, ref) => ( + +)); + +FilePng.displayName = "FilePng"; diff --git a/src/csr/FilePpt.tsx b/src/csr/FilePpt.tsx new file mode 100644 index 000000000..3be40971e --- /dev/null +++ b/src/csr/FilePpt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilePpt"; + +export const FilePpt: Icon = forwardRef((props, ref) => ( + +)); + +FilePpt.displayName = "FilePpt"; diff --git a/src/csr/FileRs.tsx b/src/csr/FileRs.tsx new file mode 100644 index 000000000..ad2e97cfc --- /dev/null +++ b/src/csr/FileRs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileRs"; + +export const FileRs: Icon = forwardRef((props, ref) => ( + +)); + +FileRs.displayName = "FileRs"; diff --git a/src/csr/FileSql.tsx b/src/csr/FileSql.tsx new file mode 100644 index 000000000..f25f4a4cb --- /dev/null +++ b/src/csr/FileSql.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileSql"; + +export const FileSql: Icon = forwardRef((props, ref) => ( + +)); + +FileSql.displayName = "FileSql"; diff --git a/src/csr/FileSvg.tsx b/src/csr/FileSvg.tsx new file mode 100644 index 000000000..1d7d53b5a --- /dev/null +++ b/src/csr/FileSvg.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileSvg"; + +export const FileSvg: Icon = forwardRef((props, ref) => ( + +)); + +FileSvg.displayName = "FileSvg"; diff --git a/src/csr/FileText.tsx b/src/csr/FileText.tsx new file mode 100644 index 000000000..b4fdbad2f --- /dev/null +++ b/src/csr/FileText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileText"; + +export const FileText: Icon = forwardRef((props, ref) => ( + +)); + +FileText.displayName = "FileText"; diff --git a/src/csr/FileTs.tsx b/src/csr/FileTs.tsx new file mode 100644 index 000000000..9f9d945b3 --- /dev/null +++ b/src/csr/FileTs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileTs"; + +export const FileTs: Icon = forwardRef((props, ref) => ( + +)); + +FileTs.displayName = "FileTs"; diff --git a/src/csr/FileTsx.tsx b/src/csr/FileTsx.tsx new file mode 100644 index 000000000..3dcc401a4 --- /dev/null +++ b/src/csr/FileTsx.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileTsx"; + +export const FileTsx: Icon = forwardRef((props, ref) => ( + +)); + +FileTsx.displayName = "FileTsx"; diff --git a/src/csr/FileVideo.tsx b/src/csr/FileVideo.tsx new file mode 100644 index 000000000..2f28ecac7 --- /dev/null +++ b/src/csr/FileVideo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileVideo"; + +export const FileVideo: Icon = forwardRef((props, ref) => ( + +)); + +FileVideo.displayName = "FileVideo"; diff --git a/src/csr/FileVue.tsx b/src/csr/FileVue.tsx new file mode 100644 index 000000000..d608bd6eb --- /dev/null +++ b/src/csr/FileVue.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileVue"; + +export const FileVue: Icon = forwardRef((props, ref) => ( + +)); + +FileVue.displayName = "FileVue"; diff --git a/src/csr/FileX.tsx b/src/csr/FileX.tsx new file mode 100644 index 000000000..4da1e397e --- /dev/null +++ b/src/csr/FileX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileX"; + +export const FileX: Icon = forwardRef((props, ref) => ( + +)); + +FileX.displayName = "FileX"; diff --git a/src/csr/FileXls.tsx b/src/csr/FileXls.tsx new file mode 100644 index 000000000..345f2bdce --- /dev/null +++ b/src/csr/FileXls.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileXls"; + +export const FileXls: Icon = forwardRef((props, ref) => ( + +)); + +FileXls.displayName = "FileXls"; diff --git a/src/csr/FileZip.tsx b/src/csr/FileZip.tsx new file mode 100644 index 000000000..95d37a25b --- /dev/null +++ b/src/csr/FileZip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FileZip"; + +export const FileZip: Icon = forwardRef((props, ref) => ( + +)); + +FileZip.displayName = "FileZip"; diff --git a/src/csr/Files.tsx b/src/csr/Files.tsx new file mode 100644 index 000000000..0f2a5549e --- /dev/null +++ b/src/csr/Files.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Files"; + +export const Files: Icon = forwardRef((props, ref) => ( + +)); + +Files.displayName = "Files"; diff --git a/src/csr/FilmReel.tsx b/src/csr/FilmReel.tsx new file mode 100644 index 000000000..62eeb43a5 --- /dev/null +++ b/src/csr/FilmReel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilmReel"; + +export const FilmReel: Icon = forwardRef((props, ref) => ( + +)); + +FilmReel.displayName = "FilmReel"; diff --git a/src/csr/FilmScript.tsx b/src/csr/FilmScript.tsx new file mode 100644 index 000000000..d5fa2ea1a --- /dev/null +++ b/src/csr/FilmScript.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilmScript"; + +export const FilmScript: Icon = forwardRef((props, ref) => ( + +)); + +FilmScript.displayName = "FilmScript"; diff --git a/src/csr/FilmSlate.tsx b/src/csr/FilmSlate.tsx new file mode 100644 index 000000000..52bc1af5c --- /dev/null +++ b/src/csr/FilmSlate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilmSlate"; + +export const FilmSlate: Icon = forwardRef((props, ref) => ( + +)); + +FilmSlate.displayName = "FilmSlate"; diff --git a/src/csr/FilmStrip.tsx b/src/csr/FilmStrip.tsx new file mode 100644 index 000000000..056d5d0e3 --- /dev/null +++ b/src/csr/FilmStrip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FilmStrip"; + +export const FilmStrip: Icon = forwardRef((props, ref) => ( + +)); + +FilmStrip.displayName = "FilmStrip"; diff --git a/src/csr/Fingerprint.tsx b/src/csr/Fingerprint.tsx new file mode 100644 index 000000000..c23144363 --- /dev/null +++ b/src/csr/Fingerprint.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Fingerprint"; + +export const Fingerprint: Icon = forwardRef((props, ref) => ( + +)); + +Fingerprint.displayName = "Fingerprint"; diff --git a/src/csr/FingerprintSimple.tsx b/src/csr/FingerprintSimple.tsx new file mode 100644 index 000000000..47f10c623 --- /dev/null +++ b/src/csr/FingerprintSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FingerprintSimple"; + +export const FingerprintSimple: Icon = forwardRef((props, ref) => ( + +)); + +FingerprintSimple.displayName = "FingerprintSimple"; diff --git a/src/csr/FinnTheHuman.tsx b/src/csr/FinnTheHuman.tsx new file mode 100644 index 000000000..2f4d4ffa2 --- /dev/null +++ b/src/csr/FinnTheHuman.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FinnTheHuman"; + +export const FinnTheHuman: Icon = forwardRef((props, ref) => ( + +)); + +FinnTheHuman.displayName = "FinnTheHuman"; diff --git a/src/csr/Fire.tsx b/src/csr/Fire.tsx new file mode 100644 index 000000000..e1e1ad033 --- /dev/null +++ b/src/csr/Fire.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Fire"; + +export const Fire: Icon = forwardRef((props, ref) => ( + +)); + +Fire.displayName = "Fire"; diff --git a/src/csr/FireExtinguisher.tsx b/src/csr/FireExtinguisher.tsx new file mode 100644 index 000000000..fe88270b5 --- /dev/null +++ b/src/csr/FireExtinguisher.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FireExtinguisher"; + +export const FireExtinguisher: Icon = forwardRef((props, ref) => ( + +)); + +FireExtinguisher.displayName = "FireExtinguisher"; diff --git a/src/csr/FireSimple.tsx b/src/csr/FireSimple.tsx new file mode 100644 index 000000000..695cf4c17 --- /dev/null +++ b/src/csr/FireSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FireSimple"; + +export const FireSimple: Icon = forwardRef((props, ref) => ( + +)); + +FireSimple.displayName = "FireSimple"; diff --git a/src/csr/FirstAid.tsx b/src/csr/FirstAid.tsx new file mode 100644 index 000000000..c5d77e180 --- /dev/null +++ b/src/csr/FirstAid.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FirstAid"; + +export const FirstAid: Icon = forwardRef((props, ref) => ( + +)); + +FirstAid.displayName = "FirstAid"; diff --git a/src/csr/FirstAidKit.tsx b/src/csr/FirstAidKit.tsx new file mode 100644 index 000000000..fd1250bdd --- /dev/null +++ b/src/csr/FirstAidKit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FirstAidKit"; + +export const FirstAidKit: Icon = forwardRef((props, ref) => ( + +)); + +FirstAidKit.displayName = "FirstAidKit"; diff --git a/src/csr/Fish.tsx b/src/csr/Fish.tsx new file mode 100644 index 000000000..933be8a75 --- /dev/null +++ b/src/csr/Fish.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Fish"; + +export const Fish: Icon = forwardRef((props, ref) => ( + +)); + +Fish.displayName = "Fish"; diff --git a/src/csr/FishSimple.tsx b/src/csr/FishSimple.tsx new file mode 100644 index 000000000..acb88bfd1 --- /dev/null +++ b/src/csr/FishSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FishSimple"; + +export const FishSimple: Icon = forwardRef((props, ref) => ( + +)); + +FishSimple.displayName = "FishSimple"; diff --git a/src/csr/Flag.tsx b/src/csr/Flag.tsx new file mode 100644 index 000000000..fff556b95 --- /dev/null +++ b/src/csr/Flag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Flag"; + +export const Flag: Icon = forwardRef((props, ref) => ( + +)); + +Flag.displayName = "Flag"; diff --git a/src/csr/FlagBanner.tsx b/src/csr/FlagBanner.tsx new file mode 100644 index 000000000..48e2dc666 --- /dev/null +++ b/src/csr/FlagBanner.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FlagBanner"; + +export const FlagBanner: Icon = forwardRef((props, ref) => ( + +)); + +FlagBanner.displayName = "FlagBanner"; diff --git a/src/csr/FlagCheckered.tsx b/src/csr/FlagCheckered.tsx new file mode 100644 index 000000000..e1690133e --- /dev/null +++ b/src/csr/FlagCheckered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FlagCheckered"; + +export const FlagCheckered: Icon = forwardRef((props, ref) => ( + +)); + +FlagCheckered.displayName = "FlagCheckered"; diff --git a/src/csr/FlagPennant.tsx b/src/csr/FlagPennant.tsx new file mode 100644 index 000000000..a389d4693 --- /dev/null +++ b/src/csr/FlagPennant.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FlagPennant"; + +export const FlagPennant: Icon = forwardRef((props, ref) => ( + +)); + +FlagPennant.displayName = "FlagPennant"; diff --git a/src/csr/Flame.tsx b/src/csr/Flame.tsx new file mode 100644 index 000000000..26bfec4ff --- /dev/null +++ b/src/csr/Flame.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Flame"; + +export const Flame: Icon = forwardRef((props, ref) => ( + +)); + +Flame.displayName = "Flame"; diff --git a/src/csr/Flashlight.tsx b/src/csr/Flashlight.tsx new file mode 100644 index 000000000..e59a6ebee --- /dev/null +++ b/src/csr/Flashlight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Flashlight"; + +export const Flashlight: Icon = forwardRef((props, ref) => ( + +)); + +Flashlight.displayName = "Flashlight"; diff --git a/src/csr/Flask.tsx b/src/csr/Flask.tsx new file mode 100644 index 000000000..177ff1df2 --- /dev/null +++ b/src/csr/Flask.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Flask"; + +export const Flask: Icon = forwardRef((props, ref) => ( + +)); + +Flask.displayName = "Flask"; diff --git a/src/csr/FloppyDisk.tsx b/src/csr/FloppyDisk.tsx new file mode 100644 index 000000000..a3bfdf510 --- /dev/null +++ b/src/csr/FloppyDisk.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FloppyDisk"; + +export const FloppyDisk: Icon = forwardRef((props, ref) => ( + +)); + +FloppyDisk.displayName = "FloppyDisk"; diff --git a/src/csr/FloppyDiskBack.tsx b/src/csr/FloppyDiskBack.tsx new file mode 100644 index 000000000..3457d8847 --- /dev/null +++ b/src/csr/FloppyDiskBack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FloppyDiskBack"; + +export const FloppyDiskBack: Icon = forwardRef((props, ref) => ( + +)); + +FloppyDiskBack.displayName = "FloppyDiskBack"; diff --git a/src/csr/FlowArrow.tsx b/src/csr/FlowArrow.tsx new file mode 100644 index 000000000..57c79de16 --- /dev/null +++ b/src/csr/FlowArrow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FlowArrow"; + +export const FlowArrow: Icon = forwardRef((props, ref) => ( + +)); + +FlowArrow.displayName = "FlowArrow"; diff --git a/src/csr/Flower.tsx b/src/csr/Flower.tsx new file mode 100644 index 000000000..3820d5c13 --- /dev/null +++ b/src/csr/Flower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Flower"; + +export const Flower: Icon = forwardRef((props, ref) => ( + +)); + +Flower.displayName = "Flower"; diff --git a/src/csr/FlowerLotus.tsx b/src/csr/FlowerLotus.tsx new file mode 100644 index 000000000..71cce7bd9 --- /dev/null +++ b/src/csr/FlowerLotus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FlowerLotus"; + +export const FlowerLotus: Icon = forwardRef((props, ref) => ( + +)); + +FlowerLotus.displayName = "FlowerLotus"; diff --git a/src/csr/FlowerTulip.tsx b/src/csr/FlowerTulip.tsx new file mode 100644 index 000000000..1155c5057 --- /dev/null +++ b/src/csr/FlowerTulip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FlowerTulip"; + +export const FlowerTulip: Icon = forwardRef((props, ref) => ( + +)); + +FlowerTulip.displayName = "FlowerTulip"; diff --git a/src/csr/FlyingSaucer.tsx b/src/csr/FlyingSaucer.tsx new file mode 100644 index 000000000..f4dd6b40a --- /dev/null +++ b/src/csr/FlyingSaucer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FlyingSaucer"; + +export const FlyingSaucer: Icon = forwardRef((props, ref) => ( + +)); + +FlyingSaucer.displayName = "FlyingSaucer"; diff --git a/src/csr/Folder.tsx b/src/csr/Folder.tsx new file mode 100644 index 000000000..7ba0a8349 --- /dev/null +++ b/src/csr/Folder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Folder"; + +export const Folder: Icon = forwardRef((props, ref) => ( + +)); + +Folder.displayName = "Folder"; diff --git a/src/csr/FolderDashed.tsx b/src/csr/FolderDashed.tsx new file mode 100644 index 000000000..9b54af9ec --- /dev/null +++ b/src/csr/FolderDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderDashed"; + +export const FolderDashed: Icon = forwardRef((props, ref) => ( + +)); + +FolderDashed.displayName = "FolderDashed"; diff --git a/src/csr/FolderLock.tsx b/src/csr/FolderLock.tsx new file mode 100644 index 000000000..0b269bcde --- /dev/null +++ b/src/csr/FolderLock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderLock"; + +export const FolderLock: Icon = forwardRef((props, ref) => ( + +)); + +FolderLock.displayName = "FolderLock"; diff --git a/src/csr/FolderMinus.tsx b/src/csr/FolderMinus.tsx new file mode 100644 index 000000000..e482a3ca9 --- /dev/null +++ b/src/csr/FolderMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderMinus"; + +export const FolderMinus: Icon = forwardRef((props, ref) => ( + +)); + +FolderMinus.displayName = "FolderMinus"; diff --git a/src/csr/FolderNotch.tsx b/src/csr/FolderNotch.tsx new file mode 100644 index 000000000..223190332 --- /dev/null +++ b/src/csr/FolderNotch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderNotch"; + +export const FolderNotch: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotch.displayName = "FolderNotch"; diff --git a/src/csr/FolderNotchMinus.tsx b/src/csr/FolderNotchMinus.tsx new file mode 100644 index 000000000..273dbdb31 --- /dev/null +++ b/src/csr/FolderNotchMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderNotchMinus"; + +export const FolderNotchMinus: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotchMinus.displayName = "FolderNotchMinus"; diff --git a/src/csr/FolderNotchOpen.tsx b/src/csr/FolderNotchOpen.tsx new file mode 100644 index 000000000..dfcd646ec --- /dev/null +++ b/src/csr/FolderNotchOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderNotchOpen"; + +export const FolderNotchOpen: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotchOpen.displayName = "FolderNotchOpen"; diff --git a/src/csr/FolderNotchPlus.tsx b/src/csr/FolderNotchPlus.tsx new file mode 100644 index 000000000..cebb1fde5 --- /dev/null +++ b/src/csr/FolderNotchPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderNotchPlus"; + +export const FolderNotchPlus: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotchPlus.displayName = "FolderNotchPlus"; diff --git a/src/csr/FolderOpen.tsx b/src/csr/FolderOpen.tsx new file mode 100644 index 000000000..2e09ee42d --- /dev/null +++ b/src/csr/FolderOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderOpen"; + +export const FolderOpen: Icon = forwardRef((props, ref) => ( + +)); + +FolderOpen.displayName = "FolderOpen"; diff --git a/src/csr/FolderPlus.tsx b/src/csr/FolderPlus.tsx new file mode 100644 index 000000000..a6a0e26a1 --- /dev/null +++ b/src/csr/FolderPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderPlus"; + +export const FolderPlus: Icon = forwardRef((props, ref) => ( + +)); + +FolderPlus.displayName = "FolderPlus"; diff --git a/src/csr/FolderSimple.tsx b/src/csr/FolderSimple.tsx new file mode 100644 index 000000000..2470c4fe2 --- /dev/null +++ b/src/csr/FolderSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderSimple"; + +export const FolderSimple: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimple.displayName = "FolderSimple"; diff --git a/src/csr/FolderSimpleDashed.tsx b/src/csr/FolderSimpleDashed.tsx new file mode 100644 index 000000000..3fecb5704 --- /dev/null +++ b/src/csr/FolderSimpleDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderSimpleDashed"; + +export const FolderSimpleDashed: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleDashed.displayName = "FolderSimpleDashed"; diff --git a/src/csr/FolderSimpleLock.tsx b/src/csr/FolderSimpleLock.tsx new file mode 100644 index 000000000..c13b8a028 --- /dev/null +++ b/src/csr/FolderSimpleLock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderSimpleLock"; + +export const FolderSimpleLock: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleLock.displayName = "FolderSimpleLock"; diff --git a/src/csr/FolderSimpleMinus.tsx b/src/csr/FolderSimpleMinus.tsx new file mode 100644 index 000000000..e4c89dea9 --- /dev/null +++ b/src/csr/FolderSimpleMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderSimpleMinus"; + +export const FolderSimpleMinus: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleMinus.displayName = "FolderSimpleMinus"; diff --git a/src/csr/FolderSimplePlus.tsx b/src/csr/FolderSimplePlus.tsx new file mode 100644 index 000000000..812e48dc1 --- /dev/null +++ b/src/csr/FolderSimplePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderSimplePlus"; + +export const FolderSimplePlus: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimplePlus.displayName = "FolderSimplePlus"; diff --git a/src/csr/FolderSimpleStar.tsx b/src/csr/FolderSimpleStar.tsx new file mode 100644 index 000000000..6f69d4b6a --- /dev/null +++ b/src/csr/FolderSimpleStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderSimpleStar"; + +export const FolderSimpleStar: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleStar.displayName = "FolderSimpleStar"; diff --git a/src/csr/FolderSimpleUser.tsx b/src/csr/FolderSimpleUser.tsx new file mode 100644 index 000000000..e89d28cd8 --- /dev/null +++ b/src/csr/FolderSimpleUser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderSimpleUser"; + +export const FolderSimpleUser: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleUser.displayName = "FolderSimpleUser"; diff --git a/src/csr/FolderStar.tsx b/src/csr/FolderStar.tsx new file mode 100644 index 000000000..6ec7d9038 --- /dev/null +++ b/src/csr/FolderStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderStar"; + +export const FolderStar: Icon = forwardRef((props, ref) => ( + +)); + +FolderStar.displayName = "FolderStar"; diff --git a/src/csr/FolderUser.tsx b/src/csr/FolderUser.tsx new file mode 100644 index 000000000..f101cba5b --- /dev/null +++ b/src/csr/FolderUser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FolderUser"; + +export const FolderUser: Icon = forwardRef((props, ref) => ( + +)); + +FolderUser.displayName = "FolderUser"; diff --git a/src/csr/Folders.tsx b/src/csr/Folders.tsx new file mode 100644 index 000000000..31b2adbc1 --- /dev/null +++ b/src/csr/Folders.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Folders"; + +export const Folders: Icon = forwardRef((props, ref) => ( + +)); + +Folders.displayName = "Folders"; diff --git a/src/csr/Football.tsx b/src/csr/Football.tsx new file mode 100644 index 000000000..cdcc129cc --- /dev/null +++ b/src/csr/Football.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Football"; + +export const Football: Icon = forwardRef((props, ref) => ( + +)); + +Football.displayName = "Football"; diff --git a/src/csr/Footprints.tsx b/src/csr/Footprints.tsx new file mode 100644 index 000000000..d640afa2d --- /dev/null +++ b/src/csr/Footprints.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Footprints"; + +export const Footprints: Icon = forwardRef((props, ref) => ( + +)); + +Footprints.displayName = "Footprints"; diff --git a/src/csr/ForkKnife.tsx b/src/csr/ForkKnife.tsx new file mode 100644 index 000000000..797288f4c --- /dev/null +++ b/src/csr/ForkKnife.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ForkKnife"; + +export const ForkKnife: Icon = forwardRef((props, ref) => ( + +)); + +ForkKnife.displayName = "ForkKnife"; diff --git a/src/csr/FrameCorners.tsx b/src/csr/FrameCorners.tsx new file mode 100644 index 000000000..923ab3643 --- /dev/null +++ b/src/csr/FrameCorners.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FrameCorners"; + +export const FrameCorners: Icon = forwardRef((props, ref) => ( + +)); + +FrameCorners.displayName = "FrameCorners"; diff --git a/src/csr/FramerLogo.tsx b/src/csr/FramerLogo.tsx new file mode 100644 index 000000000..fdaad9278 --- /dev/null +++ b/src/csr/FramerLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FramerLogo"; + +export const FramerLogo: Icon = forwardRef((props, ref) => ( + +)); + +FramerLogo.displayName = "FramerLogo"; diff --git a/src/csr/Function.tsx b/src/csr/Function.tsx new file mode 100644 index 000000000..f94d218e2 --- /dev/null +++ b/src/csr/Function.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Function"; + +export const Function: Icon = forwardRef((props, ref) => ( + +)); + +Function.displayName = "Function"; diff --git a/src/csr/Funnel.tsx b/src/csr/Funnel.tsx new file mode 100644 index 000000000..0d36f9453 --- /dev/null +++ b/src/csr/Funnel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Funnel"; + +export const Funnel: Icon = forwardRef((props, ref) => ( + +)); + +Funnel.displayName = "Funnel"; diff --git a/src/csr/FunnelSimple.tsx b/src/csr/FunnelSimple.tsx new file mode 100644 index 000000000..d04f1ebb6 --- /dev/null +++ b/src/csr/FunnelSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/FunnelSimple"; + +export const FunnelSimple: Icon = forwardRef((props, ref) => ( + +)); + +FunnelSimple.displayName = "FunnelSimple"; diff --git a/src/csr/GameController.tsx b/src/csr/GameController.tsx new file mode 100644 index 000000000..aa4fa2656 --- /dev/null +++ b/src/csr/GameController.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GameController"; + +export const GameController: Icon = forwardRef((props, ref) => ( + +)); + +GameController.displayName = "GameController"; diff --git a/src/csr/Garage.tsx b/src/csr/Garage.tsx new file mode 100644 index 000000000..49519b99d --- /dev/null +++ b/src/csr/Garage.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Garage"; + +export const Garage: Icon = forwardRef((props, ref) => ( + +)); + +Garage.displayName = "Garage"; diff --git a/src/csr/GasCan.tsx b/src/csr/GasCan.tsx new file mode 100644 index 000000000..287c91d20 --- /dev/null +++ b/src/csr/GasCan.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GasCan"; + +export const GasCan: Icon = forwardRef((props, ref) => ( + +)); + +GasCan.displayName = "GasCan"; diff --git a/src/csr/GasPump.tsx b/src/csr/GasPump.tsx new file mode 100644 index 000000000..af796b223 --- /dev/null +++ b/src/csr/GasPump.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GasPump"; + +export const GasPump: Icon = forwardRef((props, ref) => ( + +)); + +GasPump.displayName = "GasPump"; diff --git a/src/csr/Gauge.tsx b/src/csr/Gauge.tsx new file mode 100644 index 000000000..4ac0ee05b --- /dev/null +++ b/src/csr/Gauge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Gauge"; + +export const Gauge: Icon = forwardRef((props, ref) => ( + +)); + +Gauge.displayName = "Gauge"; diff --git a/src/csr/Gavel.tsx b/src/csr/Gavel.tsx new file mode 100644 index 000000000..b10622f62 --- /dev/null +++ b/src/csr/Gavel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Gavel"; + +export const Gavel: Icon = forwardRef((props, ref) => ( + +)); + +Gavel.displayName = "Gavel"; diff --git a/src/csr/Gear.tsx b/src/csr/Gear.tsx new file mode 100644 index 000000000..7ff43ed07 --- /dev/null +++ b/src/csr/Gear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Gear"; + +export const Gear: Icon = forwardRef((props, ref) => ( + +)); + +Gear.displayName = "Gear"; diff --git a/src/csr/GearFine.tsx b/src/csr/GearFine.tsx new file mode 100644 index 000000000..b15b0c4a3 --- /dev/null +++ b/src/csr/GearFine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GearFine"; + +export const GearFine: Icon = forwardRef((props, ref) => ( + +)); + +GearFine.displayName = "GearFine"; diff --git a/src/csr/GearSix.tsx b/src/csr/GearSix.tsx new file mode 100644 index 000000000..d266934b8 --- /dev/null +++ b/src/csr/GearSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GearSix"; + +export const GearSix: Icon = forwardRef((props, ref) => ( + +)); + +GearSix.displayName = "GearSix"; diff --git a/src/csr/GenderFemale.tsx b/src/csr/GenderFemale.tsx new file mode 100644 index 000000000..f567fabfa --- /dev/null +++ b/src/csr/GenderFemale.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GenderFemale"; + +export const GenderFemale: Icon = forwardRef((props, ref) => ( + +)); + +GenderFemale.displayName = "GenderFemale"; diff --git a/src/csr/GenderIntersex.tsx b/src/csr/GenderIntersex.tsx new file mode 100644 index 000000000..64acc6356 --- /dev/null +++ b/src/csr/GenderIntersex.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GenderIntersex"; + +export const GenderIntersex: Icon = forwardRef((props, ref) => ( + +)); + +GenderIntersex.displayName = "GenderIntersex"; diff --git a/src/csr/GenderMale.tsx b/src/csr/GenderMale.tsx new file mode 100644 index 000000000..5d02c404d --- /dev/null +++ b/src/csr/GenderMale.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GenderMale"; + +export const GenderMale: Icon = forwardRef((props, ref) => ( + +)); + +GenderMale.displayName = "GenderMale"; diff --git a/src/csr/GenderNeuter.tsx b/src/csr/GenderNeuter.tsx new file mode 100644 index 000000000..ecda63e60 --- /dev/null +++ b/src/csr/GenderNeuter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GenderNeuter"; + +export const GenderNeuter: Icon = forwardRef((props, ref) => ( + +)); + +GenderNeuter.displayName = "GenderNeuter"; diff --git a/src/csr/GenderNonbinary.tsx b/src/csr/GenderNonbinary.tsx new file mode 100644 index 000000000..36b837ddd --- /dev/null +++ b/src/csr/GenderNonbinary.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GenderNonbinary"; + +export const GenderNonbinary: Icon = forwardRef((props, ref) => ( + +)); + +GenderNonbinary.displayName = "GenderNonbinary"; diff --git a/src/csr/GenderTransgender.tsx b/src/csr/GenderTransgender.tsx new file mode 100644 index 000000000..bfd44d409 --- /dev/null +++ b/src/csr/GenderTransgender.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GenderTransgender"; + +export const GenderTransgender: Icon = forwardRef((props, ref) => ( + +)); + +GenderTransgender.displayName = "GenderTransgender"; diff --git a/src/csr/Ghost.tsx b/src/csr/Ghost.tsx new file mode 100644 index 000000000..c55ffac77 --- /dev/null +++ b/src/csr/Ghost.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Ghost"; + +export const Ghost: Icon = forwardRef((props, ref) => ( + +)); + +Ghost.displayName = "Ghost"; diff --git a/src/csr/Gif.tsx b/src/csr/Gif.tsx new file mode 100644 index 000000000..d4d5ef7d9 --- /dev/null +++ b/src/csr/Gif.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Gif"; + +export const Gif: Icon = forwardRef((props, ref) => ( + +)); + +Gif.displayName = "Gif"; diff --git a/src/csr/Gift.tsx b/src/csr/Gift.tsx new file mode 100644 index 000000000..850115662 --- /dev/null +++ b/src/csr/Gift.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Gift"; + +export const Gift: Icon = forwardRef((props, ref) => ( + +)); + +Gift.displayName = "Gift"; diff --git a/src/csr/GitBranch.tsx b/src/csr/GitBranch.tsx new file mode 100644 index 000000000..3f145bfeb --- /dev/null +++ b/src/csr/GitBranch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitBranch"; + +export const GitBranch: Icon = forwardRef((props, ref) => ( + +)); + +GitBranch.displayName = "GitBranch"; diff --git a/src/csr/GitCommit.tsx b/src/csr/GitCommit.tsx new file mode 100644 index 000000000..909501d26 --- /dev/null +++ b/src/csr/GitCommit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitCommit"; + +export const GitCommit: Icon = forwardRef((props, ref) => ( + +)); + +GitCommit.displayName = "GitCommit"; diff --git a/src/csr/GitDiff.tsx b/src/csr/GitDiff.tsx new file mode 100644 index 000000000..e567aec47 --- /dev/null +++ b/src/csr/GitDiff.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitDiff"; + +export const GitDiff: Icon = forwardRef((props, ref) => ( + +)); + +GitDiff.displayName = "GitDiff"; diff --git a/src/csr/GitFork.tsx b/src/csr/GitFork.tsx new file mode 100644 index 000000000..cbd44b4b4 --- /dev/null +++ b/src/csr/GitFork.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitFork"; + +export const GitFork: Icon = forwardRef((props, ref) => ( + +)); + +GitFork.displayName = "GitFork"; diff --git a/src/csr/GitMerge.tsx b/src/csr/GitMerge.tsx new file mode 100644 index 000000000..da85baa37 --- /dev/null +++ b/src/csr/GitMerge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitMerge"; + +export const GitMerge: Icon = forwardRef((props, ref) => ( + +)); + +GitMerge.displayName = "GitMerge"; diff --git a/src/csr/GitPullRequest.tsx b/src/csr/GitPullRequest.tsx new file mode 100644 index 000000000..441f27134 --- /dev/null +++ b/src/csr/GitPullRequest.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitPullRequest"; + +export const GitPullRequest: Icon = forwardRef((props, ref) => ( + +)); + +GitPullRequest.displayName = "GitPullRequest"; diff --git a/src/csr/GithubLogo.tsx b/src/csr/GithubLogo.tsx new file mode 100644 index 000000000..1b37fc695 --- /dev/null +++ b/src/csr/GithubLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GithubLogo"; + +export const GithubLogo: Icon = forwardRef((props, ref) => ( + +)); + +GithubLogo.displayName = "GithubLogo"; diff --git a/src/csr/GitlabLogo.tsx b/src/csr/GitlabLogo.tsx new file mode 100644 index 000000000..0741d6162 --- /dev/null +++ b/src/csr/GitlabLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitlabLogo"; + +export const GitlabLogo: Icon = forwardRef((props, ref) => ( + +)); + +GitlabLogo.displayName = "GitlabLogo"; diff --git a/src/csr/GitlabLogoSimple.tsx b/src/csr/GitlabLogoSimple.tsx new file mode 100644 index 000000000..6d45ea68a --- /dev/null +++ b/src/csr/GitlabLogoSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GitlabLogoSimple"; + +export const GitlabLogoSimple: Icon = forwardRef((props, ref) => ( + +)); + +GitlabLogoSimple.displayName = "GitlabLogoSimple"; diff --git a/src/csr/Globe.tsx b/src/csr/Globe.tsx new file mode 100644 index 000000000..8956cae2d --- /dev/null +++ b/src/csr/Globe.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Globe"; + +export const Globe: Icon = forwardRef((props, ref) => ( + +)); + +Globe.displayName = "Globe"; diff --git a/src/csr/GlobeHemisphereEast.tsx b/src/csr/GlobeHemisphereEast.tsx new file mode 100644 index 000000000..5dfe9ef9c --- /dev/null +++ b/src/csr/GlobeHemisphereEast.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GlobeHemisphereEast"; + +export const GlobeHemisphereEast: Icon = forwardRef((props, ref) => ( + +)); + +GlobeHemisphereEast.displayName = "GlobeHemisphereEast"; diff --git a/src/csr/GlobeHemisphereWest.tsx b/src/csr/GlobeHemisphereWest.tsx new file mode 100644 index 000000000..62aeb0997 --- /dev/null +++ b/src/csr/GlobeHemisphereWest.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GlobeHemisphereWest"; + +export const GlobeHemisphereWest: Icon = forwardRef((props, ref) => ( + +)); + +GlobeHemisphereWest.displayName = "GlobeHemisphereWest"; diff --git a/src/csr/GlobeSimple.tsx b/src/csr/GlobeSimple.tsx new file mode 100644 index 000000000..c990aa266 --- /dev/null +++ b/src/csr/GlobeSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GlobeSimple"; + +export const GlobeSimple: Icon = forwardRef((props, ref) => ( + +)); + +GlobeSimple.displayName = "GlobeSimple"; diff --git a/src/csr/GlobeStand.tsx b/src/csr/GlobeStand.tsx new file mode 100644 index 000000000..465e9656b --- /dev/null +++ b/src/csr/GlobeStand.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GlobeStand"; + +export const GlobeStand: Icon = forwardRef((props, ref) => ( + +)); + +GlobeStand.displayName = "GlobeStand"; diff --git a/src/csr/Goggles.tsx b/src/csr/Goggles.tsx new file mode 100644 index 000000000..f0062f3f9 --- /dev/null +++ b/src/csr/Goggles.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Goggles"; + +export const Goggles: Icon = forwardRef((props, ref) => ( + +)); + +Goggles.displayName = "Goggles"; diff --git a/src/csr/GoodreadsLogo.tsx b/src/csr/GoodreadsLogo.tsx new file mode 100644 index 000000000..60c8df2f2 --- /dev/null +++ b/src/csr/GoodreadsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GoodreadsLogo"; + +export const GoodreadsLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoodreadsLogo.displayName = "GoodreadsLogo"; diff --git a/src/csr/GoogleCardboardLogo.tsx b/src/csr/GoogleCardboardLogo.tsx new file mode 100644 index 000000000..06a2964e5 --- /dev/null +++ b/src/csr/GoogleCardboardLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GoogleCardboardLogo"; + +export const GoogleCardboardLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleCardboardLogo.displayName = "GoogleCardboardLogo"; diff --git a/src/csr/GoogleChromeLogo.tsx b/src/csr/GoogleChromeLogo.tsx new file mode 100644 index 000000000..efbe30d75 --- /dev/null +++ b/src/csr/GoogleChromeLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GoogleChromeLogo"; + +export const GoogleChromeLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleChromeLogo.displayName = "GoogleChromeLogo"; diff --git a/src/csr/GoogleDriveLogo.tsx b/src/csr/GoogleDriveLogo.tsx new file mode 100644 index 000000000..c15d607c0 --- /dev/null +++ b/src/csr/GoogleDriveLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GoogleDriveLogo"; + +export const GoogleDriveLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleDriveLogo.displayName = "GoogleDriveLogo"; diff --git a/src/csr/GoogleLogo.tsx b/src/csr/GoogleLogo.tsx new file mode 100644 index 000000000..0f13b9bb6 --- /dev/null +++ b/src/csr/GoogleLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GoogleLogo"; + +export const GoogleLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleLogo.displayName = "GoogleLogo"; diff --git a/src/csr/GooglePhotosLogo.tsx b/src/csr/GooglePhotosLogo.tsx new file mode 100644 index 000000000..54674d9d8 --- /dev/null +++ b/src/csr/GooglePhotosLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GooglePhotosLogo"; + +export const GooglePhotosLogo: Icon = forwardRef((props, ref) => ( + +)); + +GooglePhotosLogo.displayName = "GooglePhotosLogo"; diff --git a/src/csr/GooglePlayLogo.tsx b/src/csr/GooglePlayLogo.tsx new file mode 100644 index 000000000..29409e3a7 --- /dev/null +++ b/src/csr/GooglePlayLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GooglePlayLogo"; + +export const GooglePlayLogo: Icon = forwardRef((props, ref) => ( + +)); + +GooglePlayLogo.displayName = "GooglePlayLogo"; diff --git a/src/csr/GooglePodcastsLogo.tsx b/src/csr/GooglePodcastsLogo.tsx new file mode 100644 index 000000000..9bf087c43 --- /dev/null +++ b/src/csr/GooglePodcastsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GooglePodcastsLogo"; + +export const GooglePodcastsLogo: Icon = forwardRef((props, ref) => ( + +)); + +GooglePodcastsLogo.displayName = "GooglePodcastsLogo"; diff --git a/src/csr/Gradient.tsx b/src/csr/Gradient.tsx new file mode 100644 index 000000000..658fba095 --- /dev/null +++ b/src/csr/Gradient.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Gradient"; + +export const Gradient: Icon = forwardRef((props, ref) => ( + +)); + +Gradient.displayName = "Gradient"; diff --git a/src/csr/GraduationCap.tsx b/src/csr/GraduationCap.tsx new file mode 100644 index 000000000..75e8797fe --- /dev/null +++ b/src/csr/GraduationCap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GraduationCap"; + +export const GraduationCap: Icon = forwardRef((props, ref) => ( + +)); + +GraduationCap.displayName = "GraduationCap"; diff --git a/src/csr/Grains.tsx b/src/csr/Grains.tsx new file mode 100644 index 000000000..14c065cd6 --- /dev/null +++ b/src/csr/Grains.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Grains"; + +export const Grains: Icon = forwardRef((props, ref) => ( + +)); + +Grains.displayName = "Grains"; diff --git a/src/csr/GrainsSlash.tsx b/src/csr/GrainsSlash.tsx new file mode 100644 index 000000000..f3a83a64c --- /dev/null +++ b/src/csr/GrainsSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GrainsSlash"; + +export const GrainsSlash: Icon = forwardRef((props, ref) => ( + +)); + +GrainsSlash.displayName = "GrainsSlash"; diff --git a/src/csr/Graph.tsx b/src/csr/Graph.tsx new file mode 100644 index 000000000..21c7a2b22 --- /dev/null +++ b/src/csr/Graph.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Graph"; + +export const Graph: Icon = forwardRef((props, ref) => ( + +)); + +Graph.displayName = "Graph"; diff --git a/src/csr/GridFour.tsx b/src/csr/GridFour.tsx new file mode 100644 index 000000000..b381c7d8b --- /dev/null +++ b/src/csr/GridFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GridFour"; + +export const GridFour: Icon = forwardRef((props, ref) => ( + +)); + +GridFour.displayName = "GridFour"; diff --git a/src/csr/GridNine.tsx b/src/csr/GridNine.tsx new file mode 100644 index 000000000..60bb5fcd2 --- /dev/null +++ b/src/csr/GridNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/GridNine"; + +export const GridNine: Icon = forwardRef((props, ref) => ( + +)); + +GridNine.displayName = "GridNine"; diff --git a/src/csr/Guitar.tsx b/src/csr/Guitar.tsx new file mode 100644 index 000000000..b4e0c1588 --- /dev/null +++ b/src/csr/Guitar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Guitar"; + +export const Guitar: Icon = forwardRef((props, ref) => ( + +)); + +Guitar.displayName = "Guitar"; diff --git a/src/csr/Hamburger.tsx b/src/csr/Hamburger.tsx new file mode 100644 index 000000000..66c874bfe --- /dev/null +++ b/src/csr/Hamburger.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Hamburger"; + +export const Hamburger: Icon = forwardRef((props, ref) => ( + +)); + +Hamburger.displayName = "Hamburger"; diff --git a/src/csr/Hammer.tsx b/src/csr/Hammer.tsx new file mode 100644 index 000000000..a83e6d23c --- /dev/null +++ b/src/csr/Hammer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Hammer"; + +export const Hammer: Icon = forwardRef((props, ref) => ( + +)); + +Hammer.displayName = "Hammer"; diff --git a/src/csr/Hand.tsx b/src/csr/Hand.tsx new file mode 100644 index 000000000..f1d7a2850 --- /dev/null +++ b/src/csr/Hand.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Hand"; + +export const Hand: Icon = forwardRef((props, ref) => ( + +)); + +Hand.displayName = "Hand"; diff --git a/src/csr/HandCoins.tsx b/src/csr/HandCoins.tsx new file mode 100644 index 000000000..8dbe9ba5d --- /dev/null +++ b/src/csr/HandCoins.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandCoins"; + +export const HandCoins: Icon = forwardRef((props, ref) => ( + +)); + +HandCoins.displayName = "HandCoins"; diff --git a/src/csr/HandEye.tsx b/src/csr/HandEye.tsx new file mode 100644 index 000000000..c2dbc5c30 --- /dev/null +++ b/src/csr/HandEye.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandEye"; + +export const HandEye: Icon = forwardRef((props, ref) => ( + +)); + +HandEye.displayName = "HandEye"; diff --git a/src/csr/HandFist.tsx b/src/csr/HandFist.tsx new file mode 100644 index 000000000..d1902a538 --- /dev/null +++ b/src/csr/HandFist.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandFist"; + +export const HandFist: Icon = forwardRef((props, ref) => ( + +)); + +HandFist.displayName = "HandFist"; diff --git a/src/csr/HandGrabbing.tsx b/src/csr/HandGrabbing.tsx new file mode 100644 index 000000000..2c91e2978 --- /dev/null +++ b/src/csr/HandGrabbing.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandGrabbing"; + +export const HandGrabbing: Icon = forwardRef((props, ref) => ( + +)); + +HandGrabbing.displayName = "HandGrabbing"; diff --git a/src/csr/HandHeart.tsx b/src/csr/HandHeart.tsx new file mode 100644 index 000000000..2a2815d23 --- /dev/null +++ b/src/csr/HandHeart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandHeart"; + +export const HandHeart: Icon = forwardRef((props, ref) => ( + +)); + +HandHeart.displayName = "HandHeart"; diff --git a/src/csr/HandPalm.tsx b/src/csr/HandPalm.tsx new file mode 100644 index 000000000..ff5640137 --- /dev/null +++ b/src/csr/HandPalm.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandPalm"; + +export const HandPalm: Icon = forwardRef((props, ref) => ( + +)); + +HandPalm.displayName = "HandPalm"; diff --git a/src/csr/HandPointing.tsx b/src/csr/HandPointing.tsx new file mode 100644 index 000000000..ceea00187 --- /dev/null +++ b/src/csr/HandPointing.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandPointing"; + +export const HandPointing: Icon = forwardRef((props, ref) => ( + +)); + +HandPointing.displayName = "HandPointing"; diff --git a/src/csr/HandSoap.tsx b/src/csr/HandSoap.tsx new file mode 100644 index 000000000..6e083b766 --- /dev/null +++ b/src/csr/HandSoap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandSoap"; + +export const HandSoap: Icon = forwardRef((props, ref) => ( + +)); + +HandSoap.displayName = "HandSoap"; diff --git a/src/csr/HandSwipeLeft.tsx b/src/csr/HandSwipeLeft.tsx new file mode 100644 index 000000000..aae207605 --- /dev/null +++ b/src/csr/HandSwipeLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandSwipeLeft"; + +export const HandSwipeLeft: Icon = forwardRef((props, ref) => ( + +)); + +HandSwipeLeft.displayName = "HandSwipeLeft"; diff --git a/src/csr/HandSwipeRight.tsx b/src/csr/HandSwipeRight.tsx new file mode 100644 index 000000000..a2c93e5db --- /dev/null +++ b/src/csr/HandSwipeRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandSwipeRight"; + +export const HandSwipeRight: Icon = forwardRef((props, ref) => ( + +)); + +HandSwipeRight.displayName = "HandSwipeRight"; diff --git a/src/csr/HandTap.tsx b/src/csr/HandTap.tsx new file mode 100644 index 000000000..b4eaa829d --- /dev/null +++ b/src/csr/HandTap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandTap"; + +export const HandTap: Icon = forwardRef((props, ref) => ( + +)); + +HandTap.displayName = "HandTap"; diff --git a/src/csr/HandWaving.tsx b/src/csr/HandWaving.tsx new file mode 100644 index 000000000..222095cc1 --- /dev/null +++ b/src/csr/HandWaving.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandWaving"; + +export const HandWaving: Icon = forwardRef((props, ref) => ( + +)); + +HandWaving.displayName = "HandWaving"; diff --git a/src/csr/Handbag.tsx b/src/csr/Handbag.tsx new file mode 100644 index 000000000..77c44ee1c --- /dev/null +++ b/src/csr/Handbag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Handbag"; + +export const Handbag: Icon = forwardRef((props, ref) => ( + +)); + +Handbag.displayName = "Handbag"; diff --git a/src/csr/HandbagSimple.tsx b/src/csr/HandbagSimple.tsx new file mode 100644 index 000000000..6ac924601 --- /dev/null +++ b/src/csr/HandbagSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandbagSimple"; + +export const HandbagSimple: Icon = forwardRef((props, ref) => ( + +)); + +HandbagSimple.displayName = "HandbagSimple"; diff --git a/src/csr/HandsClapping.tsx b/src/csr/HandsClapping.tsx new file mode 100644 index 000000000..ff7778aac --- /dev/null +++ b/src/csr/HandsClapping.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandsClapping"; + +export const HandsClapping: Icon = forwardRef((props, ref) => ( + +)); + +HandsClapping.displayName = "HandsClapping"; diff --git a/src/csr/HandsPraying.tsx b/src/csr/HandsPraying.tsx new file mode 100644 index 000000000..34c3de7ac --- /dev/null +++ b/src/csr/HandsPraying.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HandsPraying"; + +export const HandsPraying: Icon = forwardRef((props, ref) => ( + +)); + +HandsPraying.displayName = "HandsPraying"; diff --git a/src/csr/Handshake.tsx b/src/csr/Handshake.tsx new file mode 100644 index 000000000..9e91fc85f --- /dev/null +++ b/src/csr/Handshake.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Handshake"; + +export const Handshake: Icon = forwardRef((props, ref) => ( + +)); + +Handshake.displayName = "Handshake"; diff --git a/src/csr/HardDrive.tsx b/src/csr/HardDrive.tsx new file mode 100644 index 000000000..5a5217832 --- /dev/null +++ b/src/csr/HardDrive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HardDrive"; + +export const HardDrive: Icon = forwardRef((props, ref) => ( + +)); + +HardDrive.displayName = "HardDrive"; diff --git a/src/csr/HardDrives.tsx b/src/csr/HardDrives.tsx new file mode 100644 index 000000000..06252cd06 --- /dev/null +++ b/src/csr/HardDrives.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HardDrives"; + +export const HardDrives: Icon = forwardRef((props, ref) => ( + +)); + +HardDrives.displayName = "HardDrives"; diff --git a/src/csr/Hash.tsx b/src/csr/Hash.tsx new file mode 100644 index 000000000..917743354 --- /dev/null +++ b/src/csr/Hash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Hash"; + +export const Hash: Icon = forwardRef((props, ref) => ( + +)); + +Hash.displayName = "Hash"; diff --git a/src/csr/HashStraight.tsx b/src/csr/HashStraight.tsx new file mode 100644 index 000000000..75283ee96 --- /dev/null +++ b/src/csr/HashStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HashStraight"; + +export const HashStraight: Icon = forwardRef((props, ref) => ( + +)); + +HashStraight.displayName = "HashStraight"; diff --git a/src/csr/Headlights.tsx b/src/csr/Headlights.tsx new file mode 100644 index 000000000..a0d2a3f08 --- /dev/null +++ b/src/csr/Headlights.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Headlights"; + +export const Headlights: Icon = forwardRef((props, ref) => ( + +)); + +Headlights.displayName = "Headlights"; diff --git a/src/csr/Headphones.tsx b/src/csr/Headphones.tsx new file mode 100644 index 000000000..1976e0b49 --- /dev/null +++ b/src/csr/Headphones.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Headphones"; + +export const Headphones: Icon = forwardRef((props, ref) => ( + +)); + +Headphones.displayName = "Headphones"; diff --git a/src/csr/Headset.tsx b/src/csr/Headset.tsx new file mode 100644 index 000000000..1befb4543 --- /dev/null +++ b/src/csr/Headset.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Headset"; + +export const Headset: Icon = forwardRef((props, ref) => ( + +)); + +Headset.displayName = "Headset"; diff --git a/src/csr/Heart.tsx b/src/csr/Heart.tsx new file mode 100644 index 000000000..4110e0df7 --- /dev/null +++ b/src/csr/Heart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Heart"; + +export const Heart: Icon = forwardRef((props, ref) => ( + +)); + +Heart.displayName = "Heart"; diff --git a/src/csr/HeartBreak.tsx b/src/csr/HeartBreak.tsx new file mode 100644 index 000000000..0333c25f4 --- /dev/null +++ b/src/csr/HeartBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HeartBreak"; + +export const HeartBreak: Icon = forwardRef((props, ref) => ( + +)); + +HeartBreak.displayName = "HeartBreak"; diff --git a/src/csr/HeartHalf.tsx b/src/csr/HeartHalf.tsx new file mode 100644 index 000000000..5e50924ec --- /dev/null +++ b/src/csr/HeartHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HeartHalf"; + +export const HeartHalf: Icon = forwardRef((props, ref) => ( + +)); + +HeartHalf.displayName = "HeartHalf"; diff --git a/src/csr/HeartStraight.tsx b/src/csr/HeartStraight.tsx new file mode 100644 index 000000000..4b04808d2 --- /dev/null +++ b/src/csr/HeartStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HeartStraight"; + +export const HeartStraight: Icon = forwardRef((props, ref) => ( + +)); + +HeartStraight.displayName = "HeartStraight"; diff --git a/src/csr/HeartStraightBreak.tsx b/src/csr/HeartStraightBreak.tsx new file mode 100644 index 000000000..a41dbafec --- /dev/null +++ b/src/csr/HeartStraightBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HeartStraightBreak"; + +export const HeartStraightBreak: Icon = forwardRef((props, ref) => ( + +)); + +HeartStraightBreak.displayName = "HeartStraightBreak"; diff --git a/src/csr/Heartbeat.tsx b/src/csr/Heartbeat.tsx new file mode 100644 index 000000000..8cae2e8dd --- /dev/null +++ b/src/csr/Heartbeat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Heartbeat"; + +export const Heartbeat: Icon = forwardRef((props, ref) => ( + +)); + +Heartbeat.displayName = "Heartbeat"; diff --git a/src/csr/Hexagon.tsx b/src/csr/Hexagon.tsx new file mode 100644 index 000000000..df41e5a9a --- /dev/null +++ b/src/csr/Hexagon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Hexagon"; + +export const Hexagon: Icon = forwardRef((props, ref) => ( + +)); + +Hexagon.displayName = "Hexagon"; diff --git a/src/csr/HighHeel.tsx b/src/csr/HighHeel.tsx new file mode 100644 index 000000000..8e0401585 --- /dev/null +++ b/src/csr/HighHeel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HighHeel"; + +export const HighHeel: Icon = forwardRef((props, ref) => ( + +)); + +HighHeel.displayName = "HighHeel"; diff --git a/src/csr/HighlighterCircle.tsx b/src/csr/HighlighterCircle.tsx new file mode 100644 index 000000000..1387f66f4 --- /dev/null +++ b/src/csr/HighlighterCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HighlighterCircle"; + +export const HighlighterCircle: Icon = forwardRef((props, ref) => ( + +)); + +HighlighterCircle.displayName = "HighlighterCircle"; diff --git a/src/csr/Hoodie.tsx b/src/csr/Hoodie.tsx new file mode 100644 index 000000000..fd6531886 --- /dev/null +++ b/src/csr/Hoodie.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Hoodie"; + +export const Hoodie: Icon = forwardRef((props, ref) => ( + +)); + +Hoodie.displayName = "Hoodie"; diff --git a/src/csr/Horse.tsx b/src/csr/Horse.tsx new file mode 100644 index 000000000..7d46699e1 --- /dev/null +++ b/src/csr/Horse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Horse"; + +export const Horse: Icon = forwardRef((props, ref) => ( + +)); + +Horse.displayName = "Horse"; diff --git a/src/csr/Hourglass.tsx b/src/csr/Hourglass.tsx new file mode 100644 index 000000000..249a3b87a --- /dev/null +++ b/src/csr/Hourglass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Hourglass"; + +export const Hourglass: Icon = forwardRef((props, ref) => ( + +)); + +Hourglass.displayName = "Hourglass"; diff --git a/src/csr/HourglassHigh.tsx b/src/csr/HourglassHigh.tsx new file mode 100644 index 000000000..dad534856 --- /dev/null +++ b/src/csr/HourglassHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HourglassHigh"; + +export const HourglassHigh: Icon = forwardRef((props, ref) => ( + +)); + +HourglassHigh.displayName = "HourglassHigh"; diff --git a/src/csr/HourglassLow.tsx b/src/csr/HourglassLow.tsx new file mode 100644 index 000000000..882181761 --- /dev/null +++ b/src/csr/HourglassLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HourglassLow"; + +export const HourglassLow: Icon = forwardRef((props, ref) => ( + +)); + +HourglassLow.displayName = "HourglassLow"; diff --git a/src/csr/HourglassMedium.tsx b/src/csr/HourglassMedium.tsx new file mode 100644 index 000000000..c922cabb8 --- /dev/null +++ b/src/csr/HourglassMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HourglassMedium"; + +export const HourglassMedium: Icon = forwardRef((props, ref) => ( + +)); + +HourglassMedium.displayName = "HourglassMedium"; diff --git a/src/csr/HourglassSimple.tsx b/src/csr/HourglassSimple.tsx new file mode 100644 index 000000000..471455cc7 --- /dev/null +++ b/src/csr/HourglassSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HourglassSimple"; + +export const HourglassSimple: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimple.displayName = "HourglassSimple"; diff --git a/src/csr/HourglassSimpleHigh.tsx b/src/csr/HourglassSimpleHigh.tsx new file mode 100644 index 000000000..cd9e98a36 --- /dev/null +++ b/src/csr/HourglassSimpleHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HourglassSimpleHigh"; + +export const HourglassSimpleHigh: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimpleHigh.displayName = "HourglassSimpleHigh"; diff --git a/src/csr/HourglassSimpleLow.tsx b/src/csr/HourglassSimpleLow.tsx new file mode 100644 index 000000000..13456cceb --- /dev/null +++ b/src/csr/HourglassSimpleLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HourglassSimpleLow"; + +export const HourglassSimpleLow: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimpleLow.displayName = "HourglassSimpleLow"; diff --git a/src/csr/HourglassSimpleMedium.tsx b/src/csr/HourglassSimpleMedium.tsx new file mode 100644 index 000000000..a3fc68bf6 --- /dev/null +++ b/src/csr/HourglassSimpleMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HourglassSimpleMedium"; + +export const HourglassSimpleMedium: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimpleMedium.displayName = "HourglassSimpleMedium"; diff --git a/src/csr/House.tsx b/src/csr/House.tsx new file mode 100644 index 000000000..12e585899 --- /dev/null +++ b/src/csr/House.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/House"; + +export const House: Icon = forwardRef((props, ref) => ( + +)); + +House.displayName = "House"; diff --git a/src/csr/HouseLine.tsx b/src/csr/HouseLine.tsx new file mode 100644 index 000000000..4a0b0f5db --- /dev/null +++ b/src/csr/HouseLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HouseLine"; + +export const HouseLine: Icon = forwardRef((props, ref) => ( + +)); + +HouseLine.displayName = "HouseLine"; diff --git a/src/csr/HouseSimple.tsx b/src/csr/HouseSimple.tsx new file mode 100644 index 000000000..a977f0623 --- /dev/null +++ b/src/csr/HouseSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/HouseSimple"; + +export const HouseSimple: Icon = forwardRef((props, ref) => ( + +)); + +HouseSimple.displayName = "HouseSimple"; diff --git a/src/csr/IceCream.tsx b/src/csr/IceCream.tsx new file mode 100644 index 000000000..6a2a00165 --- /dev/null +++ b/src/csr/IceCream.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/IceCream"; + +export const IceCream: Icon = forwardRef((props, ref) => ( + +)); + +IceCream.displayName = "IceCream"; diff --git a/src/csr/IdentificationBadge.tsx b/src/csr/IdentificationBadge.tsx new file mode 100644 index 000000000..417e812be --- /dev/null +++ b/src/csr/IdentificationBadge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/IdentificationBadge"; + +export const IdentificationBadge: Icon = forwardRef((props, ref) => ( + +)); + +IdentificationBadge.displayName = "IdentificationBadge"; diff --git a/src/csr/IdentificationCard.tsx b/src/csr/IdentificationCard.tsx new file mode 100644 index 000000000..229c74e64 --- /dev/null +++ b/src/csr/IdentificationCard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/IdentificationCard"; + +export const IdentificationCard: Icon = forwardRef((props, ref) => ( + +)); + +IdentificationCard.displayName = "IdentificationCard"; diff --git a/src/csr/Image.tsx b/src/csr/Image.tsx new file mode 100644 index 000000000..96465148c --- /dev/null +++ b/src/csr/Image.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Image"; + +export const Image: Icon = forwardRef((props, ref) => ( + +)); + +Image.displayName = "Image"; diff --git a/src/csr/ImageSquare.tsx b/src/csr/ImageSquare.tsx new file mode 100644 index 000000000..0f29264b5 --- /dev/null +++ b/src/csr/ImageSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ImageSquare"; + +export const ImageSquare: Icon = forwardRef((props, ref) => ( + +)); + +ImageSquare.displayName = "ImageSquare"; diff --git a/src/csr/Images.tsx b/src/csr/Images.tsx new file mode 100644 index 000000000..f26eeeae4 --- /dev/null +++ b/src/csr/Images.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Images"; + +export const Images: Icon = forwardRef((props, ref) => ( + +)); + +Images.displayName = "Images"; diff --git a/src/csr/ImagesSquare.tsx b/src/csr/ImagesSquare.tsx new file mode 100644 index 000000000..febcbe9a4 --- /dev/null +++ b/src/csr/ImagesSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ImagesSquare"; + +export const ImagesSquare: Icon = forwardRef((props, ref) => ( + +)); + +ImagesSquare.displayName = "ImagesSquare"; diff --git a/src/csr/Infinity.tsx b/src/csr/Infinity.tsx new file mode 100644 index 000000000..8f4776d80 --- /dev/null +++ b/src/csr/Infinity.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Infinity"; + +export const Infinity: Icon = forwardRef((props, ref) => ( + +)); + +Infinity.displayName = "Infinity"; diff --git a/src/csr/Info.tsx b/src/csr/Info.tsx new file mode 100644 index 000000000..ad31b7a66 --- /dev/null +++ b/src/csr/Info.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Info"; + +export const Info: Icon = forwardRef((props, ref) => ( + +)); + +Info.displayName = "Info"; diff --git a/src/csr/InstagramLogo.tsx b/src/csr/InstagramLogo.tsx new file mode 100644 index 000000000..1753b9008 --- /dev/null +++ b/src/csr/InstagramLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/InstagramLogo"; + +export const InstagramLogo: Icon = forwardRef((props, ref) => ( + +)); + +InstagramLogo.displayName = "InstagramLogo"; diff --git a/src/csr/Intersect.tsx b/src/csr/Intersect.tsx new file mode 100644 index 000000000..e6333bf98 --- /dev/null +++ b/src/csr/Intersect.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Intersect"; + +export const Intersect: Icon = forwardRef((props, ref) => ( + +)); + +Intersect.displayName = "Intersect"; diff --git a/src/csr/IntersectSquare.tsx b/src/csr/IntersectSquare.tsx new file mode 100644 index 000000000..ff49ea8f8 --- /dev/null +++ b/src/csr/IntersectSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/IntersectSquare"; + +export const IntersectSquare: Icon = forwardRef((props, ref) => ( + +)); + +IntersectSquare.displayName = "IntersectSquare"; diff --git a/src/csr/IntersectThree.tsx b/src/csr/IntersectThree.tsx new file mode 100644 index 000000000..f8e3cea29 --- /dev/null +++ b/src/csr/IntersectThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/IntersectThree"; + +export const IntersectThree: Icon = forwardRef((props, ref) => ( + +)); + +IntersectThree.displayName = "IntersectThree"; diff --git a/src/csr/Jeep.tsx b/src/csr/Jeep.tsx new file mode 100644 index 000000000..ad98825ac --- /dev/null +++ b/src/csr/Jeep.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Jeep"; + +export const Jeep: Icon = forwardRef((props, ref) => ( + +)); + +Jeep.displayName = "Jeep"; diff --git a/src/csr/Kanban.tsx b/src/csr/Kanban.tsx new file mode 100644 index 000000000..7360c2b66 --- /dev/null +++ b/src/csr/Kanban.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Kanban"; + +export const Kanban: Icon = forwardRef((props, ref) => ( + +)); + +Kanban.displayName = "Kanban"; diff --git a/src/csr/Key.tsx b/src/csr/Key.tsx new file mode 100644 index 000000000..7330bd271 --- /dev/null +++ b/src/csr/Key.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Key"; + +export const Key: Icon = forwardRef((props, ref) => ( + +)); + +Key.displayName = "Key"; diff --git a/src/csr/KeyReturn.tsx b/src/csr/KeyReturn.tsx new file mode 100644 index 000000000..cded73e68 --- /dev/null +++ b/src/csr/KeyReturn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/KeyReturn"; + +export const KeyReturn: Icon = forwardRef((props, ref) => ( + +)); + +KeyReturn.displayName = "KeyReturn"; diff --git a/src/csr/Keyboard.tsx b/src/csr/Keyboard.tsx new file mode 100644 index 000000000..73ac659c1 --- /dev/null +++ b/src/csr/Keyboard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Keyboard"; + +export const Keyboard: Icon = forwardRef((props, ref) => ( + +)); + +Keyboard.displayName = "Keyboard"; diff --git a/src/csr/Keyhole.tsx b/src/csr/Keyhole.tsx new file mode 100644 index 000000000..003c7d450 --- /dev/null +++ b/src/csr/Keyhole.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Keyhole"; + +export const Keyhole: Icon = forwardRef((props, ref) => ( + +)); + +Keyhole.displayName = "Keyhole"; diff --git a/src/csr/Knife.tsx b/src/csr/Knife.tsx new file mode 100644 index 000000000..1a956f0e8 --- /dev/null +++ b/src/csr/Knife.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Knife"; + +export const Knife: Icon = forwardRef((props, ref) => ( + +)); + +Knife.displayName = "Knife"; diff --git a/src/csr/Ladder.tsx b/src/csr/Ladder.tsx new file mode 100644 index 000000000..5e1f514eb --- /dev/null +++ b/src/csr/Ladder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Ladder"; + +export const Ladder: Icon = forwardRef((props, ref) => ( + +)); + +Ladder.displayName = "Ladder"; diff --git a/src/csr/LadderSimple.tsx b/src/csr/LadderSimple.tsx new file mode 100644 index 000000000..c37946d05 --- /dev/null +++ b/src/csr/LadderSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LadderSimple"; + +export const LadderSimple: Icon = forwardRef((props, ref) => ( + +)); + +LadderSimple.displayName = "LadderSimple"; diff --git a/src/csr/Lamp.tsx b/src/csr/Lamp.tsx new file mode 100644 index 000000000..a6936d0c6 --- /dev/null +++ b/src/csr/Lamp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Lamp"; + +export const Lamp: Icon = forwardRef((props, ref) => ( + +)); + +Lamp.displayName = "Lamp"; diff --git a/src/csr/Laptop.tsx b/src/csr/Laptop.tsx new file mode 100644 index 000000000..1db400508 --- /dev/null +++ b/src/csr/Laptop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Laptop"; + +export const Laptop: Icon = forwardRef((props, ref) => ( + +)); + +Laptop.displayName = "Laptop"; diff --git a/src/csr/Layout.tsx b/src/csr/Layout.tsx new file mode 100644 index 000000000..e26ffdf3f --- /dev/null +++ b/src/csr/Layout.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Layout"; + +export const Layout: Icon = forwardRef((props, ref) => ( + +)); + +Layout.displayName = "Layout"; diff --git a/src/csr/Leaf.tsx b/src/csr/Leaf.tsx new file mode 100644 index 000000000..479be1b80 --- /dev/null +++ b/src/csr/Leaf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Leaf"; + +export const Leaf: Icon = forwardRef((props, ref) => ( + +)); + +Leaf.displayName = "Leaf"; diff --git a/src/csr/Lifebuoy.tsx b/src/csr/Lifebuoy.tsx new file mode 100644 index 000000000..8450c61bd --- /dev/null +++ b/src/csr/Lifebuoy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Lifebuoy"; + +export const Lifebuoy: Icon = forwardRef((props, ref) => ( + +)); + +Lifebuoy.displayName = "Lifebuoy"; diff --git a/src/csr/Lightbulb.tsx b/src/csr/Lightbulb.tsx new file mode 100644 index 000000000..0ce0dbf37 --- /dev/null +++ b/src/csr/Lightbulb.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Lightbulb"; + +export const Lightbulb: Icon = forwardRef((props, ref) => ( + +)); + +Lightbulb.displayName = "Lightbulb"; diff --git a/src/csr/LightbulbFilament.tsx b/src/csr/LightbulbFilament.tsx new file mode 100644 index 000000000..3b2bfac8c --- /dev/null +++ b/src/csr/LightbulbFilament.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LightbulbFilament"; + +export const LightbulbFilament: Icon = forwardRef((props, ref) => ( + +)); + +LightbulbFilament.displayName = "LightbulbFilament"; diff --git a/src/csr/Lighthouse.tsx b/src/csr/Lighthouse.tsx new file mode 100644 index 000000000..2401a262c --- /dev/null +++ b/src/csr/Lighthouse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Lighthouse"; + +export const Lighthouse: Icon = forwardRef((props, ref) => ( + +)); + +Lighthouse.displayName = "Lighthouse"; diff --git a/src/csr/Lightning.tsx b/src/csr/Lightning.tsx new file mode 100644 index 000000000..da2cb4b06 --- /dev/null +++ b/src/csr/Lightning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Lightning"; + +export const Lightning: Icon = forwardRef((props, ref) => ( + +)); + +Lightning.displayName = "Lightning"; diff --git a/src/csr/LightningA.tsx b/src/csr/LightningA.tsx new file mode 100644 index 000000000..16097568e --- /dev/null +++ b/src/csr/LightningA.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LightningA"; + +export const LightningA: Icon = forwardRef((props, ref) => ( + +)); + +LightningA.displayName = "LightningA"; diff --git a/src/csr/LightningSlash.tsx b/src/csr/LightningSlash.tsx new file mode 100644 index 000000000..fa344ce21 --- /dev/null +++ b/src/csr/LightningSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LightningSlash"; + +export const LightningSlash: Icon = forwardRef((props, ref) => ( + +)); + +LightningSlash.displayName = "LightningSlash"; diff --git a/src/csr/LineSegment.tsx b/src/csr/LineSegment.tsx new file mode 100644 index 000000000..908be3500 --- /dev/null +++ b/src/csr/LineSegment.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LineSegment"; + +export const LineSegment: Icon = forwardRef((props, ref) => ( + +)); + +LineSegment.displayName = "LineSegment"; diff --git a/src/csr/LineSegments.tsx b/src/csr/LineSegments.tsx new file mode 100644 index 000000000..352a5a7b7 --- /dev/null +++ b/src/csr/LineSegments.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LineSegments"; + +export const LineSegments: Icon = forwardRef((props, ref) => ( + +)); + +LineSegments.displayName = "LineSegments"; diff --git a/src/csr/Link.tsx b/src/csr/Link.tsx new file mode 100644 index 000000000..1c578d212 --- /dev/null +++ b/src/csr/Link.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Link"; + +export const Link: Icon = forwardRef((props, ref) => ( + +)); + +Link.displayName = "Link"; diff --git a/src/csr/LinkBreak.tsx b/src/csr/LinkBreak.tsx new file mode 100644 index 000000000..1321a796a --- /dev/null +++ b/src/csr/LinkBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LinkBreak"; + +export const LinkBreak: Icon = forwardRef((props, ref) => ( + +)); + +LinkBreak.displayName = "LinkBreak"; diff --git a/src/csr/LinkSimple.tsx b/src/csr/LinkSimple.tsx new file mode 100644 index 000000000..777e94e73 --- /dev/null +++ b/src/csr/LinkSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LinkSimple"; + +export const LinkSimple: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimple.displayName = "LinkSimple"; diff --git a/src/csr/LinkSimpleBreak.tsx b/src/csr/LinkSimpleBreak.tsx new file mode 100644 index 000000000..0e8c9a353 --- /dev/null +++ b/src/csr/LinkSimpleBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LinkSimpleBreak"; + +export const LinkSimpleBreak: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimpleBreak.displayName = "LinkSimpleBreak"; diff --git a/src/csr/LinkSimpleHorizontal.tsx b/src/csr/LinkSimpleHorizontal.tsx new file mode 100644 index 000000000..698e1f62d --- /dev/null +++ b/src/csr/LinkSimpleHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LinkSimpleHorizontal"; + +export const LinkSimpleHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimpleHorizontal.displayName = "LinkSimpleHorizontal"; diff --git a/src/csr/LinkSimpleHorizontalBreak.tsx b/src/csr/LinkSimpleHorizontalBreak.tsx new file mode 100644 index 000000000..d2497aa2c --- /dev/null +++ b/src/csr/LinkSimpleHorizontalBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LinkSimpleHorizontalBreak"; + +export const LinkSimpleHorizontalBreak: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimpleHorizontalBreak.displayName = "LinkSimpleHorizontalBreak"; diff --git a/src/csr/LinkedinLogo.tsx b/src/csr/LinkedinLogo.tsx new file mode 100644 index 000000000..6d7f9c4e0 --- /dev/null +++ b/src/csr/LinkedinLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LinkedinLogo"; + +export const LinkedinLogo: Icon = forwardRef((props, ref) => ( + +)); + +LinkedinLogo.displayName = "LinkedinLogo"; diff --git a/src/csr/LinuxLogo.tsx b/src/csr/LinuxLogo.tsx new file mode 100644 index 000000000..6eaecf1b5 --- /dev/null +++ b/src/csr/LinuxLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LinuxLogo"; + +export const LinuxLogo: Icon = forwardRef((props, ref) => ( + +)); + +LinuxLogo.displayName = "LinuxLogo"; diff --git a/src/csr/List.tsx b/src/csr/List.tsx new file mode 100644 index 000000000..8eb76217a --- /dev/null +++ b/src/csr/List.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/List"; + +export const List: Icon = forwardRef((props, ref) => ( + +)); + +List.displayName = "List"; diff --git a/src/csr/ListBullets.tsx b/src/csr/ListBullets.tsx new file mode 100644 index 000000000..070174e26 --- /dev/null +++ b/src/csr/ListBullets.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ListBullets"; + +export const ListBullets: Icon = forwardRef((props, ref) => ( + +)); + +ListBullets.displayName = "ListBullets"; diff --git a/src/csr/ListChecks.tsx b/src/csr/ListChecks.tsx new file mode 100644 index 000000000..ff43220fc --- /dev/null +++ b/src/csr/ListChecks.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ListChecks"; + +export const ListChecks: Icon = forwardRef((props, ref) => ( + +)); + +ListChecks.displayName = "ListChecks"; diff --git a/src/csr/ListDashes.tsx b/src/csr/ListDashes.tsx new file mode 100644 index 000000000..df9731371 --- /dev/null +++ b/src/csr/ListDashes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ListDashes"; + +export const ListDashes: Icon = forwardRef((props, ref) => ( + +)); + +ListDashes.displayName = "ListDashes"; diff --git a/src/csr/ListMagnifyingGlass.tsx b/src/csr/ListMagnifyingGlass.tsx new file mode 100644 index 000000000..7c6bc8a14 --- /dev/null +++ b/src/csr/ListMagnifyingGlass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ListMagnifyingGlass"; + +export const ListMagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +ListMagnifyingGlass.displayName = "ListMagnifyingGlass"; diff --git a/src/csr/ListNumbers.tsx b/src/csr/ListNumbers.tsx new file mode 100644 index 000000000..78ecee647 --- /dev/null +++ b/src/csr/ListNumbers.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ListNumbers"; + +export const ListNumbers: Icon = forwardRef((props, ref) => ( + +)); + +ListNumbers.displayName = "ListNumbers"; diff --git a/src/csr/ListPlus.tsx b/src/csr/ListPlus.tsx new file mode 100644 index 000000000..f475a19fb --- /dev/null +++ b/src/csr/ListPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ListPlus"; + +export const ListPlus: Icon = forwardRef((props, ref) => ( + +)); + +ListPlus.displayName = "ListPlus"; diff --git a/src/csr/Lock.tsx b/src/csr/Lock.tsx new file mode 100644 index 000000000..04ac60e1b --- /dev/null +++ b/src/csr/Lock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Lock"; + +export const Lock: Icon = forwardRef((props, ref) => ( + +)); + +Lock.displayName = "Lock"; diff --git a/src/csr/LockKey.tsx b/src/csr/LockKey.tsx new file mode 100644 index 000000000..aa76a84af --- /dev/null +++ b/src/csr/LockKey.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LockKey"; + +export const LockKey: Icon = forwardRef((props, ref) => ( + +)); + +LockKey.displayName = "LockKey"; diff --git a/src/csr/LockKeyOpen.tsx b/src/csr/LockKeyOpen.tsx new file mode 100644 index 000000000..efe929f61 --- /dev/null +++ b/src/csr/LockKeyOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LockKeyOpen"; + +export const LockKeyOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockKeyOpen.displayName = "LockKeyOpen"; diff --git a/src/csr/LockLaminated.tsx b/src/csr/LockLaminated.tsx new file mode 100644 index 000000000..25b5a303e --- /dev/null +++ b/src/csr/LockLaminated.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LockLaminated"; + +export const LockLaminated: Icon = forwardRef((props, ref) => ( + +)); + +LockLaminated.displayName = "LockLaminated"; diff --git a/src/csr/LockLaminatedOpen.tsx b/src/csr/LockLaminatedOpen.tsx new file mode 100644 index 000000000..145d3c960 --- /dev/null +++ b/src/csr/LockLaminatedOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LockLaminatedOpen"; + +export const LockLaminatedOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockLaminatedOpen.displayName = "LockLaminatedOpen"; diff --git a/src/csr/LockOpen.tsx b/src/csr/LockOpen.tsx new file mode 100644 index 000000000..84dc30456 --- /dev/null +++ b/src/csr/LockOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LockOpen"; + +export const LockOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockOpen.displayName = "LockOpen"; diff --git a/src/csr/LockSimple.tsx b/src/csr/LockSimple.tsx new file mode 100644 index 000000000..f8f08a3e1 --- /dev/null +++ b/src/csr/LockSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LockSimple"; + +export const LockSimple: Icon = forwardRef((props, ref) => ( + +)); + +LockSimple.displayName = "LockSimple"; diff --git a/src/csr/LockSimpleOpen.tsx b/src/csr/LockSimpleOpen.tsx new file mode 100644 index 000000000..bcf6a2c3f --- /dev/null +++ b/src/csr/LockSimpleOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/LockSimpleOpen"; + +export const LockSimpleOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockSimpleOpen.displayName = "LockSimpleOpen"; diff --git a/src/csr/Lockers.tsx b/src/csr/Lockers.tsx new file mode 100644 index 000000000..6a502b747 --- /dev/null +++ b/src/csr/Lockers.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Lockers"; + +export const Lockers: Icon = forwardRef((props, ref) => ( + +)); + +Lockers.displayName = "Lockers"; diff --git a/src/csr/MagicWand.tsx b/src/csr/MagicWand.tsx new file mode 100644 index 000000000..f765fa1fa --- /dev/null +++ b/src/csr/MagicWand.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MagicWand"; + +export const MagicWand: Icon = forwardRef((props, ref) => ( + +)); + +MagicWand.displayName = "MagicWand"; diff --git a/src/csr/Magnet.tsx b/src/csr/Magnet.tsx new file mode 100644 index 000000000..664ed020b --- /dev/null +++ b/src/csr/Magnet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Magnet"; + +export const Magnet: Icon = forwardRef((props, ref) => ( + +)); + +Magnet.displayName = "Magnet"; diff --git a/src/csr/MagnetStraight.tsx b/src/csr/MagnetStraight.tsx new file mode 100644 index 000000000..1a3159da3 --- /dev/null +++ b/src/csr/MagnetStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MagnetStraight"; + +export const MagnetStraight: Icon = forwardRef((props, ref) => ( + +)); + +MagnetStraight.displayName = "MagnetStraight"; diff --git a/src/csr/MagnifyingGlass.tsx b/src/csr/MagnifyingGlass.tsx new file mode 100644 index 000000000..a175d7b7c --- /dev/null +++ b/src/csr/MagnifyingGlass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MagnifyingGlass"; + +export const MagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +MagnifyingGlass.displayName = "MagnifyingGlass"; diff --git a/src/csr/MagnifyingGlassMinus.tsx b/src/csr/MagnifyingGlassMinus.tsx new file mode 100644 index 000000000..ba8397a91 --- /dev/null +++ b/src/csr/MagnifyingGlassMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MagnifyingGlassMinus"; + +export const MagnifyingGlassMinus: Icon = forwardRef((props, ref) => ( + +)); + +MagnifyingGlassMinus.displayName = "MagnifyingGlassMinus"; diff --git a/src/csr/MagnifyingGlassPlus.tsx b/src/csr/MagnifyingGlassPlus.tsx new file mode 100644 index 000000000..2c25aaedf --- /dev/null +++ b/src/csr/MagnifyingGlassPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MagnifyingGlassPlus"; + +export const MagnifyingGlassPlus: Icon = forwardRef((props, ref) => ( + +)); + +MagnifyingGlassPlus.displayName = "MagnifyingGlassPlus"; diff --git a/src/csr/MapPin.tsx b/src/csr/MapPin.tsx new file mode 100644 index 000000000..3a25480b4 --- /dev/null +++ b/src/csr/MapPin.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MapPin"; + +export const MapPin: Icon = forwardRef((props, ref) => ( + +)); + +MapPin.displayName = "MapPin"; diff --git a/src/csr/MapPinLine.tsx b/src/csr/MapPinLine.tsx new file mode 100644 index 000000000..38f5e08a6 --- /dev/null +++ b/src/csr/MapPinLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MapPinLine"; + +export const MapPinLine: Icon = forwardRef((props, ref) => ( + +)); + +MapPinLine.displayName = "MapPinLine"; diff --git a/src/csr/MapTrifold.tsx b/src/csr/MapTrifold.tsx new file mode 100644 index 000000000..1ceb48f4e --- /dev/null +++ b/src/csr/MapTrifold.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MapTrifold"; + +export const MapTrifold: Icon = forwardRef((props, ref) => ( + +)); + +MapTrifold.displayName = "MapTrifold"; diff --git a/src/csr/MarkerCircle.tsx b/src/csr/MarkerCircle.tsx new file mode 100644 index 000000000..41a04275f --- /dev/null +++ b/src/csr/MarkerCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MarkerCircle"; + +export const MarkerCircle: Icon = forwardRef((props, ref) => ( + +)); + +MarkerCircle.displayName = "MarkerCircle"; diff --git a/src/csr/Martini.tsx b/src/csr/Martini.tsx new file mode 100644 index 000000000..3c56612d2 --- /dev/null +++ b/src/csr/Martini.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Martini"; + +export const Martini: Icon = forwardRef((props, ref) => ( + +)); + +Martini.displayName = "Martini"; diff --git a/src/csr/MaskHappy.tsx b/src/csr/MaskHappy.tsx new file mode 100644 index 000000000..4ae3ee4cd --- /dev/null +++ b/src/csr/MaskHappy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MaskHappy"; + +export const MaskHappy: Icon = forwardRef((props, ref) => ( + +)); + +MaskHappy.displayName = "MaskHappy"; diff --git a/src/csr/MaskSad.tsx b/src/csr/MaskSad.tsx new file mode 100644 index 000000000..e48574140 --- /dev/null +++ b/src/csr/MaskSad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MaskSad"; + +export const MaskSad: Icon = forwardRef((props, ref) => ( + +)); + +MaskSad.displayName = "MaskSad"; diff --git a/src/csr/MathOperations.tsx b/src/csr/MathOperations.tsx new file mode 100644 index 000000000..f91581e5b --- /dev/null +++ b/src/csr/MathOperations.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MathOperations"; + +export const MathOperations: Icon = forwardRef((props, ref) => ( + +)); + +MathOperations.displayName = "MathOperations"; diff --git a/src/csr/Medal.tsx b/src/csr/Medal.tsx new file mode 100644 index 000000000..9bb7d3965 --- /dev/null +++ b/src/csr/Medal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Medal"; + +export const Medal: Icon = forwardRef((props, ref) => ( + +)); + +Medal.displayName = "Medal"; diff --git a/src/csr/MedalMilitary.tsx b/src/csr/MedalMilitary.tsx new file mode 100644 index 000000000..e31e7259a --- /dev/null +++ b/src/csr/MedalMilitary.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MedalMilitary"; + +export const MedalMilitary: Icon = forwardRef((props, ref) => ( + +)); + +MedalMilitary.displayName = "MedalMilitary"; diff --git a/src/csr/MediumLogo.tsx b/src/csr/MediumLogo.tsx new file mode 100644 index 000000000..f56a5fd6e --- /dev/null +++ b/src/csr/MediumLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MediumLogo"; + +export const MediumLogo: Icon = forwardRef((props, ref) => ( + +)); + +MediumLogo.displayName = "MediumLogo"; diff --git a/src/csr/Megaphone.tsx b/src/csr/Megaphone.tsx new file mode 100644 index 000000000..d282bf85c --- /dev/null +++ b/src/csr/Megaphone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Megaphone"; + +export const Megaphone: Icon = forwardRef((props, ref) => ( + +)); + +Megaphone.displayName = "Megaphone"; diff --git a/src/csr/MegaphoneSimple.tsx b/src/csr/MegaphoneSimple.tsx new file mode 100644 index 000000000..ef7014af6 --- /dev/null +++ b/src/csr/MegaphoneSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MegaphoneSimple"; + +export const MegaphoneSimple: Icon = forwardRef((props, ref) => ( + +)); + +MegaphoneSimple.displayName = "MegaphoneSimple"; diff --git a/src/csr/MessengerLogo.tsx b/src/csr/MessengerLogo.tsx new file mode 100644 index 000000000..6fabe6d33 --- /dev/null +++ b/src/csr/MessengerLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MessengerLogo"; + +export const MessengerLogo: Icon = forwardRef((props, ref) => ( + +)); + +MessengerLogo.displayName = "MessengerLogo"; diff --git a/src/csr/MetaLogo.tsx b/src/csr/MetaLogo.tsx new file mode 100644 index 000000000..09922e1ad --- /dev/null +++ b/src/csr/MetaLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MetaLogo"; + +export const MetaLogo: Icon = forwardRef((props, ref) => ( + +)); + +MetaLogo.displayName = "MetaLogo"; diff --git a/src/csr/Metronome.tsx b/src/csr/Metronome.tsx new file mode 100644 index 000000000..d11bf89f8 --- /dev/null +++ b/src/csr/Metronome.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Metronome"; + +export const Metronome: Icon = forwardRef((props, ref) => ( + +)); + +Metronome.displayName = "Metronome"; diff --git a/src/csr/Microphone.tsx b/src/csr/Microphone.tsx new file mode 100644 index 000000000..dd6610d09 --- /dev/null +++ b/src/csr/Microphone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Microphone"; + +export const Microphone: Icon = forwardRef((props, ref) => ( + +)); + +Microphone.displayName = "Microphone"; diff --git a/src/csr/MicrophoneSlash.tsx b/src/csr/MicrophoneSlash.tsx new file mode 100644 index 000000000..90ee65c67 --- /dev/null +++ b/src/csr/MicrophoneSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MicrophoneSlash"; + +export const MicrophoneSlash: Icon = forwardRef((props, ref) => ( + +)); + +MicrophoneSlash.displayName = "MicrophoneSlash"; diff --git a/src/csr/MicrophoneStage.tsx b/src/csr/MicrophoneStage.tsx new file mode 100644 index 000000000..999b3d2ee --- /dev/null +++ b/src/csr/MicrophoneStage.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MicrophoneStage"; + +export const MicrophoneStage: Icon = forwardRef((props, ref) => ( + +)); + +MicrophoneStage.displayName = "MicrophoneStage"; diff --git a/src/csr/MicrosoftExcelLogo.tsx b/src/csr/MicrosoftExcelLogo.tsx new file mode 100644 index 000000000..4f9c2d324 --- /dev/null +++ b/src/csr/MicrosoftExcelLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MicrosoftExcelLogo"; + +export const MicrosoftExcelLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftExcelLogo.displayName = "MicrosoftExcelLogo"; diff --git a/src/csr/MicrosoftOutlookLogo.tsx b/src/csr/MicrosoftOutlookLogo.tsx new file mode 100644 index 000000000..5684c3848 --- /dev/null +++ b/src/csr/MicrosoftOutlookLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MicrosoftOutlookLogo"; + +export const MicrosoftOutlookLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftOutlookLogo.displayName = "MicrosoftOutlookLogo"; diff --git a/src/csr/MicrosoftPowerpointLogo.tsx b/src/csr/MicrosoftPowerpointLogo.tsx new file mode 100644 index 000000000..7fd137b9d --- /dev/null +++ b/src/csr/MicrosoftPowerpointLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MicrosoftPowerpointLogo"; + +export const MicrosoftPowerpointLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftPowerpointLogo.displayName = "MicrosoftPowerpointLogo"; diff --git a/src/csr/MicrosoftTeamsLogo.tsx b/src/csr/MicrosoftTeamsLogo.tsx new file mode 100644 index 000000000..ad00ee84a --- /dev/null +++ b/src/csr/MicrosoftTeamsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MicrosoftTeamsLogo"; + +export const MicrosoftTeamsLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftTeamsLogo.displayName = "MicrosoftTeamsLogo"; diff --git a/src/csr/MicrosoftWordLogo.tsx b/src/csr/MicrosoftWordLogo.tsx new file mode 100644 index 000000000..aa8d88101 --- /dev/null +++ b/src/csr/MicrosoftWordLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MicrosoftWordLogo"; + +export const MicrosoftWordLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftWordLogo.displayName = "MicrosoftWordLogo"; diff --git a/src/csr/Minus.tsx b/src/csr/Minus.tsx new file mode 100644 index 000000000..3fe2facd0 --- /dev/null +++ b/src/csr/Minus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Minus"; + +export const Minus: Icon = forwardRef((props, ref) => ( + +)); + +Minus.displayName = "Minus"; diff --git a/src/csr/MinusCircle.tsx b/src/csr/MinusCircle.tsx new file mode 100644 index 000000000..fca5d9682 --- /dev/null +++ b/src/csr/MinusCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MinusCircle"; + +export const MinusCircle: Icon = forwardRef((props, ref) => ( + +)); + +MinusCircle.displayName = "MinusCircle"; diff --git a/src/csr/MinusSquare.tsx b/src/csr/MinusSquare.tsx new file mode 100644 index 000000000..36ae0083e --- /dev/null +++ b/src/csr/MinusSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MinusSquare"; + +export const MinusSquare: Icon = forwardRef((props, ref) => ( + +)); + +MinusSquare.displayName = "MinusSquare"; diff --git a/src/csr/Money.tsx b/src/csr/Money.tsx new file mode 100644 index 000000000..be29edfe1 --- /dev/null +++ b/src/csr/Money.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Money"; + +export const Money: Icon = forwardRef((props, ref) => ( + +)); + +Money.displayName = "Money"; diff --git a/src/csr/Monitor.tsx b/src/csr/Monitor.tsx new file mode 100644 index 000000000..a06deb143 --- /dev/null +++ b/src/csr/Monitor.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Monitor"; + +export const Monitor: Icon = forwardRef((props, ref) => ( + +)); + +Monitor.displayName = "Monitor"; diff --git a/src/csr/MonitorPlay.tsx b/src/csr/MonitorPlay.tsx new file mode 100644 index 000000000..6532244f1 --- /dev/null +++ b/src/csr/MonitorPlay.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MonitorPlay"; + +export const MonitorPlay: Icon = forwardRef((props, ref) => ( + +)); + +MonitorPlay.displayName = "MonitorPlay"; diff --git a/src/csr/Moon.tsx b/src/csr/Moon.tsx new file mode 100644 index 000000000..070874125 --- /dev/null +++ b/src/csr/Moon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Moon"; + +export const Moon: Icon = forwardRef((props, ref) => ( + +)); + +Moon.displayName = "Moon"; diff --git a/src/csr/MoonStars.tsx b/src/csr/MoonStars.tsx new file mode 100644 index 000000000..eb5e79830 --- /dev/null +++ b/src/csr/MoonStars.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MoonStars"; + +export const MoonStars: Icon = forwardRef((props, ref) => ( + +)); + +MoonStars.displayName = "MoonStars"; diff --git a/src/csr/Moped.tsx b/src/csr/Moped.tsx new file mode 100644 index 000000000..dbc670f14 --- /dev/null +++ b/src/csr/Moped.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Moped"; + +export const Moped: Icon = forwardRef((props, ref) => ( + +)); + +Moped.displayName = "Moped"; diff --git a/src/csr/MopedFront.tsx b/src/csr/MopedFront.tsx new file mode 100644 index 000000000..3a384f170 --- /dev/null +++ b/src/csr/MopedFront.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MopedFront"; + +export const MopedFront: Icon = forwardRef((props, ref) => ( + +)); + +MopedFront.displayName = "MopedFront"; diff --git a/src/csr/Mosque.tsx b/src/csr/Mosque.tsx new file mode 100644 index 000000000..9c804cb40 --- /dev/null +++ b/src/csr/Mosque.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Mosque"; + +export const Mosque: Icon = forwardRef((props, ref) => ( + +)); + +Mosque.displayName = "Mosque"; diff --git a/src/csr/Motorcycle.tsx b/src/csr/Motorcycle.tsx new file mode 100644 index 000000000..267cf4e8b --- /dev/null +++ b/src/csr/Motorcycle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Motorcycle"; + +export const Motorcycle: Icon = forwardRef((props, ref) => ( + +)); + +Motorcycle.displayName = "Motorcycle"; diff --git a/src/csr/Mountains.tsx b/src/csr/Mountains.tsx new file mode 100644 index 000000000..e8064629b --- /dev/null +++ b/src/csr/Mountains.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Mountains"; + +export const Mountains: Icon = forwardRef((props, ref) => ( + +)); + +Mountains.displayName = "Mountains"; diff --git a/src/csr/Mouse.tsx b/src/csr/Mouse.tsx new file mode 100644 index 000000000..df6898fa5 --- /dev/null +++ b/src/csr/Mouse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Mouse"; + +export const Mouse: Icon = forwardRef((props, ref) => ( + +)); + +Mouse.displayName = "Mouse"; diff --git a/src/csr/MouseSimple.tsx b/src/csr/MouseSimple.tsx new file mode 100644 index 000000000..4fa3e53ef --- /dev/null +++ b/src/csr/MouseSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MouseSimple"; + +export const MouseSimple: Icon = forwardRef((props, ref) => ( + +)); + +MouseSimple.displayName = "MouseSimple"; diff --git a/src/csr/MusicNote.tsx b/src/csr/MusicNote.tsx new file mode 100644 index 000000000..3c654a86d --- /dev/null +++ b/src/csr/MusicNote.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MusicNote"; + +export const MusicNote: Icon = forwardRef((props, ref) => ( + +)); + +MusicNote.displayName = "MusicNote"; diff --git a/src/csr/MusicNoteSimple.tsx b/src/csr/MusicNoteSimple.tsx new file mode 100644 index 000000000..04e5ac1ca --- /dev/null +++ b/src/csr/MusicNoteSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MusicNoteSimple"; + +export const MusicNoteSimple: Icon = forwardRef((props, ref) => ( + +)); + +MusicNoteSimple.displayName = "MusicNoteSimple"; diff --git a/src/csr/MusicNotes.tsx b/src/csr/MusicNotes.tsx new file mode 100644 index 000000000..ddc9b9204 --- /dev/null +++ b/src/csr/MusicNotes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MusicNotes"; + +export const MusicNotes: Icon = forwardRef((props, ref) => ( + +)); + +MusicNotes.displayName = "MusicNotes"; diff --git a/src/csr/MusicNotesPlus.tsx b/src/csr/MusicNotesPlus.tsx new file mode 100644 index 000000000..398d7c46b --- /dev/null +++ b/src/csr/MusicNotesPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MusicNotesPlus"; + +export const MusicNotesPlus: Icon = forwardRef((props, ref) => ( + +)); + +MusicNotesPlus.displayName = "MusicNotesPlus"; diff --git a/src/csr/MusicNotesSimple.tsx b/src/csr/MusicNotesSimple.tsx new file mode 100644 index 000000000..61c696821 --- /dev/null +++ b/src/csr/MusicNotesSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/MusicNotesSimple"; + +export const MusicNotesSimple: Icon = forwardRef((props, ref) => ( + +)); + +MusicNotesSimple.displayName = "MusicNotesSimple"; diff --git a/src/csr/NavigationArrow.tsx b/src/csr/NavigationArrow.tsx new file mode 100644 index 000000000..4a54a4f7d --- /dev/null +++ b/src/csr/NavigationArrow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NavigationArrow"; + +export const NavigationArrow: Icon = forwardRef((props, ref) => ( + +)); + +NavigationArrow.displayName = "NavigationArrow"; diff --git a/src/csr/Needle.tsx b/src/csr/Needle.tsx new file mode 100644 index 000000000..2532a66db --- /dev/null +++ b/src/csr/Needle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Needle"; + +export const Needle: Icon = forwardRef((props, ref) => ( + +)); + +Needle.displayName = "Needle"; diff --git a/src/csr/Newspaper.tsx b/src/csr/Newspaper.tsx new file mode 100644 index 000000000..b26f94716 --- /dev/null +++ b/src/csr/Newspaper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Newspaper"; + +export const Newspaper: Icon = forwardRef((props, ref) => ( + +)); + +Newspaper.displayName = "Newspaper"; diff --git a/src/csr/NewspaperClipping.tsx b/src/csr/NewspaperClipping.tsx new file mode 100644 index 000000000..c1bf2edcb --- /dev/null +++ b/src/csr/NewspaperClipping.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NewspaperClipping"; + +export const NewspaperClipping: Icon = forwardRef((props, ref) => ( + +)); + +NewspaperClipping.displayName = "NewspaperClipping"; diff --git a/src/csr/Notches.tsx b/src/csr/Notches.tsx new file mode 100644 index 000000000..d5a0e9e70 --- /dev/null +++ b/src/csr/Notches.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Notches"; + +export const Notches: Icon = forwardRef((props, ref) => ( + +)); + +Notches.displayName = "Notches"; diff --git a/src/csr/Note.tsx b/src/csr/Note.tsx new file mode 100644 index 000000000..a8673eaf9 --- /dev/null +++ b/src/csr/Note.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Note"; + +export const Note: Icon = forwardRef((props, ref) => ( + +)); + +Note.displayName = "Note"; diff --git a/src/csr/NoteBlank.tsx b/src/csr/NoteBlank.tsx new file mode 100644 index 000000000..27fd3fbd9 --- /dev/null +++ b/src/csr/NoteBlank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NoteBlank"; + +export const NoteBlank: Icon = forwardRef((props, ref) => ( + +)); + +NoteBlank.displayName = "NoteBlank"; diff --git a/src/csr/NotePencil.tsx b/src/csr/NotePencil.tsx new file mode 100644 index 000000000..a874eb3af --- /dev/null +++ b/src/csr/NotePencil.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NotePencil"; + +export const NotePencil: Icon = forwardRef((props, ref) => ( + +)); + +NotePencil.displayName = "NotePencil"; diff --git a/src/csr/Notebook.tsx b/src/csr/Notebook.tsx new file mode 100644 index 000000000..2f3e90e37 --- /dev/null +++ b/src/csr/Notebook.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Notebook"; + +export const Notebook: Icon = forwardRef((props, ref) => ( + +)); + +Notebook.displayName = "Notebook"; diff --git a/src/csr/Notepad.tsx b/src/csr/Notepad.tsx new file mode 100644 index 000000000..0e3d09878 --- /dev/null +++ b/src/csr/Notepad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Notepad"; + +export const Notepad: Icon = forwardRef((props, ref) => ( + +)); + +Notepad.displayName = "Notepad"; diff --git a/src/csr/Notification.tsx b/src/csr/Notification.tsx new file mode 100644 index 000000000..acd23848a --- /dev/null +++ b/src/csr/Notification.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Notification"; + +export const Notification: Icon = forwardRef((props, ref) => ( + +)); + +Notification.displayName = "Notification"; diff --git a/src/csr/NotionLogo.tsx b/src/csr/NotionLogo.tsx new file mode 100644 index 000000000..4b5cbb1f8 --- /dev/null +++ b/src/csr/NotionLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NotionLogo"; + +export const NotionLogo: Icon = forwardRef((props, ref) => ( + +)); + +NotionLogo.displayName = "NotionLogo"; diff --git a/src/csr/NumberCircleEight.tsx b/src/csr/NumberCircleEight.tsx new file mode 100644 index 000000000..af594ac92 --- /dev/null +++ b/src/csr/NumberCircleEight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleEight"; + +export const NumberCircleEight: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleEight.displayName = "NumberCircleEight"; diff --git a/src/csr/NumberCircleFive.tsx b/src/csr/NumberCircleFive.tsx new file mode 100644 index 000000000..33f83b43a --- /dev/null +++ b/src/csr/NumberCircleFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleFive"; + +export const NumberCircleFive: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleFive.displayName = "NumberCircleFive"; diff --git a/src/csr/NumberCircleFour.tsx b/src/csr/NumberCircleFour.tsx new file mode 100644 index 000000000..36ecbcce9 --- /dev/null +++ b/src/csr/NumberCircleFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleFour"; + +export const NumberCircleFour: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleFour.displayName = "NumberCircleFour"; diff --git a/src/csr/NumberCircleNine.tsx b/src/csr/NumberCircleNine.tsx new file mode 100644 index 000000000..afe87303e --- /dev/null +++ b/src/csr/NumberCircleNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleNine"; + +export const NumberCircleNine: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleNine.displayName = "NumberCircleNine"; diff --git a/src/csr/NumberCircleOne.tsx b/src/csr/NumberCircleOne.tsx new file mode 100644 index 000000000..5f42ea3e4 --- /dev/null +++ b/src/csr/NumberCircleOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleOne"; + +export const NumberCircleOne: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleOne.displayName = "NumberCircleOne"; diff --git a/src/csr/NumberCircleSeven.tsx b/src/csr/NumberCircleSeven.tsx new file mode 100644 index 000000000..daebdb115 --- /dev/null +++ b/src/csr/NumberCircleSeven.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleSeven"; + +export const NumberCircleSeven: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleSeven.displayName = "NumberCircleSeven"; diff --git a/src/csr/NumberCircleSix.tsx b/src/csr/NumberCircleSix.tsx new file mode 100644 index 000000000..c2a3e61d8 --- /dev/null +++ b/src/csr/NumberCircleSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleSix"; + +export const NumberCircleSix: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleSix.displayName = "NumberCircleSix"; diff --git a/src/csr/NumberCircleThree.tsx b/src/csr/NumberCircleThree.tsx new file mode 100644 index 000000000..37c0d8c4a --- /dev/null +++ b/src/csr/NumberCircleThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleThree"; + +export const NumberCircleThree: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleThree.displayName = "NumberCircleThree"; diff --git a/src/csr/NumberCircleTwo.tsx b/src/csr/NumberCircleTwo.tsx new file mode 100644 index 000000000..5d8696563 --- /dev/null +++ b/src/csr/NumberCircleTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleTwo"; + +export const NumberCircleTwo: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleTwo.displayName = "NumberCircleTwo"; diff --git a/src/csr/NumberCircleZero.tsx b/src/csr/NumberCircleZero.tsx new file mode 100644 index 000000000..e0768b492 --- /dev/null +++ b/src/csr/NumberCircleZero.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberCircleZero"; + +export const NumberCircleZero: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleZero.displayName = "NumberCircleZero"; diff --git a/src/csr/NumberEight.tsx b/src/csr/NumberEight.tsx new file mode 100644 index 000000000..5389cf4da --- /dev/null +++ b/src/csr/NumberEight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberEight"; + +export const NumberEight: Icon = forwardRef((props, ref) => ( + +)); + +NumberEight.displayName = "NumberEight"; diff --git a/src/csr/NumberFive.tsx b/src/csr/NumberFive.tsx new file mode 100644 index 000000000..19d96f7fb --- /dev/null +++ b/src/csr/NumberFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberFive"; + +export const NumberFive: Icon = forwardRef((props, ref) => ( + +)); + +NumberFive.displayName = "NumberFive"; diff --git a/src/csr/NumberFour.tsx b/src/csr/NumberFour.tsx new file mode 100644 index 000000000..0151f2f83 --- /dev/null +++ b/src/csr/NumberFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberFour"; + +export const NumberFour: Icon = forwardRef((props, ref) => ( + +)); + +NumberFour.displayName = "NumberFour"; diff --git a/src/csr/NumberNine.tsx b/src/csr/NumberNine.tsx new file mode 100644 index 000000000..9d18ca4a7 --- /dev/null +++ b/src/csr/NumberNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberNine"; + +export const NumberNine: Icon = forwardRef((props, ref) => ( + +)); + +NumberNine.displayName = "NumberNine"; diff --git a/src/csr/NumberOne.tsx b/src/csr/NumberOne.tsx new file mode 100644 index 000000000..982006f19 --- /dev/null +++ b/src/csr/NumberOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberOne"; + +export const NumberOne: Icon = forwardRef((props, ref) => ( + +)); + +NumberOne.displayName = "NumberOne"; diff --git a/src/csr/NumberSeven.tsx b/src/csr/NumberSeven.tsx new file mode 100644 index 000000000..9133ec355 --- /dev/null +++ b/src/csr/NumberSeven.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSeven"; + +export const NumberSeven: Icon = forwardRef((props, ref) => ( + +)); + +NumberSeven.displayName = "NumberSeven"; diff --git a/src/csr/NumberSix.tsx b/src/csr/NumberSix.tsx new file mode 100644 index 000000000..f2d28c300 --- /dev/null +++ b/src/csr/NumberSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSix"; + +export const NumberSix: Icon = forwardRef((props, ref) => ( + +)); + +NumberSix.displayName = "NumberSix"; diff --git a/src/csr/NumberSquareEight.tsx b/src/csr/NumberSquareEight.tsx new file mode 100644 index 000000000..5622d6a8d --- /dev/null +++ b/src/csr/NumberSquareEight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareEight"; + +export const NumberSquareEight: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareEight.displayName = "NumberSquareEight"; diff --git a/src/csr/NumberSquareFive.tsx b/src/csr/NumberSquareFive.tsx new file mode 100644 index 000000000..5420e8c04 --- /dev/null +++ b/src/csr/NumberSquareFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareFive"; + +export const NumberSquareFive: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareFive.displayName = "NumberSquareFive"; diff --git a/src/csr/NumberSquareFour.tsx b/src/csr/NumberSquareFour.tsx new file mode 100644 index 000000000..0f71675b2 --- /dev/null +++ b/src/csr/NumberSquareFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareFour"; + +export const NumberSquareFour: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareFour.displayName = "NumberSquareFour"; diff --git a/src/csr/NumberSquareNine.tsx b/src/csr/NumberSquareNine.tsx new file mode 100644 index 000000000..160534b63 --- /dev/null +++ b/src/csr/NumberSquareNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareNine"; + +export const NumberSquareNine: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareNine.displayName = "NumberSquareNine"; diff --git a/src/csr/NumberSquareOne.tsx b/src/csr/NumberSquareOne.tsx new file mode 100644 index 000000000..027002f16 --- /dev/null +++ b/src/csr/NumberSquareOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareOne"; + +export const NumberSquareOne: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareOne.displayName = "NumberSquareOne"; diff --git a/src/csr/NumberSquareSeven.tsx b/src/csr/NumberSquareSeven.tsx new file mode 100644 index 000000000..3d194dab5 --- /dev/null +++ b/src/csr/NumberSquareSeven.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareSeven"; + +export const NumberSquareSeven: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareSeven.displayName = "NumberSquareSeven"; diff --git a/src/csr/NumberSquareSix.tsx b/src/csr/NumberSquareSix.tsx new file mode 100644 index 000000000..c2f43ea62 --- /dev/null +++ b/src/csr/NumberSquareSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareSix"; + +export const NumberSquareSix: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareSix.displayName = "NumberSquareSix"; diff --git a/src/csr/NumberSquareThree.tsx b/src/csr/NumberSquareThree.tsx new file mode 100644 index 000000000..6d8d0fe9b --- /dev/null +++ b/src/csr/NumberSquareThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareThree"; + +export const NumberSquareThree: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareThree.displayName = "NumberSquareThree"; diff --git a/src/csr/NumberSquareTwo.tsx b/src/csr/NumberSquareTwo.tsx new file mode 100644 index 000000000..73be63e3d --- /dev/null +++ b/src/csr/NumberSquareTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareTwo"; + +export const NumberSquareTwo: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareTwo.displayName = "NumberSquareTwo"; diff --git a/src/csr/NumberSquareZero.tsx b/src/csr/NumberSquareZero.tsx new file mode 100644 index 000000000..87776e364 --- /dev/null +++ b/src/csr/NumberSquareZero.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberSquareZero"; + +export const NumberSquareZero: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareZero.displayName = "NumberSquareZero"; diff --git a/src/csr/NumberThree.tsx b/src/csr/NumberThree.tsx new file mode 100644 index 000000000..a86368b25 --- /dev/null +++ b/src/csr/NumberThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberThree"; + +export const NumberThree: Icon = forwardRef((props, ref) => ( + +)); + +NumberThree.displayName = "NumberThree"; diff --git a/src/csr/NumberTwo.tsx b/src/csr/NumberTwo.tsx new file mode 100644 index 000000000..54a61a59b --- /dev/null +++ b/src/csr/NumberTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberTwo"; + +export const NumberTwo: Icon = forwardRef((props, ref) => ( + +)); + +NumberTwo.displayName = "NumberTwo"; diff --git a/src/csr/NumberZero.tsx b/src/csr/NumberZero.tsx new file mode 100644 index 000000000..23410554a --- /dev/null +++ b/src/csr/NumberZero.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NumberZero"; + +export const NumberZero: Icon = forwardRef((props, ref) => ( + +)); + +NumberZero.displayName = "NumberZero"; diff --git a/src/csr/Nut.tsx b/src/csr/Nut.tsx new file mode 100644 index 000000000..9e54e420a --- /dev/null +++ b/src/csr/Nut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Nut"; + +export const Nut: Icon = forwardRef((props, ref) => ( + +)); + +Nut.displayName = "Nut"; diff --git a/src/csr/NyTimesLogo.tsx b/src/csr/NyTimesLogo.tsx new file mode 100644 index 000000000..949a7d3cd --- /dev/null +++ b/src/csr/NyTimesLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/NyTimesLogo"; + +export const NyTimesLogo: Icon = forwardRef((props, ref) => ( + +)); + +NyTimesLogo.displayName = "NyTimesLogo"; diff --git a/src/csr/Octagon.tsx b/src/csr/Octagon.tsx new file mode 100644 index 000000000..48d9453b1 --- /dev/null +++ b/src/csr/Octagon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Octagon"; + +export const Octagon: Icon = forwardRef((props, ref) => ( + +)); + +Octagon.displayName = "Octagon"; diff --git a/src/csr/OfficeChair.tsx b/src/csr/OfficeChair.tsx new file mode 100644 index 000000000..b690fb531 --- /dev/null +++ b/src/csr/OfficeChair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/OfficeChair"; + +export const OfficeChair: Icon = forwardRef((props, ref) => ( + +)); + +OfficeChair.displayName = "OfficeChair"; diff --git a/src/csr/Option.tsx b/src/csr/Option.tsx new file mode 100644 index 000000000..8d022fba6 --- /dev/null +++ b/src/csr/Option.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Option"; + +export const Option: Icon = forwardRef((props, ref) => ( + +)); + +Option.displayName = "Option"; diff --git a/src/csr/OrangeSlice.tsx b/src/csr/OrangeSlice.tsx new file mode 100644 index 000000000..5028eaba4 --- /dev/null +++ b/src/csr/OrangeSlice.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/OrangeSlice"; + +export const OrangeSlice: Icon = forwardRef((props, ref) => ( + +)); + +OrangeSlice.displayName = "OrangeSlice"; diff --git a/src/csr/Package.tsx b/src/csr/Package.tsx new file mode 100644 index 000000000..e17c06dfc --- /dev/null +++ b/src/csr/Package.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Package"; + +export const Package: Icon = forwardRef((props, ref) => ( + +)); + +Package.displayName = "Package"; diff --git a/src/csr/PaintBrush.tsx b/src/csr/PaintBrush.tsx new file mode 100644 index 000000000..838a7ebb0 --- /dev/null +++ b/src/csr/PaintBrush.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaintBrush"; + +export const PaintBrush: Icon = forwardRef((props, ref) => ( + +)); + +PaintBrush.displayName = "PaintBrush"; diff --git a/src/csr/PaintBrushBroad.tsx b/src/csr/PaintBrushBroad.tsx new file mode 100644 index 000000000..0469a811b --- /dev/null +++ b/src/csr/PaintBrushBroad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaintBrushBroad"; + +export const PaintBrushBroad: Icon = forwardRef((props, ref) => ( + +)); + +PaintBrushBroad.displayName = "PaintBrushBroad"; diff --git a/src/csr/PaintBrushHousehold.tsx b/src/csr/PaintBrushHousehold.tsx new file mode 100644 index 000000000..24ae44ef1 --- /dev/null +++ b/src/csr/PaintBrushHousehold.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaintBrushHousehold"; + +export const PaintBrushHousehold: Icon = forwardRef((props, ref) => ( + +)); + +PaintBrushHousehold.displayName = "PaintBrushHousehold"; diff --git a/src/csr/PaintBucket.tsx b/src/csr/PaintBucket.tsx new file mode 100644 index 000000000..84991de81 --- /dev/null +++ b/src/csr/PaintBucket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaintBucket"; + +export const PaintBucket: Icon = forwardRef((props, ref) => ( + +)); + +PaintBucket.displayName = "PaintBucket"; diff --git a/src/csr/PaintRoller.tsx b/src/csr/PaintRoller.tsx new file mode 100644 index 000000000..e7b17a6fd --- /dev/null +++ b/src/csr/PaintRoller.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaintRoller"; + +export const PaintRoller: Icon = forwardRef((props, ref) => ( + +)); + +PaintRoller.displayName = "PaintRoller"; diff --git a/src/csr/Palette.tsx b/src/csr/Palette.tsx new file mode 100644 index 000000000..2f48a7590 --- /dev/null +++ b/src/csr/Palette.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Palette"; + +export const Palette: Icon = forwardRef((props, ref) => ( + +)); + +Palette.displayName = "Palette"; diff --git a/src/csr/Pants.tsx b/src/csr/Pants.tsx new file mode 100644 index 000000000..2280b94ac --- /dev/null +++ b/src/csr/Pants.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pants"; + +export const Pants: Icon = forwardRef((props, ref) => ( + +)); + +Pants.displayName = "Pants"; diff --git a/src/csr/PaperPlane.tsx b/src/csr/PaperPlane.tsx new file mode 100644 index 000000000..3eee2a4b1 --- /dev/null +++ b/src/csr/PaperPlane.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaperPlane"; + +export const PaperPlane: Icon = forwardRef((props, ref) => ( + +)); + +PaperPlane.displayName = "PaperPlane"; diff --git a/src/csr/PaperPlaneRight.tsx b/src/csr/PaperPlaneRight.tsx new file mode 100644 index 000000000..1405f09ad --- /dev/null +++ b/src/csr/PaperPlaneRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaperPlaneRight"; + +export const PaperPlaneRight: Icon = forwardRef((props, ref) => ( + +)); + +PaperPlaneRight.displayName = "PaperPlaneRight"; diff --git a/src/csr/PaperPlaneTilt.tsx b/src/csr/PaperPlaneTilt.tsx new file mode 100644 index 000000000..8b1a09311 --- /dev/null +++ b/src/csr/PaperPlaneTilt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaperPlaneTilt"; + +export const PaperPlaneTilt: Icon = forwardRef((props, ref) => ( + +)); + +PaperPlaneTilt.displayName = "PaperPlaneTilt"; diff --git a/src/csr/Paperclip.tsx b/src/csr/Paperclip.tsx new file mode 100644 index 000000000..0a9a7e49c --- /dev/null +++ b/src/csr/Paperclip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Paperclip"; + +export const Paperclip: Icon = forwardRef((props, ref) => ( + +)); + +Paperclip.displayName = "Paperclip"; diff --git a/src/csr/PaperclipHorizontal.tsx b/src/csr/PaperclipHorizontal.tsx new file mode 100644 index 000000000..a59ba1e5a --- /dev/null +++ b/src/csr/PaperclipHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaperclipHorizontal"; + +export const PaperclipHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +PaperclipHorizontal.displayName = "PaperclipHorizontal"; diff --git a/src/csr/Parachute.tsx b/src/csr/Parachute.tsx new file mode 100644 index 000000000..fcaf4e1bc --- /dev/null +++ b/src/csr/Parachute.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Parachute"; + +export const Parachute: Icon = forwardRef((props, ref) => ( + +)); + +Parachute.displayName = "Parachute"; diff --git a/src/csr/Paragraph.tsx b/src/csr/Paragraph.tsx new file mode 100644 index 000000000..22055ed6c --- /dev/null +++ b/src/csr/Paragraph.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Paragraph"; + +export const Paragraph: Icon = forwardRef((props, ref) => ( + +)); + +Paragraph.displayName = "Paragraph"; diff --git a/src/csr/Parallelogram.tsx b/src/csr/Parallelogram.tsx new file mode 100644 index 000000000..e704182fd --- /dev/null +++ b/src/csr/Parallelogram.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Parallelogram"; + +export const Parallelogram: Icon = forwardRef((props, ref) => ( + +)); + +Parallelogram.displayName = "Parallelogram"; diff --git a/src/csr/Park.tsx b/src/csr/Park.tsx new file mode 100644 index 000000000..1ea951a6d --- /dev/null +++ b/src/csr/Park.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Park"; + +export const Park: Icon = forwardRef((props, ref) => ( + +)); + +Park.displayName = "Park"; diff --git a/src/csr/Password.tsx b/src/csr/Password.tsx new file mode 100644 index 000000000..bed7cd578 --- /dev/null +++ b/src/csr/Password.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Password"; + +export const Password: Icon = forwardRef((props, ref) => ( + +)); + +Password.displayName = "Password"; diff --git a/src/csr/Path.tsx b/src/csr/Path.tsx new file mode 100644 index 000000000..92633e110 --- /dev/null +++ b/src/csr/Path.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Path"; + +export const Path: Icon = forwardRef((props, ref) => ( + +)); + +Path.displayName = "Path"; diff --git a/src/csr/PatreonLogo.tsx b/src/csr/PatreonLogo.tsx new file mode 100644 index 000000000..f3055e9d3 --- /dev/null +++ b/src/csr/PatreonLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PatreonLogo"; + +export const PatreonLogo: Icon = forwardRef((props, ref) => ( + +)); + +PatreonLogo.displayName = "PatreonLogo"; diff --git a/src/csr/Pause.tsx b/src/csr/Pause.tsx new file mode 100644 index 000000000..4096219cb --- /dev/null +++ b/src/csr/Pause.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pause"; + +export const Pause: Icon = forwardRef((props, ref) => ( + +)); + +Pause.displayName = "Pause"; diff --git a/src/csr/PauseCircle.tsx b/src/csr/PauseCircle.tsx new file mode 100644 index 000000000..0f3d38bca --- /dev/null +++ b/src/csr/PauseCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PauseCircle"; + +export const PauseCircle: Icon = forwardRef((props, ref) => ( + +)); + +PauseCircle.displayName = "PauseCircle"; diff --git a/src/csr/PawPrint.tsx b/src/csr/PawPrint.tsx new file mode 100644 index 000000000..dc5fa202f --- /dev/null +++ b/src/csr/PawPrint.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PawPrint"; + +export const PawPrint: Icon = forwardRef((props, ref) => ( + +)); + +PawPrint.displayName = "PawPrint"; diff --git a/src/csr/PaypalLogo.tsx b/src/csr/PaypalLogo.tsx new file mode 100644 index 000000000..9d20d285c --- /dev/null +++ b/src/csr/PaypalLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PaypalLogo"; + +export const PaypalLogo: Icon = forwardRef((props, ref) => ( + +)); + +PaypalLogo.displayName = "PaypalLogo"; diff --git a/src/csr/Peace.tsx b/src/csr/Peace.tsx new file mode 100644 index 000000000..2bcbf5651 --- /dev/null +++ b/src/csr/Peace.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Peace"; + +export const Peace: Icon = forwardRef((props, ref) => ( + +)); + +Peace.displayName = "Peace"; diff --git a/src/csr/Pen.tsx b/src/csr/Pen.tsx new file mode 100644 index 000000000..1178ba209 --- /dev/null +++ b/src/csr/Pen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pen"; + +export const Pen: Icon = forwardRef((props, ref) => ( + +)); + +Pen.displayName = "Pen"; diff --git a/src/csr/PenNib.tsx b/src/csr/PenNib.tsx new file mode 100644 index 000000000..b510da020 --- /dev/null +++ b/src/csr/PenNib.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PenNib"; + +export const PenNib: Icon = forwardRef((props, ref) => ( + +)); + +PenNib.displayName = "PenNib"; diff --git a/src/csr/PenNibStraight.tsx b/src/csr/PenNibStraight.tsx new file mode 100644 index 000000000..9b8c9491f --- /dev/null +++ b/src/csr/PenNibStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PenNibStraight"; + +export const PenNibStraight: Icon = forwardRef((props, ref) => ( + +)); + +PenNibStraight.displayName = "PenNibStraight"; diff --git a/src/csr/Pencil.tsx b/src/csr/Pencil.tsx new file mode 100644 index 000000000..1f839ff87 --- /dev/null +++ b/src/csr/Pencil.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pencil"; + +export const Pencil: Icon = forwardRef((props, ref) => ( + +)); + +Pencil.displayName = "Pencil"; diff --git a/src/csr/PencilCircle.tsx b/src/csr/PencilCircle.tsx new file mode 100644 index 000000000..cd67117f8 --- /dev/null +++ b/src/csr/PencilCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PencilCircle"; + +export const PencilCircle: Icon = forwardRef((props, ref) => ( + +)); + +PencilCircle.displayName = "PencilCircle"; diff --git a/src/csr/PencilLine.tsx b/src/csr/PencilLine.tsx new file mode 100644 index 000000000..a18b39695 --- /dev/null +++ b/src/csr/PencilLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PencilLine"; + +export const PencilLine: Icon = forwardRef((props, ref) => ( + +)); + +PencilLine.displayName = "PencilLine"; diff --git a/src/csr/PencilSimple.tsx b/src/csr/PencilSimple.tsx new file mode 100644 index 000000000..cc0c6eb62 --- /dev/null +++ b/src/csr/PencilSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PencilSimple"; + +export const PencilSimple: Icon = forwardRef((props, ref) => ( + +)); + +PencilSimple.displayName = "PencilSimple"; diff --git a/src/csr/PencilSimpleLine.tsx b/src/csr/PencilSimpleLine.tsx new file mode 100644 index 000000000..161b7f19d --- /dev/null +++ b/src/csr/PencilSimpleLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PencilSimpleLine"; + +export const PencilSimpleLine: Icon = forwardRef((props, ref) => ( + +)); + +PencilSimpleLine.displayName = "PencilSimpleLine"; diff --git a/src/csr/PencilSimpleSlash.tsx b/src/csr/PencilSimpleSlash.tsx new file mode 100644 index 000000000..77452cf32 --- /dev/null +++ b/src/csr/PencilSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PencilSimpleSlash"; + +export const PencilSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +PencilSimpleSlash.displayName = "PencilSimpleSlash"; diff --git a/src/csr/PencilSlash.tsx b/src/csr/PencilSlash.tsx new file mode 100644 index 000000000..3852cd8d5 --- /dev/null +++ b/src/csr/PencilSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PencilSlash"; + +export const PencilSlash: Icon = forwardRef((props, ref) => ( + +)); + +PencilSlash.displayName = "PencilSlash"; diff --git a/src/csr/Pentagram.tsx b/src/csr/Pentagram.tsx new file mode 100644 index 000000000..a8cf85996 --- /dev/null +++ b/src/csr/Pentagram.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pentagram"; + +export const Pentagram: Icon = forwardRef((props, ref) => ( + +)); + +Pentagram.displayName = "Pentagram"; diff --git a/src/csr/Pepper.tsx b/src/csr/Pepper.tsx new file mode 100644 index 000000000..bda37dbfd --- /dev/null +++ b/src/csr/Pepper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pepper"; + +export const Pepper: Icon = forwardRef((props, ref) => ( + +)); + +Pepper.displayName = "Pepper"; diff --git a/src/csr/Percent.tsx b/src/csr/Percent.tsx new file mode 100644 index 000000000..65df7dfb1 --- /dev/null +++ b/src/csr/Percent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Percent"; + +export const Percent: Icon = forwardRef((props, ref) => ( + +)); + +Percent.displayName = "Percent"; diff --git a/src/csr/Person.tsx b/src/csr/Person.tsx new file mode 100644 index 000000000..2ddd456f7 --- /dev/null +++ b/src/csr/Person.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Person"; + +export const Person: Icon = forwardRef((props, ref) => ( + +)); + +Person.displayName = "Person"; diff --git a/src/csr/PersonArmsSpread.tsx b/src/csr/PersonArmsSpread.tsx new file mode 100644 index 000000000..bf47bc168 --- /dev/null +++ b/src/csr/PersonArmsSpread.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PersonArmsSpread"; + +export const PersonArmsSpread: Icon = forwardRef((props, ref) => ( + +)); + +PersonArmsSpread.displayName = "PersonArmsSpread"; diff --git a/src/csr/PersonSimple.tsx b/src/csr/PersonSimple.tsx new file mode 100644 index 000000000..2065844b7 --- /dev/null +++ b/src/csr/PersonSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PersonSimple"; + +export const PersonSimple: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimple.displayName = "PersonSimple"; diff --git a/src/csr/PersonSimpleBike.tsx b/src/csr/PersonSimpleBike.tsx new file mode 100644 index 000000000..d56137d62 --- /dev/null +++ b/src/csr/PersonSimpleBike.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PersonSimpleBike"; + +export const PersonSimpleBike: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleBike.displayName = "PersonSimpleBike"; diff --git a/src/csr/PersonSimpleRun.tsx b/src/csr/PersonSimpleRun.tsx new file mode 100644 index 000000000..e41c9d20c --- /dev/null +++ b/src/csr/PersonSimpleRun.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PersonSimpleRun"; + +export const PersonSimpleRun: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleRun.displayName = "PersonSimpleRun"; diff --git a/src/csr/PersonSimpleThrow.tsx b/src/csr/PersonSimpleThrow.tsx new file mode 100644 index 000000000..eb0ab86d4 --- /dev/null +++ b/src/csr/PersonSimpleThrow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PersonSimpleThrow"; + +export const PersonSimpleThrow: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleThrow.displayName = "PersonSimpleThrow"; diff --git a/src/csr/PersonSimpleWalk.tsx b/src/csr/PersonSimpleWalk.tsx new file mode 100644 index 000000000..cfbb5fd3e --- /dev/null +++ b/src/csr/PersonSimpleWalk.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PersonSimpleWalk"; + +export const PersonSimpleWalk: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleWalk.displayName = "PersonSimpleWalk"; diff --git a/src/csr/Perspective.tsx b/src/csr/Perspective.tsx new file mode 100644 index 000000000..0f86f4f13 --- /dev/null +++ b/src/csr/Perspective.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Perspective"; + +export const Perspective: Icon = forwardRef((props, ref) => ( + +)); + +Perspective.displayName = "Perspective"; diff --git a/src/csr/Phone.tsx b/src/csr/Phone.tsx new file mode 100644 index 000000000..b715d96b3 --- /dev/null +++ b/src/csr/Phone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Phone"; + +export const Phone: Icon = forwardRef((props, ref) => ( + +)); + +Phone.displayName = "Phone"; diff --git a/src/csr/PhoneCall.tsx b/src/csr/PhoneCall.tsx new file mode 100644 index 000000000..c49f30cd1 --- /dev/null +++ b/src/csr/PhoneCall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhoneCall"; + +export const PhoneCall: Icon = forwardRef((props, ref) => ( + +)); + +PhoneCall.displayName = "PhoneCall"; diff --git a/src/csr/PhoneDisconnect.tsx b/src/csr/PhoneDisconnect.tsx new file mode 100644 index 000000000..2f0bd00ee --- /dev/null +++ b/src/csr/PhoneDisconnect.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhoneDisconnect"; + +export const PhoneDisconnect: Icon = forwardRef((props, ref) => ( + +)); + +PhoneDisconnect.displayName = "PhoneDisconnect"; diff --git a/src/csr/PhoneIncoming.tsx b/src/csr/PhoneIncoming.tsx new file mode 100644 index 000000000..e494546bb --- /dev/null +++ b/src/csr/PhoneIncoming.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhoneIncoming"; + +export const PhoneIncoming: Icon = forwardRef((props, ref) => ( + +)); + +PhoneIncoming.displayName = "PhoneIncoming"; diff --git a/src/csr/PhoneOutgoing.tsx b/src/csr/PhoneOutgoing.tsx new file mode 100644 index 000000000..a2aad1f56 --- /dev/null +++ b/src/csr/PhoneOutgoing.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhoneOutgoing"; + +export const PhoneOutgoing: Icon = forwardRef((props, ref) => ( + +)); + +PhoneOutgoing.displayName = "PhoneOutgoing"; diff --git a/src/csr/PhonePlus.tsx b/src/csr/PhonePlus.tsx new file mode 100644 index 000000000..7358398e0 --- /dev/null +++ b/src/csr/PhonePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhonePlus"; + +export const PhonePlus: Icon = forwardRef((props, ref) => ( + +)); + +PhonePlus.displayName = "PhonePlus"; diff --git a/src/csr/PhoneSlash.tsx b/src/csr/PhoneSlash.tsx new file mode 100644 index 000000000..623b608f2 --- /dev/null +++ b/src/csr/PhoneSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhoneSlash"; + +export const PhoneSlash: Icon = forwardRef((props, ref) => ( + +)); + +PhoneSlash.displayName = "PhoneSlash"; diff --git a/src/csr/PhoneX.tsx b/src/csr/PhoneX.tsx new file mode 100644 index 000000000..5904d9911 --- /dev/null +++ b/src/csr/PhoneX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhoneX"; + +export const PhoneX: Icon = forwardRef((props, ref) => ( + +)); + +PhoneX.displayName = "PhoneX"; diff --git a/src/csr/PhosphorLogo.tsx b/src/csr/PhosphorLogo.tsx new file mode 100644 index 000000000..b3c5d697c --- /dev/null +++ b/src/csr/PhosphorLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PhosphorLogo"; + +export const PhosphorLogo: Icon = forwardRef((props, ref) => ( + +)); + +PhosphorLogo.displayName = "PhosphorLogo"; diff --git a/src/csr/Pi.tsx b/src/csr/Pi.tsx new file mode 100644 index 000000000..3d53c9a60 --- /dev/null +++ b/src/csr/Pi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pi"; + +export const Pi: Icon = forwardRef((props, ref) => ( + +)); + +Pi.displayName = "Pi"; diff --git a/src/csr/PianoKeys.tsx b/src/csr/PianoKeys.tsx new file mode 100644 index 000000000..56854086f --- /dev/null +++ b/src/csr/PianoKeys.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PianoKeys"; + +export const PianoKeys: Icon = forwardRef((props, ref) => ( + +)); + +PianoKeys.displayName = "PianoKeys"; diff --git a/src/csr/PictureInPicture.tsx b/src/csr/PictureInPicture.tsx new file mode 100644 index 000000000..0d1e29114 --- /dev/null +++ b/src/csr/PictureInPicture.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PictureInPicture"; + +export const PictureInPicture: Icon = forwardRef((props, ref) => ( + +)); + +PictureInPicture.displayName = "PictureInPicture"; diff --git a/src/csr/PiggyBank.tsx b/src/csr/PiggyBank.tsx new file mode 100644 index 000000000..1447b65c4 --- /dev/null +++ b/src/csr/PiggyBank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PiggyBank"; + +export const PiggyBank: Icon = forwardRef((props, ref) => ( + +)); + +PiggyBank.displayName = "PiggyBank"; diff --git a/src/csr/Pill.tsx b/src/csr/Pill.tsx new file mode 100644 index 000000000..6001c6c55 --- /dev/null +++ b/src/csr/Pill.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pill"; + +export const Pill: Icon = forwardRef((props, ref) => ( + +)); + +Pill.displayName = "Pill"; diff --git a/src/csr/PinterestLogo.tsx b/src/csr/PinterestLogo.tsx new file mode 100644 index 000000000..76a19ea63 --- /dev/null +++ b/src/csr/PinterestLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PinterestLogo"; + +export const PinterestLogo: Icon = forwardRef((props, ref) => ( + +)); + +PinterestLogo.displayName = "PinterestLogo"; diff --git a/src/csr/Pinwheel.tsx b/src/csr/Pinwheel.tsx new file mode 100644 index 000000000..e7b50aecc --- /dev/null +++ b/src/csr/Pinwheel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pinwheel"; + +export const Pinwheel: Icon = forwardRef((props, ref) => ( + +)); + +Pinwheel.displayName = "Pinwheel"; diff --git a/src/csr/Pizza.tsx b/src/csr/Pizza.tsx new file mode 100644 index 000000000..6d2ffa886 --- /dev/null +++ b/src/csr/Pizza.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pizza"; + +export const Pizza: Icon = forwardRef((props, ref) => ( + +)); + +Pizza.displayName = "Pizza"; diff --git a/src/csr/Placeholder.tsx b/src/csr/Placeholder.tsx new file mode 100644 index 000000000..cbdfbfa7a --- /dev/null +++ b/src/csr/Placeholder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Placeholder"; + +export const Placeholder: Icon = forwardRef((props, ref) => ( + +)); + +Placeholder.displayName = "Placeholder"; diff --git a/src/csr/Planet.tsx b/src/csr/Planet.tsx new file mode 100644 index 000000000..6b5aebedf --- /dev/null +++ b/src/csr/Planet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Planet"; + +export const Planet: Icon = forwardRef((props, ref) => ( + +)); + +Planet.displayName = "Planet"; diff --git a/src/csr/Plant.tsx b/src/csr/Plant.tsx new file mode 100644 index 000000000..dc7d65f86 --- /dev/null +++ b/src/csr/Plant.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Plant"; + +export const Plant: Icon = forwardRef((props, ref) => ( + +)); + +Plant.displayName = "Plant"; diff --git a/src/csr/Play.tsx b/src/csr/Play.tsx new file mode 100644 index 000000000..603a50166 --- /dev/null +++ b/src/csr/Play.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Play"; + +export const Play: Icon = forwardRef((props, ref) => ( + +)); + +Play.displayName = "Play"; diff --git a/src/csr/PlayCircle.tsx b/src/csr/PlayCircle.tsx new file mode 100644 index 000000000..d91c64516 --- /dev/null +++ b/src/csr/PlayCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PlayCircle"; + +export const PlayCircle: Icon = forwardRef((props, ref) => ( + +)); + +PlayCircle.displayName = "PlayCircle"; diff --git a/src/csr/PlayPause.tsx b/src/csr/PlayPause.tsx new file mode 100644 index 000000000..b4aa3e931 --- /dev/null +++ b/src/csr/PlayPause.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PlayPause"; + +export const PlayPause: Icon = forwardRef((props, ref) => ( + +)); + +PlayPause.displayName = "PlayPause"; diff --git a/src/csr/Playlist.tsx b/src/csr/Playlist.tsx new file mode 100644 index 000000000..850da50c3 --- /dev/null +++ b/src/csr/Playlist.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Playlist"; + +export const Playlist: Icon = forwardRef((props, ref) => ( + +)); + +Playlist.displayName = "Playlist"; diff --git a/src/csr/Plug.tsx b/src/csr/Plug.tsx new file mode 100644 index 000000000..7c468cf4f --- /dev/null +++ b/src/csr/Plug.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Plug"; + +export const Plug: Icon = forwardRef((props, ref) => ( + +)); + +Plug.displayName = "Plug"; diff --git a/src/csr/PlugCharging.tsx b/src/csr/PlugCharging.tsx new file mode 100644 index 000000000..27de731ea --- /dev/null +++ b/src/csr/PlugCharging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PlugCharging"; + +export const PlugCharging: Icon = forwardRef((props, ref) => ( + +)); + +PlugCharging.displayName = "PlugCharging"; diff --git a/src/csr/Plugs.tsx b/src/csr/Plugs.tsx new file mode 100644 index 000000000..6548273dc --- /dev/null +++ b/src/csr/Plugs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Plugs"; + +export const Plugs: Icon = forwardRef((props, ref) => ( + +)); + +Plugs.displayName = "Plugs"; diff --git a/src/csr/PlugsConnected.tsx b/src/csr/PlugsConnected.tsx new file mode 100644 index 000000000..3d08c549f --- /dev/null +++ b/src/csr/PlugsConnected.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PlugsConnected"; + +export const PlugsConnected: Icon = forwardRef((props, ref) => ( + +)); + +PlugsConnected.displayName = "PlugsConnected"; diff --git a/src/csr/Plus.tsx b/src/csr/Plus.tsx new file mode 100644 index 000000000..1c24de64b --- /dev/null +++ b/src/csr/Plus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Plus"; + +export const Plus: Icon = forwardRef((props, ref) => ( + +)); + +Plus.displayName = "Plus"; diff --git a/src/csr/PlusCircle.tsx b/src/csr/PlusCircle.tsx new file mode 100644 index 000000000..6079ef4fc --- /dev/null +++ b/src/csr/PlusCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PlusCircle"; + +export const PlusCircle: Icon = forwardRef((props, ref) => ( + +)); + +PlusCircle.displayName = "PlusCircle"; diff --git a/src/csr/PlusMinus.tsx b/src/csr/PlusMinus.tsx new file mode 100644 index 000000000..f9ee7833d --- /dev/null +++ b/src/csr/PlusMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PlusMinus"; + +export const PlusMinus: Icon = forwardRef((props, ref) => ( + +)); + +PlusMinus.displayName = "PlusMinus"; diff --git a/src/csr/PlusSquare.tsx b/src/csr/PlusSquare.tsx new file mode 100644 index 000000000..d07f5b15b --- /dev/null +++ b/src/csr/PlusSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PlusSquare"; + +export const PlusSquare: Icon = forwardRef((props, ref) => ( + +)); + +PlusSquare.displayName = "PlusSquare"; diff --git a/src/csr/PokerChip.tsx b/src/csr/PokerChip.tsx new file mode 100644 index 000000000..b3763b748 --- /dev/null +++ b/src/csr/PokerChip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PokerChip"; + +export const PokerChip: Icon = forwardRef((props, ref) => ( + +)); + +PokerChip.displayName = "PokerChip"; diff --git a/src/csr/PoliceCar.tsx b/src/csr/PoliceCar.tsx new file mode 100644 index 000000000..eea17d4ba --- /dev/null +++ b/src/csr/PoliceCar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PoliceCar"; + +export const PoliceCar: Icon = forwardRef((props, ref) => ( + +)); + +PoliceCar.displayName = "PoliceCar"; diff --git a/src/csr/Polygon.tsx b/src/csr/Polygon.tsx new file mode 100644 index 000000000..dabf60abc --- /dev/null +++ b/src/csr/Polygon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Polygon"; + +export const Polygon: Icon = forwardRef((props, ref) => ( + +)); + +Polygon.displayName = "Polygon"; diff --git a/src/csr/Popcorn.tsx b/src/csr/Popcorn.tsx new file mode 100644 index 000000000..18f3bdbf4 --- /dev/null +++ b/src/csr/Popcorn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Popcorn"; + +export const Popcorn: Icon = forwardRef((props, ref) => ( + +)); + +Popcorn.displayName = "Popcorn"; diff --git a/src/csr/PottedPlant.tsx b/src/csr/PottedPlant.tsx new file mode 100644 index 000000000..015378232 --- /dev/null +++ b/src/csr/PottedPlant.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PottedPlant"; + +export const PottedPlant: Icon = forwardRef((props, ref) => ( + +)); + +PottedPlant.displayName = "PottedPlant"; diff --git a/src/csr/Power.tsx b/src/csr/Power.tsx new file mode 100644 index 000000000..1275e6aa4 --- /dev/null +++ b/src/csr/Power.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Power"; + +export const Power: Icon = forwardRef((props, ref) => ( + +)); + +Power.displayName = "Power"; diff --git a/src/csr/Prescription.tsx b/src/csr/Prescription.tsx new file mode 100644 index 000000000..6e5d8db59 --- /dev/null +++ b/src/csr/Prescription.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Prescription"; + +export const Prescription: Icon = forwardRef((props, ref) => ( + +)); + +Prescription.displayName = "Prescription"; diff --git a/src/csr/Presentation.tsx b/src/csr/Presentation.tsx new file mode 100644 index 000000000..d56d4d7d0 --- /dev/null +++ b/src/csr/Presentation.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Presentation"; + +export const Presentation: Icon = forwardRef((props, ref) => ( + +)); + +Presentation.displayName = "Presentation"; diff --git a/src/csr/PresentationChart.tsx b/src/csr/PresentationChart.tsx new file mode 100644 index 000000000..0c96633f8 --- /dev/null +++ b/src/csr/PresentationChart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PresentationChart"; + +export const PresentationChart: Icon = forwardRef((props, ref) => ( + +)); + +PresentationChart.displayName = "PresentationChart"; diff --git a/src/csr/Printer.tsx b/src/csr/Printer.tsx new file mode 100644 index 000000000..3ae606f69 --- /dev/null +++ b/src/csr/Printer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Printer"; + +export const Printer: Icon = forwardRef((props, ref) => ( + +)); + +Printer.displayName = "Printer"; diff --git a/src/csr/Prohibit.tsx b/src/csr/Prohibit.tsx new file mode 100644 index 000000000..bf8ac881f --- /dev/null +++ b/src/csr/Prohibit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Prohibit"; + +export const Prohibit: Icon = forwardRef((props, ref) => ( + +)); + +Prohibit.displayName = "Prohibit"; diff --git a/src/csr/ProhibitInset.tsx b/src/csr/ProhibitInset.tsx new file mode 100644 index 000000000..f6cb0a086 --- /dev/null +++ b/src/csr/ProhibitInset.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ProhibitInset"; + +export const ProhibitInset: Icon = forwardRef((props, ref) => ( + +)); + +ProhibitInset.displayName = "ProhibitInset"; diff --git a/src/csr/ProjectorScreen.tsx b/src/csr/ProjectorScreen.tsx new file mode 100644 index 000000000..de4bb99c9 --- /dev/null +++ b/src/csr/ProjectorScreen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ProjectorScreen"; + +export const ProjectorScreen: Icon = forwardRef((props, ref) => ( + +)); + +ProjectorScreen.displayName = "ProjectorScreen"; diff --git a/src/csr/ProjectorScreenChart.tsx b/src/csr/ProjectorScreenChart.tsx new file mode 100644 index 000000000..b9c4784aa --- /dev/null +++ b/src/csr/ProjectorScreenChart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ProjectorScreenChart"; + +export const ProjectorScreenChart: Icon = forwardRef((props, ref) => ( + +)); + +ProjectorScreenChart.displayName = "ProjectorScreenChart"; diff --git a/src/csr/Pulse.tsx b/src/csr/Pulse.tsx new file mode 100644 index 000000000..8bba045b1 --- /dev/null +++ b/src/csr/Pulse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Pulse"; + +export const Pulse: Icon = forwardRef((props, ref) => ( + +)); + +Pulse.displayName = "Pulse"; diff --git a/src/csr/PushPin.tsx b/src/csr/PushPin.tsx new file mode 100644 index 000000000..aba4d8b38 --- /dev/null +++ b/src/csr/PushPin.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PushPin"; + +export const PushPin: Icon = forwardRef((props, ref) => ( + +)); + +PushPin.displayName = "PushPin"; diff --git a/src/csr/PushPinSimple.tsx b/src/csr/PushPinSimple.tsx new file mode 100644 index 000000000..7273d00ef --- /dev/null +++ b/src/csr/PushPinSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PushPinSimple"; + +export const PushPinSimple: Icon = forwardRef((props, ref) => ( + +)); + +PushPinSimple.displayName = "PushPinSimple"; diff --git a/src/csr/PushPinSimpleSlash.tsx b/src/csr/PushPinSimpleSlash.tsx new file mode 100644 index 000000000..b397d7c8f --- /dev/null +++ b/src/csr/PushPinSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PushPinSimpleSlash"; + +export const PushPinSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +PushPinSimpleSlash.displayName = "PushPinSimpleSlash"; diff --git a/src/csr/PushPinSlash.tsx b/src/csr/PushPinSlash.tsx new file mode 100644 index 000000000..af3be3577 --- /dev/null +++ b/src/csr/PushPinSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PushPinSlash"; + +export const PushPinSlash: Icon = forwardRef((props, ref) => ( + +)); + +PushPinSlash.displayName = "PushPinSlash"; diff --git a/src/csr/PuzzlePiece.tsx b/src/csr/PuzzlePiece.tsx new file mode 100644 index 000000000..1822c905a --- /dev/null +++ b/src/csr/PuzzlePiece.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/PuzzlePiece"; + +export const PuzzlePiece: Icon = forwardRef((props, ref) => ( + +)); + +PuzzlePiece.displayName = "PuzzlePiece"; diff --git a/src/csr/QrCode.tsx b/src/csr/QrCode.tsx new file mode 100644 index 000000000..99def6382 --- /dev/null +++ b/src/csr/QrCode.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/QrCode"; + +export const QrCode: Icon = forwardRef((props, ref) => ( + +)); + +QrCode.displayName = "QrCode"; diff --git a/src/csr/Question.tsx b/src/csr/Question.tsx new file mode 100644 index 000000000..7ac71e9b5 --- /dev/null +++ b/src/csr/Question.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Question"; + +export const Question: Icon = forwardRef((props, ref) => ( + +)); + +Question.displayName = "Question"; diff --git a/src/csr/Queue.tsx b/src/csr/Queue.tsx new file mode 100644 index 000000000..c5198f5ff --- /dev/null +++ b/src/csr/Queue.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Queue"; + +export const Queue: Icon = forwardRef((props, ref) => ( + +)); + +Queue.displayName = "Queue"; diff --git a/src/csr/Quotes.tsx b/src/csr/Quotes.tsx new file mode 100644 index 000000000..3ea6a2a7e --- /dev/null +++ b/src/csr/Quotes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Quotes"; + +export const Quotes: Icon = forwardRef((props, ref) => ( + +)); + +Quotes.displayName = "Quotes"; diff --git a/src/csr/Radical.tsx b/src/csr/Radical.tsx new file mode 100644 index 000000000..a84b48ec4 --- /dev/null +++ b/src/csr/Radical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Radical"; + +export const Radical: Icon = forwardRef((props, ref) => ( + +)); + +Radical.displayName = "Radical"; diff --git a/src/csr/Radio.tsx b/src/csr/Radio.tsx new file mode 100644 index 000000000..abfad02e5 --- /dev/null +++ b/src/csr/Radio.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Radio"; + +export const Radio: Icon = forwardRef((props, ref) => ( + +)); + +Radio.displayName = "Radio"; diff --git a/src/csr/RadioButton.tsx b/src/csr/RadioButton.tsx new file mode 100644 index 000000000..fe8407ccf --- /dev/null +++ b/src/csr/RadioButton.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RadioButton"; + +export const RadioButton: Icon = forwardRef((props, ref) => ( + +)); + +RadioButton.displayName = "RadioButton"; diff --git a/src/csr/Radioactive.tsx b/src/csr/Radioactive.tsx new file mode 100644 index 000000000..4371345bf --- /dev/null +++ b/src/csr/Radioactive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Radioactive"; + +export const Radioactive: Icon = forwardRef((props, ref) => ( + +)); + +Radioactive.displayName = "Radioactive"; diff --git a/src/csr/Rainbow.tsx b/src/csr/Rainbow.tsx new file mode 100644 index 000000000..b205120a5 --- /dev/null +++ b/src/csr/Rainbow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Rainbow"; + +export const Rainbow: Icon = forwardRef((props, ref) => ( + +)); + +Rainbow.displayName = "Rainbow"; diff --git a/src/csr/RainbowCloud.tsx b/src/csr/RainbowCloud.tsx new file mode 100644 index 000000000..4390ec1b9 --- /dev/null +++ b/src/csr/RainbowCloud.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RainbowCloud"; + +export const RainbowCloud: Icon = forwardRef((props, ref) => ( + +)); + +RainbowCloud.displayName = "RainbowCloud"; diff --git a/src/csr/ReadCvLogo.tsx b/src/csr/ReadCvLogo.tsx new file mode 100644 index 000000000..d017f5442 --- /dev/null +++ b/src/csr/ReadCvLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ReadCvLogo"; + +export const ReadCvLogo: Icon = forwardRef((props, ref) => ( + +)); + +ReadCvLogo.displayName = "ReadCvLogo"; diff --git a/src/csr/Receipt.tsx b/src/csr/Receipt.tsx new file mode 100644 index 000000000..ba25eab28 --- /dev/null +++ b/src/csr/Receipt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Receipt"; + +export const Receipt: Icon = forwardRef((props, ref) => ( + +)); + +Receipt.displayName = "Receipt"; diff --git a/src/csr/ReceiptX.tsx b/src/csr/ReceiptX.tsx new file mode 100644 index 000000000..b38fa28af --- /dev/null +++ b/src/csr/ReceiptX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ReceiptX"; + +export const ReceiptX: Icon = forwardRef((props, ref) => ( + +)); + +ReceiptX.displayName = "ReceiptX"; diff --git a/src/csr/Record.tsx b/src/csr/Record.tsx new file mode 100644 index 000000000..011b1038a --- /dev/null +++ b/src/csr/Record.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Record"; + +export const Record: Icon = forwardRef((props, ref) => ( + +)); + +Record.displayName = "Record"; diff --git a/src/csr/Rectangle.tsx b/src/csr/Rectangle.tsx new file mode 100644 index 000000000..4f49f71de --- /dev/null +++ b/src/csr/Rectangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Rectangle"; + +export const Rectangle: Icon = forwardRef((props, ref) => ( + +)); + +Rectangle.displayName = "Rectangle"; diff --git a/src/csr/Recycle.tsx b/src/csr/Recycle.tsx new file mode 100644 index 000000000..90f180db5 --- /dev/null +++ b/src/csr/Recycle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Recycle"; + +export const Recycle: Icon = forwardRef((props, ref) => ( + +)); + +Recycle.displayName = "Recycle"; diff --git a/src/csr/RedditLogo.tsx b/src/csr/RedditLogo.tsx new file mode 100644 index 000000000..99a55debf --- /dev/null +++ b/src/csr/RedditLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RedditLogo"; + +export const RedditLogo: Icon = forwardRef((props, ref) => ( + +)); + +RedditLogo.displayName = "RedditLogo"; diff --git a/src/csr/Repeat.tsx b/src/csr/Repeat.tsx new file mode 100644 index 000000000..30a059992 --- /dev/null +++ b/src/csr/Repeat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Repeat"; + +export const Repeat: Icon = forwardRef((props, ref) => ( + +)); + +Repeat.displayName = "Repeat"; diff --git a/src/csr/RepeatOnce.tsx b/src/csr/RepeatOnce.tsx new file mode 100644 index 000000000..0f5a4ee9d --- /dev/null +++ b/src/csr/RepeatOnce.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RepeatOnce"; + +export const RepeatOnce: Icon = forwardRef((props, ref) => ( + +)); + +RepeatOnce.displayName = "RepeatOnce"; diff --git a/src/csr/Rewind.tsx b/src/csr/Rewind.tsx new file mode 100644 index 000000000..e4afb557e --- /dev/null +++ b/src/csr/Rewind.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Rewind"; + +export const Rewind: Icon = forwardRef((props, ref) => ( + +)); + +Rewind.displayName = "Rewind"; diff --git a/src/csr/RewindCircle.tsx b/src/csr/RewindCircle.tsx new file mode 100644 index 000000000..f9c596202 --- /dev/null +++ b/src/csr/RewindCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RewindCircle"; + +export const RewindCircle: Icon = forwardRef((props, ref) => ( + +)); + +RewindCircle.displayName = "RewindCircle"; diff --git a/src/csr/RoadHorizon.tsx b/src/csr/RoadHorizon.tsx new file mode 100644 index 000000000..168e14032 --- /dev/null +++ b/src/csr/RoadHorizon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RoadHorizon"; + +export const RoadHorizon: Icon = forwardRef((props, ref) => ( + +)); + +RoadHorizon.displayName = "RoadHorizon"; diff --git a/src/csr/Robot.tsx b/src/csr/Robot.tsx new file mode 100644 index 000000000..98b935b7b --- /dev/null +++ b/src/csr/Robot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Robot"; + +export const Robot: Icon = forwardRef((props, ref) => ( + +)); + +Robot.displayName = "Robot"; diff --git a/src/csr/Rocket.tsx b/src/csr/Rocket.tsx new file mode 100644 index 000000000..a6819e95a --- /dev/null +++ b/src/csr/Rocket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Rocket"; + +export const Rocket: Icon = forwardRef((props, ref) => ( + +)); + +Rocket.displayName = "Rocket"; diff --git a/src/csr/RocketLaunch.tsx b/src/csr/RocketLaunch.tsx new file mode 100644 index 000000000..056430013 --- /dev/null +++ b/src/csr/RocketLaunch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RocketLaunch"; + +export const RocketLaunch: Icon = forwardRef((props, ref) => ( + +)); + +RocketLaunch.displayName = "RocketLaunch"; diff --git a/src/csr/Rows.tsx b/src/csr/Rows.tsx new file mode 100644 index 000000000..c3f5fbbe0 --- /dev/null +++ b/src/csr/Rows.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Rows"; + +export const Rows: Icon = forwardRef((props, ref) => ( + +)); + +Rows.displayName = "Rows"; diff --git a/src/csr/Rss.tsx b/src/csr/Rss.tsx new file mode 100644 index 000000000..8f0a4f96a --- /dev/null +++ b/src/csr/Rss.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Rss"; + +export const Rss: Icon = forwardRef((props, ref) => ( + +)); + +Rss.displayName = "Rss"; diff --git a/src/csr/RssSimple.tsx b/src/csr/RssSimple.tsx new file mode 100644 index 000000000..88c4d4521 --- /dev/null +++ b/src/csr/RssSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/RssSimple"; + +export const RssSimple: Icon = forwardRef((props, ref) => ( + +)); + +RssSimple.displayName = "RssSimple"; diff --git a/src/csr/Rug.tsx b/src/csr/Rug.tsx new file mode 100644 index 000000000..9a5355917 --- /dev/null +++ b/src/csr/Rug.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Rug"; + +export const Rug: Icon = forwardRef((props, ref) => ( + +)); + +Rug.displayName = "Rug"; diff --git a/src/csr/Ruler.tsx b/src/csr/Ruler.tsx new file mode 100644 index 000000000..c97f41ee4 --- /dev/null +++ b/src/csr/Ruler.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Ruler"; + +export const Ruler: Icon = forwardRef((props, ref) => ( + +)); + +Ruler.displayName = "Ruler"; diff --git a/src/csr/Scales.tsx b/src/csr/Scales.tsx new file mode 100644 index 000000000..b7b7ec341 --- /dev/null +++ b/src/csr/Scales.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Scales"; + +export const Scales: Icon = forwardRef((props, ref) => ( + +)); + +Scales.displayName = "Scales"; diff --git a/src/csr/Scan.tsx b/src/csr/Scan.tsx new file mode 100644 index 000000000..e5091a07a --- /dev/null +++ b/src/csr/Scan.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Scan"; + +export const Scan: Icon = forwardRef((props, ref) => ( + +)); + +Scan.displayName = "Scan"; diff --git a/src/csr/Scissors.tsx b/src/csr/Scissors.tsx new file mode 100644 index 000000000..1714407bb --- /dev/null +++ b/src/csr/Scissors.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Scissors"; + +export const Scissors: Icon = forwardRef((props, ref) => ( + +)); + +Scissors.displayName = "Scissors"; diff --git a/src/csr/Scooter.tsx b/src/csr/Scooter.tsx new file mode 100644 index 000000000..a72cc1958 --- /dev/null +++ b/src/csr/Scooter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Scooter"; + +export const Scooter: Icon = forwardRef((props, ref) => ( + +)); + +Scooter.displayName = "Scooter"; diff --git a/src/csr/Screencast.tsx b/src/csr/Screencast.tsx new file mode 100644 index 000000000..68669e573 --- /dev/null +++ b/src/csr/Screencast.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Screencast"; + +export const Screencast: Icon = forwardRef((props, ref) => ( + +)); + +Screencast.displayName = "Screencast"; diff --git a/src/csr/ScribbleLoop.tsx b/src/csr/ScribbleLoop.tsx new file mode 100644 index 000000000..f01eca02d --- /dev/null +++ b/src/csr/ScribbleLoop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ScribbleLoop"; + +export const ScribbleLoop: Icon = forwardRef((props, ref) => ( + +)); + +ScribbleLoop.displayName = "ScribbleLoop"; diff --git a/src/csr/Scroll.tsx b/src/csr/Scroll.tsx new file mode 100644 index 000000000..81a088264 --- /dev/null +++ b/src/csr/Scroll.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Scroll"; + +export const Scroll: Icon = forwardRef((props, ref) => ( + +)); + +Scroll.displayName = "Scroll"; diff --git a/src/csr/Seal.tsx b/src/csr/Seal.tsx new file mode 100644 index 000000000..f80227f63 --- /dev/null +++ b/src/csr/Seal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Seal"; + +export const Seal: Icon = forwardRef((props, ref) => ( + +)); + +Seal.displayName = "Seal"; diff --git a/src/csr/SealCheck.tsx b/src/csr/SealCheck.tsx new file mode 100644 index 000000000..02b92d97d --- /dev/null +++ b/src/csr/SealCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SealCheck"; + +export const SealCheck: Icon = forwardRef((props, ref) => ( + +)); + +SealCheck.displayName = "SealCheck"; diff --git a/src/csr/SealQuestion.tsx b/src/csr/SealQuestion.tsx new file mode 100644 index 000000000..26f661273 --- /dev/null +++ b/src/csr/SealQuestion.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SealQuestion"; + +export const SealQuestion: Icon = forwardRef((props, ref) => ( + +)); + +SealQuestion.displayName = "SealQuestion"; diff --git a/src/csr/SealWarning.tsx b/src/csr/SealWarning.tsx new file mode 100644 index 000000000..fddf349eb --- /dev/null +++ b/src/csr/SealWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SealWarning"; + +export const SealWarning: Icon = forwardRef((props, ref) => ( + +)); + +SealWarning.displayName = "SealWarning"; diff --git a/src/csr/Selection.tsx b/src/csr/Selection.tsx new file mode 100644 index 000000000..db5d52897 --- /dev/null +++ b/src/csr/Selection.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Selection"; + +export const Selection: Icon = forwardRef((props, ref) => ( + +)); + +Selection.displayName = "Selection"; diff --git a/src/csr/SelectionAll.tsx b/src/csr/SelectionAll.tsx new file mode 100644 index 000000000..964a062a9 --- /dev/null +++ b/src/csr/SelectionAll.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SelectionAll"; + +export const SelectionAll: Icon = forwardRef((props, ref) => ( + +)); + +SelectionAll.displayName = "SelectionAll"; diff --git a/src/csr/SelectionBackground.tsx b/src/csr/SelectionBackground.tsx new file mode 100644 index 000000000..dfbe4852e --- /dev/null +++ b/src/csr/SelectionBackground.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SelectionBackground"; + +export const SelectionBackground: Icon = forwardRef((props, ref) => ( + +)); + +SelectionBackground.displayName = "SelectionBackground"; diff --git a/src/csr/SelectionForeground.tsx b/src/csr/SelectionForeground.tsx new file mode 100644 index 000000000..b652314a2 --- /dev/null +++ b/src/csr/SelectionForeground.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SelectionForeground"; + +export const SelectionForeground: Icon = forwardRef((props, ref) => ( + +)); + +SelectionForeground.displayName = "SelectionForeground"; diff --git a/src/csr/SelectionInverse.tsx b/src/csr/SelectionInverse.tsx new file mode 100644 index 000000000..f92aeb545 --- /dev/null +++ b/src/csr/SelectionInverse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SelectionInverse"; + +export const SelectionInverse: Icon = forwardRef((props, ref) => ( + +)); + +SelectionInverse.displayName = "SelectionInverse"; diff --git a/src/csr/SelectionPlus.tsx b/src/csr/SelectionPlus.tsx new file mode 100644 index 000000000..26d6286c7 --- /dev/null +++ b/src/csr/SelectionPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SelectionPlus"; + +export const SelectionPlus: Icon = forwardRef((props, ref) => ( + +)); + +SelectionPlus.displayName = "SelectionPlus"; diff --git a/src/csr/SelectionSlash.tsx b/src/csr/SelectionSlash.tsx new file mode 100644 index 000000000..dbaef0f30 --- /dev/null +++ b/src/csr/SelectionSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SelectionSlash"; + +export const SelectionSlash: Icon = forwardRef((props, ref) => ( + +)); + +SelectionSlash.displayName = "SelectionSlash"; diff --git a/src/csr/Shapes.tsx b/src/csr/Shapes.tsx new file mode 100644 index 000000000..3ebd420e9 --- /dev/null +++ b/src/csr/Shapes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Shapes"; + +export const Shapes: Icon = forwardRef((props, ref) => ( + +)); + +Shapes.displayName = "Shapes"; diff --git a/src/csr/Share.tsx b/src/csr/Share.tsx new file mode 100644 index 000000000..02a313351 --- /dev/null +++ b/src/csr/Share.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Share"; + +export const Share: Icon = forwardRef((props, ref) => ( + +)); + +Share.displayName = "Share"; diff --git a/src/csr/ShareFat.tsx b/src/csr/ShareFat.tsx new file mode 100644 index 000000000..544669084 --- /dev/null +++ b/src/csr/ShareFat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShareFat"; + +export const ShareFat: Icon = forwardRef((props, ref) => ( + +)); + +ShareFat.displayName = "ShareFat"; diff --git a/src/csr/ShareNetwork.tsx b/src/csr/ShareNetwork.tsx new file mode 100644 index 000000000..346b46e2b --- /dev/null +++ b/src/csr/ShareNetwork.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShareNetwork"; + +export const ShareNetwork: Icon = forwardRef((props, ref) => ( + +)); + +ShareNetwork.displayName = "ShareNetwork"; diff --git a/src/csr/Shield.tsx b/src/csr/Shield.tsx new file mode 100644 index 000000000..c51981c2e --- /dev/null +++ b/src/csr/Shield.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Shield"; + +export const Shield: Icon = forwardRef((props, ref) => ( + +)); + +Shield.displayName = "Shield"; diff --git a/src/csr/ShieldCheck.tsx b/src/csr/ShieldCheck.tsx new file mode 100644 index 000000000..6814f7ba4 --- /dev/null +++ b/src/csr/ShieldCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShieldCheck"; + +export const ShieldCheck: Icon = forwardRef((props, ref) => ( + +)); + +ShieldCheck.displayName = "ShieldCheck"; diff --git a/src/csr/ShieldCheckered.tsx b/src/csr/ShieldCheckered.tsx new file mode 100644 index 000000000..3227afbf5 --- /dev/null +++ b/src/csr/ShieldCheckered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShieldCheckered"; + +export const ShieldCheckered: Icon = forwardRef((props, ref) => ( + +)); + +ShieldCheckered.displayName = "ShieldCheckered"; diff --git a/src/csr/ShieldChevron.tsx b/src/csr/ShieldChevron.tsx new file mode 100644 index 000000000..57c913329 --- /dev/null +++ b/src/csr/ShieldChevron.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShieldChevron"; + +export const ShieldChevron: Icon = forwardRef((props, ref) => ( + +)); + +ShieldChevron.displayName = "ShieldChevron"; diff --git a/src/csr/ShieldPlus.tsx b/src/csr/ShieldPlus.tsx new file mode 100644 index 000000000..7bdc09c58 --- /dev/null +++ b/src/csr/ShieldPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShieldPlus"; + +export const ShieldPlus: Icon = forwardRef((props, ref) => ( + +)); + +ShieldPlus.displayName = "ShieldPlus"; diff --git a/src/csr/ShieldSlash.tsx b/src/csr/ShieldSlash.tsx new file mode 100644 index 000000000..2b48b923f --- /dev/null +++ b/src/csr/ShieldSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShieldSlash"; + +export const ShieldSlash: Icon = forwardRef((props, ref) => ( + +)); + +ShieldSlash.displayName = "ShieldSlash"; diff --git a/src/csr/ShieldStar.tsx b/src/csr/ShieldStar.tsx new file mode 100644 index 000000000..a218d8a0c --- /dev/null +++ b/src/csr/ShieldStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShieldStar"; + +export const ShieldStar: Icon = forwardRef((props, ref) => ( + +)); + +ShieldStar.displayName = "ShieldStar"; diff --git a/src/csr/ShieldWarning.tsx b/src/csr/ShieldWarning.tsx new file mode 100644 index 000000000..ace7e276b --- /dev/null +++ b/src/csr/ShieldWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShieldWarning"; + +export const ShieldWarning: Icon = forwardRef((props, ref) => ( + +)); + +ShieldWarning.displayName = "ShieldWarning"; diff --git a/src/csr/ShirtFolded.tsx b/src/csr/ShirtFolded.tsx new file mode 100644 index 000000000..a73cc0d3a --- /dev/null +++ b/src/csr/ShirtFolded.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShirtFolded"; + +export const ShirtFolded: Icon = forwardRef((props, ref) => ( + +)); + +ShirtFolded.displayName = "ShirtFolded"; diff --git a/src/csr/ShootingStar.tsx b/src/csr/ShootingStar.tsx new file mode 100644 index 000000000..9ade89fce --- /dev/null +++ b/src/csr/ShootingStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShootingStar"; + +export const ShootingStar: Icon = forwardRef((props, ref) => ( + +)); + +ShootingStar.displayName = "ShootingStar"; diff --git a/src/csr/ShoppingBag.tsx b/src/csr/ShoppingBag.tsx new file mode 100644 index 000000000..a9e86eee4 --- /dev/null +++ b/src/csr/ShoppingBag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShoppingBag"; + +export const ShoppingBag: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingBag.displayName = "ShoppingBag"; diff --git a/src/csr/ShoppingBagOpen.tsx b/src/csr/ShoppingBagOpen.tsx new file mode 100644 index 000000000..b8398a3ca --- /dev/null +++ b/src/csr/ShoppingBagOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShoppingBagOpen"; + +export const ShoppingBagOpen: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingBagOpen.displayName = "ShoppingBagOpen"; diff --git a/src/csr/ShoppingCart.tsx b/src/csr/ShoppingCart.tsx new file mode 100644 index 000000000..4ce8b4b4e --- /dev/null +++ b/src/csr/ShoppingCart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShoppingCart"; + +export const ShoppingCart: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingCart.displayName = "ShoppingCart"; diff --git a/src/csr/ShoppingCartSimple.tsx b/src/csr/ShoppingCartSimple.tsx new file mode 100644 index 000000000..48d887c27 --- /dev/null +++ b/src/csr/ShoppingCartSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShoppingCartSimple"; + +export const ShoppingCartSimple: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingCartSimple.displayName = "ShoppingCartSimple"; diff --git a/src/csr/Shower.tsx b/src/csr/Shower.tsx new file mode 100644 index 000000000..5899ba6e9 --- /dev/null +++ b/src/csr/Shower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Shower"; + +export const Shower: Icon = forwardRef((props, ref) => ( + +)); + +Shower.displayName = "Shower"; diff --git a/src/csr/Shrimp.tsx b/src/csr/Shrimp.tsx new file mode 100644 index 000000000..9f6bf9e4b --- /dev/null +++ b/src/csr/Shrimp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Shrimp"; + +export const Shrimp: Icon = forwardRef((props, ref) => ( + +)); + +Shrimp.displayName = "Shrimp"; diff --git a/src/csr/Shuffle.tsx b/src/csr/Shuffle.tsx new file mode 100644 index 000000000..72ab0b9b9 --- /dev/null +++ b/src/csr/Shuffle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Shuffle"; + +export const Shuffle: Icon = forwardRef((props, ref) => ( + +)); + +Shuffle.displayName = "Shuffle"; diff --git a/src/csr/ShuffleAngular.tsx b/src/csr/ShuffleAngular.tsx new file mode 100644 index 000000000..2c7b26c02 --- /dev/null +++ b/src/csr/ShuffleAngular.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShuffleAngular"; + +export const ShuffleAngular: Icon = forwardRef((props, ref) => ( + +)); + +ShuffleAngular.displayName = "ShuffleAngular"; diff --git a/src/csr/ShuffleSimple.tsx b/src/csr/ShuffleSimple.tsx new file mode 100644 index 000000000..39b2a887c --- /dev/null +++ b/src/csr/ShuffleSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ShuffleSimple"; + +export const ShuffleSimple: Icon = forwardRef((props, ref) => ( + +)); + +ShuffleSimple.displayName = "ShuffleSimple"; diff --git a/src/csr/Sidebar.tsx b/src/csr/Sidebar.tsx new file mode 100644 index 000000000..a5b6c1ab5 --- /dev/null +++ b/src/csr/Sidebar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sidebar"; + +export const Sidebar: Icon = forwardRef((props, ref) => ( + +)); + +Sidebar.displayName = "Sidebar"; diff --git a/src/csr/SidebarSimple.tsx b/src/csr/SidebarSimple.tsx new file mode 100644 index 000000000..05ef376db --- /dev/null +++ b/src/csr/SidebarSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SidebarSimple"; + +export const SidebarSimple: Icon = forwardRef((props, ref) => ( + +)); + +SidebarSimple.displayName = "SidebarSimple"; diff --git a/src/csr/Sigma.tsx b/src/csr/Sigma.tsx new file mode 100644 index 000000000..18c876027 --- /dev/null +++ b/src/csr/Sigma.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sigma"; + +export const Sigma: Icon = forwardRef((props, ref) => ( + +)); + +Sigma.displayName = "Sigma"; diff --git a/src/csr/SignIn.tsx b/src/csr/SignIn.tsx new file mode 100644 index 000000000..f3a90a79b --- /dev/null +++ b/src/csr/SignIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SignIn"; + +export const SignIn: Icon = forwardRef((props, ref) => ( + +)); + +SignIn.displayName = "SignIn"; diff --git a/src/csr/SignOut.tsx b/src/csr/SignOut.tsx new file mode 100644 index 000000000..3f5073849 --- /dev/null +++ b/src/csr/SignOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SignOut"; + +export const SignOut: Icon = forwardRef((props, ref) => ( + +)); + +SignOut.displayName = "SignOut"; diff --git a/src/csr/Signature.tsx b/src/csr/Signature.tsx new file mode 100644 index 000000000..dbb424603 --- /dev/null +++ b/src/csr/Signature.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Signature"; + +export const Signature: Icon = forwardRef((props, ref) => ( + +)); + +Signature.displayName = "Signature"; diff --git a/src/csr/Signpost.tsx b/src/csr/Signpost.tsx new file mode 100644 index 000000000..b7fa067da --- /dev/null +++ b/src/csr/Signpost.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Signpost"; + +export const Signpost: Icon = forwardRef((props, ref) => ( + +)); + +Signpost.displayName = "Signpost"; diff --git a/src/csr/SimCard.tsx b/src/csr/SimCard.tsx new file mode 100644 index 000000000..b9a50ceed --- /dev/null +++ b/src/csr/SimCard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SimCard"; + +export const SimCard: Icon = forwardRef((props, ref) => ( + +)); + +SimCard.displayName = "SimCard"; diff --git a/src/csr/Siren.tsx b/src/csr/Siren.tsx new file mode 100644 index 000000000..b9be6bf5f --- /dev/null +++ b/src/csr/Siren.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Siren"; + +export const Siren: Icon = forwardRef((props, ref) => ( + +)); + +Siren.displayName = "Siren"; diff --git a/src/csr/SketchLogo.tsx b/src/csr/SketchLogo.tsx new file mode 100644 index 000000000..5dc73ba17 --- /dev/null +++ b/src/csr/SketchLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SketchLogo"; + +export const SketchLogo: Icon = forwardRef((props, ref) => ( + +)); + +SketchLogo.displayName = "SketchLogo"; diff --git a/src/csr/SkipBack.tsx b/src/csr/SkipBack.tsx new file mode 100644 index 000000000..2f722d41e --- /dev/null +++ b/src/csr/SkipBack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SkipBack"; + +export const SkipBack: Icon = forwardRef((props, ref) => ( + +)); + +SkipBack.displayName = "SkipBack"; diff --git a/src/csr/SkipBackCircle.tsx b/src/csr/SkipBackCircle.tsx new file mode 100644 index 000000000..01f6738d3 --- /dev/null +++ b/src/csr/SkipBackCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SkipBackCircle"; + +export const SkipBackCircle: Icon = forwardRef((props, ref) => ( + +)); + +SkipBackCircle.displayName = "SkipBackCircle"; diff --git a/src/csr/SkipForward.tsx b/src/csr/SkipForward.tsx new file mode 100644 index 000000000..db5f77051 --- /dev/null +++ b/src/csr/SkipForward.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SkipForward"; + +export const SkipForward: Icon = forwardRef((props, ref) => ( + +)); + +SkipForward.displayName = "SkipForward"; diff --git a/src/csr/SkipForwardCircle.tsx b/src/csr/SkipForwardCircle.tsx new file mode 100644 index 000000000..93d989b91 --- /dev/null +++ b/src/csr/SkipForwardCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SkipForwardCircle"; + +export const SkipForwardCircle: Icon = forwardRef((props, ref) => ( + +)); + +SkipForwardCircle.displayName = "SkipForwardCircle"; diff --git a/src/csr/Skull.tsx b/src/csr/Skull.tsx new file mode 100644 index 000000000..3481a7a15 --- /dev/null +++ b/src/csr/Skull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Skull"; + +export const Skull: Icon = forwardRef((props, ref) => ( + +)); + +Skull.displayName = "Skull"; diff --git a/src/csr/SlackLogo.tsx b/src/csr/SlackLogo.tsx new file mode 100644 index 000000000..8da3be1cb --- /dev/null +++ b/src/csr/SlackLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SlackLogo"; + +export const SlackLogo: Icon = forwardRef((props, ref) => ( + +)); + +SlackLogo.displayName = "SlackLogo"; diff --git a/src/csr/Sliders.tsx b/src/csr/Sliders.tsx new file mode 100644 index 000000000..9f18e45ab --- /dev/null +++ b/src/csr/Sliders.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sliders"; + +export const Sliders: Icon = forwardRef((props, ref) => ( + +)); + +Sliders.displayName = "Sliders"; diff --git a/src/csr/SlidersHorizontal.tsx b/src/csr/SlidersHorizontal.tsx new file mode 100644 index 000000000..a397d0bb0 --- /dev/null +++ b/src/csr/SlidersHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SlidersHorizontal"; + +export const SlidersHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SlidersHorizontal.displayName = "SlidersHorizontal"; diff --git a/src/csr/Slideshow.tsx b/src/csr/Slideshow.tsx new file mode 100644 index 000000000..6b9bad58e --- /dev/null +++ b/src/csr/Slideshow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Slideshow"; + +export const Slideshow: Icon = forwardRef((props, ref) => ( + +)); + +Slideshow.displayName = "Slideshow"; diff --git a/src/csr/Smiley.tsx b/src/csr/Smiley.tsx new file mode 100644 index 000000000..744d62f60 --- /dev/null +++ b/src/csr/Smiley.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Smiley"; + +export const Smiley: Icon = forwardRef((props, ref) => ( + +)); + +Smiley.displayName = "Smiley"; diff --git a/src/csr/SmileyAngry.tsx b/src/csr/SmileyAngry.tsx new file mode 100644 index 000000000..98f337a89 --- /dev/null +++ b/src/csr/SmileyAngry.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileyAngry"; + +export const SmileyAngry: Icon = forwardRef((props, ref) => ( + +)); + +SmileyAngry.displayName = "SmileyAngry"; diff --git a/src/csr/SmileyBlank.tsx b/src/csr/SmileyBlank.tsx new file mode 100644 index 000000000..334026bbe --- /dev/null +++ b/src/csr/SmileyBlank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileyBlank"; + +export const SmileyBlank: Icon = forwardRef((props, ref) => ( + +)); + +SmileyBlank.displayName = "SmileyBlank"; diff --git a/src/csr/SmileyMeh.tsx b/src/csr/SmileyMeh.tsx new file mode 100644 index 000000000..a03ba72fc --- /dev/null +++ b/src/csr/SmileyMeh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileyMeh"; + +export const SmileyMeh: Icon = forwardRef((props, ref) => ( + +)); + +SmileyMeh.displayName = "SmileyMeh"; diff --git a/src/csr/SmileyNervous.tsx b/src/csr/SmileyNervous.tsx new file mode 100644 index 000000000..62dab48a7 --- /dev/null +++ b/src/csr/SmileyNervous.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileyNervous"; + +export const SmileyNervous: Icon = forwardRef((props, ref) => ( + +)); + +SmileyNervous.displayName = "SmileyNervous"; diff --git a/src/csr/SmileySad.tsx b/src/csr/SmileySad.tsx new file mode 100644 index 000000000..d76bc949e --- /dev/null +++ b/src/csr/SmileySad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileySad"; + +export const SmileySad: Icon = forwardRef((props, ref) => ( + +)); + +SmileySad.displayName = "SmileySad"; diff --git a/src/csr/SmileySticker.tsx b/src/csr/SmileySticker.tsx new file mode 100644 index 000000000..14eafd1c9 --- /dev/null +++ b/src/csr/SmileySticker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileySticker"; + +export const SmileySticker: Icon = forwardRef((props, ref) => ( + +)); + +SmileySticker.displayName = "SmileySticker"; diff --git a/src/csr/SmileyWink.tsx b/src/csr/SmileyWink.tsx new file mode 100644 index 000000000..276bfd366 --- /dev/null +++ b/src/csr/SmileyWink.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileyWink"; + +export const SmileyWink: Icon = forwardRef((props, ref) => ( + +)); + +SmileyWink.displayName = "SmileyWink"; diff --git a/src/csr/SmileyXEyes.tsx b/src/csr/SmileyXEyes.tsx new file mode 100644 index 000000000..4e72e53ee --- /dev/null +++ b/src/csr/SmileyXEyes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SmileyXEyes"; + +export const SmileyXEyes: Icon = forwardRef((props, ref) => ( + +)); + +SmileyXEyes.displayName = "SmileyXEyes"; diff --git a/src/csr/SnapchatLogo.tsx b/src/csr/SnapchatLogo.tsx new file mode 100644 index 000000000..b51c2061a --- /dev/null +++ b/src/csr/SnapchatLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SnapchatLogo"; + +export const SnapchatLogo: Icon = forwardRef((props, ref) => ( + +)); + +SnapchatLogo.displayName = "SnapchatLogo"; diff --git a/src/csr/Sneaker.tsx b/src/csr/Sneaker.tsx new file mode 100644 index 000000000..6d5018078 --- /dev/null +++ b/src/csr/Sneaker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sneaker"; + +export const Sneaker: Icon = forwardRef((props, ref) => ( + +)); + +Sneaker.displayName = "Sneaker"; diff --git a/src/csr/SneakerMove.tsx b/src/csr/SneakerMove.tsx new file mode 100644 index 000000000..88eb39e0b --- /dev/null +++ b/src/csr/SneakerMove.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SneakerMove"; + +export const SneakerMove: Icon = forwardRef((props, ref) => ( + +)); + +SneakerMove.displayName = "SneakerMove"; diff --git a/src/csr/Snowflake.tsx b/src/csr/Snowflake.tsx new file mode 100644 index 000000000..ec5aebfdc --- /dev/null +++ b/src/csr/Snowflake.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Snowflake"; + +export const Snowflake: Icon = forwardRef((props, ref) => ( + +)); + +Snowflake.displayName = "Snowflake"; diff --git a/src/csr/SoccerBall.tsx b/src/csr/SoccerBall.tsx new file mode 100644 index 000000000..fca6e4699 --- /dev/null +++ b/src/csr/SoccerBall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SoccerBall"; + +export const SoccerBall: Icon = forwardRef((props, ref) => ( + +)); + +SoccerBall.displayName = "SoccerBall"; diff --git a/src/csr/SortAscending.tsx b/src/csr/SortAscending.tsx new file mode 100644 index 000000000..1dc248201 --- /dev/null +++ b/src/csr/SortAscending.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SortAscending"; + +export const SortAscending: Icon = forwardRef((props, ref) => ( + +)); + +SortAscending.displayName = "SortAscending"; diff --git a/src/csr/SortDescending.tsx b/src/csr/SortDescending.tsx new file mode 100644 index 000000000..b214d77ae --- /dev/null +++ b/src/csr/SortDescending.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SortDescending"; + +export const SortDescending: Icon = forwardRef((props, ref) => ( + +)); + +SortDescending.displayName = "SortDescending"; diff --git a/src/csr/SoundcloudLogo.tsx b/src/csr/SoundcloudLogo.tsx new file mode 100644 index 000000000..d5f9e0c69 --- /dev/null +++ b/src/csr/SoundcloudLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SoundcloudLogo"; + +export const SoundcloudLogo: Icon = forwardRef((props, ref) => ( + +)); + +SoundcloudLogo.displayName = "SoundcloudLogo"; diff --git a/src/csr/Spade.tsx b/src/csr/Spade.tsx new file mode 100644 index 000000000..e8130f28c --- /dev/null +++ b/src/csr/Spade.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Spade"; + +export const Spade: Icon = forwardRef((props, ref) => ( + +)); + +Spade.displayName = "Spade"; diff --git a/src/csr/Sparkle.tsx b/src/csr/Sparkle.tsx new file mode 100644 index 000000000..513593936 --- /dev/null +++ b/src/csr/Sparkle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sparkle"; + +export const Sparkle: Icon = forwardRef((props, ref) => ( + +)); + +Sparkle.displayName = "Sparkle"; diff --git a/src/csr/SpeakerHifi.tsx b/src/csr/SpeakerHifi.tsx new file mode 100644 index 000000000..074147413 --- /dev/null +++ b/src/csr/SpeakerHifi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerHifi"; + +export const SpeakerHifi: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerHifi.displayName = "SpeakerHifi"; diff --git a/src/csr/SpeakerHigh.tsx b/src/csr/SpeakerHigh.tsx new file mode 100644 index 000000000..3631ac88e --- /dev/null +++ b/src/csr/SpeakerHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerHigh"; + +export const SpeakerHigh: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerHigh.displayName = "SpeakerHigh"; diff --git a/src/csr/SpeakerLow.tsx b/src/csr/SpeakerLow.tsx new file mode 100644 index 000000000..e128ab11e --- /dev/null +++ b/src/csr/SpeakerLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerLow"; + +export const SpeakerLow: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerLow.displayName = "SpeakerLow"; diff --git a/src/csr/SpeakerNone.tsx b/src/csr/SpeakerNone.tsx new file mode 100644 index 000000000..9ea9b0b97 --- /dev/null +++ b/src/csr/SpeakerNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerNone"; + +export const SpeakerNone: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerNone.displayName = "SpeakerNone"; diff --git a/src/csr/SpeakerSimpleHigh.tsx b/src/csr/SpeakerSimpleHigh.tsx new file mode 100644 index 000000000..35f26c4a0 --- /dev/null +++ b/src/csr/SpeakerSimpleHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerSimpleHigh"; + +export const SpeakerSimpleHigh: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleHigh.displayName = "SpeakerSimpleHigh"; diff --git a/src/csr/SpeakerSimpleLow.tsx b/src/csr/SpeakerSimpleLow.tsx new file mode 100644 index 000000000..963e3dd85 --- /dev/null +++ b/src/csr/SpeakerSimpleLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerSimpleLow"; + +export const SpeakerSimpleLow: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleLow.displayName = "SpeakerSimpleLow"; diff --git a/src/csr/SpeakerSimpleNone.tsx b/src/csr/SpeakerSimpleNone.tsx new file mode 100644 index 000000000..0c77124af --- /dev/null +++ b/src/csr/SpeakerSimpleNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerSimpleNone"; + +export const SpeakerSimpleNone: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleNone.displayName = "SpeakerSimpleNone"; diff --git a/src/csr/SpeakerSimpleSlash.tsx b/src/csr/SpeakerSimpleSlash.tsx new file mode 100644 index 000000000..828927fe2 --- /dev/null +++ b/src/csr/SpeakerSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerSimpleSlash"; + +export const SpeakerSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleSlash.displayName = "SpeakerSimpleSlash"; diff --git a/src/csr/SpeakerSimpleX.tsx b/src/csr/SpeakerSimpleX.tsx new file mode 100644 index 000000000..529e27f76 --- /dev/null +++ b/src/csr/SpeakerSimpleX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerSimpleX"; + +export const SpeakerSimpleX: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleX.displayName = "SpeakerSimpleX"; diff --git a/src/csr/SpeakerSlash.tsx b/src/csr/SpeakerSlash.tsx new file mode 100644 index 000000000..3223482d6 --- /dev/null +++ b/src/csr/SpeakerSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerSlash"; + +export const SpeakerSlash: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSlash.displayName = "SpeakerSlash"; diff --git a/src/csr/SpeakerX.tsx b/src/csr/SpeakerX.tsx new file mode 100644 index 000000000..2c23afbbf --- /dev/null +++ b/src/csr/SpeakerX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpeakerX"; + +export const SpeakerX: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerX.displayName = "SpeakerX"; diff --git a/src/csr/Spinner.tsx b/src/csr/Spinner.tsx new file mode 100644 index 000000000..f56f62efb --- /dev/null +++ b/src/csr/Spinner.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Spinner"; + +export const Spinner: Icon = forwardRef((props, ref) => ( + +)); + +Spinner.displayName = "Spinner"; diff --git a/src/csr/SpinnerGap.tsx b/src/csr/SpinnerGap.tsx new file mode 100644 index 000000000..87268de5c --- /dev/null +++ b/src/csr/SpinnerGap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpinnerGap"; + +export const SpinnerGap: Icon = forwardRef((props, ref) => ( + +)); + +SpinnerGap.displayName = "SpinnerGap"; diff --git a/src/csr/Spiral.tsx b/src/csr/Spiral.tsx new file mode 100644 index 000000000..48af87353 --- /dev/null +++ b/src/csr/Spiral.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Spiral"; + +export const Spiral: Icon = forwardRef((props, ref) => ( + +)); + +Spiral.displayName = "Spiral"; diff --git a/src/csr/SplitHorizontal.tsx b/src/csr/SplitHorizontal.tsx new file mode 100644 index 000000000..25d44c627 --- /dev/null +++ b/src/csr/SplitHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SplitHorizontal"; + +export const SplitHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SplitHorizontal.displayName = "SplitHorizontal"; diff --git a/src/csr/SplitVertical.tsx b/src/csr/SplitVertical.tsx new file mode 100644 index 000000000..3bd5bcfd3 --- /dev/null +++ b/src/csr/SplitVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SplitVertical"; + +export const SplitVertical: Icon = forwardRef((props, ref) => ( + +)); + +SplitVertical.displayName = "SplitVertical"; diff --git a/src/csr/SpotifyLogo.tsx b/src/csr/SpotifyLogo.tsx new file mode 100644 index 000000000..db53ffcf2 --- /dev/null +++ b/src/csr/SpotifyLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SpotifyLogo"; + +export const SpotifyLogo: Icon = forwardRef((props, ref) => ( + +)); + +SpotifyLogo.displayName = "SpotifyLogo"; diff --git a/src/csr/Square.tsx b/src/csr/Square.tsx new file mode 100644 index 000000000..2c712b53e --- /dev/null +++ b/src/csr/Square.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Square"; + +export const Square: Icon = forwardRef((props, ref) => ( + +)); + +Square.displayName = "Square"; diff --git a/src/csr/SquareHalf.tsx b/src/csr/SquareHalf.tsx new file mode 100644 index 000000000..b1db7812e --- /dev/null +++ b/src/csr/SquareHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SquareHalf"; + +export const SquareHalf: Icon = forwardRef((props, ref) => ( + +)); + +SquareHalf.displayName = "SquareHalf"; diff --git a/src/csr/SquareHalfBottom.tsx b/src/csr/SquareHalfBottom.tsx new file mode 100644 index 000000000..8a5e18c31 --- /dev/null +++ b/src/csr/SquareHalfBottom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SquareHalfBottom"; + +export const SquareHalfBottom: Icon = forwardRef((props, ref) => ( + +)); + +SquareHalfBottom.displayName = "SquareHalfBottom"; diff --git a/src/csr/SquareLogo.tsx b/src/csr/SquareLogo.tsx new file mode 100644 index 000000000..b78262388 --- /dev/null +++ b/src/csr/SquareLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SquareLogo"; + +export const SquareLogo: Icon = forwardRef((props, ref) => ( + +)); + +SquareLogo.displayName = "SquareLogo"; diff --git a/src/csr/SquareSplitHorizontal.tsx b/src/csr/SquareSplitHorizontal.tsx new file mode 100644 index 000000000..85658c259 --- /dev/null +++ b/src/csr/SquareSplitHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SquareSplitHorizontal"; + +export const SquareSplitHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SquareSplitHorizontal.displayName = "SquareSplitHorizontal"; diff --git a/src/csr/SquareSplitVertical.tsx b/src/csr/SquareSplitVertical.tsx new file mode 100644 index 000000000..722862bd6 --- /dev/null +++ b/src/csr/SquareSplitVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SquareSplitVertical"; + +export const SquareSplitVertical: Icon = forwardRef((props, ref) => ( + +)); + +SquareSplitVertical.displayName = "SquareSplitVertical"; diff --git a/src/csr/SquaresFour.tsx b/src/csr/SquaresFour.tsx new file mode 100644 index 000000000..da83059bc --- /dev/null +++ b/src/csr/SquaresFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SquaresFour"; + +export const SquaresFour: Icon = forwardRef((props, ref) => ( + +)); + +SquaresFour.displayName = "SquaresFour"; diff --git a/src/csr/Stack.tsx b/src/csr/Stack.tsx new file mode 100644 index 000000000..f628651d2 --- /dev/null +++ b/src/csr/Stack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Stack"; + +export const Stack: Icon = forwardRef((props, ref) => ( + +)); + +Stack.displayName = "Stack"; diff --git a/src/csr/StackOverflowLogo.tsx b/src/csr/StackOverflowLogo.tsx new file mode 100644 index 000000000..d7db9941e --- /dev/null +++ b/src/csr/StackOverflowLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StackOverflowLogo"; + +export const StackOverflowLogo: Icon = forwardRef((props, ref) => ( + +)); + +StackOverflowLogo.displayName = "StackOverflowLogo"; diff --git a/src/csr/StackSimple.tsx b/src/csr/StackSimple.tsx new file mode 100644 index 000000000..48436ee2b --- /dev/null +++ b/src/csr/StackSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StackSimple"; + +export const StackSimple: Icon = forwardRef((props, ref) => ( + +)); + +StackSimple.displayName = "StackSimple"; diff --git a/src/csr/Stairs.tsx b/src/csr/Stairs.tsx new file mode 100644 index 000000000..3ddc21960 --- /dev/null +++ b/src/csr/Stairs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Stairs"; + +export const Stairs: Icon = forwardRef((props, ref) => ( + +)); + +Stairs.displayName = "Stairs"; diff --git a/src/csr/Stamp.tsx b/src/csr/Stamp.tsx new file mode 100644 index 000000000..86ff6057c --- /dev/null +++ b/src/csr/Stamp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Stamp"; + +export const Stamp: Icon = forwardRef((props, ref) => ( + +)); + +Stamp.displayName = "Stamp"; diff --git a/src/csr/Star.tsx b/src/csr/Star.tsx new file mode 100644 index 000000000..c429b228b --- /dev/null +++ b/src/csr/Star.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Star"; + +export const Star: Icon = forwardRef((props, ref) => ( + +)); + +Star.displayName = "Star"; diff --git a/src/csr/StarAndCrescent.tsx b/src/csr/StarAndCrescent.tsx new file mode 100644 index 000000000..aea35c514 --- /dev/null +++ b/src/csr/StarAndCrescent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StarAndCrescent"; + +export const StarAndCrescent: Icon = forwardRef((props, ref) => ( + +)); + +StarAndCrescent.displayName = "StarAndCrescent"; diff --git a/src/csr/StarFour.tsx b/src/csr/StarFour.tsx new file mode 100644 index 000000000..11f21021c --- /dev/null +++ b/src/csr/StarFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StarFour"; + +export const StarFour: Icon = forwardRef((props, ref) => ( + +)); + +StarFour.displayName = "StarFour"; diff --git a/src/csr/StarHalf.tsx b/src/csr/StarHalf.tsx new file mode 100644 index 000000000..0eaeed588 --- /dev/null +++ b/src/csr/StarHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StarHalf"; + +export const StarHalf: Icon = forwardRef((props, ref) => ( + +)); + +StarHalf.displayName = "StarHalf"; diff --git a/src/csr/StarOfDavid.tsx b/src/csr/StarOfDavid.tsx new file mode 100644 index 000000000..5e9c11c52 --- /dev/null +++ b/src/csr/StarOfDavid.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StarOfDavid"; + +export const StarOfDavid: Icon = forwardRef((props, ref) => ( + +)); + +StarOfDavid.displayName = "StarOfDavid"; diff --git a/src/csr/SteeringWheel.tsx b/src/csr/SteeringWheel.tsx new file mode 100644 index 000000000..2edb99c64 --- /dev/null +++ b/src/csr/SteeringWheel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SteeringWheel"; + +export const SteeringWheel: Icon = forwardRef((props, ref) => ( + +)); + +SteeringWheel.displayName = "SteeringWheel"; diff --git a/src/csr/Steps.tsx b/src/csr/Steps.tsx new file mode 100644 index 000000000..56f7876a8 --- /dev/null +++ b/src/csr/Steps.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Steps"; + +export const Steps: Icon = forwardRef((props, ref) => ( + +)); + +Steps.displayName = "Steps"; diff --git a/src/csr/Stethoscope.tsx b/src/csr/Stethoscope.tsx new file mode 100644 index 000000000..8a503b34d --- /dev/null +++ b/src/csr/Stethoscope.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Stethoscope"; + +export const Stethoscope: Icon = forwardRef((props, ref) => ( + +)); + +Stethoscope.displayName = "Stethoscope"; diff --git a/src/csr/Sticker.tsx b/src/csr/Sticker.tsx new file mode 100644 index 000000000..0b0e850d9 --- /dev/null +++ b/src/csr/Sticker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sticker"; + +export const Sticker: Icon = forwardRef((props, ref) => ( + +)); + +Sticker.displayName = "Sticker"; diff --git a/src/csr/Stool.tsx b/src/csr/Stool.tsx new file mode 100644 index 000000000..5444ef9a7 --- /dev/null +++ b/src/csr/Stool.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Stool"; + +export const Stool: Icon = forwardRef((props, ref) => ( + +)); + +Stool.displayName = "Stool"; diff --git a/src/csr/Stop.tsx b/src/csr/Stop.tsx new file mode 100644 index 000000000..7d7249936 --- /dev/null +++ b/src/csr/Stop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Stop"; + +export const Stop: Icon = forwardRef((props, ref) => ( + +)); + +Stop.displayName = "Stop"; diff --git a/src/csr/StopCircle.tsx b/src/csr/StopCircle.tsx new file mode 100644 index 000000000..9b326d190 --- /dev/null +++ b/src/csr/StopCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StopCircle"; + +export const StopCircle: Icon = forwardRef((props, ref) => ( + +)); + +StopCircle.displayName = "StopCircle"; diff --git a/src/csr/Storefront.tsx b/src/csr/Storefront.tsx new file mode 100644 index 000000000..81d4093ea --- /dev/null +++ b/src/csr/Storefront.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Storefront"; + +export const Storefront: Icon = forwardRef((props, ref) => ( + +)); + +Storefront.displayName = "Storefront"; diff --git a/src/csr/Strategy.tsx b/src/csr/Strategy.tsx new file mode 100644 index 000000000..dcdf73cb1 --- /dev/null +++ b/src/csr/Strategy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Strategy"; + +export const Strategy: Icon = forwardRef((props, ref) => ( + +)); + +Strategy.displayName = "Strategy"; diff --git a/src/csr/StripeLogo.tsx b/src/csr/StripeLogo.tsx new file mode 100644 index 000000000..0a5b812ef --- /dev/null +++ b/src/csr/StripeLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/StripeLogo"; + +export const StripeLogo: Icon = forwardRef((props, ref) => ( + +)); + +StripeLogo.displayName = "StripeLogo"; diff --git a/src/csr/Student.tsx b/src/csr/Student.tsx new file mode 100644 index 000000000..451169590 --- /dev/null +++ b/src/csr/Student.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Student"; + +export const Student: Icon = forwardRef((props, ref) => ( + +)); + +Student.displayName = "Student"; diff --git a/src/csr/Subtitles.tsx b/src/csr/Subtitles.tsx new file mode 100644 index 000000000..beb61ec28 --- /dev/null +++ b/src/csr/Subtitles.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Subtitles"; + +export const Subtitles: Icon = forwardRef((props, ref) => ( + +)); + +Subtitles.displayName = "Subtitles"; diff --git a/src/csr/Subtract.tsx b/src/csr/Subtract.tsx new file mode 100644 index 000000000..382eb814b --- /dev/null +++ b/src/csr/Subtract.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Subtract"; + +export const Subtract: Icon = forwardRef((props, ref) => ( + +)); + +Subtract.displayName = "Subtract"; diff --git a/src/csr/SubtractSquare.tsx b/src/csr/SubtractSquare.tsx new file mode 100644 index 000000000..f5634a42b --- /dev/null +++ b/src/csr/SubtractSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SubtractSquare"; + +export const SubtractSquare: Icon = forwardRef((props, ref) => ( + +)); + +SubtractSquare.displayName = "SubtractSquare"; diff --git a/src/csr/Suitcase.tsx b/src/csr/Suitcase.tsx new file mode 100644 index 000000000..05f36aa81 --- /dev/null +++ b/src/csr/Suitcase.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Suitcase"; + +export const Suitcase: Icon = forwardRef((props, ref) => ( + +)); + +Suitcase.displayName = "Suitcase"; diff --git a/src/csr/SuitcaseRolling.tsx b/src/csr/SuitcaseRolling.tsx new file mode 100644 index 000000000..843b3bd07 --- /dev/null +++ b/src/csr/SuitcaseRolling.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SuitcaseRolling"; + +export const SuitcaseRolling: Icon = forwardRef((props, ref) => ( + +)); + +SuitcaseRolling.displayName = "SuitcaseRolling"; diff --git a/src/csr/SuitcaseSimple.tsx b/src/csr/SuitcaseSimple.tsx new file mode 100644 index 000000000..e1b80c243 --- /dev/null +++ b/src/csr/SuitcaseSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SuitcaseSimple"; + +export const SuitcaseSimple: Icon = forwardRef((props, ref) => ( + +)); + +SuitcaseSimple.displayName = "SuitcaseSimple"; diff --git a/src/csr/Sun.tsx b/src/csr/Sun.tsx new file mode 100644 index 000000000..6741fb7f5 --- /dev/null +++ b/src/csr/Sun.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sun"; + +export const Sun: Icon = forwardRef((props, ref) => ( + +)); + +Sun.displayName = "Sun"; diff --git a/src/csr/SunDim.tsx b/src/csr/SunDim.tsx new file mode 100644 index 000000000..4f24b5640 --- /dev/null +++ b/src/csr/SunDim.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SunDim"; + +export const SunDim: Icon = forwardRef((props, ref) => ( + +)); + +SunDim.displayName = "SunDim"; diff --git a/src/csr/SunHorizon.tsx b/src/csr/SunHorizon.tsx new file mode 100644 index 000000000..745920edf --- /dev/null +++ b/src/csr/SunHorizon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SunHorizon"; + +export const SunHorizon: Icon = forwardRef((props, ref) => ( + +)); + +SunHorizon.displayName = "SunHorizon"; diff --git a/src/csr/Sunglasses.tsx b/src/csr/Sunglasses.tsx new file mode 100644 index 000000000..76c4ebf1a --- /dev/null +++ b/src/csr/Sunglasses.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sunglasses"; + +export const Sunglasses: Icon = forwardRef((props, ref) => ( + +)); + +Sunglasses.displayName = "Sunglasses"; diff --git a/src/csr/Swap.tsx b/src/csr/Swap.tsx new file mode 100644 index 000000000..60f5f1e1a --- /dev/null +++ b/src/csr/Swap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Swap"; + +export const Swap: Icon = forwardRef((props, ref) => ( + +)); + +Swap.displayName = "Swap"; diff --git a/src/csr/Swatches.tsx b/src/csr/Swatches.tsx new file mode 100644 index 000000000..dd740b625 --- /dev/null +++ b/src/csr/Swatches.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Swatches"; + +export const Swatches: Icon = forwardRef((props, ref) => ( + +)); + +Swatches.displayName = "Swatches"; diff --git a/src/csr/SwimmingPool.tsx b/src/csr/SwimmingPool.tsx new file mode 100644 index 000000000..c7a060ef8 --- /dev/null +++ b/src/csr/SwimmingPool.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/SwimmingPool"; + +export const SwimmingPool: Icon = forwardRef((props, ref) => ( + +)); + +SwimmingPool.displayName = "SwimmingPool"; diff --git a/src/csr/Sword.tsx b/src/csr/Sword.tsx new file mode 100644 index 000000000..892540a80 --- /dev/null +++ b/src/csr/Sword.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Sword"; + +export const Sword: Icon = forwardRef((props, ref) => ( + +)); + +Sword.displayName = "Sword"; diff --git a/src/csr/Synagogue.tsx b/src/csr/Synagogue.tsx new file mode 100644 index 000000000..a798b0413 --- /dev/null +++ b/src/csr/Synagogue.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Synagogue"; + +export const Synagogue: Icon = forwardRef((props, ref) => ( + +)); + +Synagogue.displayName = "Synagogue"; diff --git a/src/csr/Syringe.tsx b/src/csr/Syringe.tsx new file mode 100644 index 000000000..4c83add14 --- /dev/null +++ b/src/csr/Syringe.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Syringe"; + +export const Syringe: Icon = forwardRef((props, ref) => ( + +)); + +Syringe.displayName = "Syringe"; diff --git a/src/csr/TShirt.tsx b/src/csr/TShirt.tsx new file mode 100644 index 000000000..9777b2ab0 --- /dev/null +++ b/src/csr/TShirt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TShirt"; + +export const TShirt: Icon = forwardRef((props, ref) => ( + +)); + +TShirt.displayName = "TShirt"; diff --git a/src/csr/Table.tsx b/src/csr/Table.tsx new file mode 100644 index 000000000..1536e0d25 --- /dev/null +++ b/src/csr/Table.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Table"; + +export const Table: Icon = forwardRef((props, ref) => ( + +)); + +Table.displayName = "Table"; diff --git a/src/csr/Tabs.tsx b/src/csr/Tabs.tsx new file mode 100644 index 000000000..76bd340aa --- /dev/null +++ b/src/csr/Tabs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tabs"; + +export const Tabs: Icon = forwardRef((props, ref) => ( + +)); + +Tabs.displayName = "Tabs"; diff --git a/src/csr/Tag.tsx b/src/csr/Tag.tsx new file mode 100644 index 000000000..bed896353 --- /dev/null +++ b/src/csr/Tag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tag"; + +export const Tag: Icon = forwardRef((props, ref) => ( + +)); + +Tag.displayName = "Tag"; diff --git a/src/csr/TagChevron.tsx b/src/csr/TagChevron.tsx new file mode 100644 index 000000000..0a6e9b08d --- /dev/null +++ b/src/csr/TagChevron.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TagChevron"; + +export const TagChevron: Icon = forwardRef((props, ref) => ( + +)); + +TagChevron.displayName = "TagChevron"; diff --git a/src/csr/TagSimple.tsx b/src/csr/TagSimple.tsx new file mode 100644 index 000000000..893e516e2 --- /dev/null +++ b/src/csr/TagSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TagSimple"; + +export const TagSimple: Icon = forwardRef((props, ref) => ( + +)); + +TagSimple.displayName = "TagSimple"; diff --git a/src/csr/Target.tsx b/src/csr/Target.tsx new file mode 100644 index 000000000..2df873eea --- /dev/null +++ b/src/csr/Target.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Target"; + +export const Target: Icon = forwardRef((props, ref) => ( + +)); + +Target.displayName = "Target"; diff --git a/src/csr/Taxi.tsx b/src/csr/Taxi.tsx new file mode 100644 index 000000000..db56e7fc5 --- /dev/null +++ b/src/csr/Taxi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Taxi"; + +export const Taxi: Icon = forwardRef((props, ref) => ( + +)); + +Taxi.displayName = "Taxi"; diff --git a/src/csr/TelegramLogo.tsx b/src/csr/TelegramLogo.tsx new file mode 100644 index 000000000..e01e9ee09 --- /dev/null +++ b/src/csr/TelegramLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TelegramLogo"; + +export const TelegramLogo: Icon = forwardRef((props, ref) => ( + +)); + +TelegramLogo.displayName = "TelegramLogo"; diff --git a/src/csr/Television.tsx b/src/csr/Television.tsx new file mode 100644 index 000000000..fa616b9ea --- /dev/null +++ b/src/csr/Television.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Television"; + +export const Television: Icon = forwardRef((props, ref) => ( + +)); + +Television.displayName = "Television"; diff --git a/src/csr/TelevisionSimple.tsx b/src/csr/TelevisionSimple.tsx new file mode 100644 index 000000000..936ac7ce3 --- /dev/null +++ b/src/csr/TelevisionSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TelevisionSimple"; + +export const TelevisionSimple: Icon = forwardRef((props, ref) => ( + +)); + +TelevisionSimple.displayName = "TelevisionSimple"; diff --git a/src/csr/TennisBall.tsx b/src/csr/TennisBall.tsx new file mode 100644 index 000000000..00dce68fa --- /dev/null +++ b/src/csr/TennisBall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TennisBall"; + +export const TennisBall: Icon = forwardRef((props, ref) => ( + +)); + +TennisBall.displayName = "TennisBall"; diff --git a/src/csr/Tent.tsx b/src/csr/Tent.tsx new file mode 100644 index 000000000..104c370dc --- /dev/null +++ b/src/csr/Tent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tent"; + +export const Tent: Icon = forwardRef((props, ref) => ( + +)); + +Tent.displayName = "Tent"; diff --git a/src/csr/Terminal.tsx b/src/csr/Terminal.tsx new file mode 100644 index 000000000..f0600fa03 --- /dev/null +++ b/src/csr/Terminal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Terminal"; + +export const Terminal: Icon = forwardRef((props, ref) => ( + +)); + +Terminal.displayName = "Terminal"; diff --git a/src/csr/TerminalWindow.tsx b/src/csr/TerminalWindow.tsx new file mode 100644 index 000000000..a3d32b5e6 --- /dev/null +++ b/src/csr/TerminalWindow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TerminalWindow"; + +export const TerminalWindow: Icon = forwardRef((props, ref) => ( + +)); + +TerminalWindow.displayName = "TerminalWindow"; diff --git a/src/csr/TestTube.tsx b/src/csr/TestTube.tsx new file mode 100644 index 000000000..5d1c9efce --- /dev/null +++ b/src/csr/TestTube.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TestTube"; + +export const TestTube: Icon = forwardRef((props, ref) => ( + +)); + +TestTube.displayName = "TestTube"; diff --git a/src/csr/TextAUnderline.tsx b/src/csr/TextAUnderline.tsx new file mode 100644 index 000000000..705d239de --- /dev/null +++ b/src/csr/TextAUnderline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextAUnderline"; + +export const TextAUnderline: Icon = forwardRef((props, ref) => ( + +)); + +TextAUnderline.displayName = "TextAUnderline"; diff --git a/src/csr/TextAa.tsx b/src/csr/TextAa.tsx new file mode 100644 index 000000000..fd42106f5 --- /dev/null +++ b/src/csr/TextAa.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextAa"; + +export const TextAa: Icon = forwardRef((props, ref) => ( + +)); + +TextAa.displayName = "TextAa"; diff --git a/src/csr/TextAlignCenter.tsx b/src/csr/TextAlignCenter.tsx new file mode 100644 index 000000000..a4a339b0b --- /dev/null +++ b/src/csr/TextAlignCenter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextAlignCenter"; + +export const TextAlignCenter: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignCenter.displayName = "TextAlignCenter"; diff --git a/src/csr/TextAlignJustify.tsx b/src/csr/TextAlignJustify.tsx new file mode 100644 index 000000000..51ec32696 --- /dev/null +++ b/src/csr/TextAlignJustify.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextAlignJustify"; + +export const TextAlignJustify: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignJustify.displayName = "TextAlignJustify"; diff --git a/src/csr/TextAlignLeft.tsx b/src/csr/TextAlignLeft.tsx new file mode 100644 index 000000000..54e46d335 --- /dev/null +++ b/src/csr/TextAlignLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextAlignLeft"; + +export const TextAlignLeft: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignLeft.displayName = "TextAlignLeft"; diff --git a/src/csr/TextAlignRight.tsx b/src/csr/TextAlignRight.tsx new file mode 100644 index 000000000..76e3db379 --- /dev/null +++ b/src/csr/TextAlignRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextAlignRight"; + +export const TextAlignRight: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignRight.displayName = "TextAlignRight"; diff --git a/src/csr/TextB.tsx b/src/csr/TextB.tsx new file mode 100644 index 000000000..a3ee84864 --- /dev/null +++ b/src/csr/TextB.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextB"; + +export const TextB: Icon = forwardRef((props, ref) => ( + +)); + +TextB.displayName = "TextB"; diff --git a/src/csr/TextColumns.tsx b/src/csr/TextColumns.tsx new file mode 100644 index 000000000..9050aae67 --- /dev/null +++ b/src/csr/TextColumns.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextColumns"; + +export const TextColumns: Icon = forwardRef((props, ref) => ( + +)); + +TextColumns.displayName = "TextColumns"; diff --git a/src/csr/TextH.tsx b/src/csr/TextH.tsx new file mode 100644 index 000000000..692961847 --- /dev/null +++ b/src/csr/TextH.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextH"; + +export const TextH: Icon = forwardRef((props, ref) => ( + +)); + +TextH.displayName = "TextH"; diff --git a/src/csr/TextHFive.tsx b/src/csr/TextHFive.tsx new file mode 100644 index 000000000..8994a54c8 --- /dev/null +++ b/src/csr/TextHFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextHFive"; + +export const TextHFive: Icon = forwardRef((props, ref) => ( + +)); + +TextHFive.displayName = "TextHFive"; diff --git a/src/csr/TextHFour.tsx b/src/csr/TextHFour.tsx new file mode 100644 index 000000000..cef506b6f --- /dev/null +++ b/src/csr/TextHFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextHFour"; + +export const TextHFour: Icon = forwardRef((props, ref) => ( + +)); + +TextHFour.displayName = "TextHFour"; diff --git a/src/csr/TextHOne.tsx b/src/csr/TextHOne.tsx new file mode 100644 index 000000000..9e198df7c --- /dev/null +++ b/src/csr/TextHOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextHOne"; + +export const TextHOne: Icon = forwardRef((props, ref) => ( + +)); + +TextHOne.displayName = "TextHOne"; diff --git a/src/csr/TextHSix.tsx b/src/csr/TextHSix.tsx new file mode 100644 index 000000000..d085e644d --- /dev/null +++ b/src/csr/TextHSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextHSix"; + +export const TextHSix: Icon = forwardRef((props, ref) => ( + +)); + +TextHSix.displayName = "TextHSix"; diff --git a/src/csr/TextHThree.tsx b/src/csr/TextHThree.tsx new file mode 100644 index 000000000..afb7a0e04 --- /dev/null +++ b/src/csr/TextHThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextHThree"; + +export const TextHThree: Icon = forwardRef((props, ref) => ( + +)); + +TextHThree.displayName = "TextHThree"; diff --git a/src/csr/TextHTwo.tsx b/src/csr/TextHTwo.tsx new file mode 100644 index 000000000..fdd640092 --- /dev/null +++ b/src/csr/TextHTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextHTwo"; + +export const TextHTwo: Icon = forwardRef((props, ref) => ( + +)); + +TextHTwo.displayName = "TextHTwo"; diff --git a/src/csr/TextIndent.tsx b/src/csr/TextIndent.tsx new file mode 100644 index 000000000..69ea9b898 --- /dev/null +++ b/src/csr/TextIndent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextIndent"; + +export const TextIndent: Icon = forwardRef((props, ref) => ( + +)); + +TextIndent.displayName = "TextIndent"; diff --git a/src/csr/TextItalic.tsx b/src/csr/TextItalic.tsx new file mode 100644 index 000000000..c8e55ac90 --- /dev/null +++ b/src/csr/TextItalic.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextItalic"; + +export const TextItalic: Icon = forwardRef((props, ref) => ( + +)); + +TextItalic.displayName = "TextItalic"; diff --git a/src/csr/TextOutdent.tsx b/src/csr/TextOutdent.tsx new file mode 100644 index 000000000..980ac7c90 --- /dev/null +++ b/src/csr/TextOutdent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextOutdent"; + +export const TextOutdent: Icon = forwardRef((props, ref) => ( + +)); + +TextOutdent.displayName = "TextOutdent"; diff --git a/src/csr/TextStrikethrough.tsx b/src/csr/TextStrikethrough.tsx new file mode 100644 index 000000000..65296a97b --- /dev/null +++ b/src/csr/TextStrikethrough.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextStrikethrough"; + +export const TextStrikethrough: Icon = forwardRef((props, ref) => ( + +)); + +TextStrikethrough.displayName = "TextStrikethrough"; diff --git a/src/csr/TextT.tsx b/src/csr/TextT.tsx new file mode 100644 index 000000000..c2ad2ede7 --- /dev/null +++ b/src/csr/TextT.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextT"; + +export const TextT: Icon = forwardRef((props, ref) => ( + +)); + +TextT.displayName = "TextT"; diff --git a/src/csr/TextUnderline.tsx b/src/csr/TextUnderline.tsx new file mode 100644 index 000000000..6d29bfcfe --- /dev/null +++ b/src/csr/TextUnderline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TextUnderline"; + +export const TextUnderline: Icon = forwardRef((props, ref) => ( + +)); + +TextUnderline.displayName = "TextUnderline"; diff --git a/src/csr/Textbox.tsx b/src/csr/Textbox.tsx new file mode 100644 index 000000000..1cfd44133 --- /dev/null +++ b/src/csr/Textbox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Textbox"; + +export const Textbox: Icon = forwardRef((props, ref) => ( + +)); + +Textbox.displayName = "Textbox"; diff --git a/src/csr/Thermometer.tsx b/src/csr/Thermometer.tsx new file mode 100644 index 000000000..471a34e57 --- /dev/null +++ b/src/csr/Thermometer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Thermometer"; + +export const Thermometer: Icon = forwardRef((props, ref) => ( + +)); + +Thermometer.displayName = "Thermometer"; diff --git a/src/csr/ThermometerCold.tsx b/src/csr/ThermometerCold.tsx new file mode 100644 index 000000000..b06354b6c --- /dev/null +++ b/src/csr/ThermometerCold.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ThermometerCold"; + +export const ThermometerCold: Icon = forwardRef((props, ref) => ( + +)); + +ThermometerCold.displayName = "ThermometerCold"; diff --git a/src/csr/ThermometerHot.tsx b/src/csr/ThermometerHot.tsx new file mode 100644 index 000000000..4c900485a --- /dev/null +++ b/src/csr/ThermometerHot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ThermometerHot"; + +export const ThermometerHot: Icon = forwardRef((props, ref) => ( + +)); + +ThermometerHot.displayName = "ThermometerHot"; diff --git a/src/csr/ThermometerSimple.tsx b/src/csr/ThermometerSimple.tsx new file mode 100644 index 000000000..53b6f826d --- /dev/null +++ b/src/csr/ThermometerSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ThermometerSimple"; + +export const ThermometerSimple: Icon = forwardRef((props, ref) => ( + +)); + +ThermometerSimple.displayName = "ThermometerSimple"; diff --git a/src/csr/ThumbsDown.tsx b/src/csr/ThumbsDown.tsx new file mode 100644 index 000000000..c0e8216d1 --- /dev/null +++ b/src/csr/ThumbsDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ThumbsDown"; + +export const ThumbsDown: Icon = forwardRef((props, ref) => ( + +)); + +ThumbsDown.displayName = "ThumbsDown"; diff --git a/src/csr/ThumbsUp.tsx b/src/csr/ThumbsUp.tsx new file mode 100644 index 000000000..af912526f --- /dev/null +++ b/src/csr/ThumbsUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ThumbsUp"; + +export const ThumbsUp: Icon = forwardRef((props, ref) => ( + +)); + +ThumbsUp.displayName = "ThumbsUp"; diff --git a/src/csr/Ticket.tsx b/src/csr/Ticket.tsx new file mode 100644 index 000000000..45a6603ef --- /dev/null +++ b/src/csr/Ticket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Ticket"; + +export const Ticket: Icon = forwardRef((props, ref) => ( + +)); + +Ticket.displayName = "Ticket"; diff --git a/src/csr/TidalLogo.tsx b/src/csr/TidalLogo.tsx new file mode 100644 index 000000000..ac620c8be --- /dev/null +++ b/src/csr/TidalLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TidalLogo"; + +export const TidalLogo: Icon = forwardRef((props, ref) => ( + +)); + +TidalLogo.displayName = "TidalLogo"; diff --git a/src/csr/TiktokLogo.tsx b/src/csr/TiktokLogo.tsx new file mode 100644 index 000000000..af4a066b5 --- /dev/null +++ b/src/csr/TiktokLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TiktokLogo"; + +export const TiktokLogo: Icon = forwardRef((props, ref) => ( + +)); + +TiktokLogo.displayName = "TiktokLogo"; diff --git a/src/csr/Timer.tsx b/src/csr/Timer.tsx new file mode 100644 index 000000000..ecf2ca792 --- /dev/null +++ b/src/csr/Timer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Timer"; + +export const Timer: Icon = forwardRef((props, ref) => ( + +)); + +Timer.displayName = "Timer"; diff --git a/src/csr/Tipi.tsx b/src/csr/Tipi.tsx new file mode 100644 index 000000000..e5548f7c4 --- /dev/null +++ b/src/csr/Tipi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tipi"; + +export const Tipi: Icon = forwardRef((props, ref) => ( + +)); + +Tipi.displayName = "Tipi"; diff --git a/src/csr/ToggleLeft.tsx b/src/csr/ToggleLeft.tsx new file mode 100644 index 000000000..fdf47d86e --- /dev/null +++ b/src/csr/ToggleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ToggleLeft"; + +export const ToggleLeft: Icon = forwardRef((props, ref) => ( + +)); + +ToggleLeft.displayName = "ToggleLeft"; diff --git a/src/csr/ToggleRight.tsx b/src/csr/ToggleRight.tsx new file mode 100644 index 000000000..b4b328700 --- /dev/null +++ b/src/csr/ToggleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ToggleRight"; + +export const ToggleRight: Icon = forwardRef((props, ref) => ( + +)); + +ToggleRight.displayName = "ToggleRight"; diff --git a/src/csr/Toilet.tsx b/src/csr/Toilet.tsx new file mode 100644 index 000000000..08400aea9 --- /dev/null +++ b/src/csr/Toilet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Toilet"; + +export const Toilet: Icon = forwardRef((props, ref) => ( + +)); + +Toilet.displayName = "Toilet"; diff --git a/src/csr/ToiletPaper.tsx b/src/csr/ToiletPaper.tsx new file mode 100644 index 000000000..ecdb97e2f --- /dev/null +++ b/src/csr/ToiletPaper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ToiletPaper"; + +export const ToiletPaper: Icon = forwardRef((props, ref) => ( + +)); + +ToiletPaper.displayName = "ToiletPaper"; diff --git a/src/csr/Toolbox.tsx b/src/csr/Toolbox.tsx new file mode 100644 index 000000000..9092de4f3 --- /dev/null +++ b/src/csr/Toolbox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Toolbox"; + +export const Toolbox: Icon = forwardRef((props, ref) => ( + +)); + +Toolbox.displayName = "Toolbox"; diff --git a/src/csr/Tooth.tsx b/src/csr/Tooth.tsx new file mode 100644 index 000000000..3c4f69258 --- /dev/null +++ b/src/csr/Tooth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tooth"; + +export const Tooth: Icon = forwardRef((props, ref) => ( + +)); + +Tooth.displayName = "Tooth"; diff --git a/src/csr/Tote.tsx b/src/csr/Tote.tsx new file mode 100644 index 000000000..a17f049a8 --- /dev/null +++ b/src/csr/Tote.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tote"; + +export const Tote: Icon = forwardRef((props, ref) => ( + +)); + +Tote.displayName = "Tote"; diff --git a/src/csr/ToteSimple.tsx b/src/csr/ToteSimple.tsx new file mode 100644 index 000000000..639544125 --- /dev/null +++ b/src/csr/ToteSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/ToteSimple"; + +export const ToteSimple: Icon = forwardRef((props, ref) => ( + +)); + +ToteSimple.displayName = "ToteSimple"; diff --git a/src/csr/Trademark.tsx b/src/csr/Trademark.tsx new file mode 100644 index 000000000..b95184183 --- /dev/null +++ b/src/csr/Trademark.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Trademark"; + +export const Trademark: Icon = forwardRef((props, ref) => ( + +)); + +Trademark.displayName = "Trademark"; diff --git a/src/csr/TrademarkRegistered.tsx b/src/csr/TrademarkRegistered.tsx new file mode 100644 index 000000000..2e0535b4d --- /dev/null +++ b/src/csr/TrademarkRegistered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrademarkRegistered"; + +export const TrademarkRegistered: Icon = forwardRef((props, ref) => ( + +)); + +TrademarkRegistered.displayName = "TrademarkRegistered"; diff --git a/src/csr/TrafficCone.tsx b/src/csr/TrafficCone.tsx new file mode 100644 index 000000000..6d0fc8fbc --- /dev/null +++ b/src/csr/TrafficCone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrafficCone"; + +export const TrafficCone: Icon = forwardRef((props, ref) => ( + +)); + +TrafficCone.displayName = "TrafficCone"; diff --git a/src/csr/TrafficSign.tsx b/src/csr/TrafficSign.tsx new file mode 100644 index 000000000..a504e6a9a --- /dev/null +++ b/src/csr/TrafficSign.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrafficSign"; + +export const TrafficSign: Icon = forwardRef((props, ref) => ( + +)); + +TrafficSign.displayName = "TrafficSign"; diff --git a/src/csr/TrafficSignal.tsx b/src/csr/TrafficSignal.tsx new file mode 100644 index 000000000..85964bcfc --- /dev/null +++ b/src/csr/TrafficSignal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrafficSignal"; + +export const TrafficSignal: Icon = forwardRef((props, ref) => ( + +)); + +TrafficSignal.displayName = "TrafficSignal"; diff --git a/src/csr/Train.tsx b/src/csr/Train.tsx new file mode 100644 index 000000000..35b6cba54 --- /dev/null +++ b/src/csr/Train.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Train"; + +export const Train: Icon = forwardRef((props, ref) => ( + +)); + +Train.displayName = "Train"; diff --git a/src/csr/TrainRegional.tsx b/src/csr/TrainRegional.tsx new file mode 100644 index 000000000..7f45e59bb --- /dev/null +++ b/src/csr/TrainRegional.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrainRegional"; + +export const TrainRegional: Icon = forwardRef((props, ref) => ( + +)); + +TrainRegional.displayName = "TrainRegional"; diff --git a/src/csr/TrainSimple.tsx b/src/csr/TrainSimple.tsx new file mode 100644 index 000000000..22e1c9854 --- /dev/null +++ b/src/csr/TrainSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrainSimple"; + +export const TrainSimple: Icon = forwardRef((props, ref) => ( + +)); + +TrainSimple.displayName = "TrainSimple"; diff --git a/src/csr/Tram.tsx b/src/csr/Tram.tsx new file mode 100644 index 000000000..5b418bae4 --- /dev/null +++ b/src/csr/Tram.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tram"; + +export const Tram: Icon = forwardRef((props, ref) => ( + +)); + +Tram.displayName = "Tram"; diff --git a/src/csr/Translate.tsx b/src/csr/Translate.tsx new file mode 100644 index 000000000..fb64baf1d --- /dev/null +++ b/src/csr/Translate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Translate"; + +export const Translate: Icon = forwardRef((props, ref) => ( + +)); + +Translate.displayName = "Translate"; diff --git a/src/csr/Trash.tsx b/src/csr/Trash.tsx new file mode 100644 index 000000000..7851b7845 --- /dev/null +++ b/src/csr/Trash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Trash"; + +export const Trash: Icon = forwardRef((props, ref) => ( + +)); + +Trash.displayName = "Trash"; diff --git a/src/csr/TrashSimple.tsx b/src/csr/TrashSimple.tsx new file mode 100644 index 000000000..12e2e1a25 --- /dev/null +++ b/src/csr/TrashSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrashSimple"; + +export const TrashSimple: Icon = forwardRef((props, ref) => ( + +)); + +TrashSimple.displayName = "TrashSimple"; diff --git a/src/csr/Tray.tsx b/src/csr/Tray.tsx new file mode 100644 index 000000000..f203f42c6 --- /dev/null +++ b/src/csr/Tray.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tray"; + +export const Tray: Icon = forwardRef((props, ref) => ( + +)); + +Tray.displayName = "Tray"; diff --git a/src/csr/Tree.tsx b/src/csr/Tree.tsx new file mode 100644 index 000000000..f53544f8f --- /dev/null +++ b/src/csr/Tree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Tree"; + +export const Tree: Icon = forwardRef((props, ref) => ( + +)); + +Tree.displayName = "Tree"; diff --git a/src/csr/TreeEvergreen.tsx b/src/csr/TreeEvergreen.tsx new file mode 100644 index 000000000..5348f1d50 --- /dev/null +++ b/src/csr/TreeEvergreen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TreeEvergreen"; + +export const TreeEvergreen: Icon = forwardRef((props, ref) => ( + +)); + +TreeEvergreen.displayName = "TreeEvergreen"; diff --git a/src/csr/TreePalm.tsx b/src/csr/TreePalm.tsx new file mode 100644 index 000000000..8fceac329 --- /dev/null +++ b/src/csr/TreePalm.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TreePalm"; + +export const TreePalm: Icon = forwardRef((props, ref) => ( + +)); + +TreePalm.displayName = "TreePalm"; diff --git a/src/csr/TreeStructure.tsx b/src/csr/TreeStructure.tsx new file mode 100644 index 000000000..335b0e720 --- /dev/null +++ b/src/csr/TreeStructure.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TreeStructure"; + +export const TreeStructure: Icon = forwardRef((props, ref) => ( + +)); + +TreeStructure.displayName = "TreeStructure"; diff --git a/src/csr/TrendDown.tsx b/src/csr/TrendDown.tsx new file mode 100644 index 000000000..ced0a1f03 --- /dev/null +++ b/src/csr/TrendDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrendDown"; + +export const TrendDown: Icon = forwardRef((props, ref) => ( + +)); + +TrendDown.displayName = "TrendDown"; diff --git a/src/csr/TrendUp.tsx b/src/csr/TrendUp.tsx new file mode 100644 index 000000000..f7195a51d --- /dev/null +++ b/src/csr/TrendUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TrendUp"; + +export const TrendUp: Icon = forwardRef((props, ref) => ( + +)); + +TrendUp.displayName = "TrendUp"; diff --git a/src/csr/Triangle.tsx b/src/csr/Triangle.tsx new file mode 100644 index 000000000..645a85aeb --- /dev/null +++ b/src/csr/Triangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Triangle"; + +export const Triangle: Icon = forwardRef((props, ref) => ( + +)); + +Triangle.displayName = "Triangle"; diff --git a/src/csr/Trophy.tsx b/src/csr/Trophy.tsx new file mode 100644 index 000000000..641101b83 --- /dev/null +++ b/src/csr/Trophy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Trophy"; + +export const Trophy: Icon = forwardRef((props, ref) => ( + +)); + +Trophy.displayName = "Trophy"; diff --git a/src/csr/Truck.tsx b/src/csr/Truck.tsx new file mode 100644 index 000000000..1709677b7 --- /dev/null +++ b/src/csr/Truck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Truck"; + +export const Truck: Icon = forwardRef((props, ref) => ( + +)); + +Truck.displayName = "Truck"; diff --git a/src/csr/TwitchLogo.tsx b/src/csr/TwitchLogo.tsx new file mode 100644 index 000000000..eb59df663 --- /dev/null +++ b/src/csr/TwitchLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TwitchLogo"; + +export const TwitchLogo: Icon = forwardRef((props, ref) => ( + +)); + +TwitchLogo.displayName = "TwitchLogo"; diff --git a/src/csr/TwitterLogo.tsx b/src/csr/TwitterLogo.tsx new file mode 100644 index 000000000..a558144ff --- /dev/null +++ b/src/csr/TwitterLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/TwitterLogo"; + +export const TwitterLogo: Icon = forwardRef((props, ref) => ( + +)); + +TwitterLogo.displayName = "TwitterLogo"; diff --git a/src/csr/Umbrella.tsx b/src/csr/Umbrella.tsx new file mode 100644 index 000000000..61cac5234 --- /dev/null +++ b/src/csr/Umbrella.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Umbrella"; + +export const Umbrella: Icon = forwardRef((props, ref) => ( + +)); + +Umbrella.displayName = "Umbrella"; diff --git a/src/csr/UmbrellaSimple.tsx b/src/csr/UmbrellaSimple.tsx new file mode 100644 index 000000000..1a562547b --- /dev/null +++ b/src/csr/UmbrellaSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UmbrellaSimple"; + +export const UmbrellaSimple: Icon = forwardRef((props, ref) => ( + +)); + +UmbrellaSimple.displayName = "UmbrellaSimple"; diff --git a/src/csr/Unite.tsx b/src/csr/Unite.tsx new file mode 100644 index 000000000..536c42d54 --- /dev/null +++ b/src/csr/Unite.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Unite"; + +export const Unite: Icon = forwardRef((props, ref) => ( + +)); + +Unite.displayName = "Unite"; diff --git a/src/csr/UniteSquare.tsx b/src/csr/UniteSquare.tsx new file mode 100644 index 000000000..ebd470744 --- /dev/null +++ b/src/csr/UniteSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UniteSquare"; + +export const UniteSquare: Icon = forwardRef((props, ref) => ( + +)); + +UniteSquare.displayName = "UniteSquare"; diff --git a/src/csr/Upload.tsx b/src/csr/Upload.tsx new file mode 100644 index 000000000..1d7f5f459 --- /dev/null +++ b/src/csr/Upload.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Upload"; + +export const Upload: Icon = forwardRef((props, ref) => ( + +)); + +Upload.displayName = "Upload"; diff --git a/src/csr/UploadSimple.tsx b/src/csr/UploadSimple.tsx new file mode 100644 index 000000000..4a80ebfd5 --- /dev/null +++ b/src/csr/UploadSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UploadSimple"; + +export const UploadSimple: Icon = forwardRef((props, ref) => ( + +)); + +UploadSimple.displayName = "UploadSimple"; diff --git a/src/csr/Usb.tsx b/src/csr/Usb.tsx new file mode 100644 index 000000000..dda682dbf --- /dev/null +++ b/src/csr/Usb.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Usb"; + +export const Usb: Icon = forwardRef((props, ref) => ( + +)); + +Usb.displayName = "Usb"; diff --git a/src/csr/User.tsx b/src/csr/User.tsx new file mode 100644 index 000000000..13cadda63 --- /dev/null +++ b/src/csr/User.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/User"; + +export const User: Icon = forwardRef((props, ref) => ( + +)); + +User.displayName = "User"; diff --git a/src/csr/UserCircle.tsx b/src/csr/UserCircle.tsx new file mode 100644 index 000000000..e03fe38e8 --- /dev/null +++ b/src/csr/UserCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserCircle"; + +export const UserCircle: Icon = forwardRef((props, ref) => ( + +)); + +UserCircle.displayName = "UserCircle"; diff --git a/src/csr/UserCircleGear.tsx b/src/csr/UserCircleGear.tsx new file mode 100644 index 000000000..ade10889c --- /dev/null +++ b/src/csr/UserCircleGear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserCircleGear"; + +export const UserCircleGear: Icon = forwardRef((props, ref) => ( + +)); + +UserCircleGear.displayName = "UserCircleGear"; diff --git a/src/csr/UserCircleMinus.tsx b/src/csr/UserCircleMinus.tsx new file mode 100644 index 000000000..bd5db3db1 --- /dev/null +++ b/src/csr/UserCircleMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserCircleMinus"; + +export const UserCircleMinus: Icon = forwardRef((props, ref) => ( + +)); + +UserCircleMinus.displayName = "UserCircleMinus"; diff --git a/src/csr/UserCirclePlus.tsx b/src/csr/UserCirclePlus.tsx new file mode 100644 index 000000000..32d84ffe6 --- /dev/null +++ b/src/csr/UserCirclePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserCirclePlus"; + +export const UserCirclePlus: Icon = forwardRef((props, ref) => ( + +)); + +UserCirclePlus.displayName = "UserCirclePlus"; diff --git a/src/csr/UserFocus.tsx b/src/csr/UserFocus.tsx new file mode 100644 index 000000000..59ebb0d92 --- /dev/null +++ b/src/csr/UserFocus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserFocus"; + +export const UserFocus: Icon = forwardRef((props, ref) => ( + +)); + +UserFocus.displayName = "UserFocus"; diff --git a/src/csr/UserGear.tsx b/src/csr/UserGear.tsx new file mode 100644 index 000000000..06ef72edd --- /dev/null +++ b/src/csr/UserGear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserGear"; + +export const UserGear: Icon = forwardRef((props, ref) => ( + +)); + +UserGear.displayName = "UserGear"; diff --git a/src/csr/UserList.tsx b/src/csr/UserList.tsx new file mode 100644 index 000000000..d1581e2ec --- /dev/null +++ b/src/csr/UserList.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserList"; + +export const UserList: Icon = forwardRef((props, ref) => ( + +)); + +UserList.displayName = "UserList"; diff --git a/src/csr/UserMinus.tsx b/src/csr/UserMinus.tsx new file mode 100644 index 000000000..6a41de5c2 --- /dev/null +++ b/src/csr/UserMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserMinus"; + +export const UserMinus: Icon = forwardRef((props, ref) => ( + +)); + +UserMinus.displayName = "UserMinus"; diff --git a/src/csr/UserPlus.tsx b/src/csr/UserPlus.tsx new file mode 100644 index 000000000..3d825f664 --- /dev/null +++ b/src/csr/UserPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserPlus"; + +export const UserPlus: Icon = forwardRef((props, ref) => ( + +)); + +UserPlus.displayName = "UserPlus"; diff --git a/src/csr/UserRectangle.tsx b/src/csr/UserRectangle.tsx new file mode 100644 index 000000000..956c98cc7 --- /dev/null +++ b/src/csr/UserRectangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserRectangle"; + +export const UserRectangle: Icon = forwardRef((props, ref) => ( + +)); + +UserRectangle.displayName = "UserRectangle"; diff --git a/src/csr/UserSquare.tsx b/src/csr/UserSquare.tsx new file mode 100644 index 000000000..13e152ea6 --- /dev/null +++ b/src/csr/UserSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserSquare"; + +export const UserSquare: Icon = forwardRef((props, ref) => ( + +)); + +UserSquare.displayName = "UserSquare"; diff --git a/src/csr/UserSwitch.tsx b/src/csr/UserSwitch.tsx new file mode 100644 index 000000000..ccefda9c3 --- /dev/null +++ b/src/csr/UserSwitch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UserSwitch"; + +export const UserSwitch: Icon = forwardRef((props, ref) => ( + +)); + +UserSwitch.displayName = "UserSwitch"; diff --git a/src/csr/Users.tsx b/src/csr/Users.tsx new file mode 100644 index 000000000..35441a7ab --- /dev/null +++ b/src/csr/Users.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Users"; + +export const Users: Icon = forwardRef((props, ref) => ( + +)); + +Users.displayName = "Users"; diff --git a/src/csr/UsersFour.tsx b/src/csr/UsersFour.tsx new file mode 100644 index 000000000..320cbb934 --- /dev/null +++ b/src/csr/UsersFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UsersFour"; + +export const UsersFour: Icon = forwardRef((props, ref) => ( + +)); + +UsersFour.displayName = "UsersFour"; diff --git a/src/csr/UsersThree.tsx b/src/csr/UsersThree.tsx new file mode 100644 index 000000000..2b8777a4c --- /dev/null +++ b/src/csr/UsersThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/UsersThree"; + +export const UsersThree: Icon = forwardRef((props, ref) => ( + +)); + +UsersThree.displayName = "UsersThree"; diff --git a/src/csr/Van.tsx b/src/csr/Van.tsx new file mode 100644 index 000000000..6719ff4cc --- /dev/null +++ b/src/csr/Van.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Van"; + +export const Van: Icon = forwardRef((props, ref) => ( + +)); + +Van.displayName = "Van"; diff --git a/src/csr/Vault.tsx b/src/csr/Vault.tsx new file mode 100644 index 000000000..d0958081a --- /dev/null +++ b/src/csr/Vault.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Vault"; + +export const Vault: Icon = forwardRef((props, ref) => ( + +)); + +Vault.displayName = "Vault"; diff --git a/src/csr/Vibrate.tsx b/src/csr/Vibrate.tsx new file mode 100644 index 000000000..a7bba3c46 --- /dev/null +++ b/src/csr/Vibrate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Vibrate"; + +export const Vibrate: Icon = forwardRef((props, ref) => ( + +)); + +Vibrate.displayName = "Vibrate"; diff --git a/src/csr/Video.tsx b/src/csr/Video.tsx new file mode 100644 index 000000000..b92373dfc --- /dev/null +++ b/src/csr/Video.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Video"; + +export const Video: Icon = forwardRef((props, ref) => ( + +)); + +Video.displayName = "Video"; diff --git a/src/csr/VideoCamera.tsx b/src/csr/VideoCamera.tsx new file mode 100644 index 000000000..18861c5b1 --- /dev/null +++ b/src/csr/VideoCamera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/VideoCamera"; + +export const VideoCamera: Icon = forwardRef((props, ref) => ( + +)); + +VideoCamera.displayName = "VideoCamera"; diff --git a/src/csr/VideoCameraSlash.tsx b/src/csr/VideoCameraSlash.tsx new file mode 100644 index 000000000..432e7c055 --- /dev/null +++ b/src/csr/VideoCameraSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/VideoCameraSlash"; + +export const VideoCameraSlash: Icon = forwardRef((props, ref) => ( + +)); + +VideoCameraSlash.displayName = "VideoCameraSlash"; diff --git a/src/csr/Vignette.tsx b/src/csr/Vignette.tsx new file mode 100644 index 000000000..f008f3b7f --- /dev/null +++ b/src/csr/Vignette.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Vignette"; + +export const Vignette: Icon = forwardRef((props, ref) => ( + +)); + +Vignette.displayName = "Vignette"; diff --git a/src/csr/VinylRecord.tsx b/src/csr/VinylRecord.tsx new file mode 100644 index 000000000..8f7fd447b --- /dev/null +++ b/src/csr/VinylRecord.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/VinylRecord"; + +export const VinylRecord: Icon = forwardRef((props, ref) => ( + +)); + +VinylRecord.displayName = "VinylRecord"; diff --git a/src/csr/VirtualReality.tsx b/src/csr/VirtualReality.tsx new file mode 100644 index 000000000..be13b1a65 --- /dev/null +++ b/src/csr/VirtualReality.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/VirtualReality"; + +export const VirtualReality: Icon = forwardRef((props, ref) => ( + +)); + +VirtualReality.displayName = "VirtualReality"; diff --git a/src/csr/Virus.tsx b/src/csr/Virus.tsx new file mode 100644 index 000000000..8b016e885 --- /dev/null +++ b/src/csr/Virus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Virus"; + +export const Virus: Icon = forwardRef((props, ref) => ( + +)); + +Virus.displayName = "Virus"; diff --git a/src/csr/Voicemail.tsx b/src/csr/Voicemail.tsx new file mode 100644 index 000000000..74339a3b8 --- /dev/null +++ b/src/csr/Voicemail.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Voicemail"; + +export const Voicemail: Icon = forwardRef((props, ref) => ( + +)); + +Voicemail.displayName = "Voicemail"; diff --git a/src/csr/Volleyball.tsx b/src/csr/Volleyball.tsx new file mode 100644 index 000000000..0d7214768 --- /dev/null +++ b/src/csr/Volleyball.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Volleyball"; + +export const Volleyball: Icon = forwardRef((props, ref) => ( + +)); + +Volleyball.displayName = "Volleyball"; diff --git a/src/csr/Wall.tsx b/src/csr/Wall.tsx new file mode 100644 index 000000000..a2780cab7 --- /dev/null +++ b/src/csr/Wall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Wall"; + +export const Wall: Icon = forwardRef((props, ref) => ( + +)); + +Wall.displayName = "Wall"; diff --git a/src/csr/Wallet.tsx b/src/csr/Wallet.tsx new file mode 100644 index 000000000..32e0d6c80 --- /dev/null +++ b/src/csr/Wallet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Wallet"; + +export const Wallet: Icon = forwardRef((props, ref) => ( + +)); + +Wallet.displayName = "Wallet"; diff --git a/src/csr/Warehouse.tsx b/src/csr/Warehouse.tsx new file mode 100644 index 000000000..10e378e75 --- /dev/null +++ b/src/csr/Warehouse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Warehouse"; + +export const Warehouse: Icon = forwardRef((props, ref) => ( + +)); + +Warehouse.displayName = "Warehouse"; diff --git a/src/csr/Warning.tsx b/src/csr/Warning.tsx new file mode 100644 index 000000000..333cff183 --- /dev/null +++ b/src/csr/Warning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Warning"; + +export const Warning: Icon = forwardRef((props, ref) => ( + +)); + +Warning.displayName = "Warning"; diff --git a/src/csr/WarningCircle.tsx b/src/csr/WarningCircle.tsx new file mode 100644 index 000000000..bc11e597d --- /dev/null +++ b/src/csr/WarningCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WarningCircle"; + +export const WarningCircle: Icon = forwardRef((props, ref) => ( + +)); + +WarningCircle.displayName = "WarningCircle"; diff --git a/src/csr/WarningDiamond.tsx b/src/csr/WarningDiamond.tsx new file mode 100644 index 000000000..588b32b42 --- /dev/null +++ b/src/csr/WarningDiamond.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WarningDiamond"; + +export const WarningDiamond: Icon = forwardRef((props, ref) => ( + +)); + +WarningDiamond.displayName = "WarningDiamond"; diff --git a/src/csr/WarningOctagon.tsx b/src/csr/WarningOctagon.tsx new file mode 100644 index 000000000..634a0a1d7 --- /dev/null +++ b/src/csr/WarningOctagon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WarningOctagon"; + +export const WarningOctagon: Icon = forwardRef((props, ref) => ( + +)); + +WarningOctagon.displayName = "WarningOctagon"; diff --git a/src/csr/Watch.tsx b/src/csr/Watch.tsx new file mode 100644 index 000000000..17780bf24 --- /dev/null +++ b/src/csr/Watch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Watch"; + +export const Watch: Icon = forwardRef((props, ref) => ( + +)); + +Watch.displayName = "Watch"; diff --git a/src/csr/WaveSawtooth.tsx b/src/csr/WaveSawtooth.tsx new file mode 100644 index 000000000..2fcf0badf --- /dev/null +++ b/src/csr/WaveSawtooth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WaveSawtooth"; + +export const WaveSawtooth: Icon = forwardRef((props, ref) => ( + +)); + +WaveSawtooth.displayName = "WaveSawtooth"; diff --git a/src/csr/WaveSine.tsx b/src/csr/WaveSine.tsx new file mode 100644 index 000000000..18f49fd4c --- /dev/null +++ b/src/csr/WaveSine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WaveSine"; + +export const WaveSine: Icon = forwardRef((props, ref) => ( + +)); + +WaveSine.displayName = "WaveSine"; diff --git a/src/csr/WaveSquare.tsx b/src/csr/WaveSquare.tsx new file mode 100644 index 000000000..3f7c00895 --- /dev/null +++ b/src/csr/WaveSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WaveSquare"; + +export const WaveSquare: Icon = forwardRef((props, ref) => ( + +)); + +WaveSquare.displayName = "WaveSquare"; diff --git a/src/csr/WaveTriangle.tsx b/src/csr/WaveTriangle.tsx new file mode 100644 index 000000000..6cadbb064 --- /dev/null +++ b/src/csr/WaveTriangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WaveTriangle"; + +export const WaveTriangle: Icon = forwardRef((props, ref) => ( + +)); + +WaveTriangle.displayName = "WaveTriangle"; diff --git a/src/csr/Waveform.tsx b/src/csr/Waveform.tsx new file mode 100644 index 000000000..b2e714e99 --- /dev/null +++ b/src/csr/Waveform.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Waveform"; + +export const Waveform: Icon = forwardRef((props, ref) => ( + +)); + +Waveform.displayName = "Waveform"; diff --git a/src/csr/Waves.tsx b/src/csr/Waves.tsx new file mode 100644 index 000000000..072e08a78 --- /dev/null +++ b/src/csr/Waves.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Waves"; + +export const Waves: Icon = forwardRef((props, ref) => ( + +)); + +Waves.displayName = "Waves"; diff --git a/src/csr/Webcam.tsx b/src/csr/Webcam.tsx new file mode 100644 index 000000000..2b5b3b66d --- /dev/null +++ b/src/csr/Webcam.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Webcam"; + +export const Webcam: Icon = forwardRef((props, ref) => ( + +)); + +Webcam.displayName = "Webcam"; diff --git a/src/csr/WebcamSlash.tsx b/src/csr/WebcamSlash.tsx new file mode 100644 index 000000000..ab67261f0 --- /dev/null +++ b/src/csr/WebcamSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WebcamSlash"; + +export const WebcamSlash: Icon = forwardRef((props, ref) => ( + +)); + +WebcamSlash.displayName = "WebcamSlash"; diff --git a/src/csr/WebhooksLogo.tsx b/src/csr/WebhooksLogo.tsx new file mode 100644 index 000000000..b3ce493e0 --- /dev/null +++ b/src/csr/WebhooksLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WebhooksLogo"; + +export const WebhooksLogo: Icon = forwardRef((props, ref) => ( + +)); + +WebhooksLogo.displayName = "WebhooksLogo"; diff --git a/src/csr/WechatLogo.tsx b/src/csr/WechatLogo.tsx new file mode 100644 index 000000000..2740c77ed --- /dev/null +++ b/src/csr/WechatLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WechatLogo"; + +export const WechatLogo: Icon = forwardRef((props, ref) => ( + +)); + +WechatLogo.displayName = "WechatLogo"; diff --git a/src/csr/WhatsappLogo.tsx b/src/csr/WhatsappLogo.tsx new file mode 100644 index 000000000..e4c1f5e90 --- /dev/null +++ b/src/csr/WhatsappLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WhatsappLogo"; + +export const WhatsappLogo: Icon = forwardRef((props, ref) => ( + +)); + +WhatsappLogo.displayName = "WhatsappLogo"; diff --git a/src/csr/Wheelchair.tsx b/src/csr/Wheelchair.tsx new file mode 100644 index 000000000..82c278bdf --- /dev/null +++ b/src/csr/Wheelchair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Wheelchair"; + +export const Wheelchair: Icon = forwardRef((props, ref) => ( + +)); + +Wheelchair.displayName = "Wheelchair"; diff --git a/src/csr/WheelchairMotion.tsx b/src/csr/WheelchairMotion.tsx new file mode 100644 index 000000000..a7a574c4f --- /dev/null +++ b/src/csr/WheelchairMotion.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WheelchairMotion"; + +export const WheelchairMotion: Icon = forwardRef((props, ref) => ( + +)); + +WheelchairMotion.displayName = "WheelchairMotion"; diff --git a/src/csr/WifiHigh.tsx b/src/csr/WifiHigh.tsx new file mode 100644 index 000000000..1869a1a2b --- /dev/null +++ b/src/csr/WifiHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WifiHigh"; + +export const WifiHigh: Icon = forwardRef((props, ref) => ( + +)); + +WifiHigh.displayName = "WifiHigh"; diff --git a/src/csr/WifiLow.tsx b/src/csr/WifiLow.tsx new file mode 100644 index 000000000..76eae8470 --- /dev/null +++ b/src/csr/WifiLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WifiLow"; + +export const WifiLow: Icon = forwardRef((props, ref) => ( + +)); + +WifiLow.displayName = "WifiLow"; diff --git a/src/csr/WifiMedium.tsx b/src/csr/WifiMedium.tsx new file mode 100644 index 000000000..39beac286 --- /dev/null +++ b/src/csr/WifiMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WifiMedium"; + +export const WifiMedium: Icon = forwardRef((props, ref) => ( + +)); + +WifiMedium.displayName = "WifiMedium"; diff --git a/src/csr/WifiNone.tsx b/src/csr/WifiNone.tsx new file mode 100644 index 000000000..2de90638e --- /dev/null +++ b/src/csr/WifiNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WifiNone"; + +export const WifiNone: Icon = forwardRef((props, ref) => ( + +)); + +WifiNone.displayName = "WifiNone"; diff --git a/src/csr/WifiSlash.tsx b/src/csr/WifiSlash.tsx new file mode 100644 index 000000000..6063e7717 --- /dev/null +++ b/src/csr/WifiSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WifiSlash"; + +export const WifiSlash: Icon = forwardRef((props, ref) => ( + +)); + +WifiSlash.displayName = "WifiSlash"; diff --git a/src/csr/WifiX.tsx b/src/csr/WifiX.tsx new file mode 100644 index 000000000..919604c19 --- /dev/null +++ b/src/csr/WifiX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WifiX"; + +export const WifiX: Icon = forwardRef((props, ref) => ( + +)); + +WifiX.displayName = "WifiX"; diff --git a/src/csr/Wind.tsx b/src/csr/Wind.tsx new file mode 100644 index 000000000..134b92fc9 --- /dev/null +++ b/src/csr/Wind.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Wind"; + +export const Wind: Icon = forwardRef((props, ref) => ( + +)); + +Wind.displayName = "Wind"; diff --git a/src/csr/WindowsLogo.tsx b/src/csr/WindowsLogo.tsx new file mode 100644 index 000000000..b59ae6e79 --- /dev/null +++ b/src/csr/WindowsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/WindowsLogo"; + +export const WindowsLogo: Icon = forwardRef((props, ref) => ( + +)); + +WindowsLogo.displayName = "WindowsLogo"; diff --git a/src/csr/Wine.tsx b/src/csr/Wine.tsx new file mode 100644 index 000000000..17dcd4707 --- /dev/null +++ b/src/csr/Wine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Wine"; + +export const Wine: Icon = forwardRef((props, ref) => ( + +)); + +Wine.displayName = "Wine"; diff --git a/src/csr/Wrench.tsx b/src/csr/Wrench.tsx new file mode 100644 index 000000000..9d20e217f --- /dev/null +++ b/src/csr/Wrench.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/Wrench"; + +export const Wrench: Icon = forwardRef((props, ref) => ( + +)); + +Wrench.displayName = "Wrench"; diff --git a/src/csr/X.tsx b/src/csr/X.tsx new file mode 100644 index 000000000..ea8eb00f4 --- /dev/null +++ b/src/csr/X.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/X"; + +export const X: Icon = forwardRef((props, ref) => ( + +)); + +X.displayName = "X"; diff --git a/src/csr/XCircle.tsx b/src/csr/XCircle.tsx new file mode 100644 index 000000000..a3997fd2a --- /dev/null +++ b/src/csr/XCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/XCircle"; + +export const XCircle: Icon = forwardRef((props, ref) => ( + +)); + +XCircle.displayName = "XCircle"; diff --git a/src/csr/XSquare.tsx b/src/csr/XSquare.tsx new file mode 100644 index 000000000..6da7d3707 --- /dev/null +++ b/src/csr/XSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/XSquare"; + +export const XSquare: Icon = forwardRef((props, ref) => ( + +)); + +XSquare.displayName = "XSquare"; diff --git a/src/csr/YinYang.tsx b/src/csr/YinYang.tsx new file mode 100644 index 000000000..f8ab01d56 --- /dev/null +++ b/src/csr/YinYang.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/YinYang"; + +export const YinYang: Icon = forwardRef((props, ref) => ( + +)); + +YinYang.displayName = "YinYang"; diff --git a/src/csr/YoutubeLogo.tsx b/src/csr/YoutubeLogo.tsx new file mode 100644 index 000000000..1a5ffca21 --- /dev/null +++ b/src/csr/YoutubeLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import IconBase from "../lib/IconBase"; +import weights from "../defs/YoutubeLogo"; + +export const YoutubeLogo: Icon = forwardRef((props, ref) => ( + +)); + +YoutubeLogo.displayName = "YoutubeLogo"; diff --git a/src/defs/AddressBook.tsx b/src/defs/AddressBook.tsx new file mode 100644 index 000000000..e1684d3c8 --- /dev/null +++ b/src/defs/AddressBook.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AirTrafficControl.tsx b/src/defs/AirTrafficControl.tsx new file mode 100644 index 000000000..2bf7edc2a --- /dev/null +++ b/src/defs/AirTrafficControl.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Airplane.tsx b/src/defs/Airplane.tsx new file mode 100644 index 000000000..75c85a2f0 --- /dev/null +++ b/src/defs/Airplane.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AirplaneInFlight.tsx b/src/defs/AirplaneInFlight.tsx new file mode 100644 index 000000000..10cd778d1 --- /dev/null +++ b/src/defs/AirplaneInFlight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AirplaneLanding.tsx b/src/defs/AirplaneLanding.tsx new file mode 100644 index 000000000..2afe88c20 --- /dev/null +++ b/src/defs/AirplaneLanding.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AirplaneTakeoff.tsx b/src/defs/AirplaneTakeoff.tsx new file mode 100644 index 000000000..70658bf7a --- /dev/null +++ b/src/defs/AirplaneTakeoff.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AirplaneTilt.tsx b/src/defs/AirplaneTilt.tsx new file mode 100644 index 000000000..2f3ab8cc7 --- /dev/null +++ b/src/defs/AirplaneTilt.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Airplay.tsx b/src/defs/Airplay.tsx new file mode 100644 index 000000000..c149b7a3a --- /dev/null +++ b/src/defs/Airplay.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Alarm.tsx b/src/defs/Alarm.tsx new file mode 100644 index 000000000..2cf5911af --- /dev/null +++ b/src/defs/Alarm.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Alien.tsx b/src/defs/Alien.tsx new file mode 100644 index 000000000..23c666787 --- /dev/null +++ b/src/defs/Alien.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignBottom.tsx b/src/defs/AlignBottom.tsx new file mode 100644 index 000000000..f34e3a9f9 --- /dev/null +++ b/src/defs/AlignBottom.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignBottomSimple.tsx b/src/defs/AlignBottomSimple.tsx new file mode 100644 index 000000000..558ecea1a --- /dev/null +++ b/src/defs/AlignBottomSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignCenterHorizontal.tsx b/src/defs/AlignCenterHorizontal.tsx new file mode 100644 index 000000000..b9a61938a --- /dev/null +++ b/src/defs/AlignCenterHorizontal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignCenterHorizontalSimple.tsx b/src/defs/AlignCenterHorizontalSimple.tsx new file mode 100644 index 000000000..a4a2352a9 --- /dev/null +++ b/src/defs/AlignCenterHorizontalSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignCenterVertical.tsx b/src/defs/AlignCenterVertical.tsx new file mode 100644 index 000000000..8c7d72f82 --- /dev/null +++ b/src/defs/AlignCenterVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignCenterVerticalSimple.tsx b/src/defs/AlignCenterVerticalSimple.tsx new file mode 100644 index 000000000..31bfdefa4 --- /dev/null +++ b/src/defs/AlignCenterVerticalSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignLeft.tsx b/src/defs/AlignLeft.tsx new file mode 100644 index 000000000..04d2a3f1a --- /dev/null +++ b/src/defs/AlignLeft.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignLeftSimple.tsx b/src/defs/AlignLeftSimple.tsx new file mode 100644 index 000000000..193a413e4 --- /dev/null +++ b/src/defs/AlignLeftSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignRight.tsx b/src/defs/AlignRight.tsx new file mode 100644 index 000000000..d5d485c3e --- /dev/null +++ b/src/defs/AlignRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignRightSimple.tsx b/src/defs/AlignRightSimple.tsx new file mode 100644 index 000000000..5f7c614fc --- /dev/null +++ b/src/defs/AlignRightSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignTop.tsx b/src/defs/AlignTop.tsx new file mode 100644 index 000000000..7032cacfb --- /dev/null +++ b/src/defs/AlignTop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AlignTopSimple.tsx b/src/defs/AlignTopSimple.tsx new file mode 100644 index 000000000..81d688fc7 --- /dev/null +++ b/src/defs/AlignTopSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AmazonLogo.tsx b/src/defs/AmazonLogo.tsx new file mode 100644 index 000000000..0f4d37489 --- /dev/null +++ b/src/defs/AmazonLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Anchor.tsx b/src/defs/Anchor.tsx new file mode 100644 index 000000000..d856fccb5 --- /dev/null +++ b/src/defs/Anchor.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AnchorSimple.tsx b/src/defs/AnchorSimple.tsx new file mode 100644 index 000000000..b18402751 --- /dev/null +++ b/src/defs/AnchorSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AndroidLogo.tsx b/src/defs/AndroidLogo.tsx new file mode 100644 index 000000000..6f0167210 --- /dev/null +++ b/src/defs/AndroidLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AngularLogo.tsx b/src/defs/AngularLogo.tsx new file mode 100644 index 000000000..e77d63076 --- /dev/null +++ b/src/defs/AngularLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Aperture.tsx b/src/defs/Aperture.tsx new file mode 100644 index 000000000..dfbe77812 --- /dev/null +++ b/src/defs/Aperture.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AppStoreLogo.tsx b/src/defs/AppStoreLogo.tsx new file mode 100644 index 000000000..b021eb208 --- /dev/null +++ b/src/defs/AppStoreLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AppWindow.tsx b/src/defs/AppWindow.tsx new file mode 100644 index 000000000..9a36bfe85 --- /dev/null +++ b/src/defs/AppWindow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AppleLogo.tsx b/src/defs/AppleLogo.tsx new file mode 100644 index 000000000..fa24daca4 --- /dev/null +++ b/src/defs/AppleLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ApplePodcastsLogo.tsx b/src/defs/ApplePodcastsLogo.tsx new file mode 100644 index 000000000..f01280b20 --- /dev/null +++ b/src/defs/ApplePodcastsLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Archive.tsx b/src/defs/Archive.tsx new file mode 100644 index 000000000..fb626c2a1 --- /dev/null +++ b/src/defs/Archive.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArchiveBox.tsx b/src/defs/ArchiveBox.tsx new file mode 100644 index 000000000..9dfd8e3f9 --- /dev/null +++ b/src/defs/ArchiveBox.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArchiveTray.tsx b/src/defs/ArchiveTray.tsx new file mode 100644 index 000000000..86706eb28 --- /dev/null +++ b/src/defs/ArchiveTray.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Armchair.tsx b/src/defs/Armchair.tsx new file mode 100644 index 000000000..bbfa7c8a5 --- /dev/null +++ b/src/defs/Armchair.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowArcLeft.tsx b/src/defs/ArrowArcLeft.tsx new file mode 100644 index 000000000..1259f1dd5 --- /dev/null +++ b/src/defs/ArrowArcLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowArcRight.tsx b/src/defs/ArrowArcRight.tsx new file mode 100644 index 000000000..04b690976 --- /dev/null +++ b/src/defs/ArrowArcRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendDoubleUpLeft.tsx b/src/defs/ArrowBendDoubleUpLeft.tsx new file mode 100644 index 000000000..24ef6dfac --- /dev/null +++ b/src/defs/ArrowBendDoubleUpLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendDoubleUpRight.tsx b/src/defs/ArrowBendDoubleUpRight.tsx new file mode 100644 index 000000000..481efcdd2 --- /dev/null +++ b/src/defs/ArrowBendDoubleUpRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendDownLeft.tsx b/src/defs/ArrowBendDownLeft.tsx new file mode 100644 index 000000000..6195b671f --- /dev/null +++ b/src/defs/ArrowBendDownLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendDownRight.tsx b/src/defs/ArrowBendDownRight.tsx new file mode 100644 index 000000000..3856c6f8b --- /dev/null +++ b/src/defs/ArrowBendDownRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendLeftDown.tsx b/src/defs/ArrowBendLeftDown.tsx new file mode 100644 index 000000000..664bab762 --- /dev/null +++ b/src/defs/ArrowBendLeftDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendLeftUp.tsx b/src/defs/ArrowBendLeftUp.tsx new file mode 100644 index 000000000..64405ee1e --- /dev/null +++ b/src/defs/ArrowBendLeftUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendRightDown.tsx b/src/defs/ArrowBendRightDown.tsx new file mode 100644 index 000000000..e1f14064a --- /dev/null +++ b/src/defs/ArrowBendRightDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendRightUp.tsx b/src/defs/ArrowBendRightUp.tsx new file mode 100644 index 000000000..c78ffe472 --- /dev/null +++ b/src/defs/ArrowBendRightUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendUpLeft.tsx b/src/defs/ArrowBendUpLeft.tsx new file mode 100644 index 000000000..1ee21f661 --- /dev/null +++ b/src/defs/ArrowBendUpLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowBendUpRight.tsx b/src/defs/ArrowBendUpRight.tsx new file mode 100644 index 000000000..d93b6bc08 --- /dev/null +++ b/src/defs/ArrowBendUpRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleDown.tsx b/src/defs/ArrowCircleDown.tsx new file mode 100644 index 000000000..04e4dd2ee --- /dev/null +++ b/src/defs/ArrowCircleDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleDownLeft.tsx b/src/defs/ArrowCircleDownLeft.tsx new file mode 100644 index 000000000..7ca8e8106 --- /dev/null +++ b/src/defs/ArrowCircleDownLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleDownRight.tsx b/src/defs/ArrowCircleDownRight.tsx new file mode 100644 index 000000000..bd332d84e --- /dev/null +++ b/src/defs/ArrowCircleDownRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleLeft.tsx b/src/defs/ArrowCircleLeft.tsx new file mode 100644 index 000000000..bff469274 --- /dev/null +++ b/src/defs/ArrowCircleLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleRight.tsx b/src/defs/ArrowCircleRight.tsx new file mode 100644 index 000000000..d856d1bc4 --- /dev/null +++ b/src/defs/ArrowCircleRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleUp.tsx b/src/defs/ArrowCircleUp.tsx new file mode 100644 index 000000000..f6e71c901 --- /dev/null +++ b/src/defs/ArrowCircleUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleUpLeft.tsx b/src/defs/ArrowCircleUpLeft.tsx new file mode 100644 index 000000000..78a794ccf --- /dev/null +++ b/src/defs/ArrowCircleUpLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCircleUpRight.tsx b/src/defs/ArrowCircleUpRight.tsx new file mode 100644 index 000000000..38b3c9c61 --- /dev/null +++ b/src/defs/ArrowCircleUpRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowClockwise.tsx b/src/defs/ArrowClockwise.tsx new file mode 100644 index 000000000..95f8f21fa --- /dev/null +++ b/src/defs/ArrowClockwise.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowCounterClockwise.tsx b/src/defs/ArrowCounterClockwise.tsx new file mode 100644 index 000000000..f1359ad7e --- /dev/null +++ b/src/defs/ArrowCounterClockwise.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowDown.tsx b/src/defs/ArrowDown.tsx new file mode 100644 index 000000000..f6af2cf9d --- /dev/null +++ b/src/defs/ArrowDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowDownLeft.tsx b/src/defs/ArrowDownLeft.tsx new file mode 100644 index 000000000..1447b2556 --- /dev/null +++ b/src/defs/ArrowDownLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowDownRight.tsx b/src/defs/ArrowDownRight.tsx new file mode 100644 index 000000000..5c4f98242 --- /dev/null +++ b/src/defs/ArrowDownRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowDownLeft.tsx b/src/defs/ArrowElbowDownLeft.tsx new file mode 100644 index 000000000..eb04dbb35 --- /dev/null +++ b/src/defs/ArrowElbowDownLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowDownRight.tsx b/src/defs/ArrowElbowDownRight.tsx new file mode 100644 index 000000000..5f8ed9197 --- /dev/null +++ b/src/defs/ArrowElbowDownRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowLeft.tsx b/src/defs/ArrowElbowLeft.tsx new file mode 100644 index 000000000..5e56643f1 --- /dev/null +++ b/src/defs/ArrowElbowLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowLeftDown.tsx b/src/defs/ArrowElbowLeftDown.tsx new file mode 100644 index 000000000..8798fd7c8 --- /dev/null +++ b/src/defs/ArrowElbowLeftDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowLeftUp.tsx b/src/defs/ArrowElbowLeftUp.tsx new file mode 100644 index 000000000..a16918af7 --- /dev/null +++ b/src/defs/ArrowElbowLeftUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowRight.tsx b/src/defs/ArrowElbowRight.tsx new file mode 100644 index 000000000..021f174ec --- /dev/null +++ b/src/defs/ArrowElbowRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowRightDown.tsx b/src/defs/ArrowElbowRightDown.tsx new file mode 100644 index 000000000..dc90e3067 --- /dev/null +++ b/src/defs/ArrowElbowRightDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowRightUp.tsx b/src/defs/ArrowElbowRightUp.tsx new file mode 100644 index 000000000..bf6e254c3 --- /dev/null +++ b/src/defs/ArrowElbowRightUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowUpLeft.tsx b/src/defs/ArrowElbowUpLeft.tsx new file mode 100644 index 000000000..d04364a30 --- /dev/null +++ b/src/defs/ArrowElbowUpLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowElbowUpRight.tsx b/src/defs/ArrowElbowUpRight.tsx new file mode 100644 index 000000000..bd19dc9ad --- /dev/null +++ b/src/defs/ArrowElbowUpRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatDown.tsx b/src/defs/ArrowFatDown.tsx new file mode 100644 index 000000000..0410b2d54 --- /dev/null +++ b/src/defs/ArrowFatDown.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLeft.tsx b/src/defs/ArrowFatLeft.tsx new file mode 100644 index 000000000..537d0f0a2 --- /dev/null +++ b/src/defs/ArrowFatLeft.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLineDown.tsx b/src/defs/ArrowFatLineDown.tsx new file mode 100644 index 000000000..6e66da3bd --- /dev/null +++ b/src/defs/ArrowFatLineDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLineLeft.tsx b/src/defs/ArrowFatLineLeft.tsx new file mode 100644 index 000000000..c71a61e5c --- /dev/null +++ b/src/defs/ArrowFatLineLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLineRight.tsx b/src/defs/ArrowFatLineRight.tsx new file mode 100644 index 000000000..78c117d7b --- /dev/null +++ b/src/defs/ArrowFatLineRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLineUp.tsx b/src/defs/ArrowFatLineUp.tsx new file mode 100644 index 000000000..7a3cd543f --- /dev/null +++ b/src/defs/ArrowFatLineUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLinesDown.tsx b/src/defs/ArrowFatLinesDown.tsx new file mode 100644 index 000000000..d53a4f6c2 --- /dev/null +++ b/src/defs/ArrowFatLinesDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLinesLeft.tsx b/src/defs/ArrowFatLinesLeft.tsx new file mode 100644 index 000000000..7f6a7d6e6 --- /dev/null +++ b/src/defs/ArrowFatLinesLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLinesRight.tsx b/src/defs/ArrowFatLinesRight.tsx new file mode 100644 index 000000000..6ed42fb22 --- /dev/null +++ b/src/defs/ArrowFatLinesRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatLinesUp.tsx b/src/defs/ArrowFatLinesUp.tsx new file mode 100644 index 000000000..523428d71 --- /dev/null +++ b/src/defs/ArrowFatLinesUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatRight.tsx b/src/defs/ArrowFatRight.tsx new file mode 100644 index 000000000..c0fea8db6 --- /dev/null +++ b/src/defs/ArrowFatRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowFatUp.tsx b/src/defs/ArrowFatUp.tsx new file mode 100644 index 000000000..89d3292f4 --- /dev/null +++ b/src/defs/ArrowFatUp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLeft.tsx b/src/defs/ArrowLeft.tsx new file mode 100644 index 000000000..27a981fc2 --- /dev/null +++ b/src/defs/ArrowLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineDown.tsx b/src/defs/ArrowLineDown.tsx new file mode 100644 index 000000000..7234e142d --- /dev/null +++ b/src/defs/ArrowLineDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineDownLeft.tsx b/src/defs/ArrowLineDownLeft.tsx new file mode 100644 index 000000000..2ca05c823 --- /dev/null +++ b/src/defs/ArrowLineDownLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineDownRight.tsx b/src/defs/ArrowLineDownRight.tsx new file mode 100644 index 000000000..258b3c787 --- /dev/null +++ b/src/defs/ArrowLineDownRight.tsx @@ -0,0 +1,45 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineLeft.tsx b/src/defs/ArrowLineLeft.tsx new file mode 100644 index 000000000..108b83b02 --- /dev/null +++ b/src/defs/ArrowLineLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineRight.tsx b/src/defs/ArrowLineRight.tsx new file mode 100644 index 000000000..0edc93080 --- /dev/null +++ b/src/defs/ArrowLineRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineUp.tsx b/src/defs/ArrowLineUp.tsx new file mode 100644 index 000000000..b8f6a4d6b --- /dev/null +++ b/src/defs/ArrowLineUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineUpLeft.tsx b/src/defs/ArrowLineUpLeft.tsx new file mode 100644 index 000000000..0974285a6 --- /dev/null +++ b/src/defs/ArrowLineUpLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowLineUpRight.tsx b/src/defs/ArrowLineUpRight.tsx new file mode 100644 index 000000000..98b613b78 --- /dev/null +++ b/src/defs/ArrowLineUpRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowRight.tsx b/src/defs/ArrowRight.tsx new file mode 100644 index 000000000..1783dd0ed --- /dev/null +++ b/src/defs/ArrowRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareDown.tsx b/src/defs/ArrowSquareDown.tsx new file mode 100644 index 000000000..db1a4854c --- /dev/null +++ b/src/defs/ArrowSquareDown.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareDownLeft.tsx b/src/defs/ArrowSquareDownLeft.tsx new file mode 100644 index 000000000..d499fe4c5 --- /dev/null +++ b/src/defs/ArrowSquareDownLeft.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareDownRight.tsx b/src/defs/ArrowSquareDownRight.tsx new file mode 100644 index 000000000..57b77ba30 --- /dev/null +++ b/src/defs/ArrowSquareDownRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareIn.tsx b/src/defs/ArrowSquareIn.tsx new file mode 100644 index 000000000..3711cbd91 --- /dev/null +++ b/src/defs/ArrowSquareIn.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareLeft.tsx b/src/defs/ArrowSquareLeft.tsx new file mode 100644 index 000000000..2dbe153f3 --- /dev/null +++ b/src/defs/ArrowSquareLeft.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareOut.tsx b/src/defs/ArrowSquareOut.tsx new file mode 100644 index 000000000..6c642d921 --- /dev/null +++ b/src/defs/ArrowSquareOut.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareRight.tsx b/src/defs/ArrowSquareRight.tsx new file mode 100644 index 000000000..6de6c69d2 --- /dev/null +++ b/src/defs/ArrowSquareRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareUp.tsx b/src/defs/ArrowSquareUp.tsx new file mode 100644 index 000000000..cbfa142da --- /dev/null +++ b/src/defs/ArrowSquareUp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareUpLeft.tsx b/src/defs/ArrowSquareUpLeft.tsx new file mode 100644 index 000000000..305da6445 --- /dev/null +++ b/src/defs/ArrowSquareUpLeft.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowSquareUpRight.tsx b/src/defs/ArrowSquareUpRight.tsx new file mode 100644 index 000000000..eb16a4440 --- /dev/null +++ b/src/defs/ArrowSquareUpRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowUDownLeft.tsx b/src/defs/ArrowUDownLeft.tsx new file mode 100644 index 000000000..06a5e1ba6 --- /dev/null +++ b/src/defs/ArrowUDownLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowUDownRight.tsx b/src/defs/ArrowUDownRight.tsx new file mode 100644 index 000000000..9e5455567 --- /dev/null +++ b/src/defs/ArrowUDownRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowULeftDown.tsx b/src/defs/ArrowULeftDown.tsx new file mode 100644 index 000000000..ca5743230 --- /dev/null +++ b/src/defs/ArrowULeftDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowULeftUp.tsx b/src/defs/ArrowULeftUp.tsx new file mode 100644 index 000000000..347825ba0 --- /dev/null +++ b/src/defs/ArrowULeftUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowURightDown.tsx b/src/defs/ArrowURightDown.tsx new file mode 100644 index 000000000..4948cdb50 --- /dev/null +++ b/src/defs/ArrowURightDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowURightUp.tsx b/src/defs/ArrowURightUp.tsx new file mode 100644 index 000000000..37b0bf06b --- /dev/null +++ b/src/defs/ArrowURightUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowUUpLeft.tsx b/src/defs/ArrowUUpLeft.tsx new file mode 100644 index 000000000..031c5bf1f --- /dev/null +++ b/src/defs/ArrowUUpLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowUUpRight.tsx b/src/defs/ArrowUUpRight.tsx new file mode 100644 index 000000000..4c943a3a9 --- /dev/null +++ b/src/defs/ArrowUUpRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowUp.tsx b/src/defs/ArrowUp.tsx new file mode 100644 index 000000000..7e64b54b0 --- /dev/null +++ b/src/defs/ArrowUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowUpLeft.tsx b/src/defs/ArrowUpLeft.tsx new file mode 100644 index 000000000..9a7b80825 --- /dev/null +++ b/src/defs/ArrowUpLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowUpRight.tsx b/src/defs/ArrowUpRight.tsx new file mode 100644 index 000000000..5395573bd --- /dev/null +++ b/src/defs/ArrowUpRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsClockwise.tsx b/src/defs/ArrowsClockwise.tsx new file mode 100644 index 000000000..2fea8848c --- /dev/null +++ b/src/defs/ArrowsClockwise.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsCounterClockwise.tsx b/src/defs/ArrowsCounterClockwise.tsx new file mode 100644 index 000000000..1718cc763 --- /dev/null +++ b/src/defs/ArrowsCounterClockwise.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsDownUp.tsx b/src/defs/ArrowsDownUp.tsx new file mode 100644 index 000000000..33186a27a --- /dev/null +++ b/src/defs/ArrowsDownUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsHorizontal.tsx b/src/defs/ArrowsHorizontal.tsx new file mode 100644 index 000000000..f25e66b3a --- /dev/null +++ b/src/defs/ArrowsHorizontal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsIn.tsx b/src/defs/ArrowsIn.tsx new file mode 100644 index 000000000..89caaaed5 --- /dev/null +++ b/src/defs/ArrowsIn.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsInCardinal.tsx b/src/defs/ArrowsInCardinal.tsx new file mode 100644 index 000000000..2ec9e870b --- /dev/null +++ b/src/defs/ArrowsInCardinal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsInLineHorizontal.tsx b/src/defs/ArrowsInLineHorizontal.tsx new file mode 100644 index 000000000..f634cfd2d --- /dev/null +++ b/src/defs/ArrowsInLineHorizontal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsInLineVertical.tsx b/src/defs/ArrowsInLineVertical.tsx new file mode 100644 index 000000000..da9bce173 --- /dev/null +++ b/src/defs/ArrowsInLineVertical.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsInSimple.tsx b/src/defs/ArrowsInSimple.tsx new file mode 100644 index 000000000..806a2eeee --- /dev/null +++ b/src/defs/ArrowsInSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsLeftRight.tsx b/src/defs/ArrowsLeftRight.tsx new file mode 100644 index 000000000..328644e2b --- /dev/null +++ b/src/defs/ArrowsLeftRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsMerge.tsx b/src/defs/ArrowsMerge.tsx new file mode 100644 index 000000000..9162d3144 --- /dev/null +++ b/src/defs/ArrowsMerge.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsOut.tsx b/src/defs/ArrowsOut.tsx new file mode 100644 index 000000000..22ac22424 --- /dev/null +++ b/src/defs/ArrowsOut.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsOutCardinal.tsx b/src/defs/ArrowsOutCardinal.tsx new file mode 100644 index 000000000..72705d284 --- /dev/null +++ b/src/defs/ArrowsOutCardinal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsOutLineHorizontal.tsx b/src/defs/ArrowsOutLineHorizontal.tsx new file mode 100644 index 000000000..89be0caa5 --- /dev/null +++ b/src/defs/ArrowsOutLineHorizontal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsOutLineVertical.tsx b/src/defs/ArrowsOutLineVertical.tsx new file mode 100644 index 000000000..64b205b78 --- /dev/null +++ b/src/defs/ArrowsOutLineVertical.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsOutSimple.tsx b/src/defs/ArrowsOutSimple.tsx new file mode 100644 index 000000000..868a687f0 --- /dev/null +++ b/src/defs/ArrowsOutSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsSplit.tsx b/src/defs/ArrowsSplit.tsx new file mode 100644 index 000000000..361306e66 --- /dev/null +++ b/src/defs/ArrowsSplit.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArrowsVertical.tsx b/src/defs/ArrowsVertical.tsx new file mode 100644 index 000000000..cbe774892 --- /dev/null +++ b/src/defs/ArrowsVertical.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Article.tsx b/src/defs/Article.tsx new file mode 100644 index 000000000..19de8d768 --- /dev/null +++ b/src/defs/Article.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArticleMedium.tsx b/src/defs/ArticleMedium.tsx new file mode 100644 index 000000000..0c9b49754 --- /dev/null +++ b/src/defs/ArticleMedium.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ArticleNyTimes.tsx b/src/defs/ArticleNyTimes.tsx new file mode 100644 index 000000000..3f1a0ae89 --- /dev/null +++ b/src/defs/ArticleNyTimes.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Asterisk.tsx b/src/defs/Asterisk.tsx new file mode 100644 index 000000000..5cd7128ce --- /dev/null +++ b/src/defs/Asterisk.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/AsteriskSimple.tsx b/src/defs/AsteriskSimple.tsx new file mode 100644 index 000000000..5ddd4d069 --- /dev/null +++ b/src/defs/AsteriskSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/At.tsx b/src/defs/At.tsx new file mode 100644 index 000000000..76eeffa7a --- /dev/null +++ b/src/defs/At.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Atom.tsx b/src/defs/Atom.tsx new file mode 100644 index 000000000..15a8b94f2 --- /dev/null +++ b/src/defs/Atom.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Baby.tsx b/src/defs/Baby.tsx new file mode 100644 index 000000000..e634731f2 --- /dev/null +++ b/src/defs/Baby.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Backpack.tsx b/src/defs/Backpack.tsx new file mode 100644 index 000000000..8e71f4bb3 --- /dev/null +++ b/src/defs/Backpack.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Backspace.tsx b/src/defs/Backspace.tsx new file mode 100644 index 000000000..c7b4f2760 --- /dev/null +++ b/src/defs/Backspace.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bag.tsx b/src/defs/Bag.tsx new file mode 100644 index 000000000..2ecad518b --- /dev/null +++ b/src/defs/Bag.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BagSimple.tsx b/src/defs/BagSimple.tsx new file mode 100644 index 000000000..cd6956668 --- /dev/null +++ b/src/defs/BagSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Balloon.tsx b/src/defs/Balloon.tsx new file mode 100644 index 000000000..b647fca90 --- /dev/null +++ b/src/defs/Balloon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bandaids.tsx b/src/defs/Bandaids.tsx new file mode 100644 index 000000000..aa51dad46 --- /dev/null +++ b/src/defs/Bandaids.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bank.tsx b/src/defs/Bank.tsx new file mode 100644 index 000000000..14f165bcf --- /dev/null +++ b/src/defs/Bank.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Barbell.tsx b/src/defs/Barbell.tsx new file mode 100644 index 000000000..3364a059e --- /dev/null +++ b/src/defs/Barbell.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Barcode.tsx b/src/defs/Barcode.tsx new file mode 100644 index 000000000..d6e5ee31b --- /dev/null +++ b/src/defs/Barcode.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Barricade.tsx b/src/defs/Barricade.tsx new file mode 100644 index 000000000..58e6fd835 --- /dev/null +++ b/src/defs/Barricade.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Baseball.tsx b/src/defs/Baseball.tsx new file mode 100644 index 000000000..73abc1516 --- /dev/null +++ b/src/defs/Baseball.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BaseballCap.tsx b/src/defs/BaseballCap.tsx new file mode 100644 index 000000000..51893c90a --- /dev/null +++ b/src/defs/BaseballCap.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Basket.tsx b/src/defs/Basket.tsx new file mode 100644 index 000000000..aff2377f5 --- /dev/null +++ b/src/defs/Basket.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Basketball.tsx b/src/defs/Basketball.tsx new file mode 100644 index 000000000..3374e228b --- /dev/null +++ b/src/defs/Basketball.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bathtub.tsx b/src/defs/Bathtub.tsx new file mode 100644 index 000000000..c3790a8a3 --- /dev/null +++ b/src/defs/Bathtub.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryCharging.tsx b/src/defs/BatteryCharging.tsx new file mode 100644 index 000000000..71dc5dd07 --- /dev/null +++ b/src/defs/BatteryCharging.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryChargingVertical.tsx b/src/defs/BatteryChargingVertical.tsx new file mode 100644 index 000000000..8fb5c97ac --- /dev/null +++ b/src/defs/BatteryChargingVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryEmpty.tsx b/src/defs/BatteryEmpty.tsx new file mode 100644 index 000000000..4cb260ccb --- /dev/null +++ b/src/defs/BatteryEmpty.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryFull.tsx b/src/defs/BatteryFull.tsx new file mode 100644 index 000000000..730bdb488 --- /dev/null +++ b/src/defs/BatteryFull.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryHigh.tsx b/src/defs/BatteryHigh.tsx new file mode 100644 index 000000000..53f26da93 --- /dev/null +++ b/src/defs/BatteryHigh.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryLow.tsx b/src/defs/BatteryLow.tsx new file mode 100644 index 000000000..7d1228db6 --- /dev/null +++ b/src/defs/BatteryLow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryMedium.tsx b/src/defs/BatteryMedium.tsx new file mode 100644 index 000000000..b2adb54e2 --- /dev/null +++ b/src/defs/BatteryMedium.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryPlus.tsx b/src/defs/BatteryPlus.tsx new file mode 100644 index 000000000..4affbc76d --- /dev/null +++ b/src/defs/BatteryPlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryPlusVertical.tsx b/src/defs/BatteryPlusVertical.tsx new file mode 100644 index 000000000..56e100d1a --- /dev/null +++ b/src/defs/BatteryPlusVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryVerticalEmpty.tsx b/src/defs/BatteryVerticalEmpty.tsx new file mode 100644 index 000000000..8c83bd173 --- /dev/null +++ b/src/defs/BatteryVerticalEmpty.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryVerticalFull.tsx b/src/defs/BatteryVerticalFull.tsx new file mode 100644 index 000000000..76621e6c8 --- /dev/null +++ b/src/defs/BatteryVerticalFull.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryVerticalHigh.tsx b/src/defs/BatteryVerticalHigh.tsx new file mode 100644 index 000000000..c53f466b3 --- /dev/null +++ b/src/defs/BatteryVerticalHigh.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryVerticalLow.tsx b/src/defs/BatteryVerticalLow.tsx new file mode 100644 index 000000000..3509c3657 --- /dev/null +++ b/src/defs/BatteryVerticalLow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryVerticalMedium.tsx b/src/defs/BatteryVerticalMedium.tsx new file mode 100644 index 000000000..d8f89bc04 --- /dev/null +++ b/src/defs/BatteryVerticalMedium.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryWarning.tsx b/src/defs/BatteryWarning.tsx new file mode 100644 index 000000000..4a7166503 --- /dev/null +++ b/src/defs/BatteryWarning.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BatteryWarningVertical.tsx b/src/defs/BatteryWarningVertical.tsx new file mode 100644 index 000000000..7d040600b --- /dev/null +++ b/src/defs/BatteryWarningVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bed.tsx b/src/defs/Bed.tsx new file mode 100644 index 000000000..91748623f --- /dev/null +++ b/src/defs/Bed.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BeerBottle.tsx b/src/defs/BeerBottle.tsx new file mode 100644 index 000000000..c9eda0603 --- /dev/null +++ b/src/defs/BeerBottle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BeerStein.tsx b/src/defs/BeerStein.tsx new file mode 100644 index 000000000..cb48b8070 --- /dev/null +++ b/src/defs/BeerStein.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BehanceLogo.tsx b/src/defs/BehanceLogo.tsx new file mode 100644 index 000000000..f1a9f4193 --- /dev/null +++ b/src/defs/BehanceLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bell.tsx b/src/defs/Bell.tsx new file mode 100644 index 000000000..6ec4feb96 --- /dev/null +++ b/src/defs/Bell.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BellRinging.tsx b/src/defs/BellRinging.tsx new file mode 100644 index 000000000..b2ba600e2 --- /dev/null +++ b/src/defs/BellRinging.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BellSimple.tsx b/src/defs/BellSimple.tsx new file mode 100644 index 000000000..3c91f4b34 --- /dev/null +++ b/src/defs/BellSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BellSimpleRinging.tsx b/src/defs/BellSimpleRinging.tsx new file mode 100644 index 000000000..ff4a32742 --- /dev/null +++ b/src/defs/BellSimpleRinging.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BellSimpleSlash.tsx b/src/defs/BellSimpleSlash.tsx new file mode 100644 index 000000000..ad1651fb8 --- /dev/null +++ b/src/defs/BellSimpleSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BellSimpleZ.tsx b/src/defs/BellSimpleZ.tsx new file mode 100644 index 000000000..52eceb6fe --- /dev/null +++ b/src/defs/BellSimpleZ.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BellSlash.tsx b/src/defs/BellSlash.tsx new file mode 100644 index 000000000..b61021b2e --- /dev/null +++ b/src/defs/BellSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BellZ.tsx b/src/defs/BellZ.tsx new file mode 100644 index 000000000..b196b0664 --- /dev/null +++ b/src/defs/BellZ.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BezierCurve.tsx b/src/defs/BezierCurve.tsx new file mode 100644 index 000000000..c032a33e2 --- /dev/null +++ b/src/defs/BezierCurve.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bicycle.tsx b/src/defs/Bicycle.tsx new file mode 100644 index 000000000..b00dd86a0 --- /dev/null +++ b/src/defs/Bicycle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Binoculars.tsx b/src/defs/Binoculars.tsx new file mode 100644 index 000000000..d8ec352fd --- /dev/null +++ b/src/defs/Binoculars.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bird.tsx b/src/defs/Bird.tsx new file mode 100644 index 000000000..74ec914b7 --- /dev/null +++ b/src/defs/Bird.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bluetooth.tsx b/src/defs/Bluetooth.tsx new file mode 100644 index 000000000..334655f0e --- /dev/null +++ b/src/defs/Bluetooth.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BluetoothConnected.tsx b/src/defs/BluetoothConnected.tsx new file mode 100644 index 000000000..590cfa79b --- /dev/null +++ b/src/defs/BluetoothConnected.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BluetoothSlash.tsx b/src/defs/BluetoothSlash.tsx new file mode 100644 index 000000000..c9d46d2df --- /dev/null +++ b/src/defs/BluetoothSlash.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BluetoothX.tsx b/src/defs/BluetoothX.tsx new file mode 100644 index 000000000..98daf0570 --- /dev/null +++ b/src/defs/BluetoothX.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Boat.tsx b/src/defs/Boat.tsx new file mode 100644 index 000000000..fb16d68df --- /dev/null +++ b/src/defs/Boat.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bone.tsx b/src/defs/Bone.tsx new file mode 100644 index 000000000..d88bdc196 --- /dev/null +++ b/src/defs/Bone.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Book.tsx b/src/defs/Book.tsx new file mode 100644 index 000000000..5b96727aa --- /dev/null +++ b/src/defs/Book.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BookBookmark.tsx b/src/defs/BookBookmark.tsx new file mode 100644 index 000000000..e476d62d6 --- /dev/null +++ b/src/defs/BookBookmark.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BookOpen.tsx b/src/defs/BookOpen.tsx new file mode 100644 index 000000000..44e83e99d --- /dev/null +++ b/src/defs/BookOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BookOpenText.tsx b/src/defs/BookOpenText.tsx new file mode 100644 index 000000000..7dd16d440 --- /dev/null +++ b/src/defs/BookOpenText.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bookmark.tsx b/src/defs/Bookmark.tsx new file mode 100644 index 000000000..dcb4e5441 --- /dev/null +++ b/src/defs/Bookmark.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BookmarkSimple.tsx b/src/defs/BookmarkSimple.tsx new file mode 100644 index 000000000..616da1780 --- /dev/null +++ b/src/defs/BookmarkSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bookmarks.tsx b/src/defs/Bookmarks.tsx new file mode 100644 index 000000000..0f26143ee --- /dev/null +++ b/src/defs/Bookmarks.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BookmarksSimple.tsx b/src/defs/BookmarksSimple.tsx new file mode 100644 index 000000000..e2e1db3d5 --- /dev/null +++ b/src/defs/BookmarksSimple.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Books.tsx b/src/defs/Books.tsx new file mode 100644 index 000000000..046bd7f9b --- /dev/null +++ b/src/defs/Books.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Boot.tsx b/src/defs/Boot.tsx new file mode 100644 index 000000000..b8cb6a184 --- /dev/null +++ b/src/defs/Boot.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BoundingBox.tsx b/src/defs/BoundingBox.tsx new file mode 100644 index 000000000..dc29806e4 --- /dev/null +++ b/src/defs/BoundingBox.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BowlFood.tsx b/src/defs/BowlFood.tsx new file mode 100644 index 000000000..d6ac293a3 --- /dev/null +++ b/src/defs/BowlFood.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BracketsAngle.tsx b/src/defs/BracketsAngle.tsx new file mode 100644 index 000000000..47ed1287a --- /dev/null +++ b/src/defs/BracketsAngle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BracketsCurly.tsx b/src/defs/BracketsCurly.tsx new file mode 100644 index 000000000..8b089dee0 --- /dev/null +++ b/src/defs/BracketsCurly.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BracketsRound.tsx b/src/defs/BracketsRound.tsx new file mode 100644 index 000000000..9d9fd0d7d --- /dev/null +++ b/src/defs/BracketsRound.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BracketsSquare.tsx b/src/defs/BracketsSquare.tsx new file mode 100644 index 000000000..16a61eedd --- /dev/null +++ b/src/defs/BracketsSquare.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Brain.tsx b/src/defs/Brain.tsx new file mode 100644 index 000000000..d1171ef90 --- /dev/null +++ b/src/defs/Brain.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Brandy.tsx b/src/defs/Brandy.tsx new file mode 100644 index 000000000..1d1bca9be --- /dev/null +++ b/src/defs/Brandy.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bridge.tsx b/src/defs/Bridge.tsx new file mode 100644 index 000000000..6d914b9fa --- /dev/null +++ b/src/defs/Bridge.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Briefcase.tsx b/src/defs/Briefcase.tsx new file mode 100644 index 000000000..89778351b --- /dev/null +++ b/src/defs/Briefcase.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BriefcaseMetal.tsx b/src/defs/BriefcaseMetal.tsx new file mode 100644 index 000000000..d948391b6 --- /dev/null +++ b/src/defs/BriefcaseMetal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Broadcast.tsx b/src/defs/Broadcast.tsx new file mode 100644 index 000000000..f35470d69 --- /dev/null +++ b/src/defs/Broadcast.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Broom.tsx b/src/defs/Broom.tsx new file mode 100644 index 000000000..b557e31cb --- /dev/null +++ b/src/defs/Broom.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Browser.tsx b/src/defs/Browser.tsx new file mode 100644 index 000000000..e631d9550 --- /dev/null +++ b/src/defs/Browser.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Browsers.tsx b/src/defs/Browsers.tsx new file mode 100644 index 000000000..13a9f24bf --- /dev/null +++ b/src/defs/Browsers.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bug.tsx b/src/defs/Bug.tsx new file mode 100644 index 000000000..62ae2d6ba --- /dev/null +++ b/src/defs/Bug.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BugBeetle.tsx b/src/defs/BugBeetle.tsx new file mode 100644 index 000000000..6fc6991fb --- /dev/null +++ b/src/defs/BugBeetle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/BugDroid.tsx b/src/defs/BugDroid.tsx new file mode 100644 index 000000000..9c6d90847 --- /dev/null +++ b/src/defs/BugDroid.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Buildings.tsx b/src/defs/Buildings.tsx new file mode 100644 index 000000000..b0cb922a3 --- /dev/null +++ b/src/defs/Buildings.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Bus.tsx b/src/defs/Bus.tsx new file mode 100644 index 000000000..9bfc60cab --- /dev/null +++ b/src/defs/Bus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Butterfly.tsx b/src/defs/Butterfly.tsx new file mode 100644 index 000000000..018a0a5a6 --- /dev/null +++ b/src/defs/Butterfly.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cactus.tsx b/src/defs/Cactus.tsx new file mode 100644 index 000000000..c8f744e6d --- /dev/null +++ b/src/defs/Cactus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cake.tsx b/src/defs/Cake.tsx new file mode 100644 index 000000000..27c8af5e1 --- /dev/null +++ b/src/defs/Cake.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Calculator.tsx b/src/defs/Calculator.tsx new file mode 100644 index 000000000..2fc125f70 --- /dev/null +++ b/src/defs/Calculator.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Calendar.tsx b/src/defs/Calendar.tsx new file mode 100644 index 000000000..c63ce6a0f --- /dev/null +++ b/src/defs/Calendar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CalendarBlank.tsx b/src/defs/CalendarBlank.tsx new file mode 100644 index 000000000..c4b3e59df --- /dev/null +++ b/src/defs/CalendarBlank.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CalendarCheck.tsx b/src/defs/CalendarCheck.tsx new file mode 100644 index 000000000..8f25e2180 --- /dev/null +++ b/src/defs/CalendarCheck.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CalendarPlus.tsx b/src/defs/CalendarPlus.tsx new file mode 100644 index 000000000..59b8eac67 --- /dev/null +++ b/src/defs/CalendarPlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CalendarX.tsx b/src/defs/CalendarX.tsx new file mode 100644 index 000000000..ecfd2d9d5 --- /dev/null +++ b/src/defs/CalendarX.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CallBell.tsx b/src/defs/CallBell.tsx new file mode 100644 index 000000000..202808fb8 --- /dev/null +++ b/src/defs/CallBell.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Camera.tsx b/src/defs/Camera.tsx new file mode 100644 index 000000000..cf1af2cc5 --- /dev/null +++ b/src/defs/Camera.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CameraPlus.tsx b/src/defs/CameraPlus.tsx new file mode 100644 index 000000000..c9cda2148 --- /dev/null +++ b/src/defs/CameraPlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CameraRotate.tsx b/src/defs/CameraRotate.tsx new file mode 100644 index 000000000..0a74ffb97 --- /dev/null +++ b/src/defs/CameraRotate.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CameraSlash.tsx b/src/defs/CameraSlash.tsx new file mode 100644 index 000000000..8fd5ea192 --- /dev/null +++ b/src/defs/CameraSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Campfire.tsx b/src/defs/Campfire.tsx new file mode 100644 index 000000000..3e1313d93 --- /dev/null +++ b/src/defs/Campfire.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Car.tsx b/src/defs/Car.tsx new file mode 100644 index 000000000..13e03c7a0 --- /dev/null +++ b/src/defs/Car.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CarProfile.tsx b/src/defs/CarProfile.tsx new file mode 100644 index 000000000..cb9c6733d --- /dev/null +++ b/src/defs/CarProfile.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CarSimple.tsx b/src/defs/CarSimple.tsx new file mode 100644 index 000000000..dc10883f1 --- /dev/null +++ b/src/defs/CarSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cardholder.tsx b/src/defs/Cardholder.tsx new file mode 100644 index 000000000..6e5e3822b --- /dev/null +++ b/src/defs/Cardholder.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cards.tsx b/src/defs/Cards.tsx new file mode 100644 index 000000000..7897dc94d --- /dev/null +++ b/src/defs/Cards.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleDoubleDown.tsx b/src/defs/CaretCircleDoubleDown.tsx new file mode 100644 index 000000000..171d32128 --- /dev/null +++ b/src/defs/CaretCircleDoubleDown.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleDoubleLeft.tsx b/src/defs/CaretCircleDoubleLeft.tsx new file mode 100644 index 000000000..01652d942 --- /dev/null +++ b/src/defs/CaretCircleDoubleLeft.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleDoubleRight.tsx b/src/defs/CaretCircleDoubleRight.tsx new file mode 100644 index 000000000..54a32a822 --- /dev/null +++ b/src/defs/CaretCircleDoubleRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleDoubleUp.tsx b/src/defs/CaretCircleDoubleUp.tsx new file mode 100644 index 000000000..0e74deb96 --- /dev/null +++ b/src/defs/CaretCircleDoubleUp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleDown.tsx b/src/defs/CaretCircleDown.tsx new file mode 100644 index 000000000..b93c5cd44 --- /dev/null +++ b/src/defs/CaretCircleDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleLeft.tsx b/src/defs/CaretCircleLeft.tsx new file mode 100644 index 000000000..538d85a3d --- /dev/null +++ b/src/defs/CaretCircleLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleRight.tsx b/src/defs/CaretCircleRight.tsx new file mode 100644 index 000000000..4f49be945 --- /dev/null +++ b/src/defs/CaretCircleRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleUp.tsx b/src/defs/CaretCircleUp.tsx new file mode 100644 index 000000000..1d5232c74 --- /dev/null +++ b/src/defs/CaretCircleUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretCircleUpDown.tsx b/src/defs/CaretCircleUpDown.tsx new file mode 100644 index 000000000..b34fb1a28 --- /dev/null +++ b/src/defs/CaretCircleUpDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretDoubleDown.tsx b/src/defs/CaretDoubleDown.tsx new file mode 100644 index 000000000..179cb1bfd --- /dev/null +++ b/src/defs/CaretDoubleDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretDoubleLeft.tsx b/src/defs/CaretDoubleLeft.tsx new file mode 100644 index 000000000..1be6e271b --- /dev/null +++ b/src/defs/CaretDoubleLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretDoubleRight.tsx b/src/defs/CaretDoubleRight.tsx new file mode 100644 index 000000000..68cb709c5 --- /dev/null +++ b/src/defs/CaretDoubleRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretDoubleUp.tsx b/src/defs/CaretDoubleUp.tsx new file mode 100644 index 000000000..f619191cc --- /dev/null +++ b/src/defs/CaretDoubleUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretDown.tsx b/src/defs/CaretDown.tsx new file mode 100644 index 000000000..53a7bc0a1 --- /dev/null +++ b/src/defs/CaretDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretLeft.tsx b/src/defs/CaretLeft.tsx new file mode 100644 index 000000000..67cb3ad38 --- /dev/null +++ b/src/defs/CaretLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretRight.tsx b/src/defs/CaretRight.tsx new file mode 100644 index 000000000..25baff228 --- /dev/null +++ b/src/defs/CaretRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretUp.tsx b/src/defs/CaretUp.tsx new file mode 100644 index 000000000..965974788 --- /dev/null +++ b/src/defs/CaretUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CaretUpDown.tsx b/src/defs/CaretUpDown.tsx new file mode 100644 index 000000000..1f3219b5c --- /dev/null +++ b/src/defs/CaretUpDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Carrot.tsx b/src/defs/Carrot.tsx new file mode 100644 index 000000000..b4c29bd5a --- /dev/null +++ b/src/defs/Carrot.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CassetteTape.tsx b/src/defs/CassetteTape.tsx new file mode 100644 index 000000000..f534708a0 --- /dev/null +++ b/src/defs/CassetteTape.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CastleTurret.tsx b/src/defs/CastleTurret.tsx new file mode 100644 index 000000000..b3b995fbb --- /dev/null +++ b/src/defs/CastleTurret.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cat.tsx b/src/defs/Cat.tsx new file mode 100644 index 000000000..b7860dd3d --- /dev/null +++ b/src/defs/Cat.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CellSignalFull.tsx b/src/defs/CellSignalFull.tsx new file mode 100644 index 000000000..f910aa6a3 --- /dev/null +++ b/src/defs/CellSignalFull.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CellSignalHigh.tsx b/src/defs/CellSignalHigh.tsx new file mode 100644 index 000000000..4afee0752 --- /dev/null +++ b/src/defs/CellSignalHigh.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CellSignalLow.tsx b/src/defs/CellSignalLow.tsx new file mode 100644 index 000000000..6abb911b2 --- /dev/null +++ b/src/defs/CellSignalLow.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CellSignalMedium.tsx b/src/defs/CellSignalMedium.tsx new file mode 100644 index 000000000..ea0bdd913 --- /dev/null +++ b/src/defs/CellSignalMedium.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CellSignalNone.tsx b/src/defs/CellSignalNone.tsx new file mode 100644 index 000000000..c84104efc --- /dev/null +++ b/src/defs/CellSignalNone.tsx @@ -0,0 +1,42 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CellSignalSlash.tsx b/src/defs/CellSignalSlash.tsx new file mode 100644 index 000000000..b0f68a5dc --- /dev/null +++ b/src/defs/CellSignalSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CellSignalX.tsx b/src/defs/CellSignalX.tsx new file mode 100644 index 000000000..b49cae68d --- /dev/null +++ b/src/defs/CellSignalX.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Certificate.tsx b/src/defs/Certificate.tsx new file mode 100644 index 000000000..e1d78792d --- /dev/null +++ b/src/defs/Certificate.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Chair.tsx b/src/defs/Chair.tsx new file mode 100644 index 000000000..de50cf14c --- /dev/null +++ b/src/defs/Chair.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Chalkboard.tsx b/src/defs/Chalkboard.tsx new file mode 100644 index 000000000..3f9435bdd --- /dev/null +++ b/src/defs/Chalkboard.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChalkboardSimple.tsx b/src/defs/ChalkboardSimple.tsx new file mode 100644 index 000000000..115d4f6a4 --- /dev/null +++ b/src/defs/ChalkboardSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChalkboardTeacher.tsx b/src/defs/ChalkboardTeacher.tsx new file mode 100644 index 000000000..b959a402f --- /dev/null +++ b/src/defs/ChalkboardTeacher.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Champagne.tsx b/src/defs/Champagne.tsx new file mode 100644 index 000000000..5a3c9b4d0 --- /dev/null +++ b/src/defs/Champagne.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChargingStation.tsx b/src/defs/ChargingStation.tsx new file mode 100644 index 000000000..4412cfa95 --- /dev/null +++ b/src/defs/ChargingStation.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartBar.tsx b/src/defs/ChartBar.tsx new file mode 100644 index 000000000..f66b9001b --- /dev/null +++ b/src/defs/ChartBar.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartBarHorizontal.tsx b/src/defs/ChartBarHorizontal.tsx new file mode 100644 index 000000000..319c2cea3 --- /dev/null +++ b/src/defs/ChartBarHorizontal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartDonut.tsx b/src/defs/ChartDonut.tsx new file mode 100644 index 000000000..a07140e24 --- /dev/null +++ b/src/defs/ChartDonut.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartLine.tsx b/src/defs/ChartLine.tsx new file mode 100644 index 000000000..d410190c7 --- /dev/null +++ b/src/defs/ChartLine.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartLineDown.tsx b/src/defs/ChartLineDown.tsx new file mode 100644 index 000000000..3c27abada --- /dev/null +++ b/src/defs/ChartLineDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartLineUp.tsx b/src/defs/ChartLineUp.tsx new file mode 100644 index 000000000..0d447a989 --- /dev/null +++ b/src/defs/ChartLineUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartPie.tsx b/src/defs/ChartPie.tsx new file mode 100644 index 000000000..0f98e0340 --- /dev/null +++ b/src/defs/ChartPie.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartPieSlice.tsx b/src/defs/ChartPieSlice.tsx new file mode 100644 index 000000000..357a713bf --- /dev/null +++ b/src/defs/ChartPieSlice.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartPolar.tsx b/src/defs/ChartPolar.tsx new file mode 100644 index 000000000..ae203dd2a --- /dev/null +++ b/src/defs/ChartPolar.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChartScatter.tsx b/src/defs/ChartScatter.tsx new file mode 100644 index 000000000..e98897175 --- /dev/null +++ b/src/defs/ChartScatter.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Chat.tsx b/src/defs/Chat.tsx new file mode 100644 index 000000000..6801ba3b3 --- /dev/null +++ b/src/defs/Chat.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatCentered.tsx b/src/defs/ChatCentered.tsx new file mode 100644 index 000000000..663b89927 --- /dev/null +++ b/src/defs/ChatCentered.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatCenteredDots.tsx b/src/defs/ChatCenteredDots.tsx new file mode 100644 index 000000000..1ace10b00 --- /dev/null +++ b/src/defs/ChatCenteredDots.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatCenteredText.tsx b/src/defs/ChatCenteredText.tsx new file mode 100644 index 000000000..6ca4cc971 --- /dev/null +++ b/src/defs/ChatCenteredText.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatCircle.tsx b/src/defs/ChatCircle.tsx new file mode 100644 index 000000000..061e496bc --- /dev/null +++ b/src/defs/ChatCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatCircleDots.tsx b/src/defs/ChatCircleDots.tsx new file mode 100644 index 000000000..a37975b24 --- /dev/null +++ b/src/defs/ChatCircleDots.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatCircleText.tsx b/src/defs/ChatCircleText.tsx new file mode 100644 index 000000000..b8826dc36 --- /dev/null +++ b/src/defs/ChatCircleText.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatDots.tsx b/src/defs/ChatDots.tsx new file mode 100644 index 000000000..491dfdd7b --- /dev/null +++ b/src/defs/ChatDots.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatTeardrop.tsx b/src/defs/ChatTeardrop.tsx new file mode 100644 index 000000000..e46d9e433 --- /dev/null +++ b/src/defs/ChatTeardrop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatTeardropDots.tsx b/src/defs/ChatTeardropDots.tsx new file mode 100644 index 000000000..b90c72f18 --- /dev/null +++ b/src/defs/ChatTeardropDots.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatTeardropText.tsx b/src/defs/ChatTeardropText.tsx new file mode 100644 index 000000000..6205aa5b6 --- /dev/null +++ b/src/defs/ChatTeardropText.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatText.tsx b/src/defs/ChatText.tsx new file mode 100644 index 000000000..8da6bd356 --- /dev/null +++ b/src/defs/ChatText.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Chats.tsx b/src/defs/Chats.tsx new file mode 100644 index 000000000..47662b465 --- /dev/null +++ b/src/defs/Chats.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatsCircle.tsx b/src/defs/ChatsCircle.tsx new file mode 100644 index 000000000..8637b2fe4 --- /dev/null +++ b/src/defs/ChatsCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ChatsTeardrop.tsx b/src/defs/ChatsTeardrop.tsx new file mode 100644 index 000000000..cb020ed79 --- /dev/null +++ b/src/defs/ChatsTeardrop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Check.tsx b/src/defs/Check.tsx new file mode 100644 index 000000000..09f667157 --- /dev/null +++ b/src/defs/Check.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CheckCircle.tsx b/src/defs/CheckCircle.tsx new file mode 100644 index 000000000..127f1cf9a --- /dev/null +++ b/src/defs/CheckCircle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CheckFat.tsx b/src/defs/CheckFat.tsx new file mode 100644 index 000000000..4978523a8 --- /dev/null +++ b/src/defs/CheckFat.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CheckSquare.tsx b/src/defs/CheckSquare.tsx new file mode 100644 index 000000000..2d8705cb4 --- /dev/null +++ b/src/defs/CheckSquare.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CheckSquareOffset.tsx b/src/defs/CheckSquareOffset.tsx new file mode 100644 index 000000000..8674c5607 --- /dev/null +++ b/src/defs/CheckSquareOffset.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Checks.tsx b/src/defs/Checks.tsx new file mode 100644 index 000000000..204a911cb --- /dev/null +++ b/src/defs/Checks.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Church.tsx b/src/defs/Church.tsx new file mode 100644 index 000000000..cf94b195c --- /dev/null +++ b/src/defs/Church.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Circle.tsx b/src/defs/Circle.tsx new file mode 100644 index 000000000..396d87773 --- /dev/null +++ b/src/defs/Circle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CircleDashed.tsx b/src/defs/CircleDashed.tsx new file mode 100644 index 000000000..ad3a83e4f --- /dev/null +++ b/src/defs/CircleDashed.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CircleHalf.tsx b/src/defs/CircleHalf.tsx new file mode 100644 index 000000000..4cf4ffeb4 --- /dev/null +++ b/src/defs/CircleHalf.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CircleHalfTilt.tsx b/src/defs/CircleHalfTilt.tsx new file mode 100644 index 000000000..d421d566c --- /dev/null +++ b/src/defs/CircleHalfTilt.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CircleNotch.tsx b/src/defs/CircleNotch.tsx new file mode 100644 index 000000000..11b00c67f --- /dev/null +++ b/src/defs/CircleNotch.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CirclesFour.tsx b/src/defs/CirclesFour.tsx new file mode 100644 index 000000000..6b7bd4d75 --- /dev/null +++ b/src/defs/CirclesFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CirclesThree.tsx b/src/defs/CirclesThree.tsx new file mode 100644 index 000000000..dd8dd2a50 --- /dev/null +++ b/src/defs/CirclesThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CirclesThreePlus.tsx b/src/defs/CirclesThreePlus.tsx new file mode 100644 index 000000000..e2b0d758b --- /dev/null +++ b/src/defs/CirclesThreePlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Circuitry.tsx b/src/defs/Circuitry.tsx new file mode 100644 index 000000000..061a81288 --- /dev/null +++ b/src/defs/Circuitry.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Clipboard.tsx b/src/defs/Clipboard.tsx new file mode 100644 index 000000000..1fc14a2a8 --- /dev/null +++ b/src/defs/Clipboard.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ClipboardText.tsx b/src/defs/ClipboardText.tsx new file mode 100644 index 000000000..c4a9deff5 --- /dev/null +++ b/src/defs/ClipboardText.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Clock.tsx b/src/defs/Clock.tsx new file mode 100644 index 000000000..8b4309870 --- /dev/null +++ b/src/defs/Clock.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ClockAfternoon.tsx b/src/defs/ClockAfternoon.tsx new file mode 100644 index 000000000..9b9ee20b2 --- /dev/null +++ b/src/defs/ClockAfternoon.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ClockClockwise.tsx b/src/defs/ClockClockwise.tsx new file mode 100644 index 000000000..17303221d --- /dev/null +++ b/src/defs/ClockClockwise.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ClockCountdown.tsx b/src/defs/ClockCountdown.tsx new file mode 100644 index 000000000..0bcc92552 --- /dev/null +++ b/src/defs/ClockCountdown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ClockCounterClockwise.tsx b/src/defs/ClockCounterClockwise.tsx new file mode 100644 index 000000000..a77cdc5f4 --- /dev/null +++ b/src/defs/ClockCounterClockwise.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ClosedCaptioning.tsx b/src/defs/ClosedCaptioning.tsx new file mode 100644 index 000000000..309af6845 --- /dev/null +++ b/src/defs/ClosedCaptioning.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cloud.tsx b/src/defs/Cloud.tsx new file mode 100644 index 000000000..90105b246 --- /dev/null +++ b/src/defs/Cloud.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudArrowDown.tsx b/src/defs/CloudArrowDown.tsx new file mode 100644 index 000000000..0ebc925d4 --- /dev/null +++ b/src/defs/CloudArrowDown.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudArrowUp.tsx b/src/defs/CloudArrowUp.tsx new file mode 100644 index 000000000..7c922b98f --- /dev/null +++ b/src/defs/CloudArrowUp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudCheck.tsx b/src/defs/CloudCheck.tsx new file mode 100644 index 000000000..6fa16d83b --- /dev/null +++ b/src/defs/CloudCheck.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudFog.tsx b/src/defs/CloudFog.tsx new file mode 100644 index 000000000..be7d3a92c --- /dev/null +++ b/src/defs/CloudFog.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudLightning.tsx b/src/defs/CloudLightning.tsx new file mode 100644 index 000000000..75cf444a1 --- /dev/null +++ b/src/defs/CloudLightning.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudMoon.tsx b/src/defs/CloudMoon.tsx new file mode 100644 index 000000000..7b3b12908 --- /dev/null +++ b/src/defs/CloudMoon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudRain.tsx b/src/defs/CloudRain.tsx new file mode 100644 index 000000000..9120db4b8 --- /dev/null +++ b/src/defs/CloudRain.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudSlash.tsx b/src/defs/CloudSlash.tsx new file mode 100644 index 000000000..a70df435b --- /dev/null +++ b/src/defs/CloudSlash.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudSnow.tsx b/src/defs/CloudSnow.tsx new file mode 100644 index 000000000..323ec7557 --- /dev/null +++ b/src/defs/CloudSnow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudSun.tsx b/src/defs/CloudSun.tsx new file mode 100644 index 000000000..a055823a3 --- /dev/null +++ b/src/defs/CloudSun.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudWarning.tsx b/src/defs/CloudWarning.tsx new file mode 100644 index 000000000..8bd7a2468 --- /dev/null +++ b/src/defs/CloudWarning.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CloudX.tsx b/src/defs/CloudX.tsx new file mode 100644 index 000000000..453ed6e46 --- /dev/null +++ b/src/defs/CloudX.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Club.tsx b/src/defs/Club.tsx new file mode 100644 index 000000000..747737ddf --- /dev/null +++ b/src/defs/Club.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CoatHanger.tsx b/src/defs/CoatHanger.tsx new file mode 100644 index 000000000..e59af816f --- /dev/null +++ b/src/defs/CoatHanger.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CodaLogo.tsx b/src/defs/CodaLogo.tsx new file mode 100644 index 000000000..325e9f9b1 --- /dev/null +++ b/src/defs/CodaLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Code.tsx b/src/defs/Code.tsx new file mode 100644 index 000000000..598936be3 --- /dev/null +++ b/src/defs/Code.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CodeBlock.tsx b/src/defs/CodeBlock.tsx new file mode 100644 index 000000000..2a9e9d6ef --- /dev/null +++ b/src/defs/CodeBlock.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CodeSimple.tsx b/src/defs/CodeSimple.tsx new file mode 100644 index 000000000..f7627447d --- /dev/null +++ b/src/defs/CodeSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CodepenLogo.tsx b/src/defs/CodepenLogo.tsx new file mode 100644 index 000000000..549374b74 --- /dev/null +++ b/src/defs/CodepenLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CodesandboxLogo.tsx b/src/defs/CodesandboxLogo.tsx new file mode 100644 index 000000000..30279e939 --- /dev/null +++ b/src/defs/CodesandboxLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Coffee.tsx b/src/defs/Coffee.tsx new file mode 100644 index 000000000..8f4aaec08 --- /dev/null +++ b/src/defs/Coffee.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Coin.tsx b/src/defs/Coin.tsx new file mode 100644 index 000000000..e0ed24625 --- /dev/null +++ b/src/defs/Coin.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CoinVertical.tsx b/src/defs/CoinVertical.tsx new file mode 100644 index 000000000..dadec9aa8 --- /dev/null +++ b/src/defs/CoinVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Coins.tsx b/src/defs/Coins.tsx new file mode 100644 index 000000000..b646fb965 --- /dev/null +++ b/src/defs/Coins.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Columns.tsx b/src/defs/Columns.tsx new file mode 100644 index 000000000..da9e047cb --- /dev/null +++ b/src/defs/Columns.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Command.tsx b/src/defs/Command.tsx new file mode 100644 index 000000000..219cece4b --- /dev/null +++ b/src/defs/Command.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Compass.tsx b/src/defs/Compass.tsx new file mode 100644 index 000000000..14f245c10 --- /dev/null +++ b/src/defs/Compass.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CompassTool.tsx b/src/defs/CompassTool.tsx new file mode 100644 index 000000000..a1a1ca0b1 --- /dev/null +++ b/src/defs/CompassTool.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ComputerTower.tsx b/src/defs/ComputerTower.tsx new file mode 100644 index 000000000..b92b4ef7c --- /dev/null +++ b/src/defs/ComputerTower.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Confetti.tsx b/src/defs/Confetti.tsx new file mode 100644 index 000000000..3457e3787 --- /dev/null +++ b/src/defs/Confetti.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ContactlessPayment.tsx b/src/defs/ContactlessPayment.tsx new file mode 100644 index 000000000..0e232beb5 --- /dev/null +++ b/src/defs/ContactlessPayment.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Control.tsx b/src/defs/Control.tsx new file mode 100644 index 000000000..d5bb1a299 --- /dev/null +++ b/src/defs/Control.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cookie.tsx b/src/defs/Cookie.tsx new file mode 100644 index 000000000..fc2e5e5b1 --- /dev/null +++ b/src/defs/Cookie.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CookingPot.tsx b/src/defs/CookingPot.tsx new file mode 100644 index 000000000..59e7fceea --- /dev/null +++ b/src/defs/CookingPot.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Copy.tsx b/src/defs/Copy.tsx new file mode 100644 index 000000000..e98693be1 --- /dev/null +++ b/src/defs/Copy.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CopySimple.tsx b/src/defs/CopySimple.tsx new file mode 100644 index 000000000..4c84e1c7a --- /dev/null +++ b/src/defs/CopySimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Copyleft.tsx b/src/defs/Copyleft.tsx new file mode 100644 index 000000000..21211adb6 --- /dev/null +++ b/src/defs/Copyleft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Copyright.tsx b/src/defs/Copyright.tsx new file mode 100644 index 000000000..4403f58aa --- /dev/null +++ b/src/defs/Copyright.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CornersIn.tsx b/src/defs/CornersIn.tsx new file mode 100644 index 000000000..6253ea661 --- /dev/null +++ b/src/defs/CornersIn.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CornersOut.tsx b/src/defs/CornersOut.tsx new file mode 100644 index 000000000..b07f2cd5a --- /dev/null +++ b/src/defs/CornersOut.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Couch.tsx b/src/defs/Couch.tsx new file mode 100644 index 000000000..cb78155d2 --- /dev/null +++ b/src/defs/Couch.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cpu.tsx b/src/defs/Cpu.tsx new file mode 100644 index 000000000..e6f2ba786 --- /dev/null +++ b/src/defs/Cpu.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CreditCard.tsx b/src/defs/CreditCard.tsx new file mode 100644 index 000000000..92ef082e4 --- /dev/null +++ b/src/defs/CreditCard.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Crop.tsx b/src/defs/Crop.tsx new file mode 100644 index 000000000..7564a60ce --- /dev/null +++ b/src/defs/Crop.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cross.tsx b/src/defs/Cross.tsx new file mode 100644 index 000000000..0e039f476 --- /dev/null +++ b/src/defs/Cross.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Crosshair.tsx b/src/defs/Crosshair.tsx new file mode 100644 index 000000000..0b66789f9 --- /dev/null +++ b/src/defs/Crosshair.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CrosshairSimple.tsx b/src/defs/CrosshairSimple.tsx new file mode 100644 index 000000000..60a644a55 --- /dev/null +++ b/src/defs/CrosshairSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Crown.tsx b/src/defs/Crown.tsx new file mode 100644 index 000000000..771b59112 --- /dev/null +++ b/src/defs/Crown.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CrownSimple.tsx b/src/defs/CrownSimple.tsx new file mode 100644 index 000000000..f1f907b6f --- /dev/null +++ b/src/defs/CrownSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cube.tsx b/src/defs/Cube.tsx new file mode 100644 index 000000000..18b16e6cc --- /dev/null +++ b/src/defs/Cube.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CubeFocus.tsx b/src/defs/CubeFocus.tsx new file mode 100644 index 000000000..ad0ab30b0 --- /dev/null +++ b/src/defs/CubeFocus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CubeTransparent.tsx b/src/defs/CubeTransparent.tsx new file mode 100644 index 000000000..863ac8050 --- /dev/null +++ b/src/defs/CubeTransparent.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyBtc.tsx b/src/defs/CurrencyBtc.tsx new file mode 100644 index 000000000..d9d140c37 --- /dev/null +++ b/src/defs/CurrencyBtc.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyCircleDollar.tsx b/src/defs/CurrencyCircleDollar.tsx new file mode 100644 index 000000000..45ff6c1a7 --- /dev/null +++ b/src/defs/CurrencyCircleDollar.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyCny.tsx b/src/defs/CurrencyCny.tsx new file mode 100644 index 000000000..a0c145f43 --- /dev/null +++ b/src/defs/CurrencyCny.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyDollar.tsx b/src/defs/CurrencyDollar.tsx new file mode 100644 index 000000000..4e5c98e1d --- /dev/null +++ b/src/defs/CurrencyDollar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyDollarSimple.tsx b/src/defs/CurrencyDollarSimple.tsx new file mode 100644 index 000000000..abd2e2b5e --- /dev/null +++ b/src/defs/CurrencyDollarSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyEth.tsx b/src/defs/CurrencyEth.tsx new file mode 100644 index 000000000..303ea65b8 --- /dev/null +++ b/src/defs/CurrencyEth.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyEur.tsx b/src/defs/CurrencyEur.tsx new file mode 100644 index 000000000..6451ddb06 --- /dev/null +++ b/src/defs/CurrencyEur.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyGbp.tsx b/src/defs/CurrencyGbp.tsx new file mode 100644 index 000000000..383589e79 --- /dev/null +++ b/src/defs/CurrencyGbp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyInr.tsx b/src/defs/CurrencyInr.tsx new file mode 100644 index 000000000..8677abac0 --- /dev/null +++ b/src/defs/CurrencyInr.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyJpy.tsx b/src/defs/CurrencyJpy.tsx new file mode 100644 index 000000000..304e6f2c3 --- /dev/null +++ b/src/defs/CurrencyJpy.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyKrw.tsx b/src/defs/CurrencyKrw.tsx new file mode 100644 index 000000000..bb1cd64f2 --- /dev/null +++ b/src/defs/CurrencyKrw.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyKzt.tsx b/src/defs/CurrencyKzt.tsx new file mode 100644 index 000000000..a58b4f140 --- /dev/null +++ b/src/defs/CurrencyKzt.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyNgn.tsx b/src/defs/CurrencyNgn.tsx new file mode 100644 index 000000000..fc132933a --- /dev/null +++ b/src/defs/CurrencyNgn.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CurrencyRub.tsx b/src/defs/CurrencyRub.tsx new file mode 100644 index 000000000..589111aa7 --- /dev/null +++ b/src/defs/CurrencyRub.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cursor.tsx b/src/defs/Cursor.tsx new file mode 100644 index 000000000..992f04fd9 --- /dev/null +++ b/src/defs/Cursor.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CursorClick.tsx b/src/defs/CursorClick.tsx new file mode 100644 index 000000000..b86df3fca --- /dev/null +++ b/src/defs/CursorClick.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/CursorText.tsx b/src/defs/CursorText.tsx new file mode 100644 index 000000000..94b9c9935 --- /dev/null +++ b/src/defs/CursorText.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Cylinder.tsx b/src/defs/Cylinder.tsx new file mode 100644 index 000000000..b7cbdbd3f --- /dev/null +++ b/src/defs/Cylinder.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Database.tsx b/src/defs/Database.tsx new file mode 100644 index 000000000..98f45296c --- /dev/null +++ b/src/defs/Database.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Desktop.tsx b/src/defs/Desktop.tsx new file mode 100644 index 000000000..e2ad5b0f1 --- /dev/null +++ b/src/defs/Desktop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DesktopTower.tsx b/src/defs/DesktopTower.tsx new file mode 100644 index 000000000..4e89befb9 --- /dev/null +++ b/src/defs/DesktopTower.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Detective.tsx b/src/defs/Detective.tsx new file mode 100644 index 000000000..d87e63972 --- /dev/null +++ b/src/defs/Detective.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DevToLogo.tsx b/src/defs/DevToLogo.tsx new file mode 100644 index 000000000..d3fe7be1b --- /dev/null +++ b/src/defs/DevToLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DeviceMobile.tsx b/src/defs/DeviceMobile.tsx new file mode 100644 index 000000000..10f523365 --- /dev/null +++ b/src/defs/DeviceMobile.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DeviceMobileCamera.tsx b/src/defs/DeviceMobileCamera.tsx new file mode 100644 index 000000000..46de829a8 --- /dev/null +++ b/src/defs/DeviceMobileCamera.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DeviceMobileSpeaker.tsx b/src/defs/DeviceMobileSpeaker.tsx new file mode 100644 index 000000000..fb611f091 --- /dev/null +++ b/src/defs/DeviceMobileSpeaker.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DeviceTablet.tsx b/src/defs/DeviceTablet.tsx new file mode 100644 index 000000000..40422d27b --- /dev/null +++ b/src/defs/DeviceTablet.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DeviceTabletCamera.tsx b/src/defs/DeviceTabletCamera.tsx new file mode 100644 index 000000000..04ff4acad --- /dev/null +++ b/src/defs/DeviceTabletCamera.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DeviceTabletSpeaker.tsx b/src/defs/DeviceTabletSpeaker.tsx new file mode 100644 index 000000000..d5a380255 --- /dev/null +++ b/src/defs/DeviceTabletSpeaker.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Devices.tsx b/src/defs/Devices.tsx new file mode 100644 index 000000000..ac0e1bc15 --- /dev/null +++ b/src/defs/Devices.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Diamond.tsx b/src/defs/Diamond.tsx new file mode 100644 index 000000000..a1986d129 --- /dev/null +++ b/src/defs/Diamond.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiamondsFour.tsx b/src/defs/DiamondsFour.tsx new file mode 100644 index 000000000..a43db1c89 --- /dev/null +++ b/src/defs/DiamondsFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiceFive.tsx b/src/defs/DiceFive.tsx new file mode 100644 index 000000000..06cd6f49f --- /dev/null +++ b/src/defs/DiceFive.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiceFour.tsx b/src/defs/DiceFour.tsx new file mode 100644 index 000000000..cbfb7cf15 --- /dev/null +++ b/src/defs/DiceFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiceOne.tsx b/src/defs/DiceOne.tsx new file mode 100644 index 000000000..ffd1ca9f1 --- /dev/null +++ b/src/defs/DiceOne.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiceSix.tsx b/src/defs/DiceSix.tsx new file mode 100644 index 000000000..67448afa5 --- /dev/null +++ b/src/defs/DiceSix.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiceThree.tsx b/src/defs/DiceThree.tsx new file mode 100644 index 000000000..dbccd4959 --- /dev/null +++ b/src/defs/DiceThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiceTwo.tsx b/src/defs/DiceTwo.tsx new file mode 100644 index 000000000..629b4dade --- /dev/null +++ b/src/defs/DiceTwo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Disc.tsx b/src/defs/Disc.tsx new file mode 100644 index 000000000..734d82fb9 --- /dev/null +++ b/src/defs/Disc.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DiscordLogo.tsx b/src/defs/DiscordLogo.tsx new file mode 100644 index 000000000..6e6855091 --- /dev/null +++ b/src/defs/DiscordLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Divide.tsx b/src/defs/Divide.tsx new file mode 100644 index 000000000..7f69b3598 --- /dev/null +++ b/src/defs/Divide.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Dna.tsx b/src/defs/Dna.tsx new file mode 100644 index 000000000..5edd92b13 --- /dev/null +++ b/src/defs/Dna.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Dog.tsx b/src/defs/Dog.tsx new file mode 100644 index 000000000..156a4bc79 --- /dev/null +++ b/src/defs/Dog.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Door.tsx b/src/defs/Door.tsx new file mode 100644 index 000000000..5e1462505 --- /dev/null +++ b/src/defs/Door.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DoorOpen.tsx b/src/defs/DoorOpen.tsx new file mode 100644 index 000000000..013db594e --- /dev/null +++ b/src/defs/DoorOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Dot.tsx b/src/defs/Dot.tsx new file mode 100644 index 000000000..aa81fd21f --- /dev/null +++ b/src/defs/Dot.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotOutline.tsx b/src/defs/DotOutline.tsx new file mode 100644 index 000000000..a4cb1def8 --- /dev/null +++ b/src/defs/DotOutline.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsNine.tsx b/src/defs/DotsNine.tsx new file mode 100644 index 000000000..906fde3be --- /dev/null +++ b/src/defs/DotsNine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsSix.tsx b/src/defs/DotsSix.tsx new file mode 100644 index 000000000..cd92688ff --- /dev/null +++ b/src/defs/DotsSix.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsSixVertical.tsx b/src/defs/DotsSixVertical.tsx new file mode 100644 index 000000000..4f1e22f29 --- /dev/null +++ b/src/defs/DotsSixVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsThree.tsx b/src/defs/DotsThree.tsx new file mode 100644 index 000000000..42c301b9f --- /dev/null +++ b/src/defs/DotsThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsThreeCircle.tsx b/src/defs/DotsThreeCircle.tsx new file mode 100644 index 000000000..0bdf4cba0 --- /dev/null +++ b/src/defs/DotsThreeCircle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsThreeCircleVertical.tsx b/src/defs/DotsThreeCircleVertical.tsx new file mode 100644 index 000000000..e6ecd35d9 --- /dev/null +++ b/src/defs/DotsThreeCircleVertical.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsThreeOutline.tsx b/src/defs/DotsThreeOutline.tsx new file mode 100644 index 000000000..2ebed8d13 --- /dev/null +++ b/src/defs/DotsThreeOutline.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsThreeOutlineVertical.tsx b/src/defs/DotsThreeOutlineVertical.tsx new file mode 100644 index 000000000..d4cf50af2 --- /dev/null +++ b/src/defs/DotsThreeOutlineVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DotsThreeVertical.tsx b/src/defs/DotsThreeVertical.tsx new file mode 100644 index 000000000..a84fa4ea2 --- /dev/null +++ b/src/defs/DotsThreeVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Download.tsx b/src/defs/Download.tsx new file mode 100644 index 000000000..f8fc81c03 --- /dev/null +++ b/src/defs/Download.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DownloadSimple.tsx b/src/defs/DownloadSimple.tsx new file mode 100644 index 000000000..bd2a2666f --- /dev/null +++ b/src/defs/DownloadSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Dress.tsx b/src/defs/Dress.tsx new file mode 100644 index 000000000..5257baffd --- /dev/null +++ b/src/defs/Dress.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DribbbleLogo.tsx b/src/defs/DribbbleLogo.tsx new file mode 100644 index 000000000..99f8a4d89 --- /dev/null +++ b/src/defs/DribbbleLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Drop.tsx b/src/defs/Drop.tsx new file mode 100644 index 000000000..8e56b2e8c --- /dev/null +++ b/src/defs/Drop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DropHalf.tsx b/src/defs/DropHalf.tsx new file mode 100644 index 000000000..efd5942eb --- /dev/null +++ b/src/defs/DropHalf.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DropHalfBottom.tsx b/src/defs/DropHalfBottom.tsx new file mode 100644 index 000000000..25d62064e --- /dev/null +++ b/src/defs/DropHalfBottom.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/DropboxLogo.tsx b/src/defs/DropboxLogo.tsx new file mode 100644 index 000000000..4e33d6c57 --- /dev/null +++ b/src/defs/DropboxLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Ear.tsx b/src/defs/Ear.tsx new file mode 100644 index 000000000..1b1ebe83c --- /dev/null +++ b/src/defs/Ear.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EarSlash.tsx b/src/defs/EarSlash.tsx new file mode 100644 index 000000000..46c658661 --- /dev/null +++ b/src/defs/EarSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Egg.tsx b/src/defs/Egg.tsx new file mode 100644 index 000000000..489614ddd --- /dev/null +++ b/src/defs/Egg.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EggCrack.tsx b/src/defs/EggCrack.tsx new file mode 100644 index 000000000..4e56a32cc --- /dev/null +++ b/src/defs/EggCrack.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Eject.tsx b/src/defs/Eject.tsx new file mode 100644 index 000000000..ae31b15d5 --- /dev/null +++ b/src/defs/Eject.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EjectSimple.tsx b/src/defs/EjectSimple.tsx new file mode 100644 index 000000000..f40c96566 --- /dev/null +++ b/src/defs/EjectSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Elevator.tsx b/src/defs/Elevator.tsx new file mode 100644 index 000000000..0f0f4121b --- /dev/null +++ b/src/defs/Elevator.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Engine.tsx b/src/defs/Engine.tsx new file mode 100644 index 000000000..86613f158 --- /dev/null +++ b/src/defs/Engine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Envelope.tsx b/src/defs/Envelope.tsx new file mode 100644 index 000000000..951ec5597 --- /dev/null +++ b/src/defs/Envelope.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EnvelopeOpen.tsx b/src/defs/EnvelopeOpen.tsx new file mode 100644 index 000000000..b959ff2a6 --- /dev/null +++ b/src/defs/EnvelopeOpen.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EnvelopeSimple.tsx b/src/defs/EnvelopeSimple.tsx new file mode 100644 index 000000000..b91c1bd3e --- /dev/null +++ b/src/defs/EnvelopeSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EnvelopeSimpleOpen.tsx b/src/defs/EnvelopeSimpleOpen.tsx new file mode 100644 index 000000000..8f628c19d --- /dev/null +++ b/src/defs/EnvelopeSimpleOpen.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Equalizer.tsx b/src/defs/Equalizer.tsx new file mode 100644 index 000000000..078f4f5f6 --- /dev/null +++ b/src/defs/Equalizer.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Equals.tsx b/src/defs/Equals.tsx new file mode 100644 index 000000000..26afb513d --- /dev/null +++ b/src/defs/Equals.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Eraser.tsx b/src/defs/Eraser.tsx new file mode 100644 index 000000000..d6deccda5 --- /dev/null +++ b/src/defs/Eraser.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EscalatorDown.tsx b/src/defs/EscalatorDown.tsx new file mode 100644 index 000000000..438454c4a --- /dev/null +++ b/src/defs/EscalatorDown.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EscalatorUp.tsx b/src/defs/EscalatorUp.tsx new file mode 100644 index 000000000..33fafbbc4 --- /dev/null +++ b/src/defs/EscalatorUp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Exam.tsx b/src/defs/Exam.tsx new file mode 100644 index 000000000..28cfb5b1b --- /dev/null +++ b/src/defs/Exam.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Exclude.tsx b/src/defs/Exclude.tsx new file mode 100644 index 000000000..3f22042b2 --- /dev/null +++ b/src/defs/Exclude.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ExcludeSquare.tsx b/src/defs/ExcludeSquare.tsx new file mode 100644 index 000000000..09c4e55c3 --- /dev/null +++ b/src/defs/ExcludeSquare.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Export.tsx b/src/defs/Export.tsx new file mode 100644 index 000000000..9f10899cb --- /dev/null +++ b/src/defs/Export.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Eye.tsx b/src/defs/Eye.tsx new file mode 100644 index 000000000..ae33a2366 --- /dev/null +++ b/src/defs/Eye.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EyeClosed.tsx b/src/defs/EyeClosed.tsx new file mode 100644 index 000000000..5b64c524e --- /dev/null +++ b/src/defs/EyeClosed.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EyeSlash.tsx b/src/defs/EyeSlash.tsx new file mode 100644 index 000000000..98d7d7ee3 --- /dev/null +++ b/src/defs/EyeSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Eyedropper.tsx b/src/defs/Eyedropper.tsx new file mode 100644 index 000000000..58883338f --- /dev/null +++ b/src/defs/Eyedropper.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/EyedropperSample.tsx b/src/defs/EyedropperSample.tsx new file mode 100644 index 000000000..1dd7fad01 --- /dev/null +++ b/src/defs/EyedropperSample.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Eyeglasses.tsx b/src/defs/Eyeglasses.tsx new file mode 100644 index 000000000..5b3effa0f --- /dev/null +++ b/src/defs/Eyeglasses.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FaceMask.tsx b/src/defs/FaceMask.tsx new file mode 100644 index 000000000..d2e1abd9d --- /dev/null +++ b/src/defs/FaceMask.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FacebookLogo.tsx b/src/defs/FacebookLogo.tsx new file mode 100644 index 000000000..6e6d176fe --- /dev/null +++ b/src/defs/FacebookLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Factory.tsx b/src/defs/Factory.tsx new file mode 100644 index 000000000..e8de7dca7 --- /dev/null +++ b/src/defs/Factory.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Faders.tsx b/src/defs/Faders.tsx new file mode 100644 index 000000000..2a0e0aa1d --- /dev/null +++ b/src/defs/Faders.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FadersHorizontal.tsx b/src/defs/FadersHorizontal.tsx new file mode 100644 index 000000000..e4be2873f --- /dev/null +++ b/src/defs/FadersHorizontal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Fan.tsx b/src/defs/Fan.tsx new file mode 100644 index 000000000..f36588b77 --- /dev/null +++ b/src/defs/Fan.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FastForward.tsx b/src/defs/FastForward.tsx new file mode 100644 index 000000000..6ffa10d25 --- /dev/null +++ b/src/defs/FastForward.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FastForwardCircle.tsx b/src/defs/FastForwardCircle.tsx new file mode 100644 index 000000000..7270e0103 --- /dev/null +++ b/src/defs/FastForwardCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Feather.tsx b/src/defs/Feather.tsx new file mode 100644 index 000000000..02fb33b85 --- /dev/null +++ b/src/defs/Feather.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FigmaLogo.tsx b/src/defs/FigmaLogo.tsx new file mode 100644 index 000000000..220f3f97b --- /dev/null +++ b/src/defs/FigmaLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/File.tsx b/src/defs/File.tsx new file mode 100644 index 000000000..09468e5e0 --- /dev/null +++ b/src/defs/File.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileArchive.tsx b/src/defs/FileArchive.tsx new file mode 100644 index 000000000..e96111898 --- /dev/null +++ b/src/defs/FileArchive.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileArrowDown.tsx b/src/defs/FileArrowDown.tsx new file mode 100644 index 000000000..a585c2213 --- /dev/null +++ b/src/defs/FileArrowDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileArrowUp.tsx b/src/defs/FileArrowUp.tsx new file mode 100644 index 000000000..6cb24e6eb --- /dev/null +++ b/src/defs/FileArrowUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileAudio.tsx b/src/defs/FileAudio.tsx new file mode 100644 index 000000000..200a0cc7f --- /dev/null +++ b/src/defs/FileAudio.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileCloud.tsx b/src/defs/FileCloud.tsx new file mode 100644 index 000000000..df96c47de --- /dev/null +++ b/src/defs/FileCloud.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileCode.tsx b/src/defs/FileCode.tsx new file mode 100644 index 000000000..d4ed890ca --- /dev/null +++ b/src/defs/FileCode.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileCss.tsx b/src/defs/FileCss.tsx new file mode 100644 index 000000000..6006bc68d --- /dev/null +++ b/src/defs/FileCss.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileCsv.tsx b/src/defs/FileCsv.tsx new file mode 100644 index 000000000..faad00712 --- /dev/null +++ b/src/defs/FileCsv.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileDashed.tsx b/src/defs/FileDashed.tsx new file mode 100644 index 000000000..8a872a2cb --- /dev/null +++ b/src/defs/FileDashed.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileDoc.tsx b/src/defs/FileDoc.tsx new file mode 100644 index 000000000..41c075a8d --- /dev/null +++ b/src/defs/FileDoc.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileHtml.tsx b/src/defs/FileHtml.tsx new file mode 100644 index 000000000..76c13a063 --- /dev/null +++ b/src/defs/FileHtml.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileImage.tsx b/src/defs/FileImage.tsx new file mode 100644 index 000000000..019ff629c --- /dev/null +++ b/src/defs/FileImage.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileJpg.tsx b/src/defs/FileJpg.tsx new file mode 100644 index 000000000..a33f43578 --- /dev/null +++ b/src/defs/FileJpg.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileJs.tsx b/src/defs/FileJs.tsx new file mode 100644 index 000000000..e760ae197 --- /dev/null +++ b/src/defs/FileJs.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileJsx.tsx b/src/defs/FileJsx.tsx new file mode 100644 index 000000000..cae1b8425 --- /dev/null +++ b/src/defs/FileJsx.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileLock.tsx b/src/defs/FileLock.tsx new file mode 100644 index 000000000..811e71867 --- /dev/null +++ b/src/defs/FileLock.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileMagnifyingGlass.tsx b/src/defs/FileMagnifyingGlass.tsx new file mode 100644 index 000000000..8c66f84a6 --- /dev/null +++ b/src/defs/FileMagnifyingGlass.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileMinus.tsx b/src/defs/FileMinus.tsx new file mode 100644 index 000000000..24fac0059 --- /dev/null +++ b/src/defs/FileMinus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilePdf.tsx b/src/defs/FilePdf.tsx new file mode 100644 index 000000000..8919c4839 --- /dev/null +++ b/src/defs/FilePdf.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilePlus.tsx b/src/defs/FilePlus.tsx new file mode 100644 index 000000000..2c9138b00 --- /dev/null +++ b/src/defs/FilePlus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilePng.tsx b/src/defs/FilePng.tsx new file mode 100644 index 000000000..ead0bb9e4 --- /dev/null +++ b/src/defs/FilePng.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilePpt.tsx b/src/defs/FilePpt.tsx new file mode 100644 index 000000000..4e5668ce8 --- /dev/null +++ b/src/defs/FilePpt.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileRs.tsx b/src/defs/FileRs.tsx new file mode 100644 index 000000000..874477845 --- /dev/null +++ b/src/defs/FileRs.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileSql.tsx b/src/defs/FileSql.tsx new file mode 100644 index 000000000..8423dc6e5 --- /dev/null +++ b/src/defs/FileSql.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileSvg.tsx b/src/defs/FileSvg.tsx new file mode 100644 index 000000000..ff4571f94 --- /dev/null +++ b/src/defs/FileSvg.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileText.tsx b/src/defs/FileText.tsx new file mode 100644 index 000000000..65163854f --- /dev/null +++ b/src/defs/FileText.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileTs.tsx b/src/defs/FileTs.tsx new file mode 100644 index 000000000..38e334a1a --- /dev/null +++ b/src/defs/FileTs.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileTsx.tsx b/src/defs/FileTsx.tsx new file mode 100644 index 000000000..a51803d67 --- /dev/null +++ b/src/defs/FileTsx.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileVideo.tsx b/src/defs/FileVideo.tsx new file mode 100644 index 000000000..813b42fc7 --- /dev/null +++ b/src/defs/FileVideo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileVue.tsx b/src/defs/FileVue.tsx new file mode 100644 index 000000000..138d9fd9a --- /dev/null +++ b/src/defs/FileVue.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileX.tsx b/src/defs/FileX.tsx new file mode 100644 index 000000000..4d8085857 --- /dev/null +++ b/src/defs/FileX.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileXls.tsx b/src/defs/FileXls.tsx new file mode 100644 index 000000000..e3fd8d32a --- /dev/null +++ b/src/defs/FileXls.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FileZip.tsx b/src/defs/FileZip.tsx new file mode 100644 index 000000000..a5b09001a --- /dev/null +++ b/src/defs/FileZip.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Files.tsx b/src/defs/Files.tsx new file mode 100644 index 000000000..ea05d6924 --- /dev/null +++ b/src/defs/Files.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilmReel.tsx b/src/defs/FilmReel.tsx new file mode 100644 index 000000000..7894791b2 --- /dev/null +++ b/src/defs/FilmReel.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilmScript.tsx b/src/defs/FilmScript.tsx new file mode 100644 index 000000000..24157420b --- /dev/null +++ b/src/defs/FilmScript.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilmSlate.tsx b/src/defs/FilmSlate.tsx new file mode 100644 index 000000000..4ca85e909 --- /dev/null +++ b/src/defs/FilmSlate.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FilmStrip.tsx b/src/defs/FilmStrip.tsx new file mode 100644 index 000000000..389d17d5a --- /dev/null +++ b/src/defs/FilmStrip.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Fingerprint.tsx b/src/defs/Fingerprint.tsx new file mode 100644 index 000000000..ff294a8f0 --- /dev/null +++ b/src/defs/Fingerprint.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FingerprintSimple.tsx b/src/defs/FingerprintSimple.tsx new file mode 100644 index 000000000..b1f8e8f33 --- /dev/null +++ b/src/defs/FingerprintSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FinnTheHuman.tsx b/src/defs/FinnTheHuman.tsx new file mode 100644 index 000000000..935078c68 --- /dev/null +++ b/src/defs/FinnTheHuman.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Fire.tsx b/src/defs/Fire.tsx new file mode 100644 index 000000000..326cbbbbb --- /dev/null +++ b/src/defs/Fire.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FireExtinguisher.tsx b/src/defs/FireExtinguisher.tsx new file mode 100644 index 000000000..6e9a7d091 --- /dev/null +++ b/src/defs/FireExtinguisher.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FireSimple.tsx b/src/defs/FireSimple.tsx new file mode 100644 index 000000000..b229b9991 --- /dev/null +++ b/src/defs/FireSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FirstAid.tsx b/src/defs/FirstAid.tsx new file mode 100644 index 000000000..278f793b5 --- /dev/null +++ b/src/defs/FirstAid.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FirstAidKit.tsx b/src/defs/FirstAidKit.tsx new file mode 100644 index 000000000..469007741 --- /dev/null +++ b/src/defs/FirstAidKit.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Fish.tsx b/src/defs/Fish.tsx new file mode 100644 index 000000000..0da35d7aa --- /dev/null +++ b/src/defs/Fish.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FishSimple.tsx b/src/defs/FishSimple.tsx new file mode 100644 index 000000000..88fba4d95 --- /dev/null +++ b/src/defs/FishSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Flag.tsx b/src/defs/Flag.tsx new file mode 100644 index 000000000..629995b65 --- /dev/null +++ b/src/defs/Flag.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FlagBanner.tsx b/src/defs/FlagBanner.tsx new file mode 100644 index 000000000..2bc572722 --- /dev/null +++ b/src/defs/FlagBanner.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FlagCheckered.tsx b/src/defs/FlagCheckered.tsx new file mode 100644 index 000000000..8cce2858f --- /dev/null +++ b/src/defs/FlagCheckered.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FlagPennant.tsx b/src/defs/FlagPennant.tsx new file mode 100644 index 000000000..934979ce1 --- /dev/null +++ b/src/defs/FlagPennant.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Flame.tsx b/src/defs/Flame.tsx new file mode 100644 index 000000000..3f2e59908 --- /dev/null +++ b/src/defs/Flame.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Flashlight.tsx b/src/defs/Flashlight.tsx new file mode 100644 index 000000000..aaec76e44 --- /dev/null +++ b/src/defs/Flashlight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Flask.tsx b/src/defs/Flask.tsx new file mode 100644 index 000000000..d5113cb79 --- /dev/null +++ b/src/defs/Flask.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FloppyDisk.tsx b/src/defs/FloppyDisk.tsx new file mode 100644 index 000000000..3b561499c --- /dev/null +++ b/src/defs/FloppyDisk.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FloppyDiskBack.tsx b/src/defs/FloppyDiskBack.tsx new file mode 100644 index 000000000..72c09c106 --- /dev/null +++ b/src/defs/FloppyDiskBack.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FlowArrow.tsx b/src/defs/FlowArrow.tsx new file mode 100644 index 000000000..e35e5a740 --- /dev/null +++ b/src/defs/FlowArrow.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Flower.tsx b/src/defs/Flower.tsx new file mode 100644 index 000000000..2f3d264d4 --- /dev/null +++ b/src/defs/Flower.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FlowerLotus.tsx b/src/defs/FlowerLotus.tsx new file mode 100644 index 000000000..14ca83320 --- /dev/null +++ b/src/defs/FlowerLotus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FlowerTulip.tsx b/src/defs/FlowerTulip.tsx new file mode 100644 index 000000000..bdbbce65c --- /dev/null +++ b/src/defs/FlowerTulip.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FlyingSaucer.tsx b/src/defs/FlyingSaucer.tsx new file mode 100644 index 000000000..8561e24e1 --- /dev/null +++ b/src/defs/FlyingSaucer.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Folder.tsx b/src/defs/Folder.tsx new file mode 100644 index 000000000..d78e20492 --- /dev/null +++ b/src/defs/Folder.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderDashed.tsx b/src/defs/FolderDashed.tsx new file mode 100644 index 000000000..45800293f --- /dev/null +++ b/src/defs/FolderDashed.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderLock.tsx b/src/defs/FolderLock.tsx new file mode 100644 index 000000000..a5ce5be71 --- /dev/null +++ b/src/defs/FolderLock.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderMinus.tsx b/src/defs/FolderMinus.tsx new file mode 100644 index 000000000..5f75a8c1d --- /dev/null +++ b/src/defs/FolderMinus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderNotch.tsx b/src/defs/FolderNotch.tsx new file mode 100644 index 000000000..5a25e1664 --- /dev/null +++ b/src/defs/FolderNotch.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderNotchMinus.tsx b/src/defs/FolderNotchMinus.tsx new file mode 100644 index 000000000..f6df918be --- /dev/null +++ b/src/defs/FolderNotchMinus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderNotchOpen.tsx b/src/defs/FolderNotchOpen.tsx new file mode 100644 index 000000000..52bb5379a --- /dev/null +++ b/src/defs/FolderNotchOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderNotchPlus.tsx b/src/defs/FolderNotchPlus.tsx new file mode 100644 index 000000000..b0658d5f4 --- /dev/null +++ b/src/defs/FolderNotchPlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderOpen.tsx b/src/defs/FolderOpen.tsx new file mode 100644 index 000000000..00984582b --- /dev/null +++ b/src/defs/FolderOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderPlus.tsx b/src/defs/FolderPlus.tsx new file mode 100644 index 000000000..69fb51fc5 --- /dev/null +++ b/src/defs/FolderPlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderSimple.tsx b/src/defs/FolderSimple.tsx new file mode 100644 index 000000000..87a156c6a --- /dev/null +++ b/src/defs/FolderSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderSimpleDashed.tsx b/src/defs/FolderSimpleDashed.tsx new file mode 100644 index 000000000..43ecd7fb3 --- /dev/null +++ b/src/defs/FolderSimpleDashed.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderSimpleLock.tsx b/src/defs/FolderSimpleLock.tsx new file mode 100644 index 000000000..a311f9604 --- /dev/null +++ b/src/defs/FolderSimpleLock.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderSimpleMinus.tsx b/src/defs/FolderSimpleMinus.tsx new file mode 100644 index 000000000..5e0ca5721 --- /dev/null +++ b/src/defs/FolderSimpleMinus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderSimplePlus.tsx b/src/defs/FolderSimplePlus.tsx new file mode 100644 index 000000000..b98fa0546 --- /dev/null +++ b/src/defs/FolderSimplePlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderSimpleStar.tsx b/src/defs/FolderSimpleStar.tsx new file mode 100644 index 000000000..a0ae97e1a --- /dev/null +++ b/src/defs/FolderSimpleStar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderSimpleUser.tsx b/src/defs/FolderSimpleUser.tsx new file mode 100644 index 000000000..dc53f80e2 --- /dev/null +++ b/src/defs/FolderSimpleUser.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderStar.tsx b/src/defs/FolderStar.tsx new file mode 100644 index 000000000..42e976b36 --- /dev/null +++ b/src/defs/FolderStar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FolderUser.tsx b/src/defs/FolderUser.tsx new file mode 100644 index 000000000..536ad1c61 --- /dev/null +++ b/src/defs/FolderUser.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Folders.tsx b/src/defs/Folders.tsx new file mode 100644 index 000000000..d1ef81813 --- /dev/null +++ b/src/defs/Folders.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Football.tsx b/src/defs/Football.tsx new file mode 100644 index 000000000..b9f4cd944 --- /dev/null +++ b/src/defs/Football.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Footprints.tsx b/src/defs/Footprints.tsx new file mode 100644 index 000000000..5d35077c7 --- /dev/null +++ b/src/defs/Footprints.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ForkKnife.tsx b/src/defs/ForkKnife.tsx new file mode 100644 index 000000000..c0be2ca67 --- /dev/null +++ b/src/defs/ForkKnife.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FrameCorners.tsx b/src/defs/FrameCorners.tsx new file mode 100644 index 000000000..6849f00b3 --- /dev/null +++ b/src/defs/FrameCorners.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FramerLogo.tsx b/src/defs/FramerLogo.tsx new file mode 100644 index 000000000..2562e20db --- /dev/null +++ b/src/defs/FramerLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Function.tsx b/src/defs/Function.tsx new file mode 100644 index 000000000..ffc521863 --- /dev/null +++ b/src/defs/Function.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Funnel.tsx b/src/defs/Funnel.tsx new file mode 100644 index 000000000..43aea2b35 --- /dev/null +++ b/src/defs/Funnel.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/FunnelSimple.tsx b/src/defs/FunnelSimple.tsx new file mode 100644 index 000000000..5dabc5d96 --- /dev/null +++ b/src/defs/FunnelSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GameController.tsx b/src/defs/GameController.tsx new file mode 100644 index 000000000..f0513daaf --- /dev/null +++ b/src/defs/GameController.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Garage.tsx b/src/defs/Garage.tsx new file mode 100644 index 000000000..73cffe67a --- /dev/null +++ b/src/defs/Garage.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GasCan.tsx b/src/defs/GasCan.tsx new file mode 100644 index 000000000..6ba45890f --- /dev/null +++ b/src/defs/GasCan.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GasPump.tsx b/src/defs/GasPump.tsx new file mode 100644 index 000000000..3155f6d63 --- /dev/null +++ b/src/defs/GasPump.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Gauge.tsx b/src/defs/Gauge.tsx new file mode 100644 index 000000000..3320d6631 --- /dev/null +++ b/src/defs/Gauge.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Gavel.tsx b/src/defs/Gavel.tsx new file mode 100644 index 000000000..9c2acd191 --- /dev/null +++ b/src/defs/Gavel.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Gear.tsx b/src/defs/Gear.tsx new file mode 100644 index 000000000..fc5296c3b --- /dev/null +++ b/src/defs/Gear.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GearFine.tsx b/src/defs/GearFine.tsx new file mode 100644 index 000000000..b2efa9258 --- /dev/null +++ b/src/defs/GearFine.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GearSix.tsx b/src/defs/GearSix.tsx new file mode 100644 index 000000000..af6074318 --- /dev/null +++ b/src/defs/GearSix.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GenderFemale.tsx b/src/defs/GenderFemale.tsx new file mode 100644 index 000000000..59309319e --- /dev/null +++ b/src/defs/GenderFemale.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GenderIntersex.tsx b/src/defs/GenderIntersex.tsx new file mode 100644 index 000000000..42abc45a5 --- /dev/null +++ b/src/defs/GenderIntersex.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GenderMale.tsx b/src/defs/GenderMale.tsx new file mode 100644 index 000000000..b73953e0a --- /dev/null +++ b/src/defs/GenderMale.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GenderNeuter.tsx b/src/defs/GenderNeuter.tsx new file mode 100644 index 000000000..86ca5ef44 --- /dev/null +++ b/src/defs/GenderNeuter.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GenderNonbinary.tsx b/src/defs/GenderNonbinary.tsx new file mode 100644 index 000000000..daf82d2d9 --- /dev/null +++ b/src/defs/GenderNonbinary.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GenderTransgender.tsx b/src/defs/GenderTransgender.tsx new file mode 100644 index 000000000..30f95f02b --- /dev/null +++ b/src/defs/GenderTransgender.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Ghost.tsx b/src/defs/Ghost.tsx new file mode 100644 index 000000000..cdd52f5b1 --- /dev/null +++ b/src/defs/Ghost.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Gif.tsx b/src/defs/Gif.tsx new file mode 100644 index 000000000..1aff16544 --- /dev/null +++ b/src/defs/Gif.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Gift.tsx b/src/defs/Gift.tsx new file mode 100644 index 000000000..f7f537df1 --- /dev/null +++ b/src/defs/Gift.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitBranch.tsx b/src/defs/GitBranch.tsx new file mode 100644 index 000000000..26dc7b328 --- /dev/null +++ b/src/defs/GitBranch.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitCommit.tsx b/src/defs/GitCommit.tsx new file mode 100644 index 000000000..557eeaf86 --- /dev/null +++ b/src/defs/GitCommit.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitDiff.tsx b/src/defs/GitDiff.tsx new file mode 100644 index 000000000..5b1db3a78 --- /dev/null +++ b/src/defs/GitDiff.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitFork.tsx b/src/defs/GitFork.tsx new file mode 100644 index 000000000..2ec3b674f --- /dev/null +++ b/src/defs/GitFork.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitMerge.tsx b/src/defs/GitMerge.tsx new file mode 100644 index 000000000..06d291999 --- /dev/null +++ b/src/defs/GitMerge.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitPullRequest.tsx b/src/defs/GitPullRequest.tsx new file mode 100644 index 000000000..510b74de2 --- /dev/null +++ b/src/defs/GitPullRequest.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GithubLogo.tsx b/src/defs/GithubLogo.tsx new file mode 100644 index 000000000..118324fab --- /dev/null +++ b/src/defs/GithubLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitlabLogo.tsx b/src/defs/GitlabLogo.tsx new file mode 100644 index 000000000..3677896e4 --- /dev/null +++ b/src/defs/GitlabLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GitlabLogoSimple.tsx b/src/defs/GitlabLogoSimple.tsx new file mode 100644 index 000000000..9af3a15f7 --- /dev/null +++ b/src/defs/GitlabLogoSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Globe.tsx b/src/defs/Globe.tsx new file mode 100644 index 000000000..43c6cda0f --- /dev/null +++ b/src/defs/Globe.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GlobeHemisphereEast.tsx b/src/defs/GlobeHemisphereEast.tsx new file mode 100644 index 000000000..2c1e8c0f2 --- /dev/null +++ b/src/defs/GlobeHemisphereEast.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GlobeHemisphereWest.tsx b/src/defs/GlobeHemisphereWest.tsx new file mode 100644 index 000000000..d2582a9a4 --- /dev/null +++ b/src/defs/GlobeHemisphereWest.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GlobeSimple.tsx b/src/defs/GlobeSimple.tsx new file mode 100644 index 000000000..7ab552050 --- /dev/null +++ b/src/defs/GlobeSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GlobeStand.tsx b/src/defs/GlobeStand.tsx new file mode 100644 index 000000000..a04722656 --- /dev/null +++ b/src/defs/GlobeStand.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Goggles.tsx b/src/defs/Goggles.tsx new file mode 100644 index 000000000..4015950b1 --- /dev/null +++ b/src/defs/Goggles.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GoodreadsLogo.tsx b/src/defs/GoodreadsLogo.tsx new file mode 100644 index 000000000..aaa72fa17 --- /dev/null +++ b/src/defs/GoodreadsLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GoogleCardboardLogo.tsx b/src/defs/GoogleCardboardLogo.tsx new file mode 100644 index 000000000..ac1cba777 --- /dev/null +++ b/src/defs/GoogleCardboardLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GoogleChromeLogo.tsx b/src/defs/GoogleChromeLogo.tsx new file mode 100644 index 000000000..6c0d45fef --- /dev/null +++ b/src/defs/GoogleChromeLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GoogleDriveLogo.tsx b/src/defs/GoogleDriveLogo.tsx new file mode 100644 index 000000000..603d99d52 --- /dev/null +++ b/src/defs/GoogleDriveLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GoogleLogo.tsx b/src/defs/GoogleLogo.tsx new file mode 100644 index 000000000..e434ee754 --- /dev/null +++ b/src/defs/GoogleLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GooglePhotosLogo.tsx b/src/defs/GooglePhotosLogo.tsx new file mode 100644 index 000000000..d01c610ea --- /dev/null +++ b/src/defs/GooglePhotosLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GooglePlayLogo.tsx b/src/defs/GooglePlayLogo.tsx new file mode 100644 index 000000000..879dd3be1 --- /dev/null +++ b/src/defs/GooglePlayLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GooglePodcastsLogo.tsx b/src/defs/GooglePodcastsLogo.tsx new file mode 100644 index 000000000..f6cdfa7fa --- /dev/null +++ b/src/defs/GooglePodcastsLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Gradient.tsx b/src/defs/Gradient.tsx new file mode 100644 index 000000000..cf18eff07 --- /dev/null +++ b/src/defs/Gradient.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GraduationCap.tsx b/src/defs/GraduationCap.tsx new file mode 100644 index 000000000..d43908ddc --- /dev/null +++ b/src/defs/GraduationCap.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Grains.tsx b/src/defs/Grains.tsx new file mode 100644 index 000000000..b693ce8cb --- /dev/null +++ b/src/defs/Grains.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GrainsSlash.tsx b/src/defs/GrainsSlash.tsx new file mode 100644 index 000000000..c4db2d7a7 --- /dev/null +++ b/src/defs/GrainsSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Graph.tsx b/src/defs/Graph.tsx new file mode 100644 index 000000000..ddd52ac12 --- /dev/null +++ b/src/defs/Graph.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GridFour.tsx b/src/defs/GridFour.tsx new file mode 100644 index 000000000..e4015d21f --- /dev/null +++ b/src/defs/GridFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/GridNine.tsx b/src/defs/GridNine.tsx new file mode 100644 index 000000000..d5ffa3f9e --- /dev/null +++ b/src/defs/GridNine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Guitar.tsx b/src/defs/Guitar.tsx new file mode 100644 index 000000000..665ccf924 --- /dev/null +++ b/src/defs/Guitar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Hamburger.tsx b/src/defs/Hamburger.tsx new file mode 100644 index 000000000..430188fbb --- /dev/null +++ b/src/defs/Hamburger.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Hammer.tsx b/src/defs/Hammer.tsx new file mode 100644 index 000000000..4421d6a79 --- /dev/null +++ b/src/defs/Hammer.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Hand.tsx b/src/defs/Hand.tsx new file mode 100644 index 000000000..a42c9380f --- /dev/null +++ b/src/defs/Hand.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandCoins.tsx b/src/defs/HandCoins.tsx new file mode 100644 index 000000000..613cb56d7 --- /dev/null +++ b/src/defs/HandCoins.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandEye.tsx b/src/defs/HandEye.tsx new file mode 100644 index 000000000..4dab76f88 --- /dev/null +++ b/src/defs/HandEye.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandFist.tsx b/src/defs/HandFist.tsx new file mode 100644 index 000000000..c9670d1be --- /dev/null +++ b/src/defs/HandFist.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandGrabbing.tsx b/src/defs/HandGrabbing.tsx new file mode 100644 index 000000000..56ad1c902 --- /dev/null +++ b/src/defs/HandGrabbing.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandHeart.tsx b/src/defs/HandHeart.tsx new file mode 100644 index 000000000..2e98cc5c4 --- /dev/null +++ b/src/defs/HandHeart.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandPalm.tsx b/src/defs/HandPalm.tsx new file mode 100644 index 000000000..0efd65797 --- /dev/null +++ b/src/defs/HandPalm.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandPointing.tsx b/src/defs/HandPointing.tsx new file mode 100644 index 000000000..ece75649b --- /dev/null +++ b/src/defs/HandPointing.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandSoap.tsx b/src/defs/HandSoap.tsx new file mode 100644 index 000000000..ae61a8a7e --- /dev/null +++ b/src/defs/HandSoap.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandSwipeLeft.tsx b/src/defs/HandSwipeLeft.tsx new file mode 100644 index 000000000..fcca77de9 --- /dev/null +++ b/src/defs/HandSwipeLeft.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandSwipeRight.tsx b/src/defs/HandSwipeRight.tsx new file mode 100644 index 000000000..dbb868a21 --- /dev/null +++ b/src/defs/HandSwipeRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandTap.tsx b/src/defs/HandTap.tsx new file mode 100644 index 000000000..da1fd8d6a --- /dev/null +++ b/src/defs/HandTap.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandWaving.tsx b/src/defs/HandWaving.tsx new file mode 100644 index 000000000..0d43cb7cb --- /dev/null +++ b/src/defs/HandWaving.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Handbag.tsx b/src/defs/Handbag.tsx new file mode 100644 index 000000000..1d10fd3ce --- /dev/null +++ b/src/defs/Handbag.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandbagSimple.tsx b/src/defs/HandbagSimple.tsx new file mode 100644 index 000000000..29f022b24 --- /dev/null +++ b/src/defs/HandbagSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandsClapping.tsx b/src/defs/HandsClapping.tsx new file mode 100644 index 000000000..ee45258b9 --- /dev/null +++ b/src/defs/HandsClapping.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HandsPraying.tsx b/src/defs/HandsPraying.tsx new file mode 100644 index 000000000..6be5cc76d --- /dev/null +++ b/src/defs/HandsPraying.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Handshake.tsx b/src/defs/Handshake.tsx new file mode 100644 index 000000000..96b93ff9b --- /dev/null +++ b/src/defs/Handshake.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HardDrive.tsx b/src/defs/HardDrive.tsx new file mode 100644 index 000000000..52de25516 --- /dev/null +++ b/src/defs/HardDrive.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HardDrives.tsx b/src/defs/HardDrives.tsx new file mode 100644 index 000000000..b728378a5 --- /dev/null +++ b/src/defs/HardDrives.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Hash.tsx b/src/defs/Hash.tsx new file mode 100644 index 000000000..3995e6b1e --- /dev/null +++ b/src/defs/Hash.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HashStraight.tsx b/src/defs/HashStraight.tsx new file mode 100644 index 000000000..420eb0fc3 --- /dev/null +++ b/src/defs/HashStraight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Headlights.tsx b/src/defs/Headlights.tsx new file mode 100644 index 000000000..c4785e016 --- /dev/null +++ b/src/defs/Headlights.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Headphones.tsx b/src/defs/Headphones.tsx new file mode 100644 index 000000000..7b4aa2faf --- /dev/null +++ b/src/defs/Headphones.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Headset.tsx b/src/defs/Headset.tsx new file mode 100644 index 000000000..1330f3c47 --- /dev/null +++ b/src/defs/Headset.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Heart.tsx b/src/defs/Heart.tsx new file mode 100644 index 000000000..338475d58 --- /dev/null +++ b/src/defs/Heart.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HeartBreak.tsx b/src/defs/HeartBreak.tsx new file mode 100644 index 000000000..11e2c2231 --- /dev/null +++ b/src/defs/HeartBreak.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HeartHalf.tsx b/src/defs/HeartHalf.tsx new file mode 100644 index 000000000..63aab1326 --- /dev/null +++ b/src/defs/HeartHalf.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HeartStraight.tsx b/src/defs/HeartStraight.tsx new file mode 100644 index 000000000..629976b22 --- /dev/null +++ b/src/defs/HeartStraight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HeartStraightBreak.tsx b/src/defs/HeartStraightBreak.tsx new file mode 100644 index 000000000..528b6d399 --- /dev/null +++ b/src/defs/HeartStraightBreak.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Heartbeat.tsx b/src/defs/Heartbeat.tsx new file mode 100644 index 000000000..a3d2c3f1b --- /dev/null +++ b/src/defs/Heartbeat.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Hexagon.tsx b/src/defs/Hexagon.tsx new file mode 100644 index 000000000..409d6aeff --- /dev/null +++ b/src/defs/Hexagon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HighHeel.tsx b/src/defs/HighHeel.tsx new file mode 100644 index 000000000..f013206ef --- /dev/null +++ b/src/defs/HighHeel.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HighlighterCircle.tsx b/src/defs/HighlighterCircle.tsx new file mode 100644 index 000000000..f86c01db4 --- /dev/null +++ b/src/defs/HighlighterCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Hoodie.tsx b/src/defs/Hoodie.tsx new file mode 100644 index 000000000..907dff494 --- /dev/null +++ b/src/defs/Hoodie.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Horse.tsx b/src/defs/Horse.tsx new file mode 100644 index 000000000..5ed43e08a --- /dev/null +++ b/src/defs/Horse.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Hourglass.tsx b/src/defs/Hourglass.tsx new file mode 100644 index 000000000..5fe65fb9d --- /dev/null +++ b/src/defs/Hourglass.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HourglassHigh.tsx b/src/defs/HourglassHigh.tsx new file mode 100644 index 000000000..4a132e8f4 --- /dev/null +++ b/src/defs/HourglassHigh.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HourglassLow.tsx b/src/defs/HourglassLow.tsx new file mode 100644 index 000000000..ab7087372 --- /dev/null +++ b/src/defs/HourglassLow.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HourglassMedium.tsx b/src/defs/HourglassMedium.tsx new file mode 100644 index 000000000..b0383e3a7 --- /dev/null +++ b/src/defs/HourglassMedium.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HourglassSimple.tsx b/src/defs/HourglassSimple.tsx new file mode 100644 index 000000000..1ee43b882 --- /dev/null +++ b/src/defs/HourglassSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HourglassSimpleHigh.tsx b/src/defs/HourglassSimpleHigh.tsx new file mode 100644 index 000000000..24aa9860e --- /dev/null +++ b/src/defs/HourglassSimpleHigh.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HourglassSimpleLow.tsx b/src/defs/HourglassSimpleLow.tsx new file mode 100644 index 000000000..b7dca5534 --- /dev/null +++ b/src/defs/HourglassSimpleLow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HourglassSimpleMedium.tsx b/src/defs/HourglassSimpleMedium.tsx new file mode 100644 index 000000000..ef1246c20 --- /dev/null +++ b/src/defs/HourglassSimpleMedium.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/House.tsx b/src/defs/House.tsx new file mode 100644 index 000000000..8bfde8c46 --- /dev/null +++ b/src/defs/House.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HouseLine.tsx b/src/defs/HouseLine.tsx new file mode 100644 index 000000000..56beed288 --- /dev/null +++ b/src/defs/HouseLine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/HouseSimple.tsx b/src/defs/HouseSimple.tsx new file mode 100644 index 000000000..eed17764d --- /dev/null +++ b/src/defs/HouseSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/IceCream.tsx b/src/defs/IceCream.tsx new file mode 100644 index 000000000..c953701ce --- /dev/null +++ b/src/defs/IceCream.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/IdentificationBadge.tsx b/src/defs/IdentificationBadge.tsx new file mode 100644 index 000000000..e9b3ab68e --- /dev/null +++ b/src/defs/IdentificationBadge.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/IdentificationCard.tsx b/src/defs/IdentificationCard.tsx new file mode 100644 index 000000000..af64e07c0 --- /dev/null +++ b/src/defs/IdentificationCard.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Image.tsx b/src/defs/Image.tsx new file mode 100644 index 000000000..5ec4e9c3d --- /dev/null +++ b/src/defs/Image.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ImageSquare.tsx b/src/defs/ImageSquare.tsx new file mode 100644 index 000000000..596459431 --- /dev/null +++ b/src/defs/ImageSquare.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Images.tsx b/src/defs/Images.tsx new file mode 100644 index 000000000..26fbc279b --- /dev/null +++ b/src/defs/Images.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ImagesSquare.tsx b/src/defs/ImagesSquare.tsx new file mode 100644 index 000000000..823d50f7d --- /dev/null +++ b/src/defs/ImagesSquare.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Infinity.tsx b/src/defs/Infinity.tsx new file mode 100644 index 000000000..7d7232ac2 --- /dev/null +++ b/src/defs/Infinity.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Info.tsx b/src/defs/Info.tsx new file mode 100644 index 000000000..be7756ace --- /dev/null +++ b/src/defs/Info.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/InstagramLogo.tsx b/src/defs/InstagramLogo.tsx new file mode 100644 index 000000000..35fbc0106 --- /dev/null +++ b/src/defs/InstagramLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Intersect.tsx b/src/defs/Intersect.tsx new file mode 100644 index 000000000..97c25a177 --- /dev/null +++ b/src/defs/Intersect.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/IntersectSquare.tsx b/src/defs/IntersectSquare.tsx new file mode 100644 index 000000000..69d22e353 --- /dev/null +++ b/src/defs/IntersectSquare.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/IntersectThree.tsx b/src/defs/IntersectThree.tsx new file mode 100644 index 000000000..111c3a4e9 --- /dev/null +++ b/src/defs/IntersectThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Jeep.tsx b/src/defs/Jeep.tsx new file mode 100644 index 000000000..702f4731d --- /dev/null +++ b/src/defs/Jeep.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Kanban.tsx b/src/defs/Kanban.tsx new file mode 100644 index 000000000..57764bcf1 --- /dev/null +++ b/src/defs/Kanban.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Key.tsx b/src/defs/Key.tsx new file mode 100644 index 000000000..31be95b7b --- /dev/null +++ b/src/defs/Key.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/KeyReturn.tsx b/src/defs/KeyReturn.tsx new file mode 100644 index 000000000..fc390b55e --- /dev/null +++ b/src/defs/KeyReturn.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Keyboard.tsx b/src/defs/Keyboard.tsx new file mode 100644 index 000000000..6100edcf8 --- /dev/null +++ b/src/defs/Keyboard.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Keyhole.tsx b/src/defs/Keyhole.tsx new file mode 100644 index 000000000..bc4975055 --- /dev/null +++ b/src/defs/Keyhole.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Knife.tsx b/src/defs/Knife.tsx new file mode 100644 index 000000000..cdba91a9a --- /dev/null +++ b/src/defs/Knife.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Ladder.tsx b/src/defs/Ladder.tsx new file mode 100644 index 000000000..a366ec3e0 --- /dev/null +++ b/src/defs/Ladder.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LadderSimple.tsx b/src/defs/LadderSimple.tsx new file mode 100644 index 000000000..c8a1d7bd7 --- /dev/null +++ b/src/defs/LadderSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Lamp.tsx b/src/defs/Lamp.tsx new file mode 100644 index 000000000..dcbcc1934 --- /dev/null +++ b/src/defs/Lamp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Laptop.tsx b/src/defs/Laptop.tsx new file mode 100644 index 000000000..06ef5c544 --- /dev/null +++ b/src/defs/Laptop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Layout.tsx b/src/defs/Layout.tsx new file mode 100644 index 000000000..76962e301 --- /dev/null +++ b/src/defs/Layout.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Leaf.tsx b/src/defs/Leaf.tsx new file mode 100644 index 000000000..5be727807 --- /dev/null +++ b/src/defs/Leaf.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Lifebuoy.tsx b/src/defs/Lifebuoy.tsx new file mode 100644 index 000000000..c8813633c --- /dev/null +++ b/src/defs/Lifebuoy.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Lightbulb.tsx b/src/defs/Lightbulb.tsx new file mode 100644 index 000000000..4039b30c2 --- /dev/null +++ b/src/defs/Lightbulb.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LightbulbFilament.tsx b/src/defs/LightbulbFilament.tsx new file mode 100644 index 000000000..6a8cc7743 --- /dev/null +++ b/src/defs/LightbulbFilament.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Lighthouse.tsx b/src/defs/Lighthouse.tsx new file mode 100644 index 000000000..dc3f4f63b --- /dev/null +++ b/src/defs/Lighthouse.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Lightning.tsx b/src/defs/Lightning.tsx new file mode 100644 index 000000000..7f4a42bc5 --- /dev/null +++ b/src/defs/Lightning.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LightningA.tsx b/src/defs/LightningA.tsx new file mode 100644 index 000000000..e616dbda2 --- /dev/null +++ b/src/defs/LightningA.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LightningSlash.tsx b/src/defs/LightningSlash.tsx new file mode 100644 index 000000000..fb508f7b9 --- /dev/null +++ b/src/defs/LightningSlash.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LineSegment.tsx b/src/defs/LineSegment.tsx new file mode 100644 index 000000000..f0ce7b199 --- /dev/null +++ b/src/defs/LineSegment.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LineSegments.tsx b/src/defs/LineSegments.tsx new file mode 100644 index 000000000..3394912f3 --- /dev/null +++ b/src/defs/LineSegments.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Link.tsx b/src/defs/Link.tsx new file mode 100644 index 000000000..237abdcf9 --- /dev/null +++ b/src/defs/Link.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LinkBreak.tsx b/src/defs/LinkBreak.tsx new file mode 100644 index 000000000..8cd0dfe26 --- /dev/null +++ b/src/defs/LinkBreak.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LinkSimple.tsx b/src/defs/LinkSimple.tsx new file mode 100644 index 000000000..3289fb664 --- /dev/null +++ b/src/defs/LinkSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LinkSimpleBreak.tsx b/src/defs/LinkSimpleBreak.tsx new file mode 100644 index 000000000..613fd88d8 --- /dev/null +++ b/src/defs/LinkSimpleBreak.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LinkSimpleHorizontal.tsx b/src/defs/LinkSimpleHorizontal.tsx new file mode 100644 index 000000000..711184731 --- /dev/null +++ b/src/defs/LinkSimpleHorizontal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LinkSimpleHorizontalBreak.tsx b/src/defs/LinkSimpleHorizontalBreak.tsx new file mode 100644 index 000000000..06ad5e9c1 --- /dev/null +++ b/src/defs/LinkSimpleHorizontalBreak.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LinkedinLogo.tsx b/src/defs/LinkedinLogo.tsx new file mode 100644 index 000000000..1a8596dfc --- /dev/null +++ b/src/defs/LinkedinLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LinuxLogo.tsx b/src/defs/LinuxLogo.tsx new file mode 100644 index 000000000..af15e5c39 --- /dev/null +++ b/src/defs/LinuxLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/List.tsx b/src/defs/List.tsx new file mode 100644 index 000000000..52e2203fa --- /dev/null +++ b/src/defs/List.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ListBullets.tsx b/src/defs/ListBullets.tsx new file mode 100644 index 000000000..27635945c --- /dev/null +++ b/src/defs/ListBullets.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ListChecks.tsx b/src/defs/ListChecks.tsx new file mode 100644 index 000000000..c24046605 --- /dev/null +++ b/src/defs/ListChecks.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ListDashes.tsx b/src/defs/ListDashes.tsx new file mode 100644 index 000000000..295f43806 --- /dev/null +++ b/src/defs/ListDashes.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ListMagnifyingGlass.tsx b/src/defs/ListMagnifyingGlass.tsx new file mode 100644 index 000000000..82644492a --- /dev/null +++ b/src/defs/ListMagnifyingGlass.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ListNumbers.tsx b/src/defs/ListNumbers.tsx new file mode 100644 index 000000000..4a34933c3 --- /dev/null +++ b/src/defs/ListNumbers.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ListPlus.tsx b/src/defs/ListPlus.tsx new file mode 100644 index 000000000..65e1fce74 --- /dev/null +++ b/src/defs/ListPlus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Lock.tsx b/src/defs/Lock.tsx new file mode 100644 index 000000000..7f020e55a --- /dev/null +++ b/src/defs/Lock.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LockKey.tsx b/src/defs/LockKey.tsx new file mode 100644 index 000000000..ca9229799 --- /dev/null +++ b/src/defs/LockKey.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LockKeyOpen.tsx b/src/defs/LockKeyOpen.tsx new file mode 100644 index 000000000..159c7c5d0 --- /dev/null +++ b/src/defs/LockKeyOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LockLaminated.tsx b/src/defs/LockLaminated.tsx new file mode 100644 index 000000000..db69aba6a --- /dev/null +++ b/src/defs/LockLaminated.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LockLaminatedOpen.tsx b/src/defs/LockLaminatedOpen.tsx new file mode 100644 index 000000000..2f4c4a6c4 --- /dev/null +++ b/src/defs/LockLaminatedOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LockOpen.tsx b/src/defs/LockOpen.tsx new file mode 100644 index 000000000..77a45477f --- /dev/null +++ b/src/defs/LockOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LockSimple.tsx b/src/defs/LockSimple.tsx new file mode 100644 index 000000000..11034ed1c --- /dev/null +++ b/src/defs/LockSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/LockSimpleOpen.tsx b/src/defs/LockSimpleOpen.tsx new file mode 100644 index 000000000..e71f0dfbf --- /dev/null +++ b/src/defs/LockSimpleOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Lockers.tsx b/src/defs/Lockers.tsx new file mode 100644 index 000000000..102e124e8 --- /dev/null +++ b/src/defs/Lockers.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MagicWand.tsx b/src/defs/MagicWand.tsx new file mode 100644 index 000000000..974937406 --- /dev/null +++ b/src/defs/MagicWand.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Magnet.tsx b/src/defs/Magnet.tsx new file mode 100644 index 000000000..8919b3919 --- /dev/null +++ b/src/defs/Magnet.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MagnetStraight.tsx b/src/defs/MagnetStraight.tsx new file mode 100644 index 000000000..9093721c2 --- /dev/null +++ b/src/defs/MagnetStraight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MagnifyingGlass.tsx b/src/defs/MagnifyingGlass.tsx new file mode 100644 index 000000000..1f23c8475 --- /dev/null +++ b/src/defs/MagnifyingGlass.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MagnifyingGlassMinus.tsx b/src/defs/MagnifyingGlassMinus.tsx new file mode 100644 index 000000000..d83fbe418 --- /dev/null +++ b/src/defs/MagnifyingGlassMinus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MagnifyingGlassPlus.tsx b/src/defs/MagnifyingGlassPlus.tsx new file mode 100644 index 000000000..47a62e568 --- /dev/null +++ b/src/defs/MagnifyingGlassPlus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MapPin.tsx b/src/defs/MapPin.tsx new file mode 100644 index 000000000..6257df268 --- /dev/null +++ b/src/defs/MapPin.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MapPinLine.tsx b/src/defs/MapPinLine.tsx new file mode 100644 index 000000000..121a06d56 --- /dev/null +++ b/src/defs/MapPinLine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MapTrifold.tsx b/src/defs/MapTrifold.tsx new file mode 100644 index 000000000..15e112484 --- /dev/null +++ b/src/defs/MapTrifold.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MarkerCircle.tsx b/src/defs/MarkerCircle.tsx new file mode 100644 index 000000000..13bf0dd80 --- /dev/null +++ b/src/defs/MarkerCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Martini.tsx b/src/defs/Martini.tsx new file mode 100644 index 000000000..bd0acd639 --- /dev/null +++ b/src/defs/Martini.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MaskHappy.tsx b/src/defs/MaskHappy.tsx new file mode 100644 index 000000000..d417e32da --- /dev/null +++ b/src/defs/MaskHappy.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MaskSad.tsx b/src/defs/MaskSad.tsx new file mode 100644 index 000000000..089ae67e5 --- /dev/null +++ b/src/defs/MaskSad.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MathOperations.tsx b/src/defs/MathOperations.tsx new file mode 100644 index 000000000..8003273e6 --- /dev/null +++ b/src/defs/MathOperations.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Medal.tsx b/src/defs/Medal.tsx new file mode 100644 index 000000000..645e31bfc --- /dev/null +++ b/src/defs/Medal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MedalMilitary.tsx b/src/defs/MedalMilitary.tsx new file mode 100644 index 000000000..bd65f500e --- /dev/null +++ b/src/defs/MedalMilitary.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MediumLogo.tsx b/src/defs/MediumLogo.tsx new file mode 100644 index 000000000..7aa8683d7 --- /dev/null +++ b/src/defs/MediumLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Megaphone.tsx b/src/defs/Megaphone.tsx new file mode 100644 index 000000000..28fb3da52 --- /dev/null +++ b/src/defs/Megaphone.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MegaphoneSimple.tsx b/src/defs/MegaphoneSimple.tsx new file mode 100644 index 000000000..51ebf3d30 --- /dev/null +++ b/src/defs/MegaphoneSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MessengerLogo.tsx b/src/defs/MessengerLogo.tsx new file mode 100644 index 000000000..ffc3a7001 --- /dev/null +++ b/src/defs/MessengerLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MetaLogo.tsx b/src/defs/MetaLogo.tsx new file mode 100644 index 000000000..8ee975d40 --- /dev/null +++ b/src/defs/MetaLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Metronome.tsx b/src/defs/Metronome.tsx new file mode 100644 index 000000000..14bb36893 --- /dev/null +++ b/src/defs/Metronome.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Microphone.tsx b/src/defs/Microphone.tsx new file mode 100644 index 000000000..632908bcc --- /dev/null +++ b/src/defs/Microphone.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MicrophoneSlash.tsx b/src/defs/MicrophoneSlash.tsx new file mode 100644 index 000000000..25cd0da71 --- /dev/null +++ b/src/defs/MicrophoneSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MicrophoneStage.tsx b/src/defs/MicrophoneStage.tsx new file mode 100644 index 000000000..2dab9cc76 --- /dev/null +++ b/src/defs/MicrophoneStage.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MicrosoftExcelLogo.tsx b/src/defs/MicrosoftExcelLogo.tsx new file mode 100644 index 000000000..769948010 --- /dev/null +++ b/src/defs/MicrosoftExcelLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MicrosoftOutlookLogo.tsx b/src/defs/MicrosoftOutlookLogo.tsx new file mode 100644 index 000000000..ee76b5be9 --- /dev/null +++ b/src/defs/MicrosoftOutlookLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MicrosoftPowerpointLogo.tsx b/src/defs/MicrosoftPowerpointLogo.tsx new file mode 100644 index 000000000..9d984c190 --- /dev/null +++ b/src/defs/MicrosoftPowerpointLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MicrosoftTeamsLogo.tsx b/src/defs/MicrosoftTeamsLogo.tsx new file mode 100644 index 000000000..1b3e4693b --- /dev/null +++ b/src/defs/MicrosoftTeamsLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MicrosoftWordLogo.tsx b/src/defs/MicrosoftWordLogo.tsx new file mode 100644 index 000000000..f4bbd0a52 --- /dev/null +++ b/src/defs/MicrosoftWordLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Minus.tsx b/src/defs/Minus.tsx new file mode 100644 index 000000000..21d7036f5 --- /dev/null +++ b/src/defs/Minus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MinusCircle.tsx b/src/defs/MinusCircle.tsx new file mode 100644 index 000000000..de87c1fa4 --- /dev/null +++ b/src/defs/MinusCircle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MinusSquare.tsx b/src/defs/MinusSquare.tsx new file mode 100644 index 000000000..7eb10e296 --- /dev/null +++ b/src/defs/MinusSquare.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Money.tsx b/src/defs/Money.tsx new file mode 100644 index 000000000..6438a3a8d --- /dev/null +++ b/src/defs/Money.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Monitor.tsx b/src/defs/Monitor.tsx new file mode 100644 index 000000000..02b4eaf61 --- /dev/null +++ b/src/defs/Monitor.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MonitorPlay.tsx b/src/defs/MonitorPlay.tsx new file mode 100644 index 000000000..443be6cb6 --- /dev/null +++ b/src/defs/MonitorPlay.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Moon.tsx b/src/defs/Moon.tsx new file mode 100644 index 000000000..4146e11c6 --- /dev/null +++ b/src/defs/Moon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MoonStars.tsx b/src/defs/MoonStars.tsx new file mode 100644 index 000000000..2a0742fa7 --- /dev/null +++ b/src/defs/MoonStars.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Moped.tsx b/src/defs/Moped.tsx new file mode 100644 index 000000000..01906fe0a --- /dev/null +++ b/src/defs/Moped.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MopedFront.tsx b/src/defs/MopedFront.tsx new file mode 100644 index 000000000..d11560efc --- /dev/null +++ b/src/defs/MopedFront.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Mosque.tsx b/src/defs/Mosque.tsx new file mode 100644 index 000000000..a3419a255 --- /dev/null +++ b/src/defs/Mosque.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Motorcycle.tsx b/src/defs/Motorcycle.tsx new file mode 100644 index 000000000..30c5f8d23 --- /dev/null +++ b/src/defs/Motorcycle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Mountains.tsx b/src/defs/Mountains.tsx new file mode 100644 index 000000000..6461bcc0f --- /dev/null +++ b/src/defs/Mountains.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Mouse.tsx b/src/defs/Mouse.tsx new file mode 100644 index 000000000..70f3f917e --- /dev/null +++ b/src/defs/Mouse.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MouseSimple.tsx b/src/defs/MouseSimple.tsx new file mode 100644 index 000000000..3bac24993 --- /dev/null +++ b/src/defs/MouseSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MusicNote.tsx b/src/defs/MusicNote.tsx new file mode 100644 index 000000000..ded048151 --- /dev/null +++ b/src/defs/MusicNote.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MusicNoteSimple.tsx b/src/defs/MusicNoteSimple.tsx new file mode 100644 index 000000000..7d31f11fa --- /dev/null +++ b/src/defs/MusicNoteSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MusicNotes.tsx b/src/defs/MusicNotes.tsx new file mode 100644 index 000000000..69d92bb05 --- /dev/null +++ b/src/defs/MusicNotes.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MusicNotesPlus.tsx b/src/defs/MusicNotesPlus.tsx new file mode 100644 index 000000000..294f21821 --- /dev/null +++ b/src/defs/MusicNotesPlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/MusicNotesSimple.tsx b/src/defs/MusicNotesSimple.tsx new file mode 100644 index 000000000..68d274682 --- /dev/null +++ b/src/defs/MusicNotesSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NavigationArrow.tsx b/src/defs/NavigationArrow.tsx new file mode 100644 index 000000000..d0f8a936f --- /dev/null +++ b/src/defs/NavigationArrow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Needle.tsx b/src/defs/Needle.tsx new file mode 100644 index 000000000..4cd0c3e2e --- /dev/null +++ b/src/defs/Needle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Newspaper.tsx b/src/defs/Newspaper.tsx new file mode 100644 index 000000000..a2408a9f2 --- /dev/null +++ b/src/defs/Newspaper.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NewspaperClipping.tsx b/src/defs/NewspaperClipping.tsx new file mode 100644 index 000000000..96f8fc099 --- /dev/null +++ b/src/defs/NewspaperClipping.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Notches.tsx b/src/defs/Notches.tsx new file mode 100644 index 000000000..98a1d93e9 --- /dev/null +++ b/src/defs/Notches.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Note.tsx b/src/defs/Note.tsx new file mode 100644 index 000000000..785adbe72 --- /dev/null +++ b/src/defs/Note.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NoteBlank.tsx b/src/defs/NoteBlank.tsx new file mode 100644 index 000000000..74ed74ac8 --- /dev/null +++ b/src/defs/NoteBlank.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NotePencil.tsx b/src/defs/NotePencil.tsx new file mode 100644 index 000000000..19aeaa4c1 --- /dev/null +++ b/src/defs/NotePencil.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Notebook.tsx b/src/defs/Notebook.tsx new file mode 100644 index 000000000..da588989d --- /dev/null +++ b/src/defs/Notebook.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Notepad.tsx b/src/defs/Notepad.tsx new file mode 100644 index 000000000..26ba407e2 --- /dev/null +++ b/src/defs/Notepad.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Notification.tsx b/src/defs/Notification.tsx new file mode 100644 index 000000000..3926f9a3a --- /dev/null +++ b/src/defs/Notification.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NotionLogo.tsx b/src/defs/NotionLogo.tsx new file mode 100644 index 000000000..7698a9ea2 --- /dev/null +++ b/src/defs/NotionLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleEight.tsx b/src/defs/NumberCircleEight.tsx new file mode 100644 index 000000000..bdc861047 --- /dev/null +++ b/src/defs/NumberCircleEight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleFive.tsx b/src/defs/NumberCircleFive.tsx new file mode 100644 index 000000000..e110c237c --- /dev/null +++ b/src/defs/NumberCircleFive.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleFour.tsx b/src/defs/NumberCircleFour.tsx new file mode 100644 index 000000000..fc3b8b5ba --- /dev/null +++ b/src/defs/NumberCircleFour.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleNine.tsx b/src/defs/NumberCircleNine.tsx new file mode 100644 index 000000000..4e06f8628 --- /dev/null +++ b/src/defs/NumberCircleNine.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleOne.tsx b/src/defs/NumberCircleOne.tsx new file mode 100644 index 000000000..0c300bed8 --- /dev/null +++ b/src/defs/NumberCircleOne.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleSeven.tsx b/src/defs/NumberCircleSeven.tsx new file mode 100644 index 000000000..ef941e915 --- /dev/null +++ b/src/defs/NumberCircleSeven.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleSix.tsx b/src/defs/NumberCircleSix.tsx new file mode 100644 index 000000000..6abdfea2a --- /dev/null +++ b/src/defs/NumberCircleSix.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleThree.tsx b/src/defs/NumberCircleThree.tsx new file mode 100644 index 000000000..9292c7bc3 --- /dev/null +++ b/src/defs/NumberCircleThree.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleTwo.tsx b/src/defs/NumberCircleTwo.tsx new file mode 100644 index 000000000..064aad35f --- /dev/null +++ b/src/defs/NumberCircleTwo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberCircleZero.tsx b/src/defs/NumberCircleZero.tsx new file mode 100644 index 000000000..e4a6a38b5 --- /dev/null +++ b/src/defs/NumberCircleZero.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberEight.tsx b/src/defs/NumberEight.tsx new file mode 100644 index 000000000..d55ffae00 --- /dev/null +++ b/src/defs/NumberEight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberFive.tsx b/src/defs/NumberFive.tsx new file mode 100644 index 000000000..9970bb7f8 --- /dev/null +++ b/src/defs/NumberFive.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberFour.tsx b/src/defs/NumberFour.tsx new file mode 100644 index 000000000..211d07a04 --- /dev/null +++ b/src/defs/NumberFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberNine.tsx b/src/defs/NumberNine.tsx new file mode 100644 index 000000000..ed798950a --- /dev/null +++ b/src/defs/NumberNine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberOne.tsx b/src/defs/NumberOne.tsx new file mode 100644 index 000000000..20a0c8157 --- /dev/null +++ b/src/defs/NumberOne.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSeven.tsx b/src/defs/NumberSeven.tsx new file mode 100644 index 000000000..a4293de71 --- /dev/null +++ b/src/defs/NumberSeven.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSix.tsx b/src/defs/NumberSix.tsx new file mode 100644 index 000000000..15cc99d6f --- /dev/null +++ b/src/defs/NumberSix.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareEight.tsx b/src/defs/NumberSquareEight.tsx new file mode 100644 index 000000000..6fcf877d3 --- /dev/null +++ b/src/defs/NumberSquareEight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareFive.tsx b/src/defs/NumberSquareFive.tsx new file mode 100644 index 000000000..95cd6ad69 --- /dev/null +++ b/src/defs/NumberSquareFive.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareFour.tsx b/src/defs/NumberSquareFour.tsx new file mode 100644 index 000000000..c9871eae0 --- /dev/null +++ b/src/defs/NumberSquareFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareNine.tsx b/src/defs/NumberSquareNine.tsx new file mode 100644 index 000000000..ef76469b4 --- /dev/null +++ b/src/defs/NumberSquareNine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareOne.tsx b/src/defs/NumberSquareOne.tsx new file mode 100644 index 000000000..d3062a596 --- /dev/null +++ b/src/defs/NumberSquareOne.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareSeven.tsx b/src/defs/NumberSquareSeven.tsx new file mode 100644 index 000000000..51602dc31 --- /dev/null +++ b/src/defs/NumberSquareSeven.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareSix.tsx b/src/defs/NumberSquareSix.tsx new file mode 100644 index 000000000..33f5a52f2 --- /dev/null +++ b/src/defs/NumberSquareSix.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareThree.tsx b/src/defs/NumberSquareThree.tsx new file mode 100644 index 000000000..c5207dfd4 --- /dev/null +++ b/src/defs/NumberSquareThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareTwo.tsx b/src/defs/NumberSquareTwo.tsx new file mode 100644 index 000000000..46456d17c --- /dev/null +++ b/src/defs/NumberSquareTwo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberSquareZero.tsx b/src/defs/NumberSquareZero.tsx new file mode 100644 index 000000000..6a1727a63 --- /dev/null +++ b/src/defs/NumberSquareZero.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberThree.tsx b/src/defs/NumberThree.tsx new file mode 100644 index 000000000..676ce88ce --- /dev/null +++ b/src/defs/NumberThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberTwo.tsx b/src/defs/NumberTwo.tsx new file mode 100644 index 000000000..fc20e214d --- /dev/null +++ b/src/defs/NumberTwo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NumberZero.tsx b/src/defs/NumberZero.tsx new file mode 100644 index 000000000..ad29c4000 --- /dev/null +++ b/src/defs/NumberZero.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Nut.tsx b/src/defs/Nut.tsx new file mode 100644 index 000000000..f83433002 --- /dev/null +++ b/src/defs/Nut.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/NyTimesLogo.tsx b/src/defs/NyTimesLogo.tsx new file mode 100644 index 000000000..914588349 --- /dev/null +++ b/src/defs/NyTimesLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Octagon.tsx b/src/defs/Octagon.tsx new file mode 100644 index 000000000..56069d042 --- /dev/null +++ b/src/defs/Octagon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/OfficeChair.tsx b/src/defs/OfficeChair.tsx new file mode 100644 index 000000000..9eb41cc89 --- /dev/null +++ b/src/defs/OfficeChair.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Option.tsx b/src/defs/Option.tsx new file mode 100644 index 000000000..0180d94d5 --- /dev/null +++ b/src/defs/Option.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/OrangeSlice.tsx b/src/defs/OrangeSlice.tsx new file mode 100644 index 000000000..9232f5073 --- /dev/null +++ b/src/defs/OrangeSlice.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Package.tsx b/src/defs/Package.tsx new file mode 100644 index 000000000..cfddaa934 --- /dev/null +++ b/src/defs/Package.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaintBrush.tsx b/src/defs/PaintBrush.tsx new file mode 100644 index 000000000..5c21f933a --- /dev/null +++ b/src/defs/PaintBrush.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaintBrushBroad.tsx b/src/defs/PaintBrushBroad.tsx new file mode 100644 index 000000000..19caaf8c0 --- /dev/null +++ b/src/defs/PaintBrushBroad.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaintBrushHousehold.tsx b/src/defs/PaintBrushHousehold.tsx new file mode 100644 index 000000000..37836366c --- /dev/null +++ b/src/defs/PaintBrushHousehold.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaintBucket.tsx b/src/defs/PaintBucket.tsx new file mode 100644 index 000000000..5c5c058ff --- /dev/null +++ b/src/defs/PaintBucket.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaintRoller.tsx b/src/defs/PaintRoller.tsx new file mode 100644 index 000000000..77c2a06ba --- /dev/null +++ b/src/defs/PaintRoller.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Palette.tsx b/src/defs/Palette.tsx new file mode 100644 index 000000000..65297e363 --- /dev/null +++ b/src/defs/Palette.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pants.tsx b/src/defs/Pants.tsx new file mode 100644 index 000000000..8f334644d --- /dev/null +++ b/src/defs/Pants.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaperPlane.tsx b/src/defs/PaperPlane.tsx new file mode 100644 index 000000000..67759de82 --- /dev/null +++ b/src/defs/PaperPlane.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaperPlaneRight.tsx b/src/defs/PaperPlaneRight.tsx new file mode 100644 index 000000000..2eaf29667 --- /dev/null +++ b/src/defs/PaperPlaneRight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaperPlaneTilt.tsx b/src/defs/PaperPlaneTilt.tsx new file mode 100644 index 000000000..fdf2b7fec --- /dev/null +++ b/src/defs/PaperPlaneTilt.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Paperclip.tsx b/src/defs/Paperclip.tsx new file mode 100644 index 000000000..9e70561a6 --- /dev/null +++ b/src/defs/Paperclip.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaperclipHorizontal.tsx b/src/defs/PaperclipHorizontal.tsx new file mode 100644 index 000000000..8836335fd --- /dev/null +++ b/src/defs/PaperclipHorizontal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Parachute.tsx b/src/defs/Parachute.tsx new file mode 100644 index 000000000..4044f5753 --- /dev/null +++ b/src/defs/Parachute.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Paragraph.tsx b/src/defs/Paragraph.tsx new file mode 100644 index 000000000..0270fd1f8 --- /dev/null +++ b/src/defs/Paragraph.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Parallelogram.tsx b/src/defs/Parallelogram.tsx new file mode 100644 index 000000000..818d39c3b --- /dev/null +++ b/src/defs/Parallelogram.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Park.tsx b/src/defs/Park.tsx new file mode 100644 index 000000000..f32d03401 --- /dev/null +++ b/src/defs/Park.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Password.tsx b/src/defs/Password.tsx new file mode 100644 index 000000000..22b4fae86 --- /dev/null +++ b/src/defs/Password.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Path.tsx b/src/defs/Path.tsx new file mode 100644 index 000000000..5512d96ac --- /dev/null +++ b/src/defs/Path.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PatreonLogo.tsx b/src/defs/PatreonLogo.tsx new file mode 100644 index 000000000..3a4e2cdb3 --- /dev/null +++ b/src/defs/PatreonLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pause.tsx b/src/defs/Pause.tsx new file mode 100644 index 000000000..13d0a9826 --- /dev/null +++ b/src/defs/Pause.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PauseCircle.tsx b/src/defs/PauseCircle.tsx new file mode 100644 index 000000000..736d27cd3 --- /dev/null +++ b/src/defs/PauseCircle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PawPrint.tsx b/src/defs/PawPrint.tsx new file mode 100644 index 000000000..3416f8d08 --- /dev/null +++ b/src/defs/PawPrint.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PaypalLogo.tsx b/src/defs/PaypalLogo.tsx new file mode 100644 index 000000000..c8329610c --- /dev/null +++ b/src/defs/PaypalLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Peace.tsx b/src/defs/Peace.tsx new file mode 100644 index 000000000..555700b7c --- /dev/null +++ b/src/defs/Peace.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pen.tsx b/src/defs/Pen.tsx new file mode 100644 index 000000000..ce4abfd78 --- /dev/null +++ b/src/defs/Pen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PenNib.tsx b/src/defs/PenNib.tsx new file mode 100644 index 000000000..67a14f5aa --- /dev/null +++ b/src/defs/PenNib.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PenNibStraight.tsx b/src/defs/PenNibStraight.tsx new file mode 100644 index 000000000..d6c9389f3 --- /dev/null +++ b/src/defs/PenNibStraight.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pencil.tsx b/src/defs/Pencil.tsx new file mode 100644 index 000000000..2fef2bcad --- /dev/null +++ b/src/defs/Pencil.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PencilCircle.tsx b/src/defs/PencilCircle.tsx new file mode 100644 index 000000000..dfcea5b43 --- /dev/null +++ b/src/defs/PencilCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PencilLine.tsx b/src/defs/PencilLine.tsx new file mode 100644 index 000000000..58cc84782 --- /dev/null +++ b/src/defs/PencilLine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PencilSimple.tsx b/src/defs/PencilSimple.tsx new file mode 100644 index 000000000..3182ca4ab --- /dev/null +++ b/src/defs/PencilSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PencilSimpleLine.tsx b/src/defs/PencilSimpleLine.tsx new file mode 100644 index 000000000..9e7375026 --- /dev/null +++ b/src/defs/PencilSimpleLine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PencilSimpleSlash.tsx b/src/defs/PencilSimpleSlash.tsx new file mode 100644 index 000000000..2f3655514 --- /dev/null +++ b/src/defs/PencilSimpleSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PencilSlash.tsx b/src/defs/PencilSlash.tsx new file mode 100644 index 000000000..1a45a779a --- /dev/null +++ b/src/defs/PencilSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pentagram.tsx b/src/defs/Pentagram.tsx new file mode 100644 index 000000000..b52d44712 --- /dev/null +++ b/src/defs/Pentagram.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pepper.tsx b/src/defs/Pepper.tsx new file mode 100644 index 000000000..c7997b85c --- /dev/null +++ b/src/defs/Pepper.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Percent.tsx b/src/defs/Percent.tsx new file mode 100644 index 000000000..ebb0094a3 --- /dev/null +++ b/src/defs/Percent.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Person.tsx b/src/defs/Person.tsx new file mode 100644 index 000000000..e276a6236 --- /dev/null +++ b/src/defs/Person.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PersonArmsSpread.tsx b/src/defs/PersonArmsSpread.tsx new file mode 100644 index 000000000..869bb4f1c --- /dev/null +++ b/src/defs/PersonArmsSpread.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PersonSimple.tsx b/src/defs/PersonSimple.tsx new file mode 100644 index 000000000..ac1b891c7 --- /dev/null +++ b/src/defs/PersonSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PersonSimpleBike.tsx b/src/defs/PersonSimpleBike.tsx new file mode 100644 index 000000000..cce895e81 --- /dev/null +++ b/src/defs/PersonSimpleBike.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PersonSimpleRun.tsx b/src/defs/PersonSimpleRun.tsx new file mode 100644 index 000000000..8b2342b47 --- /dev/null +++ b/src/defs/PersonSimpleRun.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PersonSimpleThrow.tsx b/src/defs/PersonSimpleThrow.tsx new file mode 100644 index 000000000..cfdd8ae98 --- /dev/null +++ b/src/defs/PersonSimpleThrow.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PersonSimpleWalk.tsx b/src/defs/PersonSimpleWalk.tsx new file mode 100644 index 000000000..373aa7dd1 --- /dev/null +++ b/src/defs/PersonSimpleWalk.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Perspective.tsx b/src/defs/Perspective.tsx new file mode 100644 index 000000000..27a18b986 --- /dev/null +++ b/src/defs/Perspective.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Phone.tsx b/src/defs/Phone.tsx new file mode 100644 index 000000000..08ca760fc --- /dev/null +++ b/src/defs/Phone.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhoneCall.tsx b/src/defs/PhoneCall.tsx new file mode 100644 index 000000000..b82d0b17f --- /dev/null +++ b/src/defs/PhoneCall.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhoneDisconnect.tsx b/src/defs/PhoneDisconnect.tsx new file mode 100644 index 000000000..c5ce01764 --- /dev/null +++ b/src/defs/PhoneDisconnect.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhoneIncoming.tsx b/src/defs/PhoneIncoming.tsx new file mode 100644 index 000000000..97d724870 --- /dev/null +++ b/src/defs/PhoneIncoming.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhoneOutgoing.tsx b/src/defs/PhoneOutgoing.tsx new file mode 100644 index 000000000..65faea1a3 --- /dev/null +++ b/src/defs/PhoneOutgoing.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhonePlus.tsx b/src/defs/PhonePlus.tsx new file mode 100644 index 000000000..2d35b5412 --- /dev/null +++ b/src/defs/PhonePlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhoneSlash.tsx b/src/defs/PhoneSlash.tsx new file mode 100644 index 000000000..42216e9fb --- /dev/null +++ b/src/defs/PhoneSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhoneX.tsx b/src/defs/PhoneX.tsx new file mode 100644 index 000000000..894bc0d66 --- /dev/null +++ b/src/defs/PhoneX.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PhosphorLogo.tsx b/src/defs/PhosphorLogo.tsx new file mode 100644 index 000000000..03a736e76 --- /dev/null +++ b/src/defs/PhosphorLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pi.tsx b/src/defs/Pi.tsx new file mode 100644 index 000000000..4d48c2078 --- /dev/null +++ b/src/defs/Pi.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PianoKeys.tsx b/src/defs/PianoKeys.tsx new file mode 100644 index 000000000..5a8be450e --- /dev/null +++ b/src/defs/PianoKeys.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PictureInPicture.tsx b/src/defs/PictureInPicture.tsx new file mode 100644 index 000000000..4e0429955 --- /dev/null +++ b/src/defs/PictureInPicture.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PiggyBank.tsx b/src/defs/PiggyBank.tsx new file mode 100644 index 000000000..5386bcec4 --- /dev/null +++ b/src/defs/PiggyBank.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pill.tsx b/src/defs/Pill.tsx new file mode 100644 index 000000000..1af1d1609 --- /dev/null +++ b/src/defs/Pill.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PinterestLogo.tsx b/src/defs/PinterestLogo.tsx new file mode 100644 index 000000000..a8a2859fd --- /dev/null +++ b/src/defs/PinterestLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pinwheel.tsx b/src/defs/Pinwheel.tsx new file mode 100644 index 000000000..23a2dd506 --- /dev/null +++ b/src/defs/Pinwheel.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pizza.tsx b/src/defs/Pizza.tsx new file mode 100644 index 000000000..308bcde0e --- /dev/null +++ b/src/defs/Pizza.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Placeholder.tsx b/src/defs/Placeholder.tsx new file mode 100644 index 000000000..3a11a526a --- /dev/null +++ b/src/defs/Placeholder.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Planet.tsx b/src/defs/Planet.tsx new file mode 100644 index 000000000..ad13d71b3 --- /dev/null +++ b/src/defs/Planet.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Plant.tsx b/src/defs/Plant.tsx new file mode 100644 index 000000000..ace8a49f2 --- /dev/null +++ b/src/defs/Plant.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Play.tsx b/src/defs/Play.tsx new file mode 100644 index 000000000..231f64d6c --- /dev/null +++ b/src/defs/Play.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PlayCircle.tsx b/src/defs/PlayCircle.tsx new file mode 100644 index 000000000..b081f8777 --- /dev/null +++ b/src/defs/PlayCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PlayPause.tsx b/src/defs/PlayPause.tsx new file mode 100644 index 000000000..3d7f289c0 --- /dev/null +++ b/src/defs/PlayPause.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Playlist.tsx b/src/defs/Playlist.tsx new file mode 100644 index 000000000..9a57e7195 --- /dev/null +++ b/src/defs/Playlist.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Plug.tsx b/src/defs/Plug.tsx new file mode 100644 index 000000000..0391c6d15 --- /dev/null +++ b/src/defs/Plug.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PlugCharging.tsx b/src/defs/PlugCharging.tsx new file mode 100644 index 000000000..b23025ee0 --- /dev/null +++ b/src/defs/PlugCharging.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Plugs.tsx b/src/defs/Plugs.tsx new file mode 100644 index 000000000..91d6012b5 --- /dev/null +++ b/src/defs/Plugs.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PlugsConnected.tsx b/src/defs/PlugsConnected.tsx new file mode 100644 index 000000000..e015108ba --- /dev/null +++ b/src/defs/PlugsConnected.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Plus.tsx b/src/defs/Plus.tsx new file mode 100644 index 000000000..238a0a0eb --- /dev/null +++ b/src/defs/Plus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PlusCircle.tsx b/src/defs/PlusCircle.tsx new file mode 100644 index 000000000..85c0e52c4 --- /dev/null +++ b/src/defs/PlusCircle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PlusMinus.tsx b/src/defs/PlusMinus.tsx new file mode 100644 index 000000000..66fb7e20d --- /dev/null +++ b/src/defs/PlusMinus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PlusSquare.tsx b/src/defs/PlusSquare.tsx new file mode 100644 index 000000000..f2d613083 --- /dev/null +++ b/src/defs/PlusSquare.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PokerChip.tsx b/src/defs/PokerChip.tsx new file mode 100644 index 000000000..5d131ae37 --- /dev/null +++ b/src/defs/PokerChip.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PoliceCar.tsx b/src/defs/PoliceCar.tsx new file mode 100644 index 000000000..7283bc553 --- /dev/null +++ b/src/defs/PoliceCar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Polygon.tsx b/src/defs/Polygon.tsx new file mode 100644 index 000000000..fa33cb192 --- /dev/null +++ b/src/defs/Polygon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Popcorn.tsx b/src/defs/Popcorn.tsx new file mode 100644 index 000000000..9d1996f7a --- /dev/null +++ b/src/defs/Popcorn.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PottedPlant.tsx b/src/defs/PottedPlant.tsx new file mode 100644 index 000000000..211041e4b --- /dev/null +++ b/src/defs/PottedPlant.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Power.tsx b/src/defs/Power.tsx new file mode 100644 index 000000000..c8fb357e8 --- /dev/null +++ b/src/defs/Power.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Prescription.tsx b/src/defs/Prescription.tsx new file mode 100644 index 000000000..2130d2a0d --- /dev/null +++ b/src/defs/Prescription.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Presentation.tsx b/src/defs/Presentation.tsx new file mode 100644 index 000000000..a8bd8c194 --- /dev/null +++ b/src/defs/Presentation.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PresentationChart.tsx b/src/defs/PresentationChart.tsx new file mode 100644 index 000000000..6926b0e67 --- /dev/null +++ b/src/defs/PresentationChart.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Printer.tsx b/src/defs/Printer.tsx new file mode 100644 index 000000000..2180bda9c --- /dev/null +++ b/src/defs/Printer.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Prohibit.tsx b/src/defs/Prohibit.tsx new file mode 100644 index 000000000..a667da53a --- /dev/null +++ b/src/defs/Prohibit.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ProhibitInset.tsx b/src/defs/ProhibitInset.tsx new file mode 100644 index 000000000..0eb430a8a --- /dev/null +++ b/src/defs/ProhibitInset.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ProjectorScreen.tsx b/src/defs/ProjectorScreen.tsx new file mode 100644 index 000000000..3e5cfe9f1 --- /dev/null +++ b/src/defs/ProjectorScreen.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ProjectorScreenChart.tsx b/src/defs/ProjectorScreenChart.tsx new file mode 100644 index 000000000..0f7eaa3a5 --- /dev/null +++ b/src/defs/ProjectorScreenChart.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Pulse.tsx b/src/defs/Pulse.tsx new file mode 100644 index 000000000..328b9cd25 --- /dev/null +++ b/src/defs/Pulse.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PushPin.tsx b/src/defs/PushPin.tsx new file mode 100644 index 000000000..afd2e8249 --- /dev/null +++ b/src/defs/PushPin.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PushPinSimple.tsx b/src/defs/PushPinSimple.tsx new file mode 100644 index 000000000..b928469dd --- /dev/null +++ b/src/defs/PushPinSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PushPinSimpleSlash.tsx b/src/defs/PushPinSimpleSlash.tsx new file mode 100644 index 000000000..4057fc8f5 --- /dev/null +++ b/src/defs/PushPinSimpleSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PushPinSlash.tsx b/src/defs/PushPinSlash.tsx new file mode 100644 index 000000000..0fbdc7ced --- /dev/null +++ b/src/defs/PushPinSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/PuzzlePiece.tsx b/src/defs/PuzzlePiece.tsx new file mode 100644 index 000000000..2ee45e510 --- /dev/null +++ b/src/defs/PuzzlePiece.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/QrCode.tsx b/src/defs/QrCode.tsx new file mode 100644 index 000000000..4cf0d0744 --- /dev/null +++ b/src/defs/QrCode.tsx @@ -0,0 +1,51 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + + + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Question.tsx b/src/defs/Question.tsx new file mode 100644 index 000000000..05f674ae7 --- /dev/null +++ b/src/defs/Question.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Queue.tsx b/src/defs/Queue.tsx new file mode 100644 index 000000000..d5bc4b202 --- /dev/null +++ b/src/defs/Queue.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Quotes.tsx b/src/defs/Quotes.tsx new file mode 100644 index 000000000..d6832179c --- /dev/null +++ b/src/defs/Quotes.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Radical.tsx b/src/defs/Radical.tsx new file mode 100644 index 000000000..7fa5232cd --- /dev/null +++ b/src/defs/Radical.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Radio.tsx b/src/defs/Radio.tsx new file mode 100644 index 000000000..94cdec733 --- /dev/null +++ b/src/defs/Radio.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RadioButton.tsx b/src/defs/RadioButton.tsx new file mode 100644 index 000000000..d6495db45 --- /dev/null +++ b/src/defs/RadioButton.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Radioactive.tsx b/src/defs/Radioactive.tsx new file mode 100644 index 000000000..d78e5c2e9 --- /dev/null +++ b/src/defs/Radioactive.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Rainbow.tsx b/src/defs/Rainbow.tsx new file mode 100644 index 000000000..91fbb55ce --- /dev/null +++ b/src/defs/Rainbow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RainbowCloud.tsx b/src/defs/RainbowCloud.tsx new file mode 100644 index 000000000..1d3eb8c0b --- /dev/null +++ b/src/defs/RainbowCloud.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ReadCvLogo.tsx b/src/defs/ReadCvLogo.tsx new file mode 100644 index 000000000..3f7335389 --- /dev/null +++ b/src/defs/ReadCvLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Receipt.tsx b/src/defs/Receipt.tsx new file mode 100644 index 000000000..b2ab22bea --- /dev/null +++ b/src/defs/Receipt.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ReceiptX.tsx b/src/defs/ReceiptX.tsx new file mode 100644 index 000000000..04dc2ab73 --- /dev/null +++ b/src/defs/ReceiptX.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Record.tsx b/src/defs/Record.tsx new file mode 100644 index 000000000..aeb2bbc2c --- /dev/null +++ b/src/defs/Record.tsx @@ -0,0 +1,44 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Rectangle.tsx b/src/defs/Rectangle.tsx new file mode 100644 index 000000000..460452ecc --- /dev/null +++ b/src/defs/Rectangle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Recycle.tsx b/src/defs/Recycle.tsx new file mode 100644 index 000000000..3b8a622a0 --- /dev/null +++ b/src/defs/Recycle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RedditLogo.tsx b/src/defs/RedditLogo.tsx new file mode 100644 index 000000000..fd2853b69 --- /dev/null +++ b/src/defs/RedditLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Repeat.tsx b/src/defs/Repeat.tsx new file mode 100644 index 000000000..9272aca00 --- /dev/null +++ b/src/defs/Repeat.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RepeatOnce.tsx b/src/defs/RepeatOnce.tsx new file mode 100644 index 000000000..318ef58bd --- /dev/null +++ b/src/defs/RepeatOnce.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Rewind.tsx b/src/defs/Rewind.tsx new file mode 100644 index 000000000..f2fc6831c --- /dev/null +++ b/src/defs/Rewind.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RewindCircle.tsx b/src/defs/RewindCircle.tsx new file mode 100644 index 000000000..5346aa9d5 --- /dev/null +++ b/src/defs/RewindCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RoadHorizon.tsx b/src/defs/RoadHorizon.tsx new file mode 100644 index 000000000..575f2060c --- /dev/null +++ b/src/defs/RoadHorizon.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Robot.tsx b/src/defs/Robot.tsx new file mode 100644 index 000000000..5f9db837e --- /dev/null +++ b/src/defs/Robot.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Rocket.tsx b/src/defs/Rocket.tsx new file mode 100644 index 000000000..13a650a18 --- /dev/null +++ b/src/defs/Rocket.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RocketLaunch.tsx b/src/defs/RocketLaunch.tsx new file mode 100644 index 000000000..d948c9379 --- /dev/null +++ b/src/defs/RocketLaunch.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Rows.tsx b/src/defs/Rows.tsx new file mode 100644 index 000000000..e2e9bb0b0 --- /dev/null +++ b/src/defs/Rows.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Rss.tsx b/src/defs/Rss.tsx new file mode 100644 index 000000000..9fbc7f193 --- /dev/null +++ b/src/defs/Rss.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/RssSimple.tsx b/src/defs/RssSimple.tsx new file mode 100644 index 000000000..ed4fa81cb --- /dev/null +++ b/src/defs/RssSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Rug.tsx b/src/defs/Rug.tsx new file mode 100644 index 000000000..34557a907 --- /dev/null +++ b/src/defs/Rug.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Ruler.tsx b/src/defs/Ruler.tsx new file mode 100644 index 000000000..a7e113093 --- /dev/null +++ b/src/defs/Ruler.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Scales.tsx b/src/defs/Scales.tsx new file mode 100644 index 000000000..b214c0e63 --- /dev/null +++ b/src/defs/Scales.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Scan.tsx b/src/defs/Scan.tsx new file mode 100644 index 000000000..9888f57b9 --- /dev/null +++ b/src/defs/Scan.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Scissors.tsx b/src/defs/Scissors.tsx new file mode 100644 index 000000000..fe8c62390 --- /dev/null +++ b/src/defs/Scissors.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Scooter.tsx b/src/defs/Scooter.tsx new file mode 100644 index 000000000..60d1fc26a --- /dev/null +++ b/src/defs/Scooter.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Screencast.tsx b/src/defs/Screencast.tsx new file mode 100644 index 000000000..272916214 --- /dev/null +++ b/src/defs/Screencast.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ScribbleLoop.tsx b/src/defs/ScribbleLoop.tsx new file mode 100644 index 000000000..b2fe3539b --- /dev/null +++ b/src/defs/ScribbleLoop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Scroll.tsx b/src/defs/Scroll.tsx new file mode 100644 index 000000000..8f80f07ac --- /dev/null +++ b/src/defs/Scroll.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Seal.tsx b/src/defs/Seal.tsx new file mode 100644 index 000000000..f66bff842 --- /dev/null +++ b/src/defs/Seal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SealCheck.tsx b/src/defs/SealCheck.tsx new file mode 100644 index 000000000..ad0bca677 --- /dev/null +++ b/src/defs/SealCheck.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SealQuestion.tsx b/src/defs/SealQuestion.tsx new file mode 100644 index 000000000..4983b77ea --- /dev/null +++ b/src/defs/SealQuestion.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SealWarning.tsx b/src/defs/SealWarning.tsx new file mode 100644 index 000000000..a7520215d --- /dev/null +++ b/src/defs/SealWarning.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Selection.tsx b/src/defs/Selection.tsx new file mode 100644 index 000000000..6c326e3d4 --- /dev/null +++ b/src/defs/Selection.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SelectionAll.tsx b/src/defs/SelectionAll.tsx new file mode 100644 index 000000000..092ffde82 --- /dev/null +++ b/src/defs/SelectionAll.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SelectionBackground.tsx b/src/defs/SelectionBackground.tsx new file mode 100644 index 000000000..cc498ed3f --- /dev/null +++ b/src/defs/SelectionBackground.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SelectionForeground.tsx b/src/defs/SelectionForeground.tsx new file mode 100644 index 000000000..9d3fc0f98 --- /dev/null +++ b/src/defs/SelectionForeground.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SelectionInverse.tsx b/src/defs/SelectionInverse.tsx new file mode 100644 index 000000000..e3f2c7f34 --- /dev/null +++ b/src/defs/SelectionInverse.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SelectionPlus.tsx b/src/defs/SelectionPlus.tsx new file mode 100644 index 000000000..db7bd56f8 --- /dev/null +++ b/src/defs/SelectionPlus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SelectionSlash.tsx b/src/defs/SelectionSlash.tsx new file mode 100644 index 000000000..01c3688bc --- /dev/null +++ b/src/defs/SelectionSlash.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Shapes.tsx b/src/defs/Shapes.tsx new file mode 100644 index 000000000..bbd24c3d7 --- /dev/null +++ b/src/defs/Shapes.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Share.tsx b/src/defs/Share.tsx new file mode 100644 index 000000000..86f8a4f92 --- /dev/null +++ b/src/defs/Share.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShareFat.tsx b/src/defs/ShareFat.tsx new file mode 100644 index 000000000..27d85e8e2 --- /dev/null +++ b/src/defs/ShareFat.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShareNetwork.tsx b/src/defs/ShareNetwork.tsx new file mode 100644 index 000000000..3ed457f72 --- /dev/null +++ b/src/defs/ShareNetwork.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Shield.tsx b/src/defs/Shield.tsx new file mode 100644 index 000000000..4615cab40 --- /dev/null +++ b/src/defs/Shield.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShieldCheck.tsx b/src/defs/ShieldCheck.tsx new file mode 100644 index 000000000..6da5daba5 --- /dev/null +++ b/src/defs/ShieldCheck.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShieldCheckered.tsx b/src/defs/ShieldCheckered.tsx new file mode 100644 index 000000000..afb6be886 --- /dev/null +++ b/src/defs/ShieldCheckered.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShieldChevron.tsx b/src/defs/ShieldChevron.tsx new file mode 100644 index 000000000..e01463b17 --- /dev/null +++ b/src/defs/ShieldChevron.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShieldPlus.tsx b/src/defs/ShieldPlus.tsx new file mode 100644 index 000000000..1411c2b94 --- /dev/null +++ b/src/defs/ShieldPlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShieldSlash.tsx b/src/defs/ShieldSlash.tsx new file mode 100644 index 000000000..505f49019 --- /dev/null +++ b/src/defs/ShieldSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShieldStar.tsx b/src/defs/ShieldStar.tsx new file mode 100644 index 000000000..da7fc0b28 --- /dev/null +++ b/src/defs/ShieldStar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShieldWarning.tsx b/src/defs/ShieldWarning.tsx new file mode 100644 index 000000000..4d2340b9e --- /dev/null +++ b/src/defs/ShieldWarning.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShirtFolded.tsx b/src/defs/ShirtFolded.tsx new file mode 100644 index 000000000..14827ac80 --- /dev/null +++ b/src/defs/ShirtFolded.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShootingStar.tsx b/src/defs/ShootingStar.tsx new file mode 100644 index 000000000..53446d059 --- /dev/null +++ b/src/defs/ShootingStar.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShoppingBag.tsx b/src/defs/ShoppingBag.tsx new file mode 100644 index 000000000..27f0d2756 --- /dev/null +++ b/src/defs/ShoppingBag.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShoppingBagOpen.tsx b/src/defs/ShoppingBagOpen.tsx new file mode 100644 index 000000000..953bf7387 --- /dev/null +++ b/src/defs/ShoppingBagOpen.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShoppingCart.tsx b/src/defs/ShoppingCart.tsx new file mode 100644 index 000000000..a3098daff --- /dev/null +++ b/src/defs/ShoppingCart.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShoppingCartSimple.tsx b/src/defs/ShoppingCartSimple.tsx new file mode 100644 index 000000000..6de3a3b10 --- /dev/null +++ b/src/defs/ShoppingCartSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Shower.tsx b/src/defs/Shower.tsx new file mode 100644 index 000000000..e8d949498 --- /dev/null +++ b/src/defs/Shower.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Shrimp.tsx b/src/defs/Shrimp.tsx new file mode 100644 index 000000000..045ee4d38 --- /dev/null +++ b/src/defs/Shrimp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Shuffle.tsx b/src/defs/Shuffle.tsx new file mode 100644 index 000000000..75c66ded0 --- /dev/null +++ b/src/defs/Shuffle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShuffleAngular.tsx b/src/defs/ShuffleAngular.tsx new file mode 100644 index 000000000..0c4fb8476 --- /dev/null +++ b/src/defs/ShuffleAngular.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ShuffleSimple.tsx b/src/defs/ShuffleSimple.tsx new file mode 100644 index 000000000..aaf330f7b --- /dev/null +++ b/src/defs/ShuffleSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sidebar.tsx b/src/defs/Sidebar.tsx new file mode 100644 index 000000000..c034de102 --- /dev/null +++ b/src/defs/Sidebar.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SidebarSimple.tsx b/src/defs/SidebarSimple.tsx new file mode 100644 index 000000000..67c4a69ff --- /dev/null +++ b/src/defs/SidebarSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sigma.tsx b/src/defs/Sigma.tsx new file mode 100644 index 000000000..34e2d55ba --- /dev/null +++ b/src/defs/Sigma.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SignIn.tsx b/src/defs/SignIn.tsx new file mode 100644 index 000000000..f366f9bb6 --- /dev/null +++ b/src/defs/SignIn.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SignOut.tsx b/src/defs/SignOut.tsx new file mode 100644 index 000000000..b10506404 --- /dev/null +++ b/src/defs/SignOut.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Signature.tsx b/src/defs/Signature.tsx new file mode 100644 index 000000000..41bde4e7b --- /dev/null +++ b/src/defs/Signature.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Signpost.tsx b/src/defs/Signpost.tsx new file mode 100644 index 000000000..4390e9b70 --- /dev/null +++ b/src/defs/Signpost.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SimCard.tsx b/src/defs/SimCard.tsx new file mode 100644 index 000000000..4a7e7a7ef --- /dev/null +++ b/src/defs/SimCard.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Siren.tsx b/src/defs/Siren.tsx new file mode 100644 index 000000000..a2afca792 --- /dev/null +++ b/src/defs/Siren.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SketchLogo.tsx b/src/defs/SketchLogo.tsx new file mode 100644 index 000000000..90a50b5ce --- /dev/null +++ b/src/defs/SketchLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SkipBack.tsx b/src/defs/SkipBack.tsx new file mode 100644 index 000000000..781e3391f --- /dev/null +++ b/src/defs/SkipBack.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SkipBackCircle.tsx b/src/defs/SkipBackCircle.tsx new file mode 100644 index 000000000..d5489e5af --- /dev/null +++ b/src/defs/SkipBackCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SkipForward.tsx b/src/defs/SkipForward.tsx new file mode 100644 index 000000000..06f4f89a5 --- /dev/null +++ b/src/defs/SkipForward.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SkipForwardCircle.tsx b/src/defs/SkipForwardCircle.tsx new file mode 100644 index 000000000..04dbda0dd --- /dev/null +++ b/src/defs/SkipForwardCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Skull.tsx b/src/defs/Skull.tsx new file mode 100644 index 000000000..8f97378fc --- /dev/null +++ b/src/defs/Skull.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SlackLogo.tsx b/src/defs/SlackLogo.tsx new file mode 100644 index 000000000..d0b0ca3dc --- /dev/null +++ b/src/defs/SlackLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sliders.tsx b/src/defs/Sliders.tsx new file mode 100644 index 000000000..6e1dab9a8 --- /dev/null +++ b/src/defs/Sliders.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SlidersHorizontal.tsx b/src/defs/SlidersHorizontal.tsx new file mode 100644 index 000000000..6447242e7 --- /dev/null +++ b/src/defs/SlidersHorizontal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Slideshow.tsx b/src/defs/Slideshow.tsx new file mode 100644 index 000000000..eb872cc59 --- /dev/null +++ b/src/defs/Slideshow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Smiley.tsx b/src/defs/Smiley.tsx new file mode 100644 index 000000000..fdf19f69e --- /dev/null +++ b/src/defs/Smiley.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileyAngry.tsx b/src/defs/SmileyAngry.tsx new file mode 100644 index 000000000..72fe463a3 --- /dev/null +++ b/src/defs/SmileyAngry.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileyBlank.tsx b/src/defs/SmileyBlank.tsx new file mode 100644 index 000000000..946f2a37b --- /dev/null +++ b/src/defs/SmileyBlank.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileyMeh.tsx b/src/defs/SmileyMeh.tsx new file mode 100644 index 000000000..ffe901409 --- /dev/null +++ b/src/defs/SmileyMeh.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileyNervous.tsx b/src/defs/SmileyNervous.tsx new file mode 100644 index 000000000..48fa9e456 --- /dev/null +++ b/src/defs/SmileyNervous.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileySad.tsx b/src/defs/SmileySad.tsx new file mode 100644 index 000000000..af73ef19d --- /dev/null +++ b/src/defs/SmileySad.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileySticker.tsx b/src/defs/SmileySticker.tsx new file mode 100644 index 000000000..98f502bf3 --- /dev/null +++ b/src/defs/SmileySticker.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileyWink.tsx b/src/defs/SmileyWink.tsx new file mode 100644 index 000000000..d904a98d7 --- /dev/null +++ b/src/defs/SmileyWink.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SmileyXEyes.tsx b/src/defs/SmileyXEyes.tsx new file mode 100644 index 000000000..430633bdb --- /dev/null +++ b/src/defs/SmileyXEyes.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SnapchatLogo.tsx b/src/defs/SnapchatLogo.tsx new file mode 100644 index 000000000..bd69a736e --- /dev/null +++ b/src/defs/SnapchatLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sneaker.tsx b/src/defs/Sneaker.tsx new file mode 100644 index 000000000..8c04111a2 --- /dev/null +++ b/src/defs/Sneaker.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SneakerMove.tsx b/src/defs/SneakerMove.tsx new file mode 100644 index 000000000..1e272a652 --- /dev/null +++ b/src/defs/SneakerMove.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Snowflake.tsx b/src/defs/Snowflake.tsx new file mode 100644 index 000000000..ce44d99e2 --- /dev/null +++ b/src/defs/Snowflake.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SoccerBall.tsx b/src/defs/SoccerBall.tsx new file mode 100644 index 000000000..8664f3a07 --- /dev/null +++ b/src/defs/SoccerBall.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SortAscending.tsx b/src/defs/SortAscending.tsx new file mode 100644 index 000000000..bf2aa6a38 --- /dev/null +++ b/src/defs/SortAscending.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SortDescending.tsx b/src/defs/SortDescending.tsx new file mode 100644 index 000000000..abaa94545 --- /dev/null +++ b/src/defs/SortDescending.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SoundcloudLogo.tsx b/src/defs/SoundcloudLogo.tsx new file mode 100644 index 000000000..1159cb649 --- /dev/null +++ b/src/defs/SoundcloudLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Spade.tsx b/src/defs/Spade.tsx new file mode 100644 index 000000000..83291b7a5 --- /dev/null +++ b/src/defs/Spade.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sparkle.tsx b/src/defs/Sparkle.tsx new file mode 100644 index 000000000..0d66f0e0d --- /dev/null +++ b/src/defs/Sparkle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerHifi.tsx b/src/defs/SpeakerHifi.tsx new file mode 100644 index 000000000..087d8a4c1 --- /dev/null +++ b/src/defs/SpeakerHifi.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerHigh.tsx b/src/defs/SpeakerHigh.tsx new file mode 100644 index 000000000..9f9bb6fab --- /dev/null +++ b/src/defs/SpeakerHigh.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerLow.tsx b/src/defs/SpeakerLow.tsx new file mode 100644 index 000000000..378e292c0 --- /dev/null +++ b/src/defs/SpeakerLow.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerNone.tsx b/src/defs/SpeakerNone.tsx new file mode 100644 index 000000000..9a7c37419 --- /dev/null +++ b/src/defs/SpeakerNone.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerSimpleHigh.tsx b/src/defs/SpeakerSimpleHigh.tsx new file mode 100644 index 000000000..79db27ae3 --- /dev/null +++ b/src/defs/SpeakerSimpleHigh.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerSimpleLow.tsx b/src/defs/SpeakerSimpleLow.tsx new file mode 100644 index 000000000..d97a16b8a --- /dev/null +++ b/src/defs/SpeakerSimpleLow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerSimpleNone.tsx b/src/defs/SpeakerSimpleNone.tsx new file mode 100644 index 000000000..6a9f5d98b --- /dev/null +++ b/src/defs/SpeakerSimpleNone.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerSimpleSlash.tsx b/src/defs/SpeakerSimpleSlash.tsx new file mode 100644 index 000000000..0618db689 --- /dev/null +++ b/src/defs/SpeakerSimpleSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerSimpleX.tsx b/src/defs/SpeakerSimpleX.tsx new file mode 100644 index 000000000..23f5961aa --- /dev/null +++ b/src/defs/SpeakerSimpleX.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerSlash.tsx b/src/defs/SpeakerSlash.tsx new file mode 100644 index 000000000..ce3f0265e --- /dev/null +++ b/src/defs/SpeakerSlash.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpeakerX.tsx b/src/defs/SpeakerX.tsx new file mode 100644 index 000000000..038ceccc2 --- /dev/null +++ b/src/defs/SpeakerX.tsx @@ -0,0 +1,44 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Spinner.tsx b/src/defs/Spinner.tsx new file mode 100644 index 000000000..59acc747a --- /dev/null +++ b/src/defs/Spinner.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpinnerGap.tsx b/src/defs/SpinnerGap.tsx new file mode 100644 index 000000000..9db36e209 --- /dev/null +++ b/src/defs/SpinnerGap.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Spiral.tsx b/src/defs/Spiral.tsx new file mode 100644 index 000000000..dc8fea854 --- /dev/null +++ b/src/defs/Spiral.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SplitHorizontal.tsx b/src/defs/SplitHorizontal.tsx new file mode 100644 index 000000000..16e97a8c8 --- /dev/null +++ b/src/defs/SplitHorizontal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SplitVertical.tsx b/src/defs/SplitVertical.tsx new file mode 100644 index 000000000..ea0d65277 --- /dev/null +++ b/src/defs/SplitVertical.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SpotifyLogo.tsx b/src/defs/SpotifyLogo.tsx new file mode 100644 index 000000000..e478672b0 --- /dev/null +++ b/src/defs/SpotifyLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Square.tsx b/src/defs/Square.tsx new file mode 100644 index 000000000..5adb1e851 --- /dev/null +++ b/src/defs/Square.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SquareHalf.tsx b/src/defs/SquareHalf.tsx new file mode 100644 index 000000000..f9f269250 --- /dev/null +++ b/src/defs/SquareHalf.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SquareHalfBottom.tsx b/src/defs/SquareHalfBottom.tsx new file mode 100644 index 000000000..b112ef37e --- /dev/null +++ b/src/defs/SquareHalfBottom.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SquareLogo.tsx b/src/defs/SquareLogo.tsx new file mode 100644 index 000000000..6a78f5019 --- /dev/null +++ b/src/defs/SquareLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SquareSplitHorizontal.tsx b/src/defs/SquareSplitHorizontal.tsx new file mode 100644 index 000000000..d78a2cba1 --- /dev/null +++ b/src/defs/SquareSplitHorizontal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SquareSplitVertical.tsx b/src/defs/SquareSplitVertical.tsx new file mode 100644 index 000000000..4269a8fca --- /dev/null +++ b/src/defs/SquareSplitVertical.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SquaresFour.tsx b/src/defs/SquaresFour.tsx new file mode 100644 index 000000000..b60da5fe5 --- /dev/null +++ b/src/defs/SquaresFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Stack.tsx b/src/defs/Stack.tsx new file mode 100644 index 000000000..daf9b6d20 --- /dev/null +++ b/src/defs/Stack.tsx @@ -0,0 +1,45 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StackOverflowLogo.tsx b/src/defs/StackOverflowLogo.tsx new file mode 100644 index 000000000..c5fc60320 --- /dev/null +++ b/src/defs/StackOverflowLogo.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StackSimple.tsx b/src/defs/StackSimple.tsx new file mode 100644 index 000000000..ea45d2c7d --- /dev/null +++ b/src/defs/StackSimple.tsx @@ -0,0 +1,44 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Stairs.tsx b/src/defs/Stairs.tsx new file mode 100644 index 000000000..f420ff881 --- /dev/null +++ b/src/defs/Stairs.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Stamp.tsx b/src/defs/Stamp.tsx new file mode 100644 index 000000000..73dee06c6 --- /dev/null +++ b/src/defs/Stamp.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Star.tsx b/src/defs/Star.tsx new file mode 100644 index 000000000..102c1fd23 --- /dev/null +++ b/src/defs/Star.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StarAndCrescent.tsx b/src/defs/StarAndCrescent.tsx new file mode 100644 index 000000000..245b3a986 --- /dev/null +++ b/src/defs/StarAndCrescent.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StarFour.tsx b/src/defs/StarFour.tsx new file mode 100644 index 000000000..98e5fcb27 --- /dev/null +++ b/src/defs/StarFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StarHalf.tsx b/src/defs/StarHalf.tsx new file mode 100644 index 000000000..bb6073b33 --- /dev/null +++ b/src/defs/StarHalf.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StarOfDavid.tsx b/src/defs/StarOfDavid.tsx new file mode 100644 index 000000000..3cfa0324a --- /dev/null +++ b/src/defs/StarOfDavid.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SteeringWheel.tsx b/src/defs/SteeringWheel.tsx new file mode 100644 index 000000000..58cef53b6 --- /dev/null +++ b/src/defs/SteeringWheel.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Steps.tsx b/src/defs/Steps.tsx new file mode 100644 index 000000000..530024795 --- /dev/null +++ b/src/defs/Steps.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Stethoscope.tsx b/src/defs/Stethoscope.tsx new file mode 100644 index 000000000..5e743a0ac --- /dev/null +++ b/src/defs/Stethoscope.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sticker.tsx b/src/defs/Sticker.tsx new file mode 100644 index 000000000..19f1d919b --- /dev/null +++ b/src/defs/Sticker.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Stool.tsx b/src/defs/Stool.tsx new file mode 100644 index 000000000..18598465b --- /dev/null +++ b/src/defs/Stool.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Stop.tsx b/src/defs/Stop.tsx new file mode 100644 index 000000000..ee4e679ed --- /dev/null +++ b/src/defs/Stop.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StopCircle.tsx b/src/defs/StopCircle.tsx new file mode 100644 index 000000000..4b75deb07 --- /dev/null +++ b/src/defs/StopCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Storefront.tsx b/src/defs/Storefront.tsx new file mode 100644 index 000000000..b828c91b7 --- /dev/null +++ b/src/defs/Storefront.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Strategy.tsx b/src/defs/Strategy.tsx new file mode 100644 index 000000000..48558e8d1 --- /dev/null +++ b/src/defs/Strategy.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/StripeLogo.tsx b/src/defs/StripeLogo.tsx new file mode 100644 index 000000000..255c30028 --- /dev/null +++ b/src/defs/StripeLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Student.tsx b/src/defs/Student.tsx new file mode 100644 index 000000000..64af2ab38 --- /dev/null +++ b/src/defs/Student.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Subtitles.tsx b/src/defs/Subtitles.tsx new file mode 100644 index 000000000..39feaa8ad --- /dev/null +++ b/src/defs/Subtitles.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Subtract.tsx b/src/defs/Subtract.tsx new file mode 100644 index 000000000..38900f28e --- /dev/null +++ b/src/defs/Subtract.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SubtractSquare.tsx b/src/defs/SubtractSquare.tsx new file mode 100644 index 000000000..960632101 --- /dev/null +++ b/src/defs/SubtractSquare.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Suitcase.tsx b/src/defs/Suitcase.tsx new file mode 100644 index 000000000..e948253e5 --- /dev/null +++ b/src/defs/Suitcase.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SuitcaseRolling.tsx b/src/defs/SuitcaseRolling.tsx new file mode 100644 index 000000000..24bac9662 --- /dev/null +++ b/src/defs/SuitcaseRolling.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SuitcaseSimple.tsx b/src/defs/SuitcaseSimple.tsx new file mode 100644 index 000000000..e0c33ad62 --- /dev/null +++ b/src/defs/SuitcaseSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sun.tsx b/src/defs/Sun.tsx new file mode 100644 index 000000000..43d795506 --- /dev/null +++ b/src/defs/Sun.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SunDim.tsx b/src/defs/SunDim.tsx new file mode 100644 index 000000000..31e42b11c --- /dev/null +++ b/src/defs/SunDim.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SunHorizon.tsx b/src/defs/SunHorizon.tsx new file mode 100644 index 000000000..5f10c3565 --- /dev/null +++ b/src/defs/SunHorizon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sunglasses.tsx b/src/defs/Sunglasses.tsx new file mode 100644 index 000000000..f07e6ea17 --- /dev/null +++ b/src/defs/Sunglasses.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Swap.tsx b/src/defs/Swap.tsx new file mode 100644 index 000000000..61f366d55 --- /dev/null +++ b/src/defs/Swap.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Swatches.tsx b/src/defs/Swatches.tsx new file mode 100644 index 000000000..3dec195c8 --- /dev/null +++ b/src/defs/Swatches.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/SwimmingPool.tsx b/src/defs/SwimmingPool.tsx new file mode 100644 index 000000000..d32d2ae11 --- /dev/null +++ b/src/defs/SwimmingPool.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Sword.tsx b/src/defs/Sword.tsx new file mode 100644 index 000000000..747b3357c --- /dev/null +++ b/src/defs/Sword.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Synagogue.tsx b/src/defs/Synagogue.tsx new file mode 100644 index 000000000..ffce0dac0 --- /dev/null +++ b/src/defs/Synagogue.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Syringe.tsx b/src/defs/Syringe.tsx new file mode 100644 index 000000000..7b478415f --- /dev/null +++ b/src/defs/Syringe.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TShirt.tsx b/src/defs/TShirt.tsx new file mode 100644 index 000000000..ae312a22d --- /dev/null +++ b/src/defs/TShirt.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Table.tsx b/src/defs/Table.tsx new file mode 100644 index 000000000..f001c7af4 --- /dev/null +++ b/src/defs/Table.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tabs.tsx b/src/defs/Tabs.tsx new file mode 100644 index 000000000..a72a5c658 --- /dev/null +++ b/src/defs/Tabs.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tag.tsx b/src/defs/Tag.tsx new file mode 100644 index 000000000..6871cedf6 --- /dev/null +++ b/src/defs/Tag.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TagChevron.tsx b/src/defs/TagChevron.tsx new file mode 100644 index 000000000..cd2ab2ac2 --- /dev/null +++ b/src/defs/TagChevron.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TagSimple.tsx b/src/defs/TagSimple.tsx new file mode 100644 index 000000000..bcedae1b4 --- /dev/null +++ b/src/defs/TagSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Target.tsx b/src/defs/Target.tsx new file mode 100644 index 000000000..79e566c1f --- /dev/null +++ b/src/defs/Target.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Taxi.tsx b/src/defs/Taxi.tsx new file mode 100644 index 000000000..6c8e6ceaf --- /dev/null +++ b/src/defs/Taxi.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TelegramLogo.tsx b/src/defs/TelegramLogo.tsx new file mode 100644 index 000000000..9428b1a3b --- /dev/null +++ b/src/defs/TelegramLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Television.tsx b/src/defs/Television.tsx new file mode 100644 index 000000000..751d16edf --- /dev/null +++ b/src/defs/Television.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TelevisionSimple.tsx b/src/defs/TelevisionSimple.tsx new file mode 100644 index 000000000..b3934456a --- /dev/null +++ b/src/defs/TelevisionSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TennisBall.tsx b/src/defs/TennisBall.tsx new file mode 100644 index 000000000..faee24300 --- /dev/null +++ b/src/defs/TennisBall.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tent.tsx b/src/defs/Tent.tsx new file mode 100644 index 000000000..fe627c27a --- /dev/null +++ b/src/defs/Tent.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Terminal.tsx b/src/defs/Terminal.tsx new file mode 100644 index 000000000..f1e23a527 --- /dev/null +++ b/src/defs/Terminal.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TerminalWindow.tsx b/src/defs/TerminalWindow.tsx new file mode 100644 index 000000000..92ef846ca --- /dev/null +++ b/src/defs/TerminalWindow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TestTube.tsx b/src/defs/TestTube.tsx new file mode 100644 index 000000000..f3d7cc4a8 --- /dev/null +++ b/src/defs/TestTube.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextAUnderline.tsx b/src/defs/TextAUnderline.tsx new file mode 100644 index 000000000..833b47c59 --- /dev/null +++ b/src/defs/TextAUnderline.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextAa.tsx b/src/defs/TextAa.tsx new file mode 100644 index 000000000..fa28a945f --- /dev/null +++ b/src/defs/TextAa.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextAlignCenter.tsx b/src/defs/TextAlignCenter.tsx new file mode 100644 index 000000000..c47a6d235 --- /dev/null +++ b/src/defs/TextAlignCenter.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextAlignJustify.tsx b/src/defs/TextAlignJustify.tsx new file mode 100644 index 000000000..70d2d77ff --- /dev/null +++ b/src/defs/TextAlignJustify.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextAlignLeft.tsx b/src/defs/TextAlignLeft.tsx new file mode 100644 index 000000000..c3f74a245 --- /dev/null +++ b/src/defs/TextAlignLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextAlignRight.tsx b/src/defs/TextAlignRight.tsx new file mode 100644 index 000000000..1634938e8 --- /dev/null +++ b/src/defs/TextAlignRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextB.tsx b/src/defs/TextB.tsx new file mode 100644 index 000000000..00b6de761 --- /dev/null +++ b/src/defs/TextB.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextColumns.tsx b/src/defs/TextColumns.tsx new file mode 100644 index 000000000..374b2db58 --- /dev/null +++ b/src/defs/TextColumns.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextH.tsx b/src/defs/TextH.tsx new file mode 100644 index 000000000..7816d6663 --- /dev/null +++ b/src/defs/TextH.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextHFive.tsx b/src/defs/TextHFive.tsx new file mode 100644 index 000000000..60205cc31 --- /dev/null +++ b/src/defs/TextHFive.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextHFour.tsx b/src/defs/TextHFour.tsx new file mode 100644 index 000000000..87156adf3 --- /dev/null +++ b/src/defs/TextHFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextHOne.tsx b/src/defs/TextHOne.tsx new file mode 100644 index 000000000..e08fcdc45 --- /dev/null +++ b/src/defs/TextHOne.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextHSix.tsx b/src/defs/TextHSix.tsx new file mode 100644 index 000000000..62bb6ae44 --- /dev/null +++ b/src/defs/TextHSix.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextHThree.tsx b/src/defs/TextHThree.tsx new file mode 100644 index 000000000..2f121a10e --- /dev/null +++ b/src/defs/TextHThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextHTwo.tsx b/src/defs/TextHTwo.tsx new file mode 100644 index 000000000..a20bfd079 --- /dev/null +++ b/src/defs/TextHTwo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextIndent.tsx b/src/defs/TextIndent.tsx new file mode 100644 index 000000000..afe13886e --- /dev/null +++ b/src/defs/TextIndent.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextItalic.tsx b/src/defs/TextItalic.tsx new file mode 100644 index 000000000..f9cc7f712 --- /dev/null +++ b/src/defs/TextItalic.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextOutdent.tsx b/src/defs/TextOutdent.tsx new file mode 100644 index 000000000..0a505460b --- /dev/null +++ b/src/defs/TextOutdent.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextStrikethrough.tsx b/src/defs/TextStrikethrough.tsx new file mode 100644 index 000000000..0a7881905 --- /dev/null +++ b/src/defs/TextStrikethrough.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextT.tsx b/src/defs/TextT.tsx new file mode 100644 index 000000000..e4461a28b --- /dev/null +++ b/src/defs/TextT.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TextUnderline.tsx b/src/defs/TextUnderline.tsx new file mode 100644 index 000000000..baf2530c7 --- /dev/null +++ b/src/defs/TextUnderline.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Textbox.tsx b/src/defs/Textbox.tsx new file mode 100644 index 000000000..b2f11a1d0 --- /dev/null +++ b/src/defs/Textbox.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Thermometer.tsx b/src/defs/Thermometer.tsx new file mode 100644 index 000000000..add7f6c9a --- /dev/null +++ b/src/defs/Thermometer.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ThermometerCold.tsx b/src/defs/ThermometerCold.tsx new file mode 100644 index 000000000..07fe4b6e9 --- /dev/null +++ b/src/defs/ThermometerCold.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ThermometerHot.tsx b/src/defs/ThermometerHot.tsx new file mode 100644 index 000000000..3039b3509 --- /dev/null +++ b/src/defs/ThermometerHot.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ThermometerSimple.tsx b/src/defs/ThermometerSimple.tsx new file mode 100644 index 000000000..4e1585adc --- /dev/null +++ b/src/defs/ThermometerSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ThumbsDown.tsx b/src/defs/ThumbsDown.tsx new file mode 100644 index 000000000..925e8d6a5 --- /dev/null +++ b/src/defs/ThumbsDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ThumbsUp.tsx b/src/defs/ThumbsUp.tsx new file mode 100644 index 000000000..3143f2993 --- /dev/null +++ b/src/defs/ThumbsUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Ticket.tsx b/src/defs/Ticket.tsx new file mode 100644 index 000000000..2c8894235 --- /dev/null +++ b/src/defs/Ticket.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TidalLogo.tsx b/src/defs/TidalLogo.tsx new file mode 100644 index 000000000..359d43a02 --- /dev/null +++ b/src/defs/TidalLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TiktokLogo.tsx b/src/defs/TiktokLogo.tsx new file mode 100644 index 000000000..11081bbdb --- /dev/null +++ b/src/defs/TiktokLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Timer.tsx b/src/defs/Timer.tsx new file mode 100644 index 000000000..da8e7305e --- /dev/null +++ b/src/defs/Timer.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tipi.tsx b/src/defs/Tipi.tsx new file mode 100644 index 000000000..da8580763 --- /dev/null +++ b/src/defs/Tipi.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ToggleLeft.tsx b/src/defs/ToggleLeft.tsx new file mode 100644 index 000000000..77135ee2a --- /dev/null +++ b/src/defs/ToggleLeft.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ToggleRight.tsx b/src/defs/ToggleRight.tsx new file mode 100644 index 000000000..9ffcbf0d7 --- /dev/null +++ b/src/defs/ToggleRight.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Toilet.tsx b/src/defs/Toilet.tsx new file mode 100644 index 000000000..2080ced8b --- /dev/null +++ b/src/defs/Toilet.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ToiletPaper.tsx b/src/defs/ToiletPaper.tsx new file mode 100644 index 000000000..3dae17b2f --- /dev/null +++ b/src/defs/ToiletPaper.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Toolbox.tsx b/src/defs/Toolbox.tsx new file mode 100644 index 000000000..ff7f8d9f2 --- /dev/null +++ b/src/defs/Toolbox.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tooth.tsx b/src/defs/Tooth.tsx new file mode 100644 index 000000000..3b2ef0ed7 --- /dev/null +++ b/src/defs/Tooth.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tote.tsx b/src/defs/Tote.tsx new file mode 100644 index 000000000..09dc8dc2e --- /dev/null +++ b/src/defs/Tote.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/ToteSimple.tsx b/src/defs/ToteSimple.tsx new file mode 100644 index 000000000..3bdbfd834 --- /dev/null +++ b/src/defs/ToteSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Trademark.tsx b/src/defs/Trademark.tsx new file mode 100644 index 000000000..59a62b609 --- /dev/null +++ b/src/defs/Trademark.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrademarkRegistered.tsx b/src/defs/TrademarkRegistered.tsx new file mode 100644 index 000000000..d1b1dc04d --- /dev/null +++ b/src/defs/TrademarkRegistered.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrafficCone.tsx b/src/defs/TrafficCone.tsx new file mode 100644 index 000000000..bf6ca8fb7 --- /dev/null +++ b/src/defs/TrafficCone.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrafficSign.tsx b/src/defs/TrafficSign.tsx new file mode 100644 index 000000000..7d50eaa55 --- /dev/null +++ b/src/defs/TrafficSign.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrafficSignal.tsx b/src/defs/TrafficSignal.tsx new file mode 100644 index 000000000..89fa816aa --- /dev/null +++ b/src/defs/TrafficSignal.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Train.tsx b/src/defs/Train.tsx new file mode 100644 index 000000000..eb1883d81 --- /dev/null +++ b/src/defs/Train.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrainRegional.tsx b/src/defs/TrainRegional.tsx new file mode 100644 index 000000000..2743f129c --- /dev/null +++ b/src/defs/TrainRegional.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrainSimple.tsx b/src/defs/TrainSimple.tsx new file mode 100644 index 000000000..d078c5335 --- /dev/null +++ b/src/defs/TrainSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tram.tsx b/src/defs/Tram.tsx new file mode 100644 index 000000000..eeb31bafd --- /dev/null +++ b/src/defs/Tram.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Translate.tsx b/src/defs/Translate.tsx new file mode 100644 index 000000000..3bd014972 --- /dev/null +++ b/src/defs/Translate.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Trash.tsx b/src/defs/Trash.tsx new file mode 100644 index 000000000..ce8aee4fd --- /dev/null +++ b/src/defs/Trash.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrashSimple.tsx b/src/defs/TrashSimple.tsx new file mode 100644 index 000000000..ccba17652 --- /dev/null +++ b/src/defs/TrashSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tray.tsx b/src/defs/Tray.tsx new file mode 100644 index 000000000..fa2eb42d1 --- /dev/null +++ b/src/defs/Tray.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Tree.tsx b/src/defs/Tree.tsx new file mode 100644 index 000000000..ca6e86070 --- /dev/null +++ b/src/defs/Tree.tsx @@ -0,0 +1,47 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TreeEvergreen.tsx b/src/defs/TreeEvergreen.tsx new file mode 100644 index 000000000..5ceffefaa --- /dev/null +++ b/src/defs/TreeEvergreen.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TreePalm.tsx b/src/defs/TreePalm.tsx new file mode 100644 index 000000000..7eeac6a5e --- /dev/null +++ b/src/defs/TreePalm.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TreeStructure.tsx b/src/defs/TreeStructure.tsx new file mode 100644 index 000000000..7fa50c910 --- /dev/null +++ b/src/defs/TreeStructure.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrendDown.tsx b/src/defs/TrendDown.tsx new file mode 100644 index 000000000..898e81344 --- /dev/null +++ b/src/defs/TrendDown.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TrendUp.tsx b/src/defs/TrendUp.tsx new file mode 100644 index 000000000..0e33b33bb --- /dev/null +++ b/src/defs/TrendUp.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Triangle.tsx b/src/defs/Triangle.tsx new file mode 100644 index 000000000..a926907a8 --- /dev/null +++ b/src/defs/Triangle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Trophy.tsx b/src/defs/Trophy.tsx new file mode 100644 index 000000000..9af42e13e --- /dev/null +++ b/src/defs/Trophy.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Truck.tsx b/src/defs/Truck.tsx new file mode 100644 index 000000000..22f57b477 --- /dev/null +++ b/src/defs/Truck.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TwitchLogo.tsx b/src/defs/TwitchLogo.tsx new file mode 100644 index 000000000..1ee23282f --- /dev/null +++ b/src/defs/TwitchLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/TwitterLogo.tsx b/src/defs/TwitterLogo.tsx new file mode 100644 index 000000000..a4621af87 --- /dev/null +++ b/src/defs/TwitterLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Umbrella.tsx b/src/defs/Umbrella.tsx new file mode 100644 index 000000000..e9bd3aa1e --- /dev/null +++ b/src/defs/Umbrella.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UmbrellaSimple.tsx b/src/defs/UmbrellaSimple.tsx new file mode 100644 index 000000000..64278bb53 --- /dev/null +++ b/src/defs/UmbrellaSimple.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Unite.tsx b/src/defs/Unite.tsx new file mode 100644 index 000000000..70aa9cc02 --- /dev/null +++ b/src/defs/Unite.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UniteSquare.tsx b/src/defs/UniteSquare.tsx new file mode 100644 index 000000000..7b9427834 --- /dev/null +++ b/src/defs/UniteSquare.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Upload.tsx b/src/defs/Upload.tsx new file mode 100644 index 000000000..8ee37f202 --- /dev/null +++ b/src/defs/Upload.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UploadSimple.tsx b/src/defs/UploadSimple.tsx new file mode 100644 index 000000000..bd6da7a31 --- /dev/null +++ b/src/defs/UploadSimple.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Usb.tsx b/src/defs/Usb.tsx new file mode 100644 index 000000000..660b32129 --- /dev/null +++ b/src/defs/Usb.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/User.tsx b/src/defs/User.tsx new file mode 100644 index 000000000..ecbfae49b --- /dev/null +++ b/src/defs/User.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserCircle.tsx b/src/defs/UserCircle.tsx new file mode 100644 index 000000000..7f4cc9135 --- /dev/null +++ b/src/defs/UserCircle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserCircleGear.tsx b/src/defs/UserCircleGear.tsx new file mode 100644 index 000000000..40e8020ac --- /dev/null +++ b/src/defs/UserCircleGear.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserCircleMinus.tsx b/src/defs/UserCircleMinus.tsx new file mode 100644 index 000000000..68f3ac44b --- /dev/null +++ b/src/defs/UserCircleMinus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserCirclePlus.tsx b/src/defs/UserCirclePlus.tsx new file mode 100644 index 000000000..af5ab42b1 --- /dev/null +++ b/src/defs/UserCirclePlus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserFocus.tsx b/src/defs/UserFocus.tsx new file mode 100644 index 000000000..61acc3d0e --- /dev/null +++ b/src/defs/UserFocus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserGear.tsx b/src/defs/UserGear.tsx new file mode 100644 index 000000000..341726a7d --- /dev/null +++ b/src/defs/UserGear.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserList.tsx b/src/defs/UserList.tsx new file mode 100644 index 000000000..04c96de02 --- /dev/null +++ b/src/defs/UserList.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserMinus.tsx b/src/defs/UserMinus.tsx new file mode 100644 index 000000000..3bf2bce6d --- /dev/null +++ b/src/defs/UserMinus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserPlus.tsx b/src/defs/UserPlus.tsx new file mode 100644 index 000000000..c680fd945 --- /dev/null +++ b/src/defs/UserPlus.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserRectangle.tsx b/src/defs/UserRectangle.tsx new file mode 100644 index 000000000..ab5983b92 --- /dev/null +++ b/src/defs/UserRectangle.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserSquare.tsx b/src/defs/UserSquare.tsx new file mode 100644 index 000000000..7b3c6516c --- /dev/null +++ b/src/defs/UserSquare.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UserSwitch.tsx b/src/defs/UserSwitch.tsx new file mode 100644 index 000000000..201af021c --- /dev/null +++ b/src/defs/UserSwitch.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Users.tsx b/src/defs/Users.tsx new file mode 100644 index 000000000..0ac19d3c9 --- /dev/null +++ b/src/defs/Users.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UsersFour.tsx b/src/defs/UsersFour.tsx new file mode 100644 index 000000000..6ebe3def0 --- /dev/null +++ b/src/defs/UsersFour.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/UsersThree.tsx b/src/defs/UsersThree.tsx new file mode 100644 index 000000000..1c7a3859d --- /dev/null +++ b/src/defs/UsersThree.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Van.tsx b/src/defs/Van.tsx new file mode 100644 index 000000000..f91d56c71 --- /dev/null +++ b/src/defs/Van.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Vault.tsx b/src/defs/Vault.tsx new file mode 100644 index 000000000..59117bc1a --- /dev/null +++ b/src/defs/Vault.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Vibrate.tsx b/src/defs/Vibrate.tsx new file mode 100644 index 000000000..4747c001e --- /dev/null +++ b/src/defs/Vibrate.tsx @@ -0,0 +1,50 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Video.tsx b/src/defs/Video.tsx new file mode 100644 index 000000000..0c19e3ad4 --- /dev/null +++ b/src/defs/Video.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/VideoCamera.tsx b/src/defs/VideoCamera.tsx new file mode 100644 index 000000000..d102709f9 --- /dev/null +++ b/src/defs/VideoCamera.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/VideoCameraSlash.tsx b/src/defs/VideoCameraSlash.tsx new file mode 100644 index 000000000..cbb7ee3fe --- /dev/null +++ b/src/defs/VideoCameraSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Vignette.tsx b/src/defs/Vignette.tsx new file mode 100644 index 000000000..50916ac3a --- /dev/null +++ b/src/defs/Vignette.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/VinylRecord.tsx b/src/defs/VinylRecord.tsx new file mode 100644 index 000000000..4cbc50e03 --- /dev/null +++ b/src/defs/VinylRecord.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/VirtualReality.tsx b/src/defs/VirtualReality.tsx new file mode 100644 index 000000000..b3585f3fa --- /dev/null +++ b/src/defs/VirtualReality.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Virus.tsx b/src/defs/Virus.tsx new file mode 100644 index 000000000..dedddeaef --- /dev/null +++ b/src/defs/Virus.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Voicemail.tsx b/src/defs/Voicemail.tsx new file mode 100644 index 000000000..881f1c423 --- /dev/null +++ b/src/defs/Voicemail.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Volleyball.tsx b/src/defs/Volleyball.tsx new file mode 100644 index 000000000..df08ee4a6 --- /dev/null +++ b/src/defs/Volleyball.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Wall.tsx b/src/defs/Wall.tsx new file mode 100644 index 000000000..048f61083 --- /dev/null +++ b/src/defs/Wall.tsx @@ -0,0 +1,49 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + + + + + + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Wallet.tsx b/src/defs/Wallet.tsx new file mode 100644 index 000000000..894b3e490 --- /dev/null +++ b/src/defs/Wallet.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Warehouse.tsx b/src/defs/Warehouse.tsx new file mode 100644 index 000000000..0681952d2 --- /dev/null +++ b/src/defs/Warehouse.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Warning.tsx b/src/defs/Warning.tsx new file mode 100644 index 000000000..34b2b2c13 --- /dev/null +++ b/src/defs/Warning.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WarningCircle.tsx b/src/defs/WarningCircle.tsx new file mode 100644 index 000000000..48f020ad6 --- /dev/null +++ b/src/defs/WarningCircle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WarningDiamond.tsx b/src/defs/WarningDiamond.tsx new file mode 100644 index 000000000..77b7d3ca2 --- /dev/null +++ b/src/defs/WarningDiamond.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WarningOctagon.tsx b/src/defs/WarningOctagon.tsx new file mode 100644 index 000000000..4c5f112ae --- /dev/null +++ b/src/defs/WarningOctagon.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Watch.tsx b/src/defs/Watch.tsx new file mode 100644 index 000000000..c25c85ff3 --- /dev/null +++ b/src/defs/Watch.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WaveSawtooth.tsx b/src/defs/WaveSawtooth.tsx new file mode 100644 index 000000000..762426bd5 --- /dev/null +++ b/src/defs/WaveSawtooth.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WaveSine.tsx b/src/defs/WaveSine.tsx new file mode 100644 index 000000000..0ae45a1c2 --- /dev/null +++ b/src/defs/WaveSine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WaveSquare.tsx b/src/defs/WaveSquare.tsx new file mode 100644 index 000000000..0f70cbc2b --- /dev/null +++ b/src/defs/WaveSquare.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WaveTriangle.tsx b/src/defs/WaveTriangle.tsx new file mode 100644 index 000000000..ecd1388c4 --- /dev/null +++ b/src/defs/WaveTriangle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Waveform.tsx b/src/defs/Waveform.tsx new file mode 100644 index 000000000..298d19a06 --- /dev/null +++ b/src/defs/Waveform.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Waves.tsx b/src/defs/Waves.tsx new file mode 100644 index 000000000..bcf9696f0 --- /dev/null +++ b/src/defs/Waves.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Webcam.tsx b/src/defs/Webcam.tsx new file mode 100644 index 000000000..59fe43209 --- /dev/null +++ b/src/defs/Webcam.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WebcamSlash.tsx b/src/defs/WebcamSlash.tsx new file mode 100644 index 000000000..1a19b1f77 --- /dev/null +++ b/src/defs/WebcamSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WebhooksLogo.tsx b/src/defs/WebhooksLogo.tsx new file mode 100644 index 000000000..d8432e59b --- /dev/null +++ b/src/defs/WebhooksLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WechatLogo.tsx b/src/defs/WechatLogo.tsx new file mode 100644 index 000000000..f5cdee1fd --- /dev/null +++ b/src/defs/WechatLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WhatsappLogo.tsx b/src/defs/WhatsappLogo.tsx new file mode 100644 index 000000000..2baa4ff17 --- /dev/null +++ b/src/defs/WhatsappLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Wheelchair.tsx b/src/defs/Wheelchair.tsx new file mode 100644 index 000000000..99c986b92 --- /dev/null +++ b/src/defs/Wheelchair.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WheelchairMotion.tsx b/src/defs/WheelchairMotion.tsx new file mode 100644 index 000000000..481b41b04 --- /dev/null +++ b/src/defs/WheelchairMotion.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WifiHigh.tsx b/src/defs/WifiHigh.tsx new file mode 100644 index 000000000..bb4e63827 --- /dev/null +++ b/src/defs/WifiHigh.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WifiLow.tsx b/src/defs/WifiLow.tsx new file mode 100644 index 000000000..eea09ea49 --- /dev/null +++ b/src/defs/WifiLow.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WifiMedium.tsx b/src/defs/WifiMedium.tsx new file mode 100644 index 000000000..40af49808 --- /dev/null +++ b/src/defs/WifiMedium.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WifiNone.tsx b/src/defs/WifiNone.tsx new file mode 100644 index 000000000..2d83c0c20 --- /dev/null +++ b/src/defs/WifiNone.tsx @@ -0,0 +1,42 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WifiSlash.tsx b/src/defs/WifiSlash.tsx new file mode 100644 index 000000000..da57a7cf6 --- /dev/null +++ b/src/defs/WifiSlash.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WifiX.tsx b/src/defs/WifiX.tsx new file mode 100644 index 000000000..eee695b51 --- /dev/null +++ b/src/defs/WifiX.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Wind.tsx b/src/defs/Wind.tsx new file mode 100644 index 000000000..763c976c7 --- /dev/null +++ b/src/defs/Wind.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/WindowsLogo.tsx b/src/defs/WindowsLogo.tsx new file mode 100644 index 000000000..326877210 --- /dev/null +++ b/src/defs/WindowsLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Wine.tsx b/src/defs/Wine.tsx new file mode 100644 index 000000000..e31bb3d31 --- /dev/null +++ b/src/defs/Wine.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/Wrench.tsx b/src/defs/Wrench.tsx new file mode 100644 index 000000000..91d4fd975 --- /dev/null +++ b/src/defs/Wrench.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/X.tsx b/src/defs/X.tsx new file mode 100644 index 000000000..6bc474f38 --- /dev/null +++ b/src/defs/X.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/XCircle.tsx b/src/defs/XCircle.tsx new file mode 100644 index 000000000..04d6a8053 --- /dev/null +++ b/src/defs/XCircle.tsx @@ -0,0 +1,43 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/XSquare.tsx b/src/defs/XSquare.tsx new file mode 100644 index 000000000..2311ae7af --- /dev/null +++ b/src/defs/XSquare.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/YinYang.tsx b/src/defs/YinYang.tsx new file mode 100644 index 000000000..0e2947359 --- /dev/null +++ b/src/defs/YinYang.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/defs/YoutubeLogo.tsx b/src/defs/YoutubeLogo.tsx new file mode 100644 index 000000000..2a1445d0d --- /dev/null +++ b/src/defs/YoutubeLogo.tsx @@ -0,0 +1,46 @@ +/* GENERATED FILE */ +import { ReactElement } from "react"; +import { IconWeight } from "../lib"; + +export default new Map([ + [ + "bold", + <> + + , + ], + [ + "duotone", + <> + + + , + ], + [ + "fill", + <> + + , + ], + [ + "light", + <> + + , + ], + [ + "regular", + <> + + , + ], + [ + "thin", + <> + + , + ], +]); diff --git a/src/icons/AddressBook.tsx b/src/icons/AddressBook.tsx deleted file mode 100644 index b2664ec40..000000000 --- a/src/icons/AddressBook.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", - <> - - , - ], -]); - -export const AddressBook: Icon = forwardRef((props, ref) => ( - -)); - -AddressBook.displayName = "AddressBook"; diff --git a/src/icons/AirTrafficControl.tsx b/src/icons/AirTrafficControl.tsx deleted file mode 100644 index d7bb11143..000000000 --- a/src/icons/AirTrafficControl.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", - <> - - , - ], -]); - -export const AirTrafficControl: Icon = forwardRef((props, ref) => ( - -)); - -AirTrafficControl.displayName = "AirTrafficControl"; diff --git a/src/icons/Airplane.tsx b/src/icons/Airplane.tsx deleted file mode 100644 index 707ecb6bf..000000000 --- a/src/icons/Airplane.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", - <> - - , - ], -]); - -export const Airplane: Icon = forwardRef((props, ref) => ( - -)); - -Airplane.displayName = "Airplane"; diff --git a/src/icons/AirplaneInFlight.tsx b/src/icons/AirplaneInFlight.tsx deleted file mode 100644 index 8e34b685b..000000000 --- a/src/icons/AirplaneInFlight.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", - <> - - , - ], -]); - -export const AirplaneInFlight: Icon = forwardRef((props, ref) => ( - -)); - -AirplaneInFlight.displayName = "AirplaneInFlight"; diff --git a/src/icons/AirplaneLanding.tsx b/src/icons/AirplaneLanding.tsx deleted file mode 100644 index 9c3a48924..000000000 --- a/src/icons/AirplaneLanding.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", - <> - - , - ], -]); - -export const AirplaneLanding: Icon = forwardRef((props, ref) => ( - -)); - -AirplaneLanding.displayName = "AirplaneLanding"; diff --git a/src/icons/AirplaneTakeoff.tsx b/src/icons/AirplaneTakeoff.tsx deleted file mode 100644 index ed7c21089..000000000 --- a/src/icons/AirplaneTakeoff.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", - <> - - , - ], -]); - -export const AirplaneTakeoff: Icon = forwardRef((props, ref) => ( - -)); - -AirplaneTakeoff.displayName = "AirplaneTakeoff"; diff --git a/src/icons/AirplaneTilt.tsx b/src/icons/AirplaneTilt.tsx deleted file mode 100644 index b96a0a10f..000000000 --- a/src/icons/AirplaneTilt.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", - <> - - , - ], -]); - -export const AirplaneTilt: Icon = forwardRef((props, ref) => ( - -)); - -AirplaneTilt.displayName = "AirplaneTilt"; diff --git a/src/icons/Airplay.tsx b/src/icons/Airplay.tsx deleted file mode 100644 index ce83118e0..000000000 --- a/src/icons/Airplay.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", - <> - - , - ], -]); - -export const Airplay: Icon = forwardRef((props, ref) => ( - -)); - -Airplay.displayName = "Airplay"; diff --git a/src/icons/Alarm.tsx b/src/icons/Alarm.tsx deleted file mode 100644 index 4d542c3d8..000000000 --- a/src/icons/Alarm.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Alarm: Icon = forwardRef((props, ref) => ( - -)); - -Alarm.displayName = "Alarm"; diff --git a/src/icons/Alien.tsx b/src/icons/Alien.tsx deleted file mode 100644 index 0f0bd8c33..000000000 --- a/src/icons/Alien.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", - <> - - , - ], -]); - -export const Alien: Icon = forwardRef((props, ref) => ( - -)); - -Alien.displayName = "Alien"; diff --git a/src/icons/AlignBottom.tsx b/src/icons/AlignBottom.tsx deleted file mode 100644 index c20e125d1..000000000 --- a/src/icons/AlignBottom.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", - <> - - , - ], -]); - -export const AlignBottom: Icon = forwardRef((props, ref) => ( - -)); - -AlignBottom.displayName = "AlignBottom"; diff --git a/src/icons/AlignBottomSimple.tsx b/src/icons/AlignBottomSimple.tsx deleted file mode 100644 index 7490779fc..000000000 --- a/src/icons/AlignBottomSimple.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", - <> - - , - ], -]); - -export const AlignBottomSimple: Icon = forwardRef((props, ref) => ( - -)); - -AlignBottomSimple.displayName = "AlignBottomSimple"; diff --git a/src/icons/AlignCenterHorizontal.tsx b/src/icons/AlignCenterHorizontal.tsx deleted file mode 100644 index 3e1cf2f49..000000000 --- a/src/icons/AlignCenterHorizontal.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", - <> - - , - ], -]); - -export const AlignCenterHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -AlignCenterHorizontal.displayName = "AlignCenterHorizontal"; diff --git a/src/icons/AlignCenterHorizontalSimple.tsx b/src/icons/AlignCenterHorizontalSimple.tsx deleted file mode 100644 index 85ac37965..000000000 --- a/src/icons/AlignCenterHorizontalSimple.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", - <> - - , - ], -]); - -export const AlignCenterHorizontalSimple: Icon = forwardRef((props, ref) => ( - -)); - -AlignCenterHorizontalSimple.displayName = "AlignCenterHorizontalSimple"; diff --git a/src/icons/AlignCenterVertical.tsx b/src/icons/AlignCenterVertical.tsx deleted file mode 100644 index a6e5934f5..000000000 --- a/src/icons/AlignCenterVertical.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", - <> - - , - ], -]); - -export const AlignCenterVertical: Icon = forwardRef((props, ref) => ( - -)); - -AlignCenterVertical.displayName = "AlignCenterVertical"; diff --git a/src/icons/AlignCenterVerticalSimple.tsx b/src/icons/AlignCenterVerticalSimple.tsx deleted file mode 100644 index 84132a02e..000000000 --- a/src/icons/AlignCenterVerticalSimple.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", - <> - - , - ], -]); - -export const AlignCenterVerticalSimple: Icon = forwardRef((props, ref) => ( - -)); - -AlignCenterVerticalSimple.displayName = "AlignCenterVerticalSimple"; diff --git a/src/icons/AlignLeft.tsx b/src/icons/AlignLeft.tsx deleted file mode 100644 index 41de05104..000000000 --- a/src/icons/AlignLeft.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", - <> - - , - ], -]); - -export const AlignLeft: Icon = forwardRef((props, ref) => ( - -)); - -AlignLeft.displayName = "AlignLeft"; diff --git a/src/icons/AlignLeftSimple.tsx b/src/icons/AlignLeftSimple.tsx deleted file mode 100644 index bc4d84677..000000000 --- a/src/icons/AlignLeftSimple.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", - <> - - , - ], -]); - -export const AlignLeftSimple: Icon = forwardRef((props, ref) => ( - -)); - -AlignLeftSimple.displayName = "AlignLeftSimple"; diff --git a/src/icons/AlignRight.tsx b/src/icons/AlignRight.tsx deleted file mode 100644 index ebe854602..000000000 --- a/src/icons/AlignRight.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", - <> - - , - ], -]); - -export const AlignRight: Icon = forwardRef((props, ref) => ( - -)); - -AlignRight.displayName = "AlignRight"; diff --git a/src/icons/AlignRightSimple.tsx b/src/icons/AlignRightSimple.tsx deleted file mode 100644 index 9859ed141..000000000 --- a/src/icons/AlignRightSimple.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", - <> - - , - ], -]); - -export const AlignRightSimple: Icon = forwardRef((props, ref) => ( - -)); - -AlignRightSimple.displayName = "AlignRightSimple"; diff --git a/src/icons/AlignTop.tsx b/src/icons/AlignTop.tsx deleted file mode 100644 index d6cb0d98e..000000000 --- a/src/icons/AlignTop.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", - <> - - , - ], -]); - -export const AlignTop: Icon = forwardRef((props, ref) => ( - -)); - -AlignTop.displayName = "AlignTop"; diff --git a/src/icons/AlignTopSimple.tsx b/src/icons/AlignTopSimple.tsx deleted file mode 100644 index e0a701794..000000000 --- a/src/icons/AlignTopSimple.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", - <> - - , - ], -]); - -export const AlignTopSimple: Icon = forwardRef((props, ref) => ( - -)); - -AlignTopSimple.displayName = "AlignTopSimple"; diff --git a/src/icons/AmazonLogo.tsx b/src/icons/AmazonLogo.tsx deleted file mode 100644 index 0cec28c9e..000000000 --- a/src/icons/AmazonLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const AmazonLogo: Icon = forwardRef((props, ref) => ( - -)); - -AmazonLogo.displayName = "AmazonLogo"; diff --git a/src/icons/Anchor.tsx b/src/icons/Anchor.tsx deleted file mode 100644 index 3176e7482..000000000 --- a/src/icons/Anchor.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Anchor: Icon = forwardRef((props, ref) => ( - -)); - -Anchor.displayName = "Anchor"; diff --git a/src/icons/AnchorSimple.tsx b/src/icons/AnchorSimple.tsx deleted file mode 100644 index bd566fcf7..000000000 --- a/src/icons/AnchorSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const AnchorSimple: Icon = forwardRef((props, ref) => ( - -)); - -AnchorSimple.displayName = "AnchorSimple"; diff --git a/src/icons/AndroidLogo.tsx b/src/icons/AndroidLogo.tsx deleted file mode 100644 index b8df062b3..000000000 --- a/src/icons/AndroidLogo.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", - <> - - , - ], -]); - -export const AndroidLogo: Icon = forwardRef((props, ref) => ( - -)); - -AndroidLogo.displayName = "AndroidLogo"; diff --git a/src/icons/AngularLogo.tsx b/src/icons/AngularLogo.tsx deleted file mode 100644 index 4d9827154..000000000 --- a/src/icons/AngularLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const AngularLogo: Icon = forwardRef((props, ref) => ( - -)); - -AngularLogo.displayName = "AngularLogo"; diff --git a/src/icons/Aperture.tsx b/src/icons/Aperture.tsx deleted file mode 100644 index 5e6960e26..000000000 --- a/src/icons/Aperture.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", - <> - - , - ], -]); - -export const Aperture: Icon = forwardRef((props, ref) => ( - -)); - -Aperture.displayName = "Aperture"; diff --git a/src/icons/AppStoreLogo.tsx b/src/icons/AppStoreLogo.tsx deleted file mode 100644 index 134240385..000000000 --- a/src/icons/AppStoreLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const AppStoreLogo: Icon = forwardRef((props, ref) => ( - -)); - -AppStoreLogo.displayName = "AppStoreLogo"; diff --git a/src/icons/AppWindow.tsx b/src/icons/AppWindow.tsx deleted file mode 100644 index 1fb12a900..000000000 --- a/src/icons/AppWindow.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", - <> - - , - ], -]); - -export const AppWindow: Icon = forwardRef((props, ref) => ( - -)); - -AppWindow.displayName = "AppWindow"; diff --git a/src/icons/AppleLogo.tsx b/src/icons/AppleLogo.tsx deleted file mode 100644 index 33ccc04b4..000000000 --- a/src/icons/AppleLogo.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", - <> - - , - ], -]); - -export const AppleLogo: Icon = forwardRef((props, ref) => ( - -)); - -AppleLogo.displayName = "AppleLogo"; diff --git a/src/icons/ApplePodcastsLogo.tsx b/src/icons/ApplePodcastsLogo.tsx deleted file mode 100644 index 5e26376fa..000000000 --- a/src/icons/ApplePodcastsLogo.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", - <> - - , - ], -]); - -export const ApplePodcastsLogo: Icon = forwardRef((props, ref) => ( - -)); - -ApplePodcastsLogo.displayName = "ApplePodcastsLogo"; diff --git a/src/icons/Archive.tsx b/src/icons/Archive.tsx deleted file mode 100644 index 05ec4fde1..000000000 --- a/src/icons/Archive.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Archive: Icon = forwardRef((props, ref) => ( - -)); - -Archive.displayName = "Archive"; diff --git a/src/icons/ArchiveBox.tsx b/src/icons/ArchiveBox.tsx deleted file mode 100644 index db4759aad..000000000 --- a/src/icons/ArchiveBox.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArchiveBox: Icon = forwardRef((props, ref) => ( - -)); - -ArchiveBox.displayName = "ArchiveBox"; diff --git a/src/icons/ArchiveTray.tsx b/src/icons/ArchiveTray.tsx deleted file mode 100644 index 232d3c13e..000000000 --- a/src/icons/ArchiveTray.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", - <> - - , - ], -]); - -export const ArchiveTray: Icon = forwardRef((props, ref) => ( - -)); - -ArchiveTray.displayName = "ArchiveTray"; diff --git a/src/icons/Armchair.tsx b/src/icons/Armchair.tsx deleted file mode 100644 index d6f4c5749..000000000 --- a/src/icons/Armchair.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", - <> - - , - ], -]); - -export const Armchair: Icon = forwardRef((props, ref) => ( - -)); - -Armchair.displayName = "Armchair"; diff --git a/src/icons/ArrowArcLeft.tsx b/src/icons/ArrowArcLeft.tsx deleted file mode 100644 index 0f3b714e9..000000000 --- a/src/icons/ArrowArcLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowArcLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowArcLeft.displayName = "ArrowArcLeft"; diff --git a/src/icons/ArrowArcRight.tsx b/src/icons/ArrowArcRight.tsx deleted file mode 100644 index 30b618f2f..000000000 --- a/src/icons/ArrowArcRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowArcRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowArcRight.displayName = "ArrowArcRight"; diff --git a/src/icons/ArrowBendDoubleUpLeft.tsx b/src/icons/ArrowBendDoubleUpLeft.tsx deleted file mode 100644 index 11d1ec3d2..000000000 --- a/src/icons/ArrowBendDoubleUpLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendDoubleUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendDoubleUpLeft.displayName = "ArrowBendDoubleUpLeft"; diff --git a/src/icons/ArrowBendDoubleUpRight.tsx b/src/icons/ArrowBendDoubleUpRight.tsx deleted file mode 100644 index f2b53fff7..000000000 --- a/src/icons/ArrowBendDoubleUpRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendDoubleUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendDoubleUpRight.displayName = "ArrowBendDoubleUpRight"; diff --git a/src/icons/ArrowBendDownLeft.tsx b/src/icons/ArrowBendDownLeft.tsx deleted file mode 100644 index 83354a7fd..000000000 --- a/src/icons/ArrowBendDownLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendDownLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendDownLeft.displayName = "ArrowBendDownLeft"; diff --git a/src/icons/ArrowBendDownRight.tsx b/src/icons/ArrowBendDownRight.tsx deleted file mode 100644 index b40d17e28..000000000 --- a/src/icons/ArrowBendDownRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendDownRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendDownRight.displayName = "ArrowBendDownRight"; diff --git a/src/icons/ArrowBendLeftDown.tsx b/src/icons/ArrowBendLeftDown.tsx deleted file mode 100644 index 2f83ee973..000000000 --- a/src/icons/ArrowBendLeftDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendLeftDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendLeftDown.displayName = "ArrowBendLeftDown"; diff --git a/src/icons/ArrowBendLeftUp.tsx b/src/icons/ArrowBendLeftUp.tsx deleted file mode 100644 index 0b62e7df6..000000000 --- a/src/icons/ArrowBendLeftUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendLeftUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendLeftUp.displayName = "ArrowBendLeftUp"; diff --git a/src/icons/ArrowBendRightDown.tsx b/src/icons/ArrowBendRightDown.tsx deleted file mode 100644 index c825402f4..000000000 --- a/src/icons/ArrowBendRightDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendRightDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendRightDown.displayName = "ArrowBendRightDown"; diff --git a/src/icons/ArrowBendRightUp.tsx b/src/icons/ArrowBendRightUp.tsx deleted file mode 100644 index 5133a154e..000000000 --- a/src/icons/ArrowBendRightUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendRightUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendRightUp.displayName = "ArrowBendRightUp"; diff --git a/src/icons/ArrowBendUpLeft.tsx b/src/icons/ArrowBendUpLeft.tsx deleted file mode 100644 index c31902dc8..000000000 --- a/src/icons/ArrowBendUpLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendUpLeft.displayName = "ArrowBendUpLeft"; diff --git a/src/icons/ArrowBendUpRight.tsx b/src/icons/ArrowBendUpRight.tsx deleted file mode 100644 index e5c43ecdb..000000000 --- a/src/icons/ArrowBendUpRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowBendUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowBendUpRight.displayName = "ArrowBendUpRight"; diff --git a/src/icons/ArrowCircleDown.tsx b/src/icons/ArrowCircleDown.tsx deleted file mode 100644 index 130f4dca6..000000000 --- a/src/icons/ArrowCircleDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleDown.displayName = "ArrowCircleDown"; diff --git a/src/icons/ArrowCircleDownLeft.tsx b/src/icons/ArrowCircleDownLeft.tsx deleted file mode 100644 index 4bff301f4..000000000 --- a/src/icons/ArrowCircleDownLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleDownLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleDownLeft.displayName = "ArrowCircleDownLeft"; diff --git a/src/icons/ArrowCircleDownRight.tsx b/src/icons/ArrowCircleDownRight.tsx deleted file mode 100644 index c73ec599b..000000000 --- a/src/icons/ArrowCircleDownRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleDownRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleDownRight.displayName = "ArrowCircleDownRight"; diff --git a/src/icons/ArrowCircleLeft.tsx b/src/icons/ArrowCircleLeft.tsx deleted file mode 100644 index df8bf6efb..000000000 --- a/src/icons/ArrowCircleLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleLeft.displayName = "ArrowCircleLeft"; diff --git a/src/icons/ArrowCircleRight.tsx b/src/icons/ArrowCircleRight.tsx deleted file mode 100644 index 64ce48cf3..000000000 --- a/src/icons/ArrowCircleRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleRight.displayName = "ArrowCircleRight"; diff --git a/src/icons/ArrowCircleUp.tsx b/src/icons/ArrowCircleUp.tsx deleted file mode 100644 index 212cfd0c9..000000000 --- a/src/icons/ArrowCircleUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleUp.displayName = "ArrowCircleUp"; diff --git a/src/icons/ArrowCircleUpLeft.tsx b/src/icons/ArrowCircleUpLeft.tsx deleted file mode 100644 index 72c729988..000000000 --- a/src/icons/ArrowCircleUpLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleUpLeft.displayName = "ArrowCircleUpLeft"; diff --git a/src/icons/ArrowCircleUpRight.tsx b/src/icons/ArrowCircleUpRight.tsx deleted file mode 100644 index ecdfb2585..000000000 --- a/src/icons/ArrowCircleUpRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCircleUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCircleUpRight.displayName = "ArrowCircleUpRight"; diff --git a/src/icons/ArrowClockwise.tsx b/src/icons/ArrowClockwise.tsx deleted file mode 100644 index 8d3838fed..000000000 --- a/src/icons/ArrowClockwise.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowClockwise: Icon = forwardRef((props, ref) => ( - -)); - -ArrowClockwise.displayName = "ArrowClockwise"; diff --git a/src/icons/ArrowCounterClockwise.tsx b/src/icons/ArrowCounterClockwise.tsx deleted file mode 100644 index 882146cc9..000000000 --- a/src/icons/ArrowCounterClockwise.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowCounterClockwise: Icon = forwardRef((props, ref) => ( - -)); - -ArrowCounterClockwise.displayName = "ArrowCounterClockwise"; diff --git a/src/icons/ArrowDown.tsx b/src/icons/ArrowDown.tsx deleted file mode 100644 index a293b2ec7..000000000 --- a/src/icons/ArrowDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowDown.displayName = "ArrowDown"; diff --git a/src/icons/ArrowDownLeft.tsx b/src/icons/ArrowDownLeft.tsx deleted file mode 100644 index 945461c9c..000000000 --- a/src/icons/ArrowDownLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowDownLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowDownLeft.displayName = "ArrowDownLeft"; diff --git a/src/icons/ArrowDownRight.tsx b/src/icons/ArrowDownRight.tsx deleted file mode 100644 index 55648fe30..000000000 --- a/src/icons/ArrowDownRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowDownRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowDownRight.displayName = "ArrowDownRight"; diff --git a/src/icons/ArrowElbowDownLeft.tsx b/src/icons/ArrowElbowDownLeft.tsx deleted file mode 100644 index 6e3154576..000000000 --- a/src/icons/ArrowElbowDownLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowDownLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowDownLeft.displayName = "ArrowElbowDownLeft"; diff --git a/src/icons/ArrowElbowDownRight.tsx b/src/icons/ArrowElbowDownRight.tsx deleted file mode 100644 index 18d640eb6..000000000 --- a/src/icons/ArrowElbowDownRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowDownRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowDownRight.displayName = "ArrowElbowDownRight"; diff --git a/src/icons/ArrowElbowLeft.tsx b/src/icons/ArrowElbowLeft.tsx deleted file mode 100644 index 3ea3ffdb4..000000000 --- a/src/icons/ArrowElbowLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowLeft.displayName = "ArrowElbowLeft"; diff --git a/src/icons/ArrowElbowLeftDown.tsx b/src/icons/ArrowElbowLeftDown.tsx deleted file mode 100644 index 9ca4602ac..000000000 --- a/src/icons/ArrowElbowLeftDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowLeftDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowLeftDown.displayName = "ArrowElbowLeftDown"; diff --git a/src/icons/ArrowElbowLeftUp.tsx b/src/icons/ArrowElbowLeftUp.tsx deleted file mode 100644 index 70040aa9d..000000000 --- a/src/icons/ArrowElbowLeftUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowLeftUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowLeftUp.displayName = "ArrowElbowLeftUp"; diff --git a/src/icons/ArrowElbowRight.tsx b/src/icons/ArrowElbowRight.tsx deleted file mode 100644 index 97c42c84a..000000000 --- a/src/icons/ArrowElbowRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowRight.displayName = "ArrowElbowRight"; diff --git a/src/icons/ArrowElbowRightDown.tsx b/src/icons/ArrowElbowRightDown.tsx deleted file mode 100644 index 772252a46..000000000 --- a/src/icons/ArrowElbowRightDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowRightDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowRightDown.displayName = "ArrowElbowRightDown"; diff --git a/src/icons/ArrowElbowRightUp.tsx b/src/icons/ArrowElbowRightUp.tsx deleted file mode 100644 index 4ba3d6862..000000000 --- a/src/icons/ArrowElbowRightUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowRightUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowRightUp.displayName = "ArrowElbowRightUp"; diff --git a/src/icons/ArrowElbowUpLeft.tsx b/src/icons/ArrowElbowUpLeft.tsx deleted file mode 100644 index 58c98da0e..000000000 --- a/src/icons/ArrowElbowUpLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowUpLeft.displayName = "ArrowElbowUpLeft"; diff --git a/src/icons/ArrowElbowUpRight.tsx b/src/icons/ArrowElbowUpRight.tsx deleted file mode 100644 index ac642f9a5..000000000 --- a/src/icons/ArrowElbowUpRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowElbowUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowElbowUpRight.displayName = "ArrowElbowUpRight"; diff --git a/src/icons/ArrowFatDown.tsx b/src/icons/ArrowFatDown.tsx deleted file mode 100644 index 1569a0ba3..000000000 --- a/src/icons/ArrowFatDown.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", - <> - - , - ], -]); - -export const ArrowFatDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatDown.displayName = "ArrowFatDown"; diff --git a/src/icons/ArrowFatLeft.tsx b/src/icons/ArrowFatLeft.tsx deleted file mode 100644 index 207e17ea5..000000000 --- a/src/icons/ArrowFatLeft.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", - <> - - , - ], -]); - -export const ArrowFatLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLeft.displayName = "ArrowFatLeft"; diff --git a/src/icons/ArrowFatLineDown.tsx b/src/icons/ArrowFatLineDown.tsx deleted file mode 100644 index 54943cd1f..000000000 --- a/src/icons/ArrowFatLineDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLineDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLineDown.displayName = "ArrowFatLineDown"; diff --git a/src/icons/ArrowFatLineLeft.tsx b/src/icons/ArrowFatLineLeft.tsx deleted file mode 100644 index c5dc8a4da..000000000 --- a/src/icons/ArrowFatLineLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLineLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLineLeft.displayName = "ArrowFatLineLeft"; diff --git a/src/icons/ArrowFatLineRight.tsx b/src/icons/ArrowFatLineRight.tsx deleted file mode 100644 index a30f5ec95..000000000 --- a/src/icons/ArrowFatLineRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLineRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLineRight.displayName = "ArrowFatLineRight"; diff --git a/src/icons/ArrowFatLineUp.tsx b/src/icons/ArrowFatLineUp.tsx deleted file mode 100644 index 052065d75..000000000 --- a/src/icons/ArrowFatLineUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLineUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLineUp.displayName = "ArrowFatLineUp"; diff --git a/src/icons/ArrowFatLinesDown.tsx b/src/icons/ArrowFatLinesDown.tsx deleted file mode 100644 index 586c46edc..000000000 --- a/src/icons/ArrowFatLinesDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLinesDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLinesDown.displayName = "ArrowFatLinesDown"; diff --git a/src/icons/ArrowFatLinesLeft.tsx b/src/icons/ArrowFatLinesLeft.tsx deleted file mode 100644 index 63f2e4e3e..000000000 --- a/src/icons/ArrowFatLinesLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLinesLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLinesLeft.displayName = "ArrowFatLinesLeft"; diff --git a/src/icons/ArrowFatLinesRight.tsx b/src/icons/ArrowFatLinesRight.tsx deleted file mode 100644 index 4c736c495..000000000 --- a/src/icons/ArrowFatLinesRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLinesRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLinesRight.displayName = "ArrowFatLinesRight"; diff --git a/src/icons/ArrowFatLinesUp.tsx b/src/icons/ArrowFatLinesUp.tsx deleted file mode 100644 index f1a5a1a6a..000000000 --- a/src/icons/ArrowFatLinesUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowFatLinesUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatLinesUp.displayName = "ArrowFatLinesUp"; diff --git a/src/icons/ArrowFatRight.tsx b/src/icons/ArrowFatRight.tsx deleted file mode 100644 index ccf083f75..000000000 --- a/src/icons/ArrowFatRight.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", - <> - - , - ], -]); - -export const ArrowFatRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatRight.displayName = "ArrowFatRight"; diff --git a/src/icons/ArrowFatUp.tsx b/src/icons/ArrowFatUp.tsx deleted file mode 100644 index 66a994ad8..000000000 --- a/src/icons/ArrowFatUp.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", - <> - - , - ], -]); - -export const ArrowFatUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowFatUp.displayName = "ArrowFatUp"; diff --git a/src/icons/ArrowLeft.tsx b/src/icons/ArrowLeft.tsx deleted file mode 100644 index 5e05d8d74..000000000 --- a/src/icons/ArrowLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLeft.displayName = "ArrowLeft"; diff --git a/src/icons/ArrowLineDown.tsx b/src/icons/ArrowLineDown.tsx deleted file mode 100644 index e9e1d7ca6..000000000 --- a/src/icons/ArrowLineDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLineDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineDown.displayName = "ArrowLineDown"; diff --git a/src/icons/ArrowLineDownLeft.tsx b/src/icons/ArrowLineDownLeft.tsx deleted file mode 100644 index f66c8b02b..000000000 --- a/src/icons/ArrowLineDownLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLineDownLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineDownLeft.displayName = "ArrowLineDownLeft"; diff --git a/src/icons/ArrowLineDownRight.tsx b/src/icons/ArrowLineDownRight.tsx deleted file mode 100644 index e1e9bb303..000000000 --- a/src/icons/ArrowLineDownRight.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", - <> - - , - ], -]); - -export const ArrowLineDownRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineDownRight.displayName = "ArrowLineDownRight"; diff --git a/src/icons/ArrowLineLeft.tsx b/src/icons/ArrowLineLeft.tsx deleted file mode 100644 index fb8693f62..000000000 --- a/src/icons/ArrowLineLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLineLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineLeft.displayName = "ArrowLineLeft"; diff --git a/src/icons/ArrowLineRight.tsx b/src/icons/ArrowLineRight.tsx deleted file mode 100644 index 9bd032e8e..000000000 --- a/src/icons/ArrowLineRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLineRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineRight.displayName = "ArrowLineRight"; diff --git a/src/icons/ArrowLineUp.tsx b/src/icons/ArrowLineUp.tsx deleted file mode 100644 index 47bec4770..000000000 --- a/src/icons/ArrowLineUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLineUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineUp.displayName = "ArrowLineUp"; diff --git a/src/icons/ArrowLineUpLeft.tsx b/src/icons/ArrowLineUpLeft.tsx deleted file mode 100644 index 5ddf2ffa8..000000000 --- a/src/icons/ArrowLineUpLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLineUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineUpLeft.displayName = "ArrowLineUpLeft"; diff --git a/src/icons/ArrowLineUpRight.tsx b/src/icons/ArrowLineUpRight.tsx deleted file mode 100644 index 881cc44ee..000000000 --- a/src/icons/ArrowLineUpRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowLineUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowLineUpRight.displayName = "ArrowLineUpRight"; diff --git a/src/icons/ArrowRight.tsx b/src/icons/ArrowRight.tsx deleted file mode 100644 index b39f07daf..000000000 --- a/src/icons/ArrowRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowRight.displayName = "ArrowRight"; diff --git a/src/icons/ArrowSquareDown.tsx b/src/icons/ArrowSquareDown.tsx deleted file mode 100644 index 85031851f..000000000 --- a/src/icons/ArrowSquareDown.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", - <> - - , - ], -]); - -export const ArrowSquareDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareDown.displayName = "ArrowSquareDown"; diff --git a/src/icons/ArrowSquareDownLeft.tsx b/src/icons/ArrowSquareDownLeft.tsx deleted file mode 100644 index 12c697c7c..000000000 --- a/src/icons/ArrowSquareDownLeft.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", - <> - - , - ], -]); - -export const ArrowSquareDownLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareDownLeft.displayName = "ArrowSquareDownLeft"; diff --git a/src/icons/ArrowSquareDownRight.tsx b/src/icons/ArrowSquareDownRight.tsx deleted file mode 100644 index 94c9dc4b7..000000000 --- a/src/icons/ArrowSquareDownRight.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", - <> - - , - ], -]); - -export const ArrowSquareDownRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareDownRight.displayName = "ArrowSquareDownRight"; diff --git a/src/icons/ArrowSquareIn.tsx b/src/icons/ArrowSquareIn.tsx deleted file mode 100644 index e0515c166..000000000 --- a/src/icons/ArrowSquareIn.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", - <> - - , - ], -]); - -export const ArrowSquareIn: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareIn.displayName = "ArrowSquareIn"; diff --git a/src/icons/ArrowSquareLeft.tsx b/src/icons/ArrowSquareLeft.tsx deleted file mode 100644 index ffff51301..000000000 --- a/src/icons/ArrowSquareLeft.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", - <> - - , - ], -]); - -export const ArrowSquareLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareLeft.displayName = "ArrowSquareLeft"; diff --git a/src/icons/ArrowSquareOut.tsx b/src/icons/ArrowSquareOut.tsx deleted file mode 100644 index ed9d104ca..000000000 --- a/src/icons/ArrowSquareOut.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", - <> - - , - ], -]); - -export const ArrowSquareOut: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareOut.displayName = "ArrowSquareOut"; diff --git a/src/icons/ArrowSquareRight.tsx b/src/icons/ArrowSquareRight.tsx deleted file mode 100644 index a49782413..000000000 --- a/src/icons/ArrowSquareRight.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", - <> - - , - ], -]); - -export const ArrowSquareRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareRight.displayName = "ArrowSquareRight"; diff --git a/src/icons/ArrowSquareUp.tsx b/src/icons/ArrowSquareUp.tsx deleted file mode 100644 index 7dceb5fa2..000000000 --- a/src/icons/ArrowSquareUp.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", - <> - - , - ], -]); - -export const ArrowSquareUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareUp.displayName = "ArrowSquareUp"; diff --git a/src/icons/ArrowSquareUpLeft.tsx b/src/icons/ArrowSquareUpLeft.tsx deleted file mode 100644 index 4d4832172..000000000 --- a/src/icons/ArrowSquareUpLeft.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", - <> - - , - ], -]); - -export const ArrowSquareUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareUpLeft.displayName = "ArrowSquareUpLeft"; diff --git a/src/icons/ArrowSquareUpRight.tsx b/src/icons/ArrowSquareUpRight.tsx deleted file mode 100644 index 3507e0167..000000000 --- a/src/icons/ArrowSquareUpRight.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", - <> - - , - ], -]); - -export const ArrowSquareUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowSquareUpRight.displayName = "ArrowSquareUpRight"; diff --git a/src/icons/ArrowUDownLeft.tsx b/src/icons/ArrowUDownLeft.tsx deleted file mode 100644 index cd2278968..000000000 --- a/src/icons/ArrowUDownLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowUDownLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowUDownLeft.displayName = "ArrowUDownLeft"; diff --git a/src/icons/ArrowUDownRight.tsx b/src/icons/ArrowUDownRight.tsx deleted file mode 100644 index a86075bb5..000000000 --- a/src/icons/ArrowUDownRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowUDownRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowUDownRight.displayName = "ArrowUDownRight"; diff --git a/src/icons/ArrowULeftDown.tsx b/src/icons/ArrowULeftDown.tsx deleted file mode 100644 index 5f9fd2b20..000000000 --- a/src/icons/ArrowULeftDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowULeftDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowULeftDown.displayName = "ArrowULeftDown"; diff --git a/src/icons/ArrowULeftUp.tsx b/src/icons/ArrowULeftUp.tsx deleted file mode 100644 index 7b5cc404d..000000000 --- a/src/icons/ArrowULeftUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowULeftUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowULeftUp.displayName = "ArrowULeftUp"; diff --git a/src/icons/ArrowURightDown.tsx b/src/icons/ArrowURightDown.tsx deleted file mode 100644 index 33495987d..000000000 --- a/src/icons/ArrowURightDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowURightDown: Icon = forwardRef((props, ref) => ( - -)); - -ArrowURightDown.displayName = "ArrowURightDown"; diff --git a/src/icons/ArrowURightUp.tsx b/src/icons/ArrowURightUp.tsx deleted file mode 100644 index 19c424e5e..000000000 --- a/src/icons/ArrowURightUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowURightUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowURightUp.displayName = "ArrowURightUp"; diff --git a/src/icons/ArrowUUpLeft.tsx b/src/icons/ArrowUUpLeft.tsx deleted file mode 100644 index fb79e71b9..000000000 --- a/src/icons/ArrowUUpLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowUUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowUUpLeft.displayName = "ArrowUUpLeft"; diff --git a/src/icons/ArrowUUpRight.tsx b/src/icons/ArrowUUpRight.tsx deleted file mode 100644 index abbebd72f..000000000 --- a/src/icons/ArrowUUpRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowUUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowUUpRight.displayName = "ArrowUUpRight"; diff --git a/src/icons/ArrowUp.tsx b/src/icons/ArrowUp.tsx deleted file mode 100644 index 6186d06b8..000000000 --- a/src/icons/ArrowUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowUp.displayName = "ArrowUp"; diff --git a/src/icons/ArrowUpLeft.tsx b/src/icons/ArrowUpLeft.tsx deleted file mode 100644 index 5e4fc7060..000000000 --- a/src/icons/ArrowUpLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowUpLeft: Icon = forwardRef((props, ref) => ( - -)); - -ArrowUpLeft.displayName = "ArrowUpLeft"; diff --git a/src/icons/ArrowUpRight.tsx b/src/icons/ArrowUpRight.tsx deleted file mode 100644 index 3a3ca7cee..000000000 --- a/src/icons/ArrowUpRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowUpRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowUpRight.displayName = "ArrowUpRight"; diff --git a/src/icons/ArrowsClockwise.tsx b/src/icons/ArrowsClockwise.tsx deleted file mode 100644 index c449eb125..000000000 --- a/src/icons/ArrowsClockwise.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsClockwise: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsClockwise.displayName = "ArrowsClockwise"; diff --git a/src/icons/ArrowsCounterClockwise.tsx b/src/icons/ArrowsCounterClockwise.tsx deleted file mode 100644 index a4c158327..000000000 --- a/src/icons/ArrowsCounterClockwise.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsCounterClockwise: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsCounterClockwise.displayName = "ArrowsCounterClockwise"; diff --git a/src/icons/ArrowsDownUp.tsx b/src/icons/ArrowsDownUp.tsx deleted file mode 100644 index 948e994dd..000000000 --- a/src/icons/ArrowsDownUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsDownUp: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsDownUp.displayName = "ArrowsDownUp"; diff --git a/src/icons/ArrowsHorizontal.tsx b/src/icons/ArrowsHorizontal.tsx deleted file mode 100644 index 424ee29fa..000000000 --- a/src/icons/ArrowsHorizontal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsHorizontal.displayName = "ArrowsHorizontal"; diff --git a/src/icons/ArrowsIn.tsx b/src/icons/ArrowsIn.tsx deleted file mode 100644 index bd89ad0e4..000000000 --- a/src/icons/ArrowsIn.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", - <> - - , - ], -]); - -export const ArrowsIn: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsIn.displayName = "ArrowsIn"; diff --git a/src/icons/ArrowsInCardinal.tsx b/src/icons/ArrowsInCardinal.tsx deleted file mode 100644 index 646d96a72..000000000 --- a/src/icons/ArrowsInCardinal.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", - <> - - , - ], -]); - -export const ArrowsInCardinal: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsInCardinal.displayName = "ArrowsInCardinal"; diff --git a/src/icons/ArrowsInLineHorizontal.tsx b/src/icons/ArrowsInLineHorizontal.tsx deleted file mode 100644 index 3cb972e39..000000000 --- a/src/icons/ArrowsInLineHorizontal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsInLineHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsInLineHorizontal.displayName = "ArrowsInLineHorizontal"; diff --git a/src/icons/ArrowsInLineVertical.tsx b/src/icons/ArrowsInLineVertical.tsx deleted file mode 100644 index 916446b89..000000000 --- a/src/icons/ArrowsInLineVertical.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsInLineVertical: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsInLineVertical.displayName = "ArrowsInLineVertical"; diff --git a/src/icons/ArrowsInSimple.tsx b/src/icons/ArrowsInSimple.tsx deleted file mode 100644 index 0114bb782..000000000 --- a/src/icons/ArrowsInSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsInSimple: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsInSimple.displayName = "ArrowsInSimple"; diff --git a/src/icons/ArrowsLeftRight.tsx b/src/icons/ArrowsLeftRight.tsx deleted file mode 100644 index e5e7bde15..000000000 --- a/src/icons/ArrowsLeftRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsLeftRight: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsLeftRight.displayName = "ArrowsLeftRight"; diff --git a/src/icons/ArrowsMerge.tsx b/src/icons/ArrowsMerge.tsx deleted file mode 100644 index ef5c0061f..000000000 --- a/src/icons/ArrowsMerge.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsMerge: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsMerge.displayName = "ArrowsMerge"; diff --git a/src/icons/ArrowsOut.tsx b/src/icons/ArrowsOut.tsx deleted file mode 100644 index 9f4080868..000000000 --- a/src/icons/ArrowsOut.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", - <> - - , - ], -]); - -export const ArrowsOut: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsOut.displayName = "ArrowsOut"; diff --git a/src/icons/ArrowsOutCardinal.tsx b/src/icons/ArrowsOutCardinal.tsx deleted file mode 100644 index c9daf397e..000000000 --- a/src/icons/ArrowsOutCardinal.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", - <> - - , - ], -]); - -export const ArrowsOutCardinal: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsOutCardinal.displayName = "ArrowsOutCardinal"; diff --git a/src/icons/ArrowsOutLineHorizontal.tsx b/src/icons/ArrowsOutLineHorizontal.tsx deleted file mode 100644 index 931fe7ca2..000000000 --- a/src/icons/ArrowsOutLineHorizontal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsOutLineHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsOutLineHorizontal.displayName = "ArrowsOutLineHorizontal"; diff --git a/src/icons/ArrowsOutLineVertical.tsx b/src/icons/ArrowsOutLineVertical.tsx deleted file mode 100644 index 711938a54..000000000 --- a/src/icons/ArrowsOutLineVertical.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsOutLineVertical: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsOutLineVertical.displayName = "ArrowsOutLineVertical"; diff --git a/src/icons/ArrowsOutSimple.tsx b/src/icons/ArrowsOutSimple.tsx deleted file mode 100644 index fb9580cec..000000000 --- a/src/icons/ArrowsOutSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsOutSimple: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsOutSimple.displayName = "ArrowsOutSimple"; diff --git a/src/icons/ArrowsSplit.tsx b/src/icons/ArrowsSplit.tsx deleted file mode 100644 index c8d0adfc1..000000000 --- a/src/icons/ArrowsSplit.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsSplit: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsSplit.displayName = "ArrowsSplit"; diff --git a/src/icons/ArrowsVertical.tsx b/src/icons/ArrowsVertical.tsx deleted file mode 100644 index 08a3aeb05..000000000 --- a/src/icons/ArrowsVertical.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArrowsVertical: Icon = forwardRef((props, ref) => ( - -)); - -ArrowsVertical.displayName = "ArrowsVertical"; diff --git a/src/icons/Article.tsx b/src/icons/Article.tsx deleted file mode 100644 index 52ef8ebaf..000000000 --- a/src/icons/Article.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", - <> - - , - ], -]); - -export const Article: Icon = forwardRef((props, ref) => ( - -)); - -Article.displayName = "Article"; diff --git a/src/icons/ArticleMedium.tsx b/src/icons/ArticleMedium.tsx deleted file mode 100644 index 5473aba4d..000000000 --- a/src/icons/ArticleMedium.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArticleMedium: Icon = forwardRef((props, ref) => ( - -)); - -ArticleMedium.displayName = "ArticleMedium"; diff --git a/src/icons/ArticleNyTimes.tsx b/src/icons/ArticleNyTimes.tsx deleted file mode 100644 index 62fcf8fd7..000000000 --- a/src/icons/ArticleNyTimes.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ArticleNyTimes: Icon = forwardRef((props, ref) => ( - -)); - -ArticleNyTimes.displayName = "ArticleNyTimes"; diff --git a/src/icons/Asterisk.tsx b/src/icons/Asterisk.tsx deleted file mode 100644 index c37723820..000000000 --- a/src/icons/Asterisk.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Asterisk: Icon = forwardRef((props, ref) => ( - -)); - -Asterisk.displayName = "Asterisk"; diff --git a/src/icons/AsteriskSimple.tsx b/src/icons/AsteriskSimple.tsx deleted file mode 100644 index 67d889446..000000000 --- a/src/icons/AsteriskSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const AsteriskSimple: Icon = forwardRef((props, ref) => ( - -)); - -AsteriskSimple.displayName = "AsteriskSimple"; diff --git a/src/icons/At.tsx b/src/icons/At.tsx deleted file mode 100644 index f756ba142..000000000 --- a/src/icons/At.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const At: Icon = forwardRef((props, ref) => ( - -)); - -At.displayName = "At"; diff --git a/src/icons/Atom.tsx b/src/icons/Atom.tsx deleted file mode 100644 index d3ca6b558..000000000 --- a/src/icons/Atom.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", - <> - - , - ], -]); - -export const Atom: Icon = forwardRef((props, ref) => ( - -)); - -Atom.displayName = "Atom"; diff --git a/src/icons/Baby.tsx b/src/icons/Baby.tsx deleted file mode 100644 index c48322525..000000000 --- a/src/icons/Baby.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Baby: Icon = forwardRef((props, ref) => ( - -)); - -Baby.displayName = "Baby"; diff --git a/src/icons/Backpack.tsx b/src/icons/Backpack.tsx deleted file mode 100644 index 26e57cb72..000000000 --- a/src/icons/Backpack.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", - <> - - , - ], -]); - -export const Backpack: Icon = forwardRef((props, ref) => ( - -)); - -Backpack.displayName = "Backpack"; diff --git a/src/icons/Backspace.tsx b/src/icons/Backspace.tsx deleted file mode 100644 index 326b3bf82..000000000 --- a/src/icons/Backspace.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", - <> - - , - ], -]); - -export const Backspace: Icon = forwardRef((props, ref) => ( - -)); - -Backspace.displayName = "Backspace"; diff --git a/src/icons/Bag.tsx b/src/icons/Bag.tsx deleted file mode 100644 index 3526fc54e..000000000 --- a/src/icons/Bag.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", - <> - - , - ], -]); - -export const Bag: Icon = forwardRef((props, ref) => ( - -)); - -Bag.displayName = "Bag"; diff --git a/src/icons/BagSimple.tsx b/src/icons/BagSimple.tsx deleted file mode 100644 index 8630fc2b1..000000000 --- a/src/icons/BagSimple.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", - <> - - , - ], -]); - -export const BagSimple: Icon = forwardRef((props, ref) => ( - -)); - -BagSimple.displayName = "BagSimple"; diff --git a/src/icons/Balloon.tsx b/src/icons/Balloon.tsx deleted file mode 100644 index deb7aa402..000000000 --- a/src/icons/Balloon.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", - <> - - , - ], -]); - -export const Balloon: Icon = forwardRef((props, ref) => ( - -)); - -Balloon.displayName = "Balloon"; diff --git a/src/icons/Bandaids.tsx b/src/icons/Bandaids.tsx deleted file mode 100644 index b5c89e74b..000000000 --- a/src/icons/Bandaids.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const Bandaids: Icon = forwardRef((props, ref) => ( - -)); - -Bandaids.displayName = "Bandaids"; diff --git a/src/icons/Bank.tsx b/src/icons/Bank.tsx deleted file mode 100644 index bbbe15196..000000000 --- a/src/icons/Bank.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Bank: Icon = forwardRef((props, ref) => ( - -)); - -Bank.displayName = "Bank"; diff --git a/src/icons/Barbell.tsx b/src/icons/Barbell.tsx deleted file mode 100644 index 615ee30d4..000000000 --- a/src/icons/Barbell.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", - <> - - , - ], -]); - -export const Barbell: Icon = forwardRef((props, ref) => ( - -)); - -Barbell.displayName = "Barbell"; diff --git a/src/icons/Barcode.tsx b/src/icons/Barcode.tsx deleted file mode 100644 index 5fe94db9a..000000000 --- a/src/icons/Barcode.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Barcode: Icon = forwardRef((props, ref) => ( - -)); - -Barcode.displayName = "Barcode"; diff --git a/src/icons/Barricade.tsx b/src/icons/Barricade.tsx deleted file mode 100644 index 414f3cbed..000000000 --- a/src/icons/Barricade.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", - <> - - , - ], -]); - -export const Barricade: Icon = forwardRef((props, ref) => ( - -)); - -Barricade.displayName = "Barricade"; diff --git a/src/icons/Baseball.tsx b/src/icons/Baseball.tsx deleted file mode 100644 index c60e79e05..000000000 --- a/src/icons/Baseball.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", - <> - - , - ], -]); - -export const Baseball: Icon = forwardRef((props, ref) => ( - -)); - -Baseball.displayName = "Baseball"; diff --git a/src/icons/BaseballCap.tsx b/src/icons/BaseballCap.tsx deleted file mode 100644 index bf10ad1ff..000000000 --- a/src/icons/BaseballCap.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", - <> - - , - ], -]); - -export const BaseballCap: Icon = forwardRef((props, ref) => ( - -)); - -BaseballCap.displayName = "BaseballCap"; diff --git a/src/icons/Basket.tsx b/src/icons/Basket.tsx deleted file mode 100644 index 7e9240798..000000000 --- a/src/icons/Basket.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", - <> - - , - ], -]); - -export const Basket: Icon = forwardRef((props, ref) => ( - -)); - -Basket.displayName = "Basket"; diff --git a/src/icons/Basketball.tsx b/src/icons/Basketball.tsx deleted file mode 100644 index bdd5ac4e7..000000000 --- a/src/icons/Basketball.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", - <> - - , - ], -]); - -export const Basketball: Icon = forwardRef((props, ref) => ( - -)); - -Basketball.displayName = "Basketball"; diff --git a/src/icons/Bathtub.tsx b/src/icons/Bathtub.tsx deleted file mode 100644 index 8ae27b277..000000000 --- a/src/icons/Bathtub.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", - <> - - , - ], -]); - -export const Bathtub: Icon = forwardRef((props, ref) => ( - -)); - -Bathtub.displayName = "Bathtub"; diff --git a/src/icons/BatteryCharging.tsx b/src/icons/BatteryCharging.tsx deleted file mode 100644 index 81f6f6148..000000000 --- a/src/icons/BatteryCharging.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", - <> - - , - ], -]); - -export const BatteryCharging: Icon = forwardRef((props, ref) => ( - -)); - -BatteryCharging.displayName = "BatteryCharging"; diff --git a/src/icons/BatteryChargingVertical.tsx b/src/icons/BatteryChargingVertical.tsx deleted file mode 100644 index b0f7cf64e..000000000 --- a/src/icons/BatteryChargingVertical.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", - <> - - , - ], -]); - -export const BatteryChargingVertical: Icon = forwardRef((props, ref) => ( - -)); - -BatteryChargingVertical.displayName = "BatteryChargingVertical"; diff --git a/src/icons/BatteryEmpty.tsx b/src/icons/BatteryEmpty.tsx deleted file mode 100644 index d7562452c..000000000 --- a/src/icons/BatteryEmpty.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", - <> - - , - ], -]); - -export const BatteryEmpty: Icon = forwardRef((props, ref) => ( - -)); - -BatteryEmpty.displayName = "BatteryEmpty"; diff --git a/src/icons/BatteryFull.tsx b/src/icons/BatteryFull.tsx deleted file mode 100644 index 54721611c..000000000 --- a/src/icons/BatteryFull.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", - <> - - , - ], -]); - -export const BatteryFull: Icon = forwardRef((props, ref) => ( - -)); - -BatteryFull.displayName = "BatteryFull"; diff --git a/src/icons/BatteryHigh.tsx b/src/icons/BatteryHigh.tsx deleted file mode 100644 index c35b5e103..000000000 --- a/src/icons/BatteryHigh.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", - <> - - , - ], -]); - -export const BatteryHigh: Icon = forwardRef((props, ref) => ( - -)); - -BatteryHigh.displayName = "BatteryHigh"; diff --git a/src/icons/BatteryLow.tsx b/src/icons/BatteryLow.tsx deleted file mode 100644 index e9bcf63c3..000000000 --- a/src/icons/BatteryLow.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", - <> - - , - ], -]); - -export const BatteryLow: Icon = forwardRef((props, ref) => ( - -)); - -BatteryLow.displayName = "BatteryLow"; diff --git a/src/icons/BatteryMedium.tsx b/src/icons/BatteryMedium.tsx deleted file mode 100644 index 9fdb8fdb6..000000000 --- a/src/icons/BatteryMedium.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", - <> - - , - ], -]); - -export const BatteryMedium: Icon = forwardRef((props, ref) => ( - -)); - -BatteryMedium.displayName = "BatteryMedium"; diff --git a/src/icons/BatteryPlus.tsx b/src/icons/BatteryPlus.tsx deleted file mode 100644 index a096f7d73..000000000 --- a/src/icons/BatteryPlus.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", - <> - - , - ], -]); - -export const BatteryPlus: Icon = forwardRef((props, ref) => ( - -)); - -BatteryPlus.displayName = "BatteryPlus"; diff --git a/src/icons/BatteryPlusVertical.tsx b/src/icons/BatteryPlusVertical.tsx deleted file mode 100644 index a7d17209f..000000000 --- a/src/icons/BatteryPlusVertical.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", - <> - - , - ], -]); - -export const BatteryPlusVertical: Icon = forwardRef((props, ref) => ( - -)); - -BatteryPlusVertical.displayName = "BatteryPlusVertical"; diff --git a/src/icons/BatteryVerticalEmpty.tsx b/src/icons/BatteryVerticalEmpty.tsx deleted file mode 100644 index e101681e2..000000000 --- a/src/icons/BatteryVerticalEmpty.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", - <> - - , - ], -]); - -export const BatteryVerticalEmpty: Icon = forwardRef((props, ref) => ( - -)); - -BatteryVerticalEmpty.displayName = "BatteryVerticalEmpty"; diff --git a/src/icons/BatteryVerticalFull.tsx b/src/icons/BatteryVerticalFull.tsx deleted file mode 100644 index 55e71c4a1..000000000 --- a/src/icons/BatteryVerticalFull.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", - <> - - , - ], -]); - -export const BatteryVerticalFull: Icon = forwardRef((props, ref) => ( - -)); - -BatteryVerticalFull.displayName = "BatteryVerticalFull"; diff --git a/src/icons/BatteryVerticalHigh.tsx b/src/icons/BatteryVerticalHigh.tsx deleted file mode 100644 index 202c92fda..000000000 --- a/src/icons/BatteryVerticalHigh.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", - <> - - , - ], -]); - -export const BatteryVerticalHigh: Icon = forwardRef((props, ref) => ( - -)); - -BatteryVerticalHigh.displayName = "BatteryVerticalHigh"; diff --git a/src/icons/BatteryVerticalLow.tsx b/src/icons/BatteryVerticalLow.tsx deleted file mode 100644 index 85cb9220b..000000000 --- a/src/icons/BatteryVerticalLow.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", - <> - - , - ], -]); - -export const BatteryVerticalLow: Icon = forwardRef((props, ref) => ( - -)); - -BatteryVerticalLow.displayName = "BatteryVerticalLow"; diff --git a/src/icons/BatteryVerticalMedium.tsx b/src/icons/BatteryVerticalMedium.tsx deleted file mode 100644 index 007db0262..000000000 --- a/src/icons/BatteryVerticalMedium.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", - <> - - , - ], -]); - -export const BatteryVerticalMedium: Icon = forwardRef((props, ref) => ( - -)); - -BatteryVerticalMedium.displayName = "BatteryVerticalMedium"; diff --git a/src/icons/BatteryWarning.tsx b/src/icons/BatteryWarning.tsx deleted file mode 100644 index 5b91b0786..000000000 --- a/src/icons/BatteryWarning.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", - <> - - , - ], -]); - -export const BatteryWarning: Icon = forwardRef((props, ref) => ( - -)); - -BatteryWarning.displayName = "BatteryWarning"; diff --git a/src/icons/BatteryWarningVertical.tsx b/src/icons/BatteryWarningVertical.tsx deleted file mode 100644 index d44c21626..000000000 --- a/src/icons/BatteryWarningVertical.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", - <> - - , - ], -]); - -export const BatteryWarningVertical: Icon = forwardRef((props, ref) => ( - -)); - -BatteryWarningVertical.displayName = "BatteryWarningVertical"; diff --git a/src/icons/Bed.tsx b/src/icons/Bed.tsx deleted file mode 100644 index 9019c8fd3..000000000 --- a/src/icons/Bed.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Bed: Icon = forwardRef((props, ref) => ( - -)); - -Bed.displayName = "Bed"; diff --git a/src/icons/BeerBottle.tsx b/src/icons/BeerBottle.tsx deleted file mode 100644 index dd615f5b6..000000000 --- a/src/icons/BeerBottle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const BeerBottle: Icon = forwardRef((props, ref) => ( - -)); - -BeerBottle.displayName = "BeerBottle"; diff --git a/src/icons/BeerStein.tsx b/src/icons/BeerStein.tsx deleted file mode 100644 index de32a3fde..000000000 --- a/src/icons/BeerStein.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const BeerStein: Icon = forwardRef((props, ref) => ( - -)); - -BeerStein.displayName = "BeerStein"; diff --git a/src/icons/BehanceLogo.tsx b/src/icons/BehanceLogo.tsx deleted file mode 100644 index df82b07d3..000000000 --- a/src/icons/BehanceLogo.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", - <> - - , - ], -]); - -export const BehanceLogo: Icon = forwardRef((props, ref) => ( - -)); - -BehanceLogo.displayName = "BehanceLogo"; diff --git a/src/icons/Bell.tsx b/src/icons/Bell.tsx deleted file mode 100644 index 0ac2aa456..000000000 --- a/src/icons/Bell.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", - <> - - , - ], -]); - -export const Bell: Icon = forwardRef((props, ref) => ( - -)); - -Bell.displayName = "Bell"; diff --git a/src/icons/BellRinging.tsx b/src/icons/BellRinging.tsx deleted file mode 100644 index acd375fb1..000000000 --- a/src/icons/BellRinging.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", - <> - - , - ], -]); - -export const BellRinging: Icon = forwardRef((props, ref) => ( - -)); - -BellRinging.displayName = "BellRinging"; diff --git a/src/icons/BellSimple.tsx b/src/icons/BellSimple.tsx deleted file mode 100644 index e33c0ce97..000000000 --- a/src/icons/BellSimple.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", - <> - - , - ], -]); - -export const BellSimple: Icon = forwardRef((props, ref) => ( - -)); - -BellSimple.displayName = "BellSimple"; diff --git a/src/icons/BellSimpleRinging.tsx b/src/icons/BellSimpleRinging.tsx deleted file mode 100644 index 047b25c1a..000000000 --- a/src/icons/BellSimpleRinging.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", - <> - - , - ], -]); - -export const BellSimpleRinging: Icon = forwardRef((props, ref) => ( - -)); - -BellSimpleRinging.displayName = "BellSimpleRinging"; diff --git a/src/icons/BellSimpleSlash.tsx b/src/icons/BellSimpleSlash.tsx deleted file mode 100644 index 1ccd5c1b7..000000000 --- a/src/icons/BellSimpleSlash.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", - <> - - , - ], -]); - -export const BellSimpleSlash: Icon = forwardRef((props, ref) => ( - -)); - -BellSimpleSlash.displayName = "BellSimpleSlash"; diff --git a/src/icons/BellSimpleZ.tsx b/src/icons/BellSimpleZ.tsx deleted file mode 100644 index d30cef614..000000000 --- a/src/icons/BellSimpleZ.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", - <> - - , - ], -]); - -export const BellSimpleZ: Icon = forwardRef((props, ref) => ( - -)); - -BellSimpleZ.displayName = "BellSimpleZ"; diff --git a/src/icons/BellSlash.tsx b/src/icons/BellSlash.tsx deleted file mode 100644 index 0128d3edd..000000000 --- a/src/icons/BellSlash.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", - <> - - , - ], -]); - -export const BellSlash: Icon = forwardRef((props, ref) => ( - -)); - -BellSlash.displayName = "BellSlash"; diff --git a/src/icons/BellZ.tsx b/src/icons/BellZ.tsx deleted file mode 100644 index 57774e610..000000000 --- a/src/icons/BellZ.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", - <> - - , - ], -]); - -export const BellZ: Icon = forwardRef((props, ref) => ( - -)); - -BellZ.displayName = "BellZ"; diff --git a/src/icons/BezierCurve.tsx b/src/icons/BezierCurve.tsx deleted file mode 100644 index f87134679..000000000 --- a/src/icons/BezierCurve.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", - <> - - , - ], -]); - -export const BezierCurve: Icon = forwardRef((props, ref) => ( - -)); - -BezierCurve.displayName = "BezierCurve"; diff --git a/src/icons/Bicycle.tsx b/src/icons/Bicycle.tsx deleted file mode 100644 index b484e8bdd..000000000 --- a/src/icons/Bicycle.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", - <> - - , - ], -]); - -export const Bicycle: Icon = forwardRef((props, ref) => ( - -)); - -Bicycle.displayName = "Bicycle"; diff --git a/src/icons/Binoculars.tsx b/src/icons/Binoculars.tsx deleted file mode 100644 index 2829660bc..000000000 --- a/src/icons/Binoculars.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", - <> - - , - ], -]); - -export const Binoculars: Icon = forwardRef((props, ref) => ( - -)); - -Binoculars.displayName = "Binoculars"; diff --git a/src/icons/Bird.tsx b/src/icons/Bird.tsx deleted file mode 100644 index 9a00bd780..000000000 --- a/src/icons/Bird.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", - <> - - , - ], -]); - -export const Bird: Icon = forwardRef((props, ref) => ( - -)); - -Bird.displayName = "Bird"; diff --git a/src/icons/Bluetooth.tsx b/src/icons/Bluetooth.tsx deleted file mode 100644 index b58519614..000000000 --- a/src/icons/Bluetooth.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Bluetooth: Icon = forwardRef((props, ref) => ( - -)); - -Bluetooth.displayName = "Bluetooth"; diff --git a/src/icons/BluetoothConnected.tsx b/src/icons/BluetoothConnected.tsx deleted file mode 100644 index 6ec28ad4e..000000000 --- a/src/icons/BluetoothConnected.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const BluetoothConnected: Icon = forwardRef((props, ref) => ( - -)); - -BluetoothConnected.displayName = "BluetoothConnected"; diff --git a/src/icons/BluetoothSlash.tsx b/src/icons/BluetoothSlash.tsx deleted file mode 100644 index 728cbd772..000000000 --- a/src/icons/BluetoothSlash.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const BluetoothSlash: Icon = forwardRef((props, ref) => ( - -)); - -BluetoothSlash.displayName = "BluetoothSlash"; diff --git a/src/icons/BluetoothX.tsx b/src/icons/BluetoothX.tsx deleted file mode 100644 index b888748a8..000000000 --- a/src/icons/BluetoothX.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", - <> - - , - ], -]); - -export const BluetoothX: Icon = forwardRef((props, ref) => ( - -)); - -BluetoothX.displayName = "BluetoothX"; diff --git a/src/icons/Boat.tsx b/src/icons/Boat.tsx deleted file mode 100644 index f4aa34b61..000000000 --- a/src/icons/Boat.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", - <> - - , - ], -]); - -export const Boat: Icon = forwardRef((props, ref) => ( - -)); - -Boat.displayName = "Boat"; diff --git a/src/icons/Bone.tsx b/src/icons/Bone.tsx deleted file mode 100644 index 17de80753..000000000 --- a/src/icons/Bone.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", - <> - - , - ], -]); - -export const Bone: Icon = forwardRef((props, ref) => ( - -)); - -Bone.displayName = "Bone"; diff --git a/src/icons/Book.tsx b/src/icons/Book.tsx deleted file mode 100644 index 60aeb2f06..000000000 --- a/src/icons/Book.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", - <> - - , - ], -]); - -export const Book: Icon = forwardRef((props, ref) => ( - -)); - -Book.displayName = "Book"; diff --git a/src/icons/BookBookmark.tsx b/src/icons/BookBookmark.tsx deleted file mode 100644 index 04e39fccc..000000000 --- a/src/icons/BookBookmark.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", - <> - - , - ], -]); - -export const BookBookmark: Icon = forwardRef((props, ref) => ( - -)); - -BookBookmark.displayName = "BookBookmark"; diff --git a/src/icons/BookOpen.tsx b/src/icons/BookOpen.tsx deleted file mode 100644 index c13948f88..000000000 --- a/src/icons/BookOpen.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", - <> - - , - ], -]); - -export const BookOpen: Icon = forwardRef((props, ref) => ( - -)); - -BookOpen.displayName = "BookOpen"; diff --git a/src/icons/BookOpenText.tsx b/src/icons/BookOpenText.tsx deleted file mode 100644 index 836f91889..000000000 --- a/src/icons/BookOpenText.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", - <> - - , - ], -]); - -export const BookOpenText: Icon = forwardRef((props, ref) => ( - -)); - -BookOpenText.displayName = "BookOpenText"; diff --git a/src/icons/Bookmark.tsx b/src/icons/Bookmark.tsx deleted file mode 100644 index aa0250664..000000000 --- a/src/icons/Bookmark.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Bookmark: Icon = forwardRef((props, ref) => ( - -)); - -Bookmark.displayName = "Bookmark"; diff --git a/src/icons/BookmarkSimple.tsx b/src/icons/BookmarkSimple.tsx deleted file mode 100644 index b9cb90227..000000000 --- a/src/icons/BookmarkSimple.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", - <> - - , - ], -]); - -export const BookmarkSimple: Icon = forwardRef((props, ref) => ( - -)); - -BookmarkSimple.displayName = "BookmarkSimple"; diff --git a/src/icons/Bookmarks.tsx b/src/icons/Bookmarks.tsx deleted file mode 100644 index 6c1a68bd5..000000000 --- a/src/icons/Bookmarks.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", - <> - - , - ], -]); - -export const Bookmarks: Icon = forwardRef((props, ref) => ( - -)); - -Bookmarks.displayName = "Bookmarks"; diff --git a/src/icons/BookmarksSimple.tsx b/src/icons/BookmarksSimple.tsx deleted file mode 100644 index 0ddb8ae9f..000000000 --- a/src/icons/BookmarksSimple.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const BookmarksSimple: Icon = forwardRef((props, ref) => ( - -)); - -BookmarksSimple.displayName = "BookmarksSimple"; diff --git a/src/icons/Books.tsx b/src/icons/Books.tsx deleted file mode 100644 index a5ca5c808..000000000 --- a/src/icons/Books.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", - <> - - , - ], -]); - -export const Books: Icon = forwardRef((props, ref) => ( - -)); - -Books.displayName = "Books"; diff --git a/src/icons/Boot.tsx b/src/icons/Boot.tsx deleted file mode 100644 index 771138b8e..000000000 --- a/src/icons/Boot.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", - <> - - , - ], -]); - -export const Boot: Icon = forwardRef((props, ref) => ( - -)); - -Boot.displayName = "Boot"; diff --git a/src/icons/BoundingBox.tsx b/src/icons/BoundingBox.tsx deleted file mode 100644 index 632f23e44..000000000 --- a/src/icons/BoundingBox.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", - <> - - , - ], -]); - -export const BoundingBox: Icon = forwardRef((props, ref) => ( - -)); - -BoundingBox.displayName = "BoundingBox"; diff --git a/src/icons/BowlFood.tsx b/src/icons/BowlFood.tsx deleted file mode 100644 index 374f6dabb..000000000 --- a/src/icons/BowlFood.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", - <> - - , - ], -]); - -export const BowlFood: Icon = forwardRef((props, ref) => ( - -)); - -BowlFood.displayName = "BowlFood"; diff --git a/src/icons/BracketsAngle.tsx b/src/icons/BracketsAngle.tsx deleted file mode 100644 index c20339e68..000000000 --- a/src/icons/BracketsAngle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const BracketsAngle: Icon = forwardRef((props, ref) => ( - -)); - -BracketsAngle.displayName = "BracketsAngle"; diff --git a/src/icons/BracketsCurly.tsx b/src/icons/BracketsCurly.tsx deleted file mode 100644 index b7dc9c832..000000000 --- a/src/icons/BracketsCurly.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", - <> - - , - ], -]); - -export const BracketsCurly: Icon = forwardRef((props, ref) => ( - -)); - -BracketsCurly.displayName = "BracketsCurly"; diff --git a/src/icons/BracketsRound.tsx b/src/icons/BracketsRound.tsx deleted file mode 100644 index 70b5c1f7e..000000000 --- a/src/icons/BracketsRound.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", - <> - - , - ], -]); - -export const BracketsRound: Icon = forwardRef((props, ref) => ( - -)); - -BracketsRound.displayName = "BracketsRound"; diff --git a/src/icons/BracketsSquare.tsx b/src/icons/BracketsSquare.tsx deleted file mode 100644 index 67c302164..000000000 --- a/src/icons/BracketsSquare.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const BracketsSquare: Icon = forwardRef((props, ref) => ( - -)); - -BracketsSquare.displayName = "BracketsSquare"; diff --git a/src/icons/Brain.tsx b/src/icons/Brain.tsx deleted file mode 100644 index 7a009820f..000000000 --- a/src/icons/Brain.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", - <> - - , - ], -]); - -export const Brain: Icon = forwardRef((props, ref) => ( - -)); - -Brain.displayName = "Brain"; diff --git a/src/icons/Brandy.tsx b/src/icons/Brandy.tsx deleted file mode 100644 index f2d5a9156..000000000 --- a/src/icons/Brandy.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Brandy: Icon = forwardRef((props, ref) => ( - -)); - -Brandy.displayName = "Brandy"; diff --git a/src/icons/Bridge.tsx b/src/icons/Bridge.tsx deleted file mode 100644 index 02ff61fac..000000000 --- a/src/icons/Bridge.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", - <> - - , - ], -]); - -export const Bridge: Icon = forwardRef((props, ref) => ( - -)); - -Bridge.displayName = "Bridge"; diff --git a/src/icons/Briefcase.tsx b/src/icons/Briefcase.tsx deleted file mode 100644 index 0d1d2c833..000000000 --- a/src/icons/Briefcase.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", - <> - - , - ], -]); - -export const Briefcase: Icon = forwardRef((props, ref) => ( - -)); - -Briefcase.displayName = "Briefcase"; diff --git a/src/icons/BriefcaseMetal.tsx b/src/icons/BriefcaseMetal.tsx deleted file mode 100644 index 3f2a80273..000000000 --- a/src/icons/BriefcaseMetal.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", - <> - - , - ], -]); - -export const BriefcaseMetal: Icon = forwardRef((props, ref) => ( - -)); - -BriefcaseMetal.displayName = "BriefcaseMetal"; diff --git a/src/icons/Broadcast.tsx b/src/icons/Broadcast.tsx deleted file mode 100644 index 5193dd136..000000000 --- a/src/icons/Broadcast.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Broadcast: Icon = forwardRef((props, ref) => ( - -)); - -Broadcast.displayName = "Broadcast"; diff --git a/src/icons/Broom.tsx b/src/icons/Broom.tsx deleted file mode 100644 index 87fb48195..000000000 --- a/src/icons/Broom.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", - <> - - , - ], -]); - -export const Broom: Icon = forwardRef((props, ref) => ( - -)); - -Broom.displayName = "Broom"; diff --git a/src/icons/Browser.tsx b/src/icons/Browser.tsx deleted file mode 100644 index 03e5f13f9..000000000 --- a/src/icons/Browser.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", - <> - - , - ], -]); - -export const Browser: Icon = forwardRef((props, ref) => ( - -)); - -Browser.displayName = "Browser"; diff --git a/src/icons/Browsers.tsx b/src/icons/Browsers.tsx deleted file mode 100644 index d602fb1bb..000000000 --- a/src/icons/Browsers.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", - <> - - , - ], -]); - -export const Browsers: Icon = forwardRef((props, ref) => ( - -)); - -Browsers.displayName = "Browsers"; diff --git a/src/icons/Bug.tsx b/src/icons/Bug.tsx deleted file mode 100644 index 3084ff6bf..000000000 --- a/src/icons/Bug.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Bug: Icon = forwardRef((props, ref) => ( - -)); - -Bug.displayName = "Bug"; diff --git a/src/icons/BugBeetle.tsx b/src/icons/BugBeetle.tsx deleted file mode 100644 index 34fd9a593..000000000 --- a/src/icons/BugBeetle.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", - <> - - , - ], -]); - -export const BugBeetle: Icon = forwardRef((props, ref) => ( - -)); - -BugBeetle.displayName = "BugBeetle"; diff --git a/src/icons/BugDroid.tsx b/src/icons/BugDroid.tsx deleted file mode 100644 index 8911d58a8..000000000 --- a/src/icons/BugDroid.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const BugDroid: Icon = forwardRef((props, ref) => ( - -)); - -BugDroid.displayName = "BugDroid"; diff --git a/src/icons/Buildings.tsx b/src/icons/Buildings.tsx deleted file mode 100644 index 28eb46b52..000000000 --- a/src/icons/Buildings.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", - <> - - , - ], -]); - -export const Buildings: Icon = forwardRef((props, ref) => ( - -)); - -Buildings.displayName = "Buildings"; diff --git a/src/icons/Bus.tsx b/src/icons/Bus.tsx deleted file mode 100644 index 40fb0d341..000000000 --- a/src/icons/Bus.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", - <> - - , - ], -]); - -export const Bus: Icon = forwardRef((props, ref) => ( - -)); - -Bus.displayName = "Bus"; diff --git a/src/icons/Butterfly.tsx b/src/icons/Butterfly.tsx deleted file mode 100644 index 5cfa457ca..000000000 --- a/src/icons/Butterfly.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", - <> - - , - ], -]); - -export const Butterfly: Icon = forwardRef((props, ref) => ( - -)); - -Butterfly.displayName = "Butterfly"; diff --git a/src/icons/Cactus.tsx b/src/icons/Cactus.tsx deleted file mode 100644 index 48913a4d4..000000000 --- a/src/icons/Cactus.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", - <> - - , - ], -]); - -export const Cactus: Icon = forwardRef((props, ref) => ( - -)); - -Cactus.displayName = "Cactus"; diff --git a/src/icons/Cake.tsx b/src/icons/Cake.tsx deleted file mode 100644 index e817c3a6b..000000000 --- a/src/icons/Cake.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", - <> - - , - ], -]); - -export const Cake: Icon = forwardRef((props, ref) => ( - -)); - -Cake.displayName = "Cake"; diff --git a/src/icons/Calculator.tsx b/src/icons/Calculator.tsx deleted file mode 100644 index d037791cf..000000000 --- a/src/icons/Calculator.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Calculator: Icon = forwardRef((props, ref) => ( - -)); - -Calculator.displayName = "Calculator"; diff --git a/src/icons/Calendar.tsx b/src/icons/Calendar.tsx deleted file mode 100644 index 25df79842..000000000 --- a/src/icons/Calendar.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", - <> - - , - ], -]); - -export const Calendar: Icon = forwardRef((props, ref) => ( - -)); - -Calendar.displayName = "Calendar"; diff --git a/src/icons/CalendarBlank.tsx b/src/icons/CalendarBlank.tsx deleted file mode 100644 index b15c55ff2..000000000 --- a/src/icons/CalendarBlank.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", - <> - - , - ], -]); - -export const CalendarBlank: Icon = forwardRef((props, ref) => ( - -)); - -CalendarBlank.displayName = "CalendarBlank"; diff --git a/src/icons/CalendarCheck.tsx b/src/icons/CalendarCheck.tsx deleted file mode 100644 index 98f057898..000000000 --- a/src/icons/CalendarCheck.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", - <> - - , - ], -]); - -export const CalendarCheck: Icon = forwardRef((props, ref) => ( - -)); - -CalendarCheck.displayName = "CalendarCheck"; diff --git a/src/icons/CalendarPlus.tsx b/src/icons/CalendarPlus.tsx deleted file mode 100644 index 26b48474d..000000000 --- a/src/icons/CalendarPlus.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", - <> - - , - ], -]); - -export const CalendarPlus: Icon = forwardRef((props, ref) => ( - -)); - -CalendarPlus.displayName = "CalendarPlus"; diff --git a/src/icons/CalendarX.tsx b/src/icons/CalendarX.tsx deleted file mode 100644 index 668549616..000000000 --- a/src/icons/CalendarX.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", - <> - - , - ], -]); - -export const CalendarX: Icon = forwardRef((props, ref) => ( - -)); - -CalendarX.displayName = "CalendarX"; diff --git a/src/icons/CallBell.tsx b/src/icons/CallBell.tsx deleted file mode 100644 index c552ce300..000000000 --- a/src/icons/CallBell.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CallBell: Icon = forwardRef((props, ref) => ( - -)); - -CallBell.displayName = "CallBell"; diff --git a/src/icons/Camera.tsx b/src/icons/Camera.tsx deleted file mode 100644 index 54ded0faa..000000000 --- a/src/icons/Camera.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", - <> - - , - ], -]); - -export const Camera: Icon = forwardRef((props, ref) => ( - -)); - -Camera.displayName = "Camera"; diff --git a/src/icons/CameraPlus.tsx b/src/icons/CameraPlus.tsx deleted file mode 100644 index 693b465bd..000000000 --- a/src/icons/CameraPlus.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", - <> - - , - ], -]); - -export const CameraPlus: Icon = forwardRef((props, ref) => ( - -)); - -CameraPlus.displayName = "CameraPlus"; diff --git a/src/icons/CameraRotate.tsx b/src/icons/CameraRotate.tsx deleted file mode 100644 index 189ab1cc2..000000000 --- a/src/icons/CameraRotate.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", - <> - - , - ], -]); - -export const CameraRotate: Icon = forwardRef((props, ref) => ( - -)); - -CameraRotate.displayName = "CameraRotate"; diff --git a/src/icons/CameraSlash.tsx b/src/icons/CameraSlash.tsx deleted file mode 100644 index 7365e9f2e..000000000 --- a/src/icons/CameraSlash.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", - <> - - , - ], -]); - -export const CameraSlash: Icon = forwardRef((props, ref) => ( - -)); - -CameraSlash.displayName = "CameraSlash"; diff --git a/src/icons/Campfire.tsx b/src/icons/Campfire.tsx deleted file mode 100644 index 8ffac7df7..000000000 --- a/src/icons/Campfire.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", - <> - - , - ], -]); - -export const Campfire: Icon = forwardRef((props, ref) => ( - -)); - -Campfire.displayName = "Campfire"; diff --git a/src/icons/Car.tsx b/src/icons/Car.tsx deleted file mode 100644 index 83f2e54eb..000000000 --- a/src/icons/Car.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", - <> - - , - ], -]); - -export const Car: Icon = forwardRef((props, ref) => ( - -)); - -Car.displayName = "Car"; diff --git a/src/icons/CarProfile.tsx b/src/icons/CarProfile.tsx deleted file mode 100644 index e7160f422..000000000 --- a/src/icons/CarProfile.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", - <> - - , - ], -]); - -export const CarProfile: Icon = forwardRef((props, ref) => ( - -)); - -CarProfile.displayName = "CarProfile"; diff --git a/src/icons/CarSimple.tsx b/src/icons/CarSimple.tsx deleted file mode 100644 index bc47730b8..000000000 --- a/src/icons/CarSimple.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", - <> - - , - ], -]); - -export const CarSimple: Icon = forwardRef((props, ref) => ( - -)); - -CarSimple.displayName = "CarSimple"; diff --git a/src/icons/Cardholder.tsx b/src/icons/Cardholder.tsx deleted file mode 100644 index 5d998ec0b..000000000 --- a/src/icons/Cardholder.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", - <> - - , - ], -]); - -export const Cardholder: Icon = forwardRef((props, ref) => ( - -)); - -Cardholder.displayName = "Cardholder"; diff --git a/src/icons/Cards.tsx b/src/icons/Cards.tsx deleted file mode 100644 index 9eabb6276..000000000 --- a/src/icons/Cards.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const Cards: Icon = forwardRef((props, ref) => ( - -)); - -Cards.displayName = "Cards"; diff --git a/src/icons/CaretCircleDoubleDown.tsx b/src/icons/CaretCircleDoubleDown.tsx deleted file mode 100644 index 42214bc27..000000000 --- a/src/icons/CaretCircleDoubleDown.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", - <> - - , - ], -]); - -export const CaretCircleDoubleDown: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleDoubleDown.displayName = "CaretCircleDoubleDown"; diff --git a/src/icons/CaretCircleDoubleLeft.tsx b/src/icons/CaretCircleDoubleLeft.tsx deleted file mode 100644 index 528b33d3b..000000000 --- a/src/icons/CaretCircleDoubleLeft.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", - <> - - , - ], -]); - -export const CaretCircleDoubleLeft: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleDoubleLeft.displayName = "CaretCircleDoubleLeft"; diff --git a/src/icons/CaretCircleDoubleRight.tsx b/src/icons/CaretCircleDoubleRight.tsx deleted file mode 100644 index 2b0613b2d..000000000 --- a/src/icons/CaretCircleDoubleRight.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", - <> - - , - ], -]); - -export const CaretCircleDoubleRight: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleDoubleRight.displayName = "CaretCircleDoubleRight"; diff --git a/src/icons/CaretCircleDoubleUp.tsx b/src/icons/CaretCircleDoubleUp.tsx deleted file mode 100644 index a5309009b..000000000 --- a/src/icons/CaretCircleDoubleUp.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", - <> - - , - ], -]); - -export const CaretCircleDoubleUp: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleDoubleUp.displayName = "CaretCircleDoubleUp"; diff --git a/src/icons/CaretCircleDown.tsx b/src/icons/CaretCircleDown.tsx deleted file mode 100644 index 9fe162884..000000000 --- a/src/icons/CaretCircleDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretCircleDown: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleDown.displayName = "CaretCircleDown"; diff --git a/src/icons/CaretCircleLeft.tsx b/src/icons/CaretCircleLeft.tsx deleted file mode 100644 index 3154270be..000000000 --- a/src/icons/CaretCircleLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretCircleLeft: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleLeft.displayName = "CaretCircleLeft"; diff --git a/src/icons/CaretCircleRight.tsx b/src/icons/CaretCircleRight.tsx deleted file mode 100644 index da75e7c4e..000000000 --- a/src/icons/CaretCircleRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretCircleRight: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleRight.displayName = "CaretCircleRight"; diff --git a/src/icons/CaretCircleUp.tsx b/src/icons/CaretCircleUp.tsx deleted file mode 100644 index acbfb055b..000000000 --- a/src/icons/CaretCircleUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretCircleUp: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleUp.displayName = "CaretCircleUp"; diff --git a/src/icons/CaretCircleUpDown.tsx b/src/icons/CaretCircleUpDown.tsx deleted file mode 100644 index d935eb4da..000000000 --- a/src/icons/CaretCircleUpDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretCircleUpDown: Icon = forwardRef((props, ref) => ( - -)); - -CaretCircleUpDown.displayName = "CaretCircleUpDown"; diff --git a/src/icons/CaretDoubleDown.tsx b/src/icons/CaretDoubleDown.tsx deleted file mode 100644 index 260467179..000000000 --- a/src/icons/CaretDoubleDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretDoubleDown: Icon = forwardRef((props, ref) => ( - -)); - -CaretDoubleDown.displayName = "CaretDoubleDown"; diff --git a/src/icons/CaretDoubleLeft.tsx b/src/icons/CaretDoubleLeft.tsx deleted file mode 100644 index ce48dc7dd..000000000 --- a/src/icons/CaretDoubleLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretDoubleLeft: Icon = forwardRef((props, ref) => ( - -)); - -CaretDoubleLeft.displayName = "CaretDoubleLeft"; diff --git a/src/icons/CaretDoubleRight.tsx b/src/icons/CaretDoubleRight.tsx deleted file mode 100644 index 1dad5d84a..000000000 --- a/src/icons/CaretDoubleRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretDoubleRight: Icon = forwardRef((props, ref) => ( - -)); - -CaretDoubleRight.displayName = "CaretDoubleRight"; diff --git a/src/icons/CaretDoubleUp.tsx b/src/icons/CaretDoubleUp.tsx deleted file mode 100644 index cc1278488..000000000 --- a/src/icons/CaretDoubleUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretDoubleUp: Icon = forwardRef((props, ref) => ( - -)); - -CaretDoubleUp.displayName = "CaretDoubleUp"; diff --git a/src/icons/CaretDown.tsx b/src/icons/CaretDown.tsx deleted file mode 100644 index 45f90a4c3..000000000 --- a/src/icons/CaretDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretDown: Icon = forwardRef((props, ref) => ( - -)); - -CaretDown.displayName = "CaretDown"; diff --git a/src/icons/CaretLeft.tsx b/src/icons/CaretLeft.tsx deleted file mode 100644 index 21b5ed91c..000000000 --- a/src/icons/CaretLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretLeft: Icon = forwardRef((props, ref) => ( - -)); - -CaretLeft.displayName = "CaretLeft"; diff --git a/src/icons/CaretRight.tsx b/src/icons/CaretRight.tsx deleted file mode 100644 index 6ef972d27..000000000 --- a/src/icons/CaretRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretRight: Icon = forwardRef((props, ref) => ( - -)); - -CaretRight.displayName = "CaretRight"; diff --git a/src/icons/CaretUp.tsx b/src/icons/CaretUp.tsx deleted file mode 100644 index 0b20dfd8e..000000000 --- a/src/icons/CaretUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretUp: Icon = forwardRef((props, ref) => ( - -)); - -CaretUp.displayName = "CaretUp"; diff --git a/src/icons/CaretUpDown.tsx b/src/icons/CaretUpDown.tsx deleted file mode 100644 index e0e20d219..000000000 --- a/src/icons/CaretUpDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CaretUpDown: Icon = forwardRef((props, ref) => ( - -)); - -CaretUpDown.displayName = "CaretUpDown"; diff --git a/src/icons/Carrot.tsx b/src/icons/Carrot.tsx deleted file mode 100644 index 186ea1f5e..000000000 --- a/src/icons/Carrot.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", - <> - - , - ], -]); - -export const Carrot: Icon = forwardRef((props, ref) => ( - -)); - -Carrot.displayName = "Carrot"; diff --git a/src/icons/CassetteTape.tsx b/src/icons/CassetteTape.tsx deleted file mode 100644 index f83656241..000000000 --- a/src/icons/CassetteTape.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", - <> - - , - ], -]); - -export const CassetteTape: Icon = forwardRef((props, ref) => ( - -)); - -CassetteTape.displayName = "CassetteTape"; diff --git a/src/icons/CastleTurret.tsx b/src/icons/CastleTurret.tsx deleted file mode 100644 index 87ee3ca65..000000000 --- a/src/icons/CastleTurret.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", - <> - - , - ], -]); - -export const CastleTurret: Icon = forwardRef((props, ref) => ( - -)); - -CastleTurret.displayName = "CastleTurret"; diff --git a/src/icons/Cat.tsx b/src/icons/Cat.tsx deleted file mode 100644 index 5ff14c6c8..000000000 --- a/src/icons/Cat.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", - <> - - , - ], -]); - -export const Cat: Icon = forwardRef((props, ref) => ( - -)); - -Cat.displayName = "Cat"; diff --git a/src/icons/CellSignalFull.tsx b/src/icons/CellSignalFull.tsx deleted file mode 100644 index 51d9ba000..000000000 --- a/src/icons/CellSignalFull.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", - <> - - , - ], -]); - -export const CellSignalFull: Icon = forwardRef((props, ref) => ( - -)); - -CellSignalFull.displayName = "CellSignalFull"; diff --git a/src/icons/CellSignalHigh.tsx b/src/icons/CellSignalHigh.tsx deleted file mode 100644 index a292cec92..000000000 --- a/src/icons/CellSignalHigh.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CellSignalHigh: Icon = forwardRef((props, ref) => ( - -)); - -CellSignalHigh.displayName = "CellSignalHigh"; diff --git a/src/icons/CellSignalLow.tsx b/src/icons/CellSignalLow.tsx deleted file mode 100644 index baacf858f..000000000 --- a/src/icons/CellSignalLow.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CellSignalLow: Icon = forwardRef((props, ref) => ( - -)); - -CellSignalLow.displayName = "CellSignalLow"; diff --git a/src/icons/CellSignalMedium.tsx b/src/icons/CellSignalMedium.tsx deleted file mode 100644 index 5e7f39beb..000000000 --- a/src/icons/CellSignalMedium.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CellSignalMedium: Icon = forwardRef((props, ref) => ( - -)); - -CellSignalMedium.displayName = "CellSignalMedium"; diff --git a/src/icons/CellSignalNone.tsx b/src/icons/CellSignalNone.tsx deleted file mode 100644 index b3604c702..000000000 --- a/src/icons/CellSignalNone.tsx +++ /dev/null @@ -1,48 +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", - <> - - , - ], -]); - -export const CellSignalNone: Icon = forwardRef((props, ref) => ( - -)); - -CellSignalNone.displayName = "CellSignalNone"; diff --git a/src/icons/CellSignalSlash.tsx b/src/icons/CellSignalSlash.tsx deleted file mode 100644 index 71cac4725..000000000 --- a/src/icons/CellSignalSlash.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", - <> - - , - ], -]); - -export const CellSignalSlash: Icon = forwardRef((props, ref) => ( - -)); - -CellSignalSlash.displayName = "CellSignalSlash"; diff --git a/src/icons/CellSignalX.tsx b/src/icons/CellSignalX.tsx deleted file mode 100644 index d0805f074..000000000 --- a/src/icons/CellSignalX.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", - <> - - , - ], -]); - -export const CellSignalX: Icon = forwardRef((props, ref) => ( - -)); - -CellSignalX.displayName = "CellSignalX"; diff --git a/src/icons/Certificate.tsx b/src/icons/Certificate.tsx deleted file mode 100644 index 19cd45ae3..000000000 --- a/src/icons/Certificate.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", - <> - - , - ], -]); - -export const Certificate: Icon = forwardRef((props, ref) => ( - -)); - -Certificate.displayName = "Certificate"; diff --git a/src/icons/Chair.tsx b/src/icons/Chair.tsx deleted file mode 100644 index dd88b959a..000000000 --- a/src/icons/Chair.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", - <> - - , - ], -]); - -export const Chair: Icon = forwardRef((props, ref) => ( - -)); - -Chair.displayName = "Chair"; diff --git a/src/icons/Chalkboard.tsx b/src/icons/Chalkboard.tsx deleted file mode 100644 index f473b46f0..000000000 --- a/src/icons/Chalkboard.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Chalkboard: Icon = forwardRef((props, ref) => ( - -)); - -Chalkboard.displayName = "Chalkboard"; diff --git a/src/icons/ChalkboardSimple.tsx b/src/icons/ChalkboardSimple.tsx deleted file mode 100644 index af490a255..000000000 --- a/src/icons/ChalkboardSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChalkboardSimple: Icon = forwardRef((props, ref) => ( - -)); - -ChalkboardSimple.displayName = "ChalkboardSimple"; diff --git a/src/icons/ChalkboardTeacher.tsx b/src/icons/ChalkboardTeacher.tsx deleted file mode 100644 index c706d9130..000000000 --- a/src/icons/ChalkboardTeacher.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChalkboardTeacher: Icon = forwardRef((props, ref) => ( - -)); - -ChalkboardTeacher.displayName = "ChalkboardTeacher"; diff --git a/src/icons/Champagne.tsx b/src/icons/Champagne.tsx deleted file mode 100644 index 8d4273a21..000000000 --- a/src/icons/Champagne.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", - <> - - , - ], -]); - -export const Champagne: Icon = forwardRef((props, ref) => ( - -)); - -Champagne.displayName = "Champagne"; diff --git a/src/icons/ChargingStation.tsx b/src/icons/ChargingStation.tsx deleted file mode 100644 index b6b641c0b..000000000 --- a/src/icons/ChargingStation.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", - <> - - , - ], -]); - -export const ChargingStation: Icon = forwardRef((props, ref) => ( - -)); - -ChargingStation.displayName = "ChargingStation"; diff --git a/src/icons/ChartBar.tsx b/src/icons/ChartBar.tsx deleted file mode 100644 index 68c039d37..000000000 --- a/src/icons/ChartBar.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartBar: Icon = forwardRef((props, ref) => ( - -)); - -ChartBar.displayName = "ChartBar"; diff --git a/src/icons/ChartBarHorizontal.tsx b/src/icons/ChartBarHorizontal.tsx deleted file mode 100644 index 0268f4acf..000000000 --- a/src/icons/ChartBarHorizontal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartBarHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -ChartBarHorizontal.displayName = "ChartBarHorizontal"; diff --git a/src/icons/ChartDonut.tsx b/src/icons/ChartDonut.tsx deleted file mode 100644 index a345c3cb1..000000000 --- a/src/icons/ChartDonut.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", - <> - - , - ], -]); - -export const ChartDonut: Icon = forwardRef((props, ref) => ( - -)); - -ChartDonut.displayName = "ChartDonut"; diff --git a/src/icons/ChartLine.tsx b/src/icons/ChartLine.tsx deleted file mode 100644 index 15044f2dd..000000000 --- a/src/icons/ChartLine.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartLine: Icon = forwardRef((props, ref) => ( - -)); - -ChartLine.displayName = "ChartLine"; diff --git a/src/icons/ChartLineDown.tsx b/src/icons/ChartLineDown.tsx deleted file mode 100644 index 93b98af90..000000000 --- a/src/icons/ChartLineDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartLineDown: Icon = forwardRef((props, ref) => ( - -)); - -ChartLineDown.displayName = "ChartLineDown"; diff --git a/src/icons/ChartLineUp.tsx b/src/icons/ChartLineUp.tsx deleted file mode 100644 index d7f49cb5e..000000000 --- a/src/icons/ChartLineUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartLineUp: Icon = forwardRef((props, ref) => ( - -)); - -ChartLineUp.displayName = "ChartLineUp"; diff --git a/src/icons/ChartPie.tsx b/src/icons/ChartPie.tsx deleted file mode 100644 index c971c5151..000000000 --- a/src/icons/ChartPie.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartPie: Icon = forwardRef((props, ref) => ( - -)); - -ChartPie.displayName = "ChartPie"; diff --git a/src/icons/ChartPieSlice.tsx b/src/icons/ChartPieSlice.tsx deleted file mode 100644 index 3aeea3f7f..000000000 --- a/src/icons/ChartPieSlice.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartPieSlice: Icon = forwardRef((props, ref) => ( - -)); - -ChartPieSlice.displayName = "ChartPieSlice"; diff --git a/src/icons/ChartPolar.tsx b/src/icons/ChartPolar.tsx deleted file mode 100644 index 9d2bcc8bc..000000000 --- a/src/icons/ChartPolar.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartPolar: Icon = forwardRef((props, ref) => ( - -)); - -ChartPolar.displayName = "ChartPolar"; diff --git a/src/icons/ChartScatter.tsx b/src/icons/ChartScatter.tsx deleted file mode 100644 index c374ddcc8..000000000 --- a/src/icons/ChartScatter.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ChartScatter: Icon = forwardRef((props, ref) => ( - -)); - -ChartScatter.displayName = "ChartScatter"; diff --git a/src/icons/Chat.tsx b/src/icons/Chat.tsx deleted file mode 100644 index aa51262b3..000000000 --- a/src/icons/Chat.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", - <> - - , - ], -]); - -export const Chat: Icon = forwardRef((props, ref) => ( - -)); - -Chat.displayName = "Chat"; diff --git a/src/icons/ChatCentered.tsx b/src/icons/ChatCentered.tsx deleted file mode 100644 index e7542f619..000000000 --- a/src/icons/ChatCentered.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", - <> - - , - ], -]); - -export const ChatCentered: Icon = forwardRef((props, ref) => ( - -)); - -ChatCentered.displayName = "ChatCentered"; diff --git a/src/icons/ChatCenteredDots.tsx b/src/icons/ChatCenteredDots.tsx deleted file mode 100644 index c0f875f1f..000000000 --- a/src/icons/ChatCenteredDots.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", - <> - - , - ], -]); - -export const ChatCenteredDots: Icon = forwardRef((props, ref) => ( - -)); - -ChatCenteredDots.displayName = "ChatCenteredDots"; diff --git a/src/icons/ChatCenteredText.tsx b/src/icons/ChatCenteredText.tsx deleted file mode 100644 index 9f03b62ce..000000000 --- a/src/icons/ChatCenteredText.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", - <> - - , - ], -]); - -export const ChatCenteredText: Icon = forwardRef((props, ref) => ( - -)); - -ChatCenteredText.displayName = "ChatCenteredText"; diff --git a/src/icons/ChatCircle.tsx b/src/icons/ChatCircle.tsx deleted file mode 100644 index 3b07f4682..000000000 --- a/src/icons/ChatCircle.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", - <> - - , - ], -]); - -export const ChatCircle: Icon = forwardRef((props, ref) => ( - -)); - -ChatCircle.displayName = "ChatCircle"; diff --git a/src/icons/ChatCircleDots.tsx b/src/icons/ChatCircleDots.tsx deleted file mode 100644 index e1b9e5bee..000000000 --- a/src/icons/ChatCircleDots.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", - <> - - , - ], -]); - -export const ChatCircleDots: Icon = forwardRef((props, ref) => ( - -)); - -ChatCircleDots.displayName = "ChatCircleDots"; diff --git a/src/icons/ChatCircleText.tsx b/src/icons/ChatCircleText.tsx deleted file mode 100644 index b35236303..000000000 --- a/src/icons/ChatCircleText.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", - <> - - , - ], -]); - -export const ChatCircleText: Icon = forwardRef((props, ref) => ( - -)); - -ChatCircleText.displayName = "ChatCircleText"; diff --git a/src/icons/ChatDots.tsx b/src/icons/ChatDots.tsx deleted file mode 100644 index cf6b92156..000000000 --- a/src/icons/ChatDots.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", - <> - - , - ], -]); - -export const ChatDots: Icon = forwardRef((props, ref) => ( - -)); - -ChatDots.displayName = "ChatDots"; diff --git a/src/icons/ChatTeardrop.tsx b/src/icons/ChatTeardrop.tsx deleted file mode 100644 index ecff064c0..000000000 --- a/src/icons/ChatTeardrop.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", - <> - - , - ], -]); - -export const ChatTeardrop: Icon = forwardRef((props, ref) => ( - -)); - -ChatTeardrop.displayName = "ChatTeardrop"; diff --git a/src/icons/ChatTeardropDots.tsx b/src/icons/ChatTeardropDots.tsx deleted file mode 100644 index da80d9c98..000000000 --- a/src/icons/ChatTeardropDots.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", - <> - - , - ], -]); - -export const ChatTeardropDots: Icon = forwardRef((props, ref) => ( - -)); - -ChatTeardropDots.displayName = "ChatTeardropDots"; diff --git a/src/icons/ChatTeardropText.tsx b/src/icons/ChatTeardropText.tsx deleted file mode 100644 index 6a8b376e7..000000000 --- a/src/icons/ChatTeardropText.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", - <> - - , - ], -]); - -export const ChatTeardropText: Icon = forwardRef((props, ref) => ( - -)); - -ChatTeardropText.displayName = "ChatTeardropText"; diff --git a/src/icons/ChatText.tsx b/src/icons/ChatText.tsx deleted file mode 100644 index 45b27684a..000000000 --- a/src/icons/ChatText.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", - <> - - , - ], -]); - -export const ChatText: Icon = forwardRef((props, ref) => ( - -)); - -ChatText.displayName = "ChatText"; diff --git a/src/icons/Chats.tsx b/src/icons/Chats.tsx deleted file mode 100644 index 3b6d27768..000000000 --- a/src/icons/Chats.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", - <> - - , - ], -]); - -export const Chats: Icon = forwardRef((props, ref) => ( - -)); - -Chats.displayName = "Chats"; diff --git a/src/icons/ChatsCircle.tsx b/src/icons/ChatsCircle.tsx deleted file mode 100644 index e1c391ccb..000000000 --- a/src/icons/ChatsCircle.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", - <> - - , - ], -]); - -export const ChatsCircle: Icon = forwardRef((props, ref) => ( - -)); - -ChatsCircle.displayName = "ChatsCircle"; diff --git a/src/icons/ChatsTeardrop.tsx b/src/icons/ChatsTeardrop.tsx deleted file mode 100644 index f86700437..000000000 --- a/src/icons/ChatsTeardrop.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", - <> - - , - ], -]); - -export const ChatsTeardrop: Icon = forwardRef((props, ref) => ( - -)); - -ChatsTeardrop.displayName = "ChatsTeardrop"; diff --git a/src/icons/Check.tsx b/src/icons/Check.tsx deleted file mode 100644 index 1b98f24ef..000000000 --- a/src/icons/Check.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", - <> - - , - ], -]); - -export const Check: Icon = forwardRef((props, ref) => ( - -)); - -Check.displayName = "Check"; diff --git a/src/icons/CheckCircle.tsx b/src/icons/CheckCircle.tsx deleted file mode 100644 index f45e2afe4..000000000 --- a/src/icons/CheckCircle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CheckCircle: Icon = forwardRef((props, ref) => ( - -)); - -CheckCircle.displayName = "CheckCircle"; diff --git a/src/icons/CheckFat.tsx b/src/icons/CheckFat.tsx deleted file mode 100644 index e5c8a0faf..000000000 --- a/src/icons/CheckFat.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", - <> - - , - ], -]); - -export const CheckFat: Icon = forwardRef((props, ref) => ( - -)); - -CheckFat.displayName = "CheckFat"; diff --git a/src/icons/CheckSquare.tsx b/src/icons/CheckSquare.tsx deleted file mode 100644 index 33ffb3f26..000000000 --- a/src/icons/CheckSquare.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", - <> - - , - ], -]); - -export const CheckSquare: Icon = forwardRef((props, ref) => ( - -)); - -CheckSquare.displayName = "CheckSquare"; diff --git a/src/icons/CheckSquareOffset.tsx b/src/icons/CheckSquareOffset.tsx deleted file mode 100644 index e1d30dbc9..000000000 --- a/src/icons/CheckSquareOffset.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", - <> - - , - ], -]); - -export const CheckSquareOffset: Icon = forwardRef((props, ref) => ( - -)); - -CheckSquareOffset.displayName = "CheckSquareOffset"; diff --git a/src/icons/Checks.tsx b/src/icons/Checks.tsx deleted file mode 100644 index c21458a94..000000000 --- a/src/icons/Checks.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", - <> - - , - ], -]); - -export const Checks: Icon = forwardRef((props, ref) => ( - -)); - -Checks.displayName = "Checks"; diff --git a/src/icons/Church.tsx b/src/icons/Church.tsx deleted file mode 100644 index 4f7135de4..000000000 --- a/src/icons/Church.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Church: Icon = forwardRef((props, ref) => ( - -)); - -Church.displayName = "Church"; diff --git a/src/icons/Circle.tsx b/src/icons/Circle.tsx deleted file mode 100644 index 4b9fd122e..000000000 --- a/src/icons/Circle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Circle: Icon = forwardRef((props, ref) => ( - -)); - -Circle.displayName = "Circle"; diff --git a/src/icons/CircleDashed.tsx b/src/icons/CircleDashed.tsx deleted file mode 100644 index 680527f0f..000000000 --- a/src/icons/CircleDashed.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CircleDashed: Icon = forwardRef((props, ref) => ( - -)); - -CircleDashed.displayName = "CircleDashed"; diff --git a/src/icons/CircleHalf.tsx b/src/icons/CircleHalf.tsx deleted file mode 100644 index 0d77db180..000000000 --- a/src/icons/CircleHalf.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", - <> - - , - ], -]); - -export const CircleHalf: Icon = forwardRef((props, ref) => ( - -)); - -CircleHalf.displayName = "CircleHalf"; diff --git a/src/icons/CircleHalfTilt.tsx b/src/icons/CircleHalfTilt.tsx deleted file mode 100644 index 30b0411d3..000000000 --- a/src/icons/CircleHalfTilt.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", - <> - - , - ], -]); - -export const CircleHalfTilt: Icon = forwardRef((props, ref) => ( - -)); - -CircleHalfTilt.displayName = "CircleHalfTilt"; diff --git a/src/icons/CircleNotch.tsx b/src/icons/CircleNotch.tsx deleted file mode 100644 index eaece592a..000000000 --- a/src/icons/CircleNotch.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CircleNotch: Icon = forwardRef((props, ref) => ( - -)); - -CircleNotch.displayName = "CircleNotch"; diff --git a/src/icons/CirclesFour.tsx b/src/icons/CirclesFour.tsx deleted file mode 100644 index 436d4f4ae..000000000 --- a/src/icons/CirclesFour.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", - <> - - , - ], -]); - -export const CirclesFour: Icon = forwardRef((props, ref) => ( - -)); - -CirclesFour.displayName = "CirclesFour"; diff --git a/src/icons/CirclesThree.tsx b/src/icons/CirclesThree.tsx deleted file mode 100644 index b3c80773e..000000000 --- a/src/icons/CirclesThree.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", - <> - - , - ], -]); - -export const CirclesThree: Icon = forwardRef((props, ref) => ( - -)); - -CirclesThree.displayName = "CirclesThree"; diff --git a/src/icons/CirclesThreePlus.tsx b/src/icons/CirclesThreePlus.tsx deleted file mode 100644 index 0af9d096e..000000000 --- a/src/icons/CirclesThreePlus.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", - <> - - , - ], -]); - -export const CirclesThreePlus: Icon = forwardRef((props, ref) => ( - -)); - -CirclesThreePlus.displayName = "CirclesThreePlus"; diff --git a/src/icons/Circuitry.tsx b/src/icons/Circuitry.tsx deleted file mode 100644 index bb5039bae..000000000 --- a/src/icons/Circuitry.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", - <> - - , - ], -]); - -export const Circuitry: Icon = forwardRef((props, ref) => ( - -)); - -Circuitry.displayName = "Circuitry"; diff --git a/src/icons/Clipboard.tsx b/src/icons/Clipboard.tsx deleted file mode 100644 index 5f4f6d5bd..000000000 --- a/src/icons/Clipboard.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", - <> - - , - ], -]); - -export const Clipboard: Icon = forwardRef((props, ref) => ( - -)); - -Clipboard.displayName = "Clipboard"; diff --git a/src/icons/ClipboardText.tsx b/src/icons/ClipboardText.tsx deleted file mode 100644 index b282a9717..000000000 --- a/src/icons/ClipboardText.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", - <> - - , - ], -]); - -export const ClipboardText: Icon = forwardRef((props, ref) => ( - -)); - -ClipboardText.displayName = "ClipboardText"; diff --git a/src/icons/Clock.tsx b/src/icons/Clock.tsx deleted file mode 100644 index 56a343250..000000000 --- a/src/icons/Clock.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Clock: Icon = forwardRef((props, ref) => ( - -)); - -Clock.displayName = "Clock"; diff --git a/src/icons/ClockAfternoon.tsx b/src/icons/ClockAfternoon.tsx deleted file mode 100644 index 8fdb8b992..000000000 --- a/src/icons/ClockAfternoon.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ClockAfternoon: Icon = forwardRef((props, ref) => ( - -)); - -ClockAfternoon.displayName = "ClockAfternoon"; diff --git a/src/icons/ClockClockwise.tsx b/src/icons/ClockClockwise.tsx deleted file mode 100644 index 006074766..000000000 --- a/src/icons/ClockClockwise.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ClockClockwise: Icon = forwardRef((props, ref) => ( - -)); - -ClockClockwise.displayName = "ClockClockwise"; diff --git a/src/icons/ClockCountdown.tsx b/src/icons/ClockCountdown.tsx deleted file mode 100644 index 1f7b32adc..000000000 --- a/src/icons/ClockCountdown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ClockCountdown: Icon = forwardRef((props, ref) => ( - -)); - -ClockCountdown.displayName = "ClockCountdown"; diff --git a/src/icons/ClockCounterClockwise.tsx b/src/icons/ClockCounterClockwise.tsx deleted file mode 100644 index d9daf8ebd..000000000 --- a/src/icons/ClockCounterClockwise.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ClockCounterClockwise: Icon = forwardRef((props, ref) => ( - -)); - -ClockCounterClockwise.displayName = "ClockCounterClockwise"; diff --git a/src/icons/ClosedCaptioning.tsx b/src/icons/ClosedCaptioning.tsx deleted file mode 100644 index 78b64d9c4..000000000 --- a/src/icons/ClosedCaptioning.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", - <> - - , - ], -]); - -export const ClosedCaptioning: Icon = forwardRef((props, ref) => ( - -)); - -ClosedCaptioning.displayName = "ClosedCaptioning"; diff --git a/src/icons/Cloud.tsx b/src/icons/Cloud.tsx deleted file mode 100644 index a5c88d458..000000000 --- a/src/icons/Cloud.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", - <> - - , - ], -]); - -export const Cloud: Icon = forwardRef((props, ref) => ( - -)); - -Cloud.displayName = "Cloud"; diff --git a/src/icons/CloudArrowDown.tsx b/src/icons/CloudArrowDown.tsx deleted file mode 100644 index 8e84c89b1..000000000 --- a/src/icons/CloudArrowDown.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", - <> - - , - ], -]); - -export const CloudArrowDown: Icon = forwardRef((props, ref) => ( - -)); - -CloudArrowDown.displayName = "CloudArrowDown"; diff --git a/src/icons/CloudArrowUp.tsx b/src/icons/CloudArrowUp.tsx deleted file mode 100644 index d46116125..000000000 --- a/src/icons/CloudArrowUp.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", - <> - - , - ], -]); - -export const CloudArrowUp: Icon = forwardRef((props, ref) => ( - -)); - -CloudArrowUp.displayName = "CloudArrowUp"; diff --git a/src/icons/CloudCheck.tsx b/src/icons/CloudCheck.tsx deleted file mode 100644 index e29804ae8..000000000 --- a/src/icons/CloudCheck.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", - <> - - , - ], -]); - -export const CloudCheck: Icon = forwardRef((props, ref) => ( - -)); - -CloudCheck.displayName = "CloudCheck"; diff --git a/src/icons/CloudFog.tsx b/src/icons/CloudFog.tsx deleted file mode 100644 index aa96b3dd0..000000000 --- a/src/icons/CloudFog.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", - <> - - , - ], -]); - -export const CloudFog: Icon = forwardRef((props, ref) => ( - -)); - -CloudFog.displayName = "CloudFog"; diff --git a/src/icons/CloudLightning.tsx b/src/icons/CloudLightning.tsx deleted file mode 100644 index f719cbaac..000000000 --- a/src/icons/CloudLightning.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", - <> - - , - ], -]); - -export const CloudLightning: Icon = forwardRef((props, ref) => ( - -)); - -CloudLightning.displayName = "CloudLightning"; diff --git a/src/icons/CloudMoon.tsx b/src/icons/CloudMoon.tsx deleted file mode 100644 index 15651801f..000000000 --- a/src/icons/CloudMoon.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", - <> - - , - ], -]); - -export const CloudMoon: Icon = forwardRef((props, ref) => ( - -)); - -CloudMoon.displayName = "CloudMoon"; diff --git a/src/icons/CloudRain.tsx b/src/icons/CloudRain.tsx deleted file mode 100644 index a57b19f7b..000000000 --- a/src/icons/CloudRain.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", - <> - - , - ], -]); - -export const CloudRain: Icon = forwardRef((props, ref) => ( - -)); - -CloudRain.displayName = "CloudRain"; diff --git a/src/icons/CloudSlash.tsx b/src/icons/CloudSlash.tsx deleted file mode 100644 index 6eeef27ed..000000000 --- a/src/icons/CloudSlash.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const CloudSlash: Icon = forwardRef((props, ref) => ( - -)); - -CloudSlash.displayName = "CloudSlash"; diff --git a/src/icons/CloudSnow.tsx b/src/icons/CloudSnow.tsx deleted file mode 100644 index f52a788ae..000000000 --- a/src/icons/CloudSnow.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", - <> - - , - ], -]); - -export const CloudSnow: Icon = forwardRef((props, ref) => ( - -)); - -CloudSnow.displayName = "CloudSnow"; diff --git a/src/icons/CloudSun.tsx b/src/icons/CloudSun.tsx deleted file mode 100644 index 5cde53d5b..000000000 --- a/src/icons/CloudSun.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", - <> - - , - ], -]); - -export const CloudSun: Icon = forwardRef((props, ref) => ( - -)); - -CloudSun.displayName = "CloudSun"; diff --git a/src/icons/CloudWarning.tsx b/src/icons/CloudWarning.tsx deleted file mode 100644 index be6c2ba5d..000000000 --- a/src/icons/CloudWarning.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", - <> - - , - ], -]); - -export const CloudWarning: Icon = forwardRef((props, ref) => ( - -)); - -CloudWarning.displayName = "CloudWarning"; diff --git a/src/icons/CloudX.tsx b/src/icons/CloudX.tsx deleted file mode 100644 index c399256bf..000000000 --- a/src/icons/CloudX.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", - <> - - , - ], -]); - -export const CloudX: Icon = forwardRef((props, ref) => ( - -)); - -CloudX.displayName = "CloudX"; diff --git a/src/icons/Club.tsx b/src/icons/Club.tsx deleted file mode 100644 index ab0d9d646..000000000 --- a/src/icons/Club.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", - <> - - , - ], -]); - -export const Club: Icon = forwardRef((props, ref) => ( - -)); - -Club.displayName = "Club"; diff --git a/src/icons/CoatHanger.tsx b/src/icons/CoatHanger.tsx deleted file mode 100644 index c90add302..000000000 --- a/src/icons/CoatHanger.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", - <> - - , - ], -]); - -export const CoatHanger: Icon = forwardRef((props, ref) => ( - -)); - -CoatHanger.displayName = "CoatHanger"; diff --git a/src/icons/CodaLogo.tsx b/src/icons/CodaLogo.tsx deleted file mode 100644 index 5c6520578..000000000 --- a/src/icons/CodaLogo.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", - <> - - , - ], -]); - -export const CodaLogo: Icon = forwardRef((props, ref) => ( - -)); - -CodaLogo.displayName = "CodaLogo"; diff --git a/src/icons/Code.tsx b/src/icons/Code.tsx deleted file mode 100644 index 55ae6bd4f..000000000 --- a/src/icons/Code.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Code: Icon = forwardRef((props, ref) => ( - -)); - -Code.displayName = "Code"; diff --git a/src/icons/CodeBlock.tsx b/src/icons/CodeBlock.tsx deleted file mode 100644 index baae2cd92..000000000 --- a/src/icons/CodeBlock.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", - <> - - , - ], -]); - -export const CodeBlock: Icon = forwardRef((props, ref) => ( - -)); - -CodeBlock.displayName = "CodeBlock"; diff --git a/src/icons/CodeSimple.tsx b/src/icons/CodeSimple.tsx deleted file mode 100644 index 71e71a357..000000000 --- a/src/icons/CodeSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CodeSimple: Icon = forwardRef((props, ref) => ( - -)); - -CodeSimple.displayName = "CodeSimple"; diff --git a/src/icons/CodepenLogo.tsx b/src/icons/CodepenLogo.tsx deleted file mode 100644 index 9bc60fb7b..000000000 --- a/src/icons/CodepenLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CodepenLogo: Icon = forwardRef((props, ref) => ( - -)); - -CodepenLogo.displayName = "CodepenLogo"; diff --git a/src/icons/CodesandboxLogo.tsx b/src/icons/CodesandboxLogo.tsx deleted file mode 100644 index 7e4be25e4..000000000 --- a/src/icons/CodesandboxLogo.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", - <> - - , - ], -]); - -export const CodesandboxLogo: Icon = forwardRef((props, ref) => ( - -)); - -CodesandboxLogo.displayName = "CodesandboxLogo"; diff --git a/src/icons/Coffee.tsx b/src/icons/Coffee.tsx deleted file mode 100644 index 5e1ebfdb2..000000000 --- a/src/icons/Coffee.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", - <> - - , - ], -]); - -export const Coffee: Icon = forwardRef((props, ref) => ( - -)); - -Coffee.displayName = "Coffee"; diff --git a/src/icons/Coin.tsx b/src/icons/Coin.tsx deleted file mode 100644 index 7d4504265..000000000 --- a/src/icons/Coin.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", - <> - - , - ], -]); - -export const Coin: Icon = forwardRef((props, ref) => ( - -)); - -Coin.displayName = "Coin"; diff --git a/src/icons/CoinVertical.tsx b/src/icons/CoinVertical.tsx deleted file mode 100644 index 105da4536..000000000 --- a/src/icons/CoinVertical.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", - <> - - , - ], -]); - -export const CoinVertical: Icon = forwardRef((props, ref) => ( - -)); - -CoinVertical.displayName = "CoinVertical"; diff --git a/src/icons/Coins.tsx b/src/icons/Coins.tsx deleted file mode 100644 index bf9c6be89..000000000 --- a/src/icons/Coins.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", - <> - - , - ], -]); - -export const Coins: Icon = forwardRef((props, ref) => ( - -)); - -Coins.displayName = "Coins"; diff --git a/src/icons/Columns.tsx b/src/icons/Columns.tsx deleted file mode 100644 index 00d884c20..000000000 --- a/src/icons/Columns.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", - <> - - , - ], -]); - -export const Columns: Icon = forwardRef((props, ref) => ( - -)); - -Columns.displayName = "Columns"; diff --git a/src/icons/Command.tsx b/src/icons/Command.tsx deleted file mode 100644 index 49eb1ee5f..000000000 --- a/src/icons/Command.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", - <> - - , - ], -]); - -export const Command: Icon = forwardRef((props, ref) => ( - -)); - -Command.displayName = "Command"; diff --git a/src/icons/Compass.tsx b/src/icons/Compass.tsx deleted file mode 100644 index 8d235e455..000000000 --- a/src/icons/Compass.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", - <> - - , - ], -]); - -export const Compass: Icon = forwardRef((props, ref) => ( - -)); - -Compass.displayName = "Compass"; diff --git a/src/icons/CompassTool.tsx b/src/icons/CompassTool.tsx deleted file mode 100644 index 1c86e675d..000000000 --- a/src/icons/CompassTool.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CompassTool: Icon = forwardRef((props, ref) => ( - -)); - -CompassTool.displayName = "CompassTool"; diff --git a/src/icons/ComputerTower.tsx b/src/icons/ComputerTower.tsx deleted file mode 100644 index 79ba247f9..000000000 --- a/src/icons/ComputerTower.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", - <> - - , - ], -]); - -export const ComputerTower: Icon = forwardRef((props, ref) => ( - -)); - -ComputerTower.displayName = "ComputerTower"; diff --git a/src/icons/Confetti.tsx b/src/icons/Confetti.tsx deleted file mode 100644 index 5f37cf87c..000000000 --- a/src/icons/Confetti.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", - <> - - , - ], -]); - -export const Confetti: Icon = forwardRef((props, ref) => ( - -)); - -Confetti.displayName = "Confetti"; diff --git a/src/icons/ContactlessPayment.tsx b/src/icons/ContactlessPayment.tsx deleted file mode 100644 index 44bef97ee..000000000 --- a/src/icons/ContactlessPayment.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ContactlessPayment: Icon = forwardRef((props, ref) => ( - -)); - -ContactlessPayment.displayName = "ContactlessPayment"; diff --git a/src/icons/Control.tsx b/src/icons/Control.tsx deleted file mode 100644 index 5cbafca2c..000000000 --- a/src/icons/Control.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Control: Icon = forwardRef((props, ref) => ( - -)); - -Control.displayName = "Control"; diff --git a/src/icons/Cookie.tsx b/src/icons/Cookie.tsx deleted file mode 100644 index c1742ba9a..000000000 --- a/src/icons/Cookie.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", - <> - - , - ], -]); - -export const Cookie: Icon = forwardRef((props, ref) => ( - -)); - -Cookie.displayName = "Cookie"; diff --git a/src/icons/CookingPot.tsx b/src/icons/CookingPot.tsx deleted file mode 100644 index 71d2a5970..000000000 --- a/src/icons/CookingPot.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", - <> - - , - ], -]); - -export const CookingPot: Icon = forwardRef((props, ref) => ( - -)); - -CookingPot.displayName = "CookingPot"; diff --git a/src/icons/Copy.tsx b/src/icons/Copy.tsx deleted file mode 100644 index f8326d5fd..000000000 --- a/src/icons/Copy.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Copy: Icon = forwardRef((props, ref) => ( - -)); - -Copy.displayName = "Copy"; diff --git a/src/icons/CopySimple.tsx b/src/icons/CopySimple.tsx deleted file mode 100644 index f651dd3aa..000000000 --- a/src/icons/CopySimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CopySimple: Icon = forwardRef((props, ref) => ( - -)); - -CopySimple.displayName = "CopySimple"; diff --git a/src/icons/Copyleft.tsx b/src/icons/Copyleft.tsx deleted file mode 100644 index 9bf7a6650..000000000 --- a/src/icons/Copyleft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Copyleft: Icon = forwardRef((props, ref) => ( - -)); - -Copyleft.displayName = "Copyleft"; diff --git a/src/icons/Copyright.tsx b/src/icons/Copyright.tsx deleted file mode 100644 index bcaa6c09c..000000000 --- a/src/icons/Copyright.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Copyright: Icon = forwardRef((props, ref) => ( - -)); - -Copyright.displayName = "Copyright"; diff --git a/src/icons/CornersIn.tsx b/src/icons/CornersIn.tsx deleted file mode 100644 index 33f22c37d..000000000 --- a/src/icons/CornersIn.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", - <> - - , - ], -]); - -export const CornersIn: Icon = forwardRef((props, ref) => ( - -)); - -CornersIn.displayName = "CornersIn"; diff --git a/src/icons/CornersOut.tsx b/src/icons/CornersOut.tsx deleted file mode 100644 index 7d1446895..000000000 --- a/src/icons/CornersOut.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", - <> - - , - ], -]); - -export const CornersOut: Icon = forwardRef((props, ref) => ( - -)); - -CornersOut.displayName = "CornersOut"; diff --git a/src/icons/Couch.tsx b/src/icons/Couch.tsx deleted file mode 100644 index 0d98aee27..000000000 --- a/src/icons/Couch.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", - <> - - , - ], -]); - -export const Couch: Icon = forwardRef((props, ref) => ( - -)); - -Couch.displayName = "Couch"; diff --git a/src/icons/Cpu.tsx b/src/icons/Cpu.tsx deleted file mode 100644 index e97ac56a8..000000000 --- a/src/icons/Cpu.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", - <> - - , - ], -]); - -export const Cpu: Icon = forwardRef((props, ref) => ( - -)); - -Cpu.displayName = "Cpu"; diff --git a/src/icons/CreditCard.tsx b/src/icons/CreditCard.tsx deleted file mode 100644 index 3a7a957b1..000000000 --- a/src/icons/CreditCard.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CreditCard: Icon = forwardRef((props, ref) => ( - -)); - -CreditCard.displayName = "CreditCard"; diff --git a/src/icons/Crop.tsx b/src/icons/Crop.tsx deleted file mode 100644 index 2178433e2..000000000 --- a/src/icons/Crop.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Crop: Icon = forwardRef((props, ref) => ( - -)); - -Crop.displayName = "Crop"; diff --git a/src/icons/Cross.tsx b/src/icons/Cross.tsx deleted file mode 100644 index 470af0f30..000000000 --- a/src/icons/Cross.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", - <> - - , - ], -]); - -export const Cross: Icon = forwardRef((props, ref) => ( - -)); - -Cross.displayName = "Cross"; diff --git a/src/icons/Crosshair.tsx b/src/icons/Crosshair.tsx deleted file mode 100644 index e248c5b5c..000000000 --- a/src/icons/Crosshair.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Crosshair: Icon = forwardRef((props, ref) => ( - -)); - -Crosshair.displayName = "Crosshair"; diff --git a/src/icons/CrosshairSimple.tsx b/src/icons/CrosshairSimple.tsx deleted file mode 100644 index 745ed3596..000000000 --- a/src/icons/CrosshairSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CrosshairSimple: Icon = forwardRef((props, ref) => ( - -)); - -CrosshairSimple.displayName = "CrosshairSimple"; diff --git a/src/icons/Crown.tsx b/src/icons/Crown.tsx deleted file mode 100644 index 754f161ec..000000000 --- a/src/icons/Crown.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", - <> - - , - ], -]); - -export const Crown: Icon = forwardRef((props, ref) => ( - -)); - -Crown.displayName = "Crown"; diff --git a/src/icons/CrownSimple.tsx b/src/icons/CrownSimple.tsx deleted file mode 100644 index 04719ebf9..000000000 --- a/src/icons/CrownSimple.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", - <> - - , - ], -]); - -export const CrownSimple: Icon = forwardRef((props, ref) => ( - -)); - -CrownSimple.displayName = "CrownSimple"; diff --git a/src/icons/Cube.tsx b/src/icons/Cube.tsx deleted file mode 100644 index badddd775..000000000 --- a/src/icons/Cube.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", - <> - - , - ], -]); - -export const Cube: Icon = forwardRef((props, ref) => ( - -)); - -Cube.displayName = "Cube"; diff --git a/src/icons/CubeFocus.tsx b/src/icons/CubeFocus.tsx deleted file mode 100644 index cb620464b..000000000 --- a/src/icons/CubeFocus.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", - <> - - , - ], -]); - -export const CubeFocus: Icon = forwardRef((props, ref) => ( - -)); - -CubeFocus.displayName = "CubeFocus"; diff --git a/src/icons/CubeTransparent.tsx b/src/icons/CubeTransparent.tsx deleted file mode 100644 index 4490df90c..000000000 --- a/src/icons/CubeTransparent.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CubeTransparent: Icon = forwardRef((props, ref) => ( - -)); - -CubeTransparent.displayName = "CubeTransparent"; diff --git a/src/icons/CurrencyBtc.tsx b/src/icons/CurrencyBtc.tsx deleted file mode 100644 index 51e046e33..000000000 --- a/src/icons/CurrencyBtc.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", - <> - - , - ], -]); - -export const CurrencyBtc: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyBtc.displayName = "CurrencyBtc"; diff --git a/src/icons/CurrencyCircleDollar.tsx b/src/icons/CurrencyCircleDollar.tsx deleted file mode 100644 index d4f78bad5..000000000 --- a/src/icons/CurrencyCircleDollar.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CurrencyCircleDollar: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyCircleDollar.displayName = "CurrencyCircleDollar"; diff --git a/src/icons/CurrencyCny.tsx b/src/icons/CurrencyCny.tsx deleted file mode 100644 index 6726b4605..000000000 --- a/src/icons/CurrencyCny.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CurrencyCny: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyCny.displayName = "CurrencyCny"; diff --git a/src/icons/CurrencyDollar.tsx b/src/icons/CurrencyDollar.tsx deleted file mode 100644 index 372e4b6c4..000000000 --- a/src/icons/CurrencyDollar.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", - <> - - , - ], -]); - -export const CurrencyDollar: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyDollar.displayName = "CurrencyDollar"; diff --git a/src/icons/CurrencyDollarSimple.tsx b/src/icons/CurrencyDollarSimple.tsx deleted file mode 100644 index 2cd24680c..000000000 --- a/src/icons/CurrencyDollarSimple.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", - <> - - , - ], -]); - -export const CurrencyDollarSimple: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyDollarSimple.displayName = "CurrencyDollarSimple"; diff --git a/src/icons/CurrencyEth.tsx b/src/icons/CurrencyEth.tsx deleted file mode 100644 index d73c6ed8b..000000000 --- a/src/icons/CurrencyEth.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CurrencyEth: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyEth.displayName = "CurrencyEth"; diff --git a/src/icons/CurrencyEur.tsx b/src/icons/CurrencyEur.tsx deleted file mode 100644 index 2c0f6120f..000000000 --- a/src/icons/CurrencyEur.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", - <> - - , - ], -]); - -export const CurrencyEur: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyEur.displayName = "CurrencyEur"; diff --git a/src/icons/CurrencyGbp.tsx b/src/icons/CurrencyGbp.tsx deleted file mode 100644 index 4db51da1c..000000000 --- a/src/icons/CurrencyGbp.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", - <> - - , - ], -]); - -export const CurrencyGbp: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyGbp.displayName = "CurrencyGbp"; diff --git a/src/icons/CurrencyInr.tsx b/src/icons/CurrencyInr.tsx deleted file mode 100644 index a20f94f5c..000000000 --- a/src/icons/CurrencyInr.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", - <> - - , - ], -]); - -export const CurrencyInr: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyInr.displayName = "CurrencyInr"; diff --git a/src/icons/CurrencyJpy.tsx b/src/icons/CurrencyJpy.tsx deleted file mode 100644 index 57de2a976..000000000 --- a/src/icons/CurrencyJpy.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CurrencyJpy: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyJpy.displayName = "CurrencyJpy"; diff --git a/src/icons/CurrencyKrw.tsx b/src/icons/CurrencyKrw.tsx deleted file mode 100644 index d6d21cc15..000000000 --- a/src/icons/CurrencyKrw.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", - <> - - , - ], -]); - -export const CurrencyKrw: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyKrw.displayName = "CurrencyKrw"; diff --git a/src/icons/CurrencyKzt.tsx b/src/icons/CurrencyKzt.tsx deleted file mode 100644 index 69beb8abf..000000000 --- a/src/icons/CurrencyKzt.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CurrencyKzt: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyKzt.displayName = "CurrencyKzt"; diff --git a/src/icons/CurrencyNgn.tsx b/src/icons/CurrencyNgn.tsx deleted file mode 100644 index 6cdb306c9..000000000 --- a/src/icons/CurrencyNgn.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CurrencyNgn: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyNgn.displayName = "CurrencyNgn"; diff --git a/src/icons/CurrencyRub.tsx b/src/icons/CurrencyRub.tsx deleted file mode 100644 index 92e610db3..000000000 --- a/src/icons/CurrencyRub.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", - <> - - , - ], -]); - -export const CurrencyRub: Icon = forwardRef((props, ref) => ( - -)); - -CurrencyRub.displayName = "CurrencyRub"; diff --git a/src/icons/Cursor.tsx b/src/icons/Cursor.tsx deleted file mode 100644 index 404a30d10..000000000 --- a/src/icons/Cursor.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", - <> - - , - ], -]); - -export const Cursor: Icon = forwardRef((props, ref) => ( - -)); - -Cursor.displayName = "Cursor"; diff --git a/src/icons/CursorClick.tsx b/src/icons/CursorClick.tsx deleted file mode 100644 index 9b3a4d9ad..000000000 --- a/src/icons/CursorClick.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", - <> - - , - ], -]); - -export const CursorClick: Icon = forwardRef((props, ref) => ( - -)); - -CursorClick.displayName = "CursorClick"; diff --git a/src/icons/CursorText.tsx b/src/icons/CursorText.tsx deleted file mode 100644 index 3d43319d2..000000000 --- a/src/icons/CursorText.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const CursorText: Icon = forwardRef((props, ref) => ( - -)); - -CursorText.displayName = "CursorText"; diff --git a/src/icons/Cylinder.tsx b/src/icons/Cylinder.tsx deleted file mode 100644 index 8d41be62f..000000000 --- a/src/icons/Cylinder.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", - <> - - , - ], -]); - -export const Cylinder: Icon = forwardRef((props, ref) => ( - -)); - -Cylinder.displayName = "Cylinder"; diff --git a/src/icons/Database.tsx b/src/icons/Database.tsx deleted file mode 100644 index 3783c10ee..000000000 --- a/src/icons/Database.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", - <> - - , - ], -]); - -export const Database: Icon = forwardRef((props, ref) => ( - -)); - -Database.displayName = "Database"; diff --git a/src/icons/Desktop.tsx b/src/icons/Desktop.tsx deleted file mode 100644 index b210ded86..000000000 --- a/src/icons/Desktop.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", - <> - - , - ], -]); - -export const Desktop: Icon = forwardRef((props, ref) => ( - -)); - -Desktop.displayName = "Desktop"; diff --git a/src/icons/DesktopTower.tsx b/src/icons/DesktopTower.tsx deleted file mode 100644 index 26814b86a..000000000 --- a/src/icons/DesktopTower.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", - <> - - , - ], -]); - -export const DesktopTower: Icon = forwardRef((props, ref) => ( - -)); - -DesktopTower.displayName = "DesktopTower"; diff --git a/src/icons/Detective.tsx b/src/icons/Detective.tsx deleted file mode 100644 index 926627984..000000000 --- a/src/icons/Detective.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", - <> - - , - ], -]); - -export const Detective: Icon = forwardRef((props, ref) => ( - -)); - -Detective.displayName = "Detective"; diff --git a/src/icons/DevToLogo.tsx b/src/icons/DevToLogo.tsx deleted file mode 100644 index 170380102..000000000 --- a/src/icons/DevToLogo.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", - <> - - , - ], -]); - -export const DevToLogo: Icon = forwardRef((props, ref) => ( - -)); - -DevToLogo.displayName = "DevToLogo"; diff --git a/src/icons/DeviceMobile.tsx b/src/icons/DeviceMobile.tsx deleted file mode 100644 index 902b095b9..000000000 --- a/src/icons/DeviceMobile.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DeviceMobile: Icon = forwardRef((props, ref) => ( - -)); - -DeviceMobile.displayName = "DeviceMobile"; diff --git a/src/icons/DeviceMobileCamera.tsx b/src/icons/DeviceMobileCamera.tsx deleted file mode 100644 index 6c4e59790..000000000 --- a/src/icons/DeviceMobileCamera.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", - <> - - , - ], -]); - -export const DeviceMobileCamera: Icon = forwardRef((props, ref) => ( - -)); - -DeviceMobileCamera.displayName = "DeviceMobileCamera"; diff --git a/src/icons/DeviceMobileSpeaker.tsx b/src/icons/DeviceMobileSpeaker.tsx deleted file mode 100644 index 5336267a4..000000000 --- a/src/icons/DeviceMobileSpeaker.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", - <> - - , - ], -]); - -export const DeviceMobileSpeaker: Icon = forwardRef((props, ref) => ( - -)); - -DeviceMobileSpeaker.displayName = "DeviceMobileSpeaker"; diff --git a/src/icons/DeviceTablet.tsx b/src/icons/DeviceTablet.tsx deleted file mode 100644 index c5a513525..000000000 --- a/src/icons/DeviceTablet.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DeviceTablet: Icon = forwardRef((props, ref) => ( - -)); - -DeviceTablet.displayName = "DeviceTablet"; diff --git a/src/icons/DeviceTabletCamera.tsx b/src/icons/DeviceTabletCamera.tsx deleted file mode 100644 index 319f36baa..000000000 --- a/src/icons/DeviceTabletCamera.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", - <> - - , - ], -]); - -export const DeviceTabletCamera: Icon = forwardRef((props, ref) => ( - -)); - -DeviceTabletCamera.displayName = "DeviceTabletCamera"; diff --git a/src/icons/DeviceTabletSpeaker.tsx b/src/icons/DeviceTabletSpeaker.tsx deleted file mode 100644 index 157879a13..000000000 --- a/src/icons/DeviceTabletSpeaker.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", - <> - - , - ], -]); - -export const DeviceTabletSpeaker: Icon = forwardRef((props, ref) => ( - -)); - -DeviceTabletSpeaker.displayName = "DeviceTabletSpeaker"; diff --git a/src/icons/Devices.tsx b/src/icons/Devices.tsx deleted file mode 100644 index 2ad23f621..000000000 --- a/src/icons/Devices.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", - <> - - , - ], -]); - -export const Devices: Icon = forwardRef((props, ref) => ( - -)); - -Devices.displayName = "Devices"; diff --git a/src/icons/Diamond.tsx b/src/icons/Diamond.tsx deleted file mode 100644 index 4226c42fc..000000000 --- a/src/icons/Diamond.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", - <> - - , - ], -]); - -export const Diamond: Icon = forwardRef((props, ref) => ( - -)); - -Diamond.displayName = "Diamond"; diff --git a/src/icons/DiamondsFour.tsx b/src/icons/DiamondsFour.tsx deleted file mode 100644 index 2d65a8c5e..000000000 --- a/src/icons/DiamondsFour.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", - <> - - , - ], -]); - -export const DiamondsFour: Icon = forwardRef((props, ref) => ( - -)); - -DiamondsFour.displayName = "DiamondsFour"; diff --git a/src/icons/DiceFive.tsx b/src/icons/DiceFive.tsx deleted file mode 100644 index 7bdd47c26..000000000 --- a/src/icons/DiceFive.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", - <> - - , - ], -]); - -export const DiceFive: Icon = forwardRef((props, ref) => ( - -)); - -DiceFive.displayName = "DiceFive"; diff --git a/src/icons/DiceFour.tsx b/src/icons/DiceFour.tsx deleted file mode 100644 index 1fb715127..000000000 --- a/src/icons/DiceFour.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", - <> - - , - ], -]); - -export const DiceFour: Icon = forwardRef((props, ref) => ( - -)); - -DiceFour.displayName = "DiceFour"; diff --git a/src/icons/DiceOne.tsx b/src/icons/DiceOne.tsx deleted file mode 100644 index 83fa83412..000000000 --- a/src/icons/DiceOne.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", - <> - - , - ], -]); - -export const DiceOne: Icon = forwardRef((props, ref) => ( - -)); - -DiceOne.displayName = "DiceOne"; diff --git a/src/icons/DiceSix.tsx b/src/icons/DiceSix.tsx deleted file mode 100644 index 84cd97bda..000000000 --- a/src/icons/DiceSix.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", - <> - - , - ], -]); - -export const DiceSix: Icon = forwardRef((props, ref) => ( - -)); - -DiceSix.displayName = "DiceSix"; diff --git a/src/icons/DiceThree.tsx b/src/icons/DiceThree.tsx deleted file mode 100644 index bc0b4525e..000000000 --- a/src/icons/DiceThree.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", - <> - - , - ], -]); - -export const DiceThree: Icon = forwardRef((props, ref) => ( - -)); - -DiceThree.displayName = "DiceThree"; diff --git a/src/icons/DiceTwo.tsx b/src/icons/DiceTwo.tsx deleted file mode 100644 index fa03b3d8c..000000000 --- a/src/icons/DiceTwo.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", - <> - - , - ], -]); - -export const DiceTwo: Icon = forwardRef((props, ref) => ( - -)); - -DiceTwo.displayName = "DiceTwo"; diff --git a/src/icons/Disc.tsx b/src/icons/Disc.tsx deleted file mode 100644 index 694c0e72a..000000000 --- a/src/icons/Disc.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", - <> - - , - ], -]); - -export const Disc: Icon = forwardRef((props, ref) => ( - -)); - -Disc.displayName = "Disc"; diff --git a/src/icons/DiscordLogo.tsx b/src/icons/DiscordLogo.tsx deleted file mode 100644 index 14b32ec12..000000000 --- a/src/icons/DiscordLogo.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", - <> - - , - ], -]); - -export const DiscordLogo: Icon = forwardRef((props, ref) => ( - -)); - -DiscordLogo.displayName = "DiscordLogo"; diff --git a/src/icons/Divide.tsx b/src/icons/Divide.tsx deleted file mode 100644 index c15802df5..000000000 --- a/src/icons/Divide.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", - <> - - , - ], -]); - -export const Divide: Icon = forwardRef((props, ref) => ( - -)); - -Divide.displayName = "Divide"; diff --git a/src/icons/Dna.tsx b/src/icons/Dna.tsx deleted file mode 100644 index a28fd3398..000000000 --- a/src/icons/Dna.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", - <> - - , - ], -]); - -export const Dna: Icon = forwardRef((props, ref) => ( - -)); - -Dna.displayName = "Dna"; diff --git a/src/icons/Dog.tsx b/src/icons/Dog.tsx deleted file mode 100644 index 5a858955d..000000000 --- a/src/icons/Dog.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", - <> - - , - ], -]); - -export const Dog: Icon = forwardRef((props, ref) => ( - -)); - -Dog.displayName = "Dog"; diff --git a/src/icons/Door.tsx b/src/icons/Door.tsx deleted file mode 100644 index fab8486f8..000000000 --- a/src/icons/Door.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", - <> - - , - ], -]); - -export const Door: Icon = forwardRef((props, ref) => ( - -)); - -Door.displayName = "Door"; diff --git a/src/icons/DoorOpen.tsx b/src/icons/DoorOpen.tsx deleted file mode 100644 index 0e8ee8e08..000000000 --- a/src/icons/DoorOpen.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", - <> - - , - ], -]); - -export const DoorOpen: Icon = forwardRef((props, ref) => ( - -)); - -DoorOpen.displayName = "DoorOpen"; diff --git a/src/icons/Dot.tsx b/src/icons/Dot.tsx deleted file mode 100644 index 350450aeb..000000000 --- a/src/icons/Dot.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Dot: Icon = forwardRef((props, ref) => ( - -)); - -Dot.displayName = "Dot"; diff --git a/src/icons/DotOutline.tsx b/src/icons/DotOutline.tsx deleted file mode 100644 index 9a3e948a2..000000000 --- a/src/icons/DotOutline.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DotOutline: Icon = forwardRef((props, ref) => ( - -)); - -DotOutline.displayName = "DotOutline"; diff --git a/src/icons/DotsNine.tsx b/src/icons/DotsNine.tsx deleted file mode 100644 index f83ab339e..000000000 --- a/src/icons/DotsNine.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", - <> - - , - ], -]); - -export const DotsNine: Icon = forwardRef((props, ref) => ( - -)); - -DotsNine.displayName = "DotsNine"; diff --git a/src/icons/DotsSix.tsx b/src/icons/DotsSix.tsx deleted file mode 100644 index c38b82c83..000000000 --- a/src/icons/DotsSix.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", - <> - - , - ], -]); - -export const DotsSix: Icon = forwardRef((props, ref) => ( - -)); - -DotsSix.displayName = "DotsSix"; diff --git a/src/icons/DotsSixVertical.tsx b/src/icons/DotsSixVertical.tsx deleted file mode 100644 index 5c29246a0..000000000 --- a/src/icons/DotsSixVertical.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", - <> - - , - ], -]); - -export const DotsSixVertical: Icon = forwardRef((props, ref) => ( - -)); - -DotsSixVertical.displayName = "DotsSixVertical"; diff --git a/src/icons/DotsThree.tsx b/src/icons/DotsThree.tsx deleted file mode 100644 index b21104f6f..000000000 --- a/src/icons/DotsThree.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", - <> - - , - ], -]); - -export const DotsThree: Icon = forwardRef((props, ref) => ( - -)); - -DotsThree.displayName = "DotsThree"; diff --git a/src/icons/DotsThreeCircle.tsx b/src/icons/DotsThreeCircle.tsx deleted file mode 100644 index f8ee841a9..000000000 --- a/src/icons/DotsThreeCircle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DotsThreeCircle: Icon = forwardRef((props, ref) => ( - -)); - -DotsThreeCircle.displayName = "DotsThreeCircle"; diff --git a/src/icons/DotsThreeCircleVertical.tsx b/src/icons/DotsThreeCircleVertical.tsx deleted file mode 100644 index 1553e79aa..000000000 --- a/src/icons/DotsThreeCircleVertical.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DotsThreeCircleVertical: Icon = forwardRef((props, ref) => ( - -)); - -DotsThreeCircleVertical.displayName = "DotsThreeCircleVertical"; diff --git a/src/icons/DotsThreeOutline.tsx b/src/icons/DotsThreeOutline.tsx deleted file mode 100644 index fd6ac0412..000000000 --- a/src/icons/DotsThreeOutline.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", - <> - - , - ], -]); - -export const DotsThreeOutline: Icon = forwardRef((props, ref) => ( - -)); - -DotsThreeOutline.displayName = "DotsThreeOutline"; diff --git a/src/icons/DotsThreeOutlineVertical.tsx b/src/icons/DotsThreeOutlineVertical.tsx deleted file mode 100644 index 5fd0e521b..000000000 --- a/src/icons/DotsThreeOutlineVertical.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", - <> - - , - ], -]); - -export const DotsThreeOutlineVertical: Icon = forwardRef((props, ref) => ( - -)); - -DotsThreeOutlineVertical.displayName = "DotsThreeOutlineVertical"; diff --git a/src/icons/DotsThreeVertical.tsx b/src/icons/DotsThreeVertical.tsx deleted file mode 100644 index b3e493034..000000000 --- a/src/icons/DotsThreeVertical.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", - <> - - , - ], -]); - -export const DotsThreeVertical: Icon = forwardRef((props, ref) => ( - -)); - -DotsThreeVertical.displayName = "DotsThreeVertical"; diff --git a/src/icons/Download.tsx b/src/icons/Download.tsx deleted file mode 100644 index 1ba17f24c..000000000 --- a/src/icons/Download.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", - <> - - , - ], -]); - -export const Download: Icon = forwardRef((props, ref) => ( - -)); - -Download.displayName = "Download"; diff --git a/src/icons/DownloadSimple.tsx b/src/icons/DownloadSimple.tsx deleted file mode 100644 index 8efbc465a..000000000 --- a/src/icons/DownloadSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DownloadSimple: Icon = forwardRef((props, ref) => ( - -)); - -DownloadSimple.displayName = "DownloadSimple"; diff --git a/src/icons/Dress.tsx b/src/icons/Dress.tsx deleted file mode 100644 index b3cbd771d..000000000 --- a/src/icons/Dress.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", - <> - - , - ], -]); - -export const Dress: Icon = forwardRef((props, ref) => ( - -)); - -Dress.displayName = "Dress"; diff --git a/src/icons/DribbbleLogo.tsx b/src/icons/DribbbleLogo.tsx deleted file mode 100644 index 8611e7860..000000000 --- a/src/icons/DribbbleLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DribbbleLogo: Icon = forwardRef((props, ref) => ( - -)); - -DribbbleLogo.displayName = "DribbbleLogo"; diff --git a/src/icons/Drop.tsx b/src/icons/Drop.tsx deleted file mode 100644 index df7f2b730..000000000 --- a/src/icons/Drop.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", - <> - - , - ], -]); - -export const Drop: Icon = forwardRef((props, ref) => ( - -)); - -Drop.displayName = "Drop"; diff --git a/src/icons/DropHalf.tsx b/src/icons/DropHalf.tsx deleted file mode 100644 index a70bc632e..000000000 --- a/src/icons/DropHalf.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const DropHalf: Icon = forwardRef((props, ref) => ( - -)); - -DropHalf.displayName = "DropHalf"; diff --git a/src/icons/DropHalfBottom.tsx b/src/icons/DropHalfBottom.tsx deleted file mode 100644 index 7f7cd61a9..000000000 --- a/src/icons/DropHalfBottom.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", - <> - - , - ], -]); - -export const DropHalfBottom: Icon = forwardRef((props, ref) => ( - -)); - -DropHalfBottom.displayName = "DropHalfBottom"; diff --git a/src/icons/DropboxLogo.tsx b/src/icons/DropboxLogo.tsx deleted file mode 100644 index c41e8c295..000000000 --- a/src/icons/DropboxLogo.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", - <> - - , - ], -]); - -export const DropboxLogo: Icon = forwardRef((props, ref) => ( - -)); - -DropboxLogo.displayName = "DropboxLogo"; diff --git a/src/icons/Ear.tsx b/src/icons/Ear.tsx deleted file mode 100644 index 7c30739db..000000000 --- a/src/icons/Ear.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", - <> - - , - ], -]); - -export const Ear: Icon = forwardRef((props, ref) => ( - -)); - -Ear.displayName = "Ear"; diff --git a/src/icons/EarSlash.tsx b/src/icons/EarSlash.tsx deleted file mode 100644 index 9acaff318..000000000 --- a/src/icons/EarSlash.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", - <> - - , - ], -]); - -export const EarSlash: Icon = forwardRef((props, ref) => ( - -)); - -EarSlash.displayName = "EarSlash"; diff --git a/src/icons/Egg.tsx b/src/icons/Egg.tsx deleted file mode 100644 index b56f02625..000000000 --- a/src/icons/Egg.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", - <> - - , - ], -]); - -export const Egg: Icon = forwardRef((props, ref) => ( - -)); - -Egg.displayName = "Egg"; diff --git a/src/icons/EggCrack.tsx b/src/icons/EggCrack.tsx deleted file mode 100644 index 0d0cd7c81..000000000 --- a/src/icons/EggCrack.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", - <> - - , - ], -]); - -export const EggCrack: Icon = forwardRef((props, ref) => ( - -)); - -EggCrack.displayName = "EggCrack"; diff --git a/src/icons/Eject.tsx b/src/icons/Eject.tsx deleted file mode 100644 index 7971d313c..000000000 --- a/src/icons/Eject.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", - <> - - , - ], -]); - -export const Eject: Icon = forwardRef((props, ref) => ( - -)); - -Eject.displayName = "Eject"; diff --git a/src/icons/EjectSimple.tsx b/src/icons/EjectSimple.tsx deleted file mode 100644 index a39f64572..000000000 --- a/src/icons/EjectSimple.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", - <> - - , - ], -]); - -export const EjectSimple: Icon = forwardRef((props, ref) => ( - -)); - -EjectSimple.displayName = "EjectSimple"; diff --git a/src/icons/Elevator.tsx b/src/icons/Elevator.tsx deleted file mode 100644 index a4a54c20a..000000000 --- a/src/icons/Elevator.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Elevator: Icon = forwardRef((props, ref) => ( - -)); - -Elevator.displayName = "Elevator"; diff --git a/src/icons/Engine.tsx b/src/icons/Engine.tsx deleted file mode 100644 index 456818c61..000000000 --- a/src/icons/Engine.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", - <> - - , - ], -]); - -export const Engine: Icon = forwardRef((props, ref) => ( - -)); - -Engine.displayName = "Engine"; diff --git a/src/icons/Envelope.tsx b/src/icons/Envelope.tsx deleted file mode 100644 index 947fbd989..000000000 --- a/src/icons/Envelope.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Envelope: Icon = forwardRef((props, ref) => ( - -)); - -Envelope.displayName = "Envelope"; diff --git a/src/icons/EnvelopeOpen.tsx b/src/icons/EnvelopeOpen.tsx deleted file mode 100644 index 6358872a3..000000000 --- a/src/icons/EnvelopeOpen.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const EnvelopeOpen: Icon = forwardRef((props, ref) => ( - -)); - -EnvelopeOpen.displayName = "EnvelopeOpen"; diff --git a/src/icons/EnvelopeSimple.tsx b/src/icons/EnvelopeSimple.tsx deleted file mode 100644 index 141b27564..000000000 --- a/src/icons/EnvelopeSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const EnvelopeSimple: Icon = forwardRef((props, ref) => ( - -)); - -EnvelopeSimple.displayName = "EnvelopeSimple"; diff --git a/src/icons/EnvelopeSimpleOpen.tsx b/src/icons/EnvelopeSimpleOpen.tsx deleted file mode 100644 index 01962a8f9..000000000 --- a/src/icons/EnvelopeSimpleOpen.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const EnvelopeSimpleOpen: Icon = forwardRef((props, ref) => ( - -)); - -EnvelopeSimpleOpen.displayName = "EnvelopeSimpleOpen"; diff --git a/src/icons/Equalizer.tsx b/src/icons/Equalizer.tsx deleted file mode 100644 index fa0d68e53..000000000 --- a/src/icons/Equalizer.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", - <> - - , - ], -]); - -export const Equalizer: Icon = forwardRef((props, ref) => ( - -)); - -Equalizer.displayName = "Equalizer"; diff --git a/src/icons/Equals.tsx b/src/icons/Equals.tsx deleted file mode 100644 index 60d7420a2..000000000 --- a/src/icons/Equals.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", - <> - - , - ], -]); - -export const Equals: Icon = forwardRef((props, ref) => ( - -)); - -Equals.displayName = "Equals"; diff --git a/src/icons/Eraser.tsx b/src/icons/Eraser.tsx deleted file mode 100644 index 981456423..000000000 --- a/src/icons/Eraser.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", - <> - - , - ], -]); - -export const Eraser: Icon = forwardRef((props, ref) => ( - -)); - -Eraser.displayName = "Eraser"; diff --git a/src/icons/EscalatorDown.tsx b/src/icons/EscalatorDown.tsx deleted file mode 100644 index 98de290bb..000000000 --- a/src/icons/EscalatorDown.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", - <> - - , - ], -]); - -export const EscalatorDown: Icon = forwardRef((props, ref) => ( - -)); - -EscalatorDown.displayName = "EscalatorDown"; diff --git a/src/icons/EscalatorUp.tsx b/src/icons/EscalatorUp.tsx deleted file mode 100644 index c10d8a4db..000000000 --- a/src/icons/EscalatorUp.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", - <> - - , - ], -]); - -export const EscalatorUp: Icon = forwardRef((props, ref) => ( - -)); - -EscalatorUp.displayName = "EscalatorUp"; diff --git a/src/icons/Exam.tsx b/src/icons/Exam.tsx deleted file mode 100644 index d90be3124..000000000 --- a/src/icons/Exam.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", - <> - - , - ], -]); - -export const Exam: Icon = forwardRef((props, ref) => ( - -)); - -Exam.displayName = "Exam"; diff --git a/src/icons/Exclude.tsx b/src/icons/Exclude.tsx deleted file mode 100644 index 16f787f2a..000000000 --- a/src/icons/Exclude.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", - <> - - , - ], -]); - -export const Exclude: Icon = forwardRef((props, ref) => ( - -)); - -Exclude.displayName = "Exclude"; diff --git a/src/icons/ExcludeSquare.tsx b/src/icons/ExcludeSquare.tsx deleted file mode 100644 index f867678f5..000000000 --- a/src/icons/ExcludeSquare.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ExcludeSquare: Icon = forwardRef((props, ref) => ( - -)); - -ExcludeSquare.displayName = "ExcludeSquare"; diff --git a/src/icons/Export.tsx b/src/icons/Export.tsx deleted file mode 100644 index ea21cf903..000000000 --- a/src/icons/Export.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Export: Icon = forwardRef((props, ref) => ( - -)); - -Export.displayName = "Export"; diff --git a/src/icons/Eye.tsx b/src/icons/Eye.tsx deleted file mode 100644 index 3dfe57237..000000000 --- a/src/icons/Eye.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", - <> - - , - ], -]); - -export const Eye: Icon = forwardRef((props, ref) => ( - -)); - -Eye.displayName = "Eye"; diff --git a/src/icons/EyeClosed.tsx b/src/icons/EyeClosed.tsx deleted file mode 100644 index d323337f4..000000000 --- a/src/icons/EyeClosed.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", - <> - - , - ], -]); - -export const EyeClosed: Icon = forwardRef((props, ref) => ( - -)); - -EyeClosed.displayName = "EyeClosed"; diff --git a/src/icons/EyeSlash.tsx b/src/icons/EyeSlash.tsx deleted file mode 100644 index 69cc275a6..000000000 --- a/src/icons/EyeSlash.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", - <> - - , - ], -]); - -export const EyeSlash: Icon = forwardRef((props, ref) => ( - -)); - -EyeSlash.displayName = "EyeSlash"; diff --git a/src/icons/Eyedropper.tsx b/src/icons/Eyedropper.tsx deleted file mode 100644 index d1119f783..000000000 --- a/src/icons/Eyedropper.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", - <> - - , - ], -]); - -export const Eyedropper: Icon = forwardRef((props, ref) => ( - -)); - -Eyedropper.displayName = "Eyedropper"; diff --git a/src/icons/EyedropperSample.tsx b/src/icons/EyedropperSample.tsx deleted file mode 100644 index 581080768..000000000 --- a/src/icons/EyedropperSample.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", - <> - - , - ], -]); - -export const EyedropperSample: Icon = forwardRef((props, ref) => ( - -)); - -EyedropperSample.displayName = "EyedropperSample"; diff --git a/src/icons/Eyeglasses.tsx b/src/icons/Eyeglasses.tsx deleted file mode 100644 index e733d525a..000000000 --- a/src/icons/Eyeglasses.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", - <> - - , - ], -]); - -export const Eyeglasses: Icon = forwardRef((props, ref) => ( - -)); - -Eyeglasses.displayName = "Eyeglasses"; diff --git a/src/icons/FaceMask.tsx b/src/icons/FaceMask.tsx deleted file mode 100644 index 7b82a466b..000000000 --- a/src/icons/FaceMask.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", - <> - - , - ], -]); - -export const FaceMask: Icon = forwardRef((props, ref) => ( - -)); - -FaceMask.displayName = "FaceMask"; diff --git a/src/icons/FacebookLogo.tsx b/src/icons/FacebookLogo.tsx deleted file mode 100644 index c25203315..000000000 --- a/src/icons/FacebookLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FacebookLogo: Icon = forwardRef((props, ref) => ( - -)); - -FacebookLogo.displayName = "FacebookLogo"; diff --git a/src/icons/Factory.tsx b/src/icons/Factory.tsx deleted file mode 100644 index 9e0ed88b9..000000000 --- a/src/icons/Factory.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Factory: Icon = forwardRef((props, ref) => ( - -)); - -Factory.displayName = "Factory"; diff --git a/src/icons/Faders.tsx b/src/icons/Faders.tsx deleted file mode 100644 index 710fd2a73..000000000 --- a/src/icons/Faders.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Faders: Icon = forwardRef((props, ref) => ( - -)); - -Faders.displayName = "Faders"; diff --git a/src/icons/FadersHorizontal.tsx b/src/icons/FadersHorizontal.tsx deleted file mode 100644 index 0137a1fe8..000000000 --- a/src/icons/FadersHorizontal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FadersHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -FadersHorizontal.displayName = "FadersHorizontal"; diff --git a/src/icons/Fan.tsx b/src/icons/Fan.tsx deleted file mode 100644 index 8552597b5..000000000 --- a/src/icons/Fan.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", - <> - - , - ], -]); - -export const Fan: Icon = forwardRef((props, ref) => ( - -)); - -Fan.displayName = "Fan"; diff --git a/src/icons/FastForward.tsx b/src/icons/FastForward.tsx deleted file mode 100644 index 23cd4baf0..000000000 --- a/src/icons/FastForward.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", - <> - - , - ], -]); - -export const FastForward: Icon = forwardRef((props, ref) => ( - -)); - -FastForward.displayName = "FastForward"; diff --git a/src/icons/FastForwardCircle.tsx b/src/icons/FastForwardCircle.tsx deleted file mode 100644 index a511e042e..000000000 --- a/src/icons/FastForwardCircle.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", - <> - - , - ], -]); - -export const FastForwardCircle: Icon = forwardRef((props, ref) => ( - -)); - -FastForwardCircle.displayName = "FastForwardCircle"; diff --git a/src/icons/Feather.tsx b/src/icons/Feather.tsx deleted file mode 100644 index 540defc13..000000000 --- a/src/icons/Feather.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", - <> - - , - ], -]); - -export const Feather: Icon = forwardRef((props, ref) => ( - -)); - -Feather.displayName = "Feather"; diff --git a/src/icons/FigmaLogo.tsx b/src/icons/FigmaLogo.tsx deleted file mode 100644 index 9204c8f26..000000000 --- a/src/icons/FigmaLogo.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", - <> - - , - ], -]); - -export const FigmaLogo: Icon = forwardRef((props, ref) => ( - -)); - -FigmaLogo.displayName = "FigmaLogo"; diff --git a/src/icons/File.tsx b/src/icons/File.tsx deleted file mode 100644 index ed74cbd62..000000000 --- a/src/icons/File.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const File: Icon = forwardRef((props, ref) => ( - -)); - -File.displayName = "File"; diff --git a/src/icons/FileArchive.tsx b/src/icons/FileArchive.tsx deleted file mode 100644 index 89d867c18..000000000 --- a/src/icons/FileArchive.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileArchive: Icon = forwardRef((props, ref) => ( - -)); - -FileArchive.displayName = "FileArchive"; diff --git a/src/icons/FileArrowDown.tsx b/src/icons/FileArrowDown.tsx deleted file mode 100644 index 6b6319134..000000000 --- a/src/icons/FileArrowDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileArrowDown: Icon = forwardRef((props, ref) => ( - -)); - -FileArrowDown.displayName = "FileArrowDown"; diff --git a/src/icons/FileArrowUp.tsx b/src/icons/FileArrowUp.tsx deleted file mode 100644 index 2da81ad39..000000000 --- a/src/icons/FileArrowUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileArrowUp: Icon = forwardRef((props, ref) => ( - -)); - -FileArrowUp.displayName = "FileArrowUp"; diff --git a/src/icons/FileAudio.tsx b/src/icons/FileAudio.tsx deleted file mode 100644 index 904703345..000000000 --- a/src/icons/FileAudio.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileAudio: Icon = forwardRef((props, ref) => ( - -)); - -FileAudio.displayName = "FileAudio"; diff --git a/src/icons/FileCloud.tsx b/src/icons/FileCloud.tsx deleted file mode 100644 index 728e9080e..000000000 --- a/src/icons/FileCloud.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", - <> - - , - ], -]); - -export const FileCloud: Icon = forwardRef((props, ref) => ( - -)); - -FileCloud.displayName = "FileCloud"; diff --git a/src/icons/FileCode.tsx b/src/icons/FileCode.tsx deleted file mode 100644 index 0c3bcc3a7..000000000 --- a/src/icons/FileCode.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileCode: Icon = forwardRef((props, ref) => ( - -)); - -FileCode.displayName = "FileCode"; diff --git a/src/icons/FileCss.tsx b/src/icons/FileCss.tsx deleted file mode 100644 index 47ed217c5..000000000 --- a/src/icons/FileCss.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileCss: Icon = forwardRef((props, ref) => ( - -)); - -FileCss.displayName = "FileCss"; diff --git a/src/icons/FileCsv.tsx b/src/icons/FileCsv.tsx deleted file mode 100644 index 0cb78cc58..000000000 --- a/src/icons/FileCsv.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileCsv: Icon = forwardRef((props, ref) => ( - -)); - -FileCsv.displayName = "FileCsv"; diff --git a/src/icons/FileDashed.tsx b/src/icons/FileDashed.tsx deleted file mode 100644 index 3bd47ada8..000000000 --- a/src/icons/FileDashed.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileDashed: Icon = forwardRef((props, ref) => ( - -)); - -FileDashed.displayName = "FileDashed"; diff --git a/src/icons/FileDoc.tsx b/src/icons/FileDoc.tsx deleted file mode 100644 index ceff1e616..000000000 --- a/src/icons/FileDoc.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileDoc: Icon = forwardRef((props, ref) => ( - -)); - -FileDoc.displayName = "FileDoc"; diff --git a/src/icons/FileHtml.tsx b/src/icons/FileHtml.tsx deleted file mode 100644 index 27d494ef1..000000000 --- a/src/icons/FileHtml.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileHtml: Icon = forwardRef((props, ref) => ( - -)); - -FileHtml.displayName = "FileHtml"; diff --git a/src/icons/FileImage.tsx b/src/icons/FileImage.tsx deleted file mode 100644 index a3be8f411..000000000 --- a/src/icons/FileImage.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", - <> - - , - ], -]); - -export const FileImage: Icon = forwardRef((props, ref) => ( - -)); - -FileImage.displayName = "FileImage"; diff --git a/src/icons/FileJpg.tsx b/src/icons/FileJpg.tsx deleted file mode 100644 index 09b7c8b32..000000000 --- a/src/icons/FileJpg.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileJpg: Icon = forwardRef((props, ref) => ( - -)); - -FileJpg.displayName = "FileJpg"; diff --git a/src/icons/FileJs.tsx b/src/icons/FileJs.tsx deleted file mode 100644 index 46d53ef76..000000000 --- a/src/icons/FileJs.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileJs: Icon = forwardRef((props, ref) => ( - -)); - -FileJs.displayName = "FileJs"; diff --git a/src/icons/FileJsx.tsx b/src/icons/FileJsx.tsx deleted file mode 100644 index 2d72473fa..000000000 --- a/src/icons/FileJsx.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileJsx: Icon = forwardRef((props, ref) => ( - -)); - -FileJsx.displayName = "FileJsx"; diff --git a/src/icons/FileLock.tsx b/src/icons/FileLock.tsx deleted file mode 100644 index 66fcb7b32..000000000 --- a/src/icons/FileLock.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileLock: Icon = forwardRef((props, ref) => ( - -)); - -FileLock.displayName = "FileLock"; diff --git a/src/icons/FileMagnifyingGlass.tsx b/src/icons/FileMagnifyingGlass.tsx deleted file mode 100644 index 58903a36b..000000000 --- a/src/icons/FileMagnifyingGlass.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileMagnifyingGlass: Icon = forwardRef((props, ref) => ( - -)); - -FileMagnifyingGlass.displayName = "FileMagnifyingGlass"; diff --git a/src/icons/FileMinus.tsx b/src/icons/FileMinus.tsx deleted file mode 100644 index 1403cd3fa..000000000 --- a/src/icons/FileMinus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileMinus: Icon = forwardRef((props, ref) => ( - -)); - -FileMinus.displayName = "FileMinus"; diff --git a/src/icons/FilePdf.tsx b/src/icons/FilePdf.tsx deleted file mode 100644 index 976f836f9..000000000 --- a/src/icons/FilePdf.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FilePdf: Icon = forwardRef((props, ref) => ( - -)); - -FilePdf.displayName = "FilePdf"; diff --git a/src/icons/FilePlus.tsx b/src/icons/FilePlus.tsx deleted file mode 100644 index 40e4e8d55..000000000 --- a/src/icons/FilePlus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FilePlus: Icon = forwardRef((props, ref) => ( - -)); - -FilePlus.displayName = "FilePlus"; diff --git a/src/icons/FilePng.tsx b/src/icons/FilePng.tsx deleted file mode 100644 index 9b2cef538..000000000 --- a/src/icons/FilePng.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FilePng: Icon = forwardRef((props, ref) => ( - -)); - -FilePng.displayName = "FilePng"; diff --git a/src/icons/FilePpt.tsx b/src/icons/FilePpt.tsx deleted file mode 100644 index 32b3819fb..000000000 --- a/src/icons/FilePpt.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FilePpt: Icon = forwardRef((props, ref) => ( - -)); - -FilePpt.displayName = "FilePpt"; diff --git a/src/icons/FileRs.tsx b/src/icons/FileRs.tsx deleted file mode 100644 index 4168ec687..000000000 --- a/src/icons/FileRs.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileRs: Icon = forwardRef((props, ref) => ( - -)); - -FileRs.displayName = "FileRs"; diff --git a/src/icons/FileSql.tsx b/src/icons/FileSql.tsx deleted file mode 100644 index dac67a924..000000000 --- a/src/icons/FileSql.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileSql: Icon = forwardRef((props, ref) => ( - -)); - -FileSql.displayName = "FileSql"; diff --git a/src/icons/FileSvg.tsx b/src/icons/FileSvg.tsx deleted file mode 100644 index 0276c6e88..000000000 --- a/src/icons/FileSvg.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileSvg: Icon = forwardRef((props, ref) => ( - -)); - -FileSvg.displayName = "FileSvg"; diff --git a/src/icons/FileText.tsx b/src/icons/FileText.tsx deleted file mode 100644 index 5acb89e3e..000000000 --- a/src/icons/FileText.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileText: Icon = forwardRef((props, ref) => ( - -)); - -FileText.displayName = "FileText"; diff --git a/src/icons/FileTs.tsx b/src/icons/FileTs.tsx deleted file mode 100644 index b5ec24397..000000000 --- a/src/icons/FileTs.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileTs: Icon = forwardRef((props, ref) => ( - -)); - -FileTs.displayName = "FileTs"; diff --git a/src/icons/FileTsx.tsx b/src/icons/FileTsx.tsx deleted file mode 100644 index c13fa89ad..000000000 --- a/src/icons/FileTsx.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileTsx: Icon = forwardRef((props, ref) => ( - -)); - -FileTsx.displayName = "FileTsx"; diff --git a/src/icons/FileVideo.tsx b/src/icons/FileVideo.tsx deleted file mode 100644 index 19439fa44..000000000 --- a/src/icons/FileVideo.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", - <> - - , - ], -]); - -export const FileVideo: Icon = forwardRef((props, ref) => ( - -)); - -FileVideo.displayName = "FileVideo"; diff --git a/src/icons/FileVue.tsx b/src/icons/FileVue.tsx deleted file mode 100644 index dba11ddae..000000000 --- a/src/icons/FileVue.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileVue: Icon = forwardRef((props, ref) => ( - -)); - -FileVue.displayName = "FileVue"; diff --git a/src/icons/FileX.tsx b/src/icons/FileX.tsx deleted file mode 100644 index a8f7cac4b..000000000 --- a/src/icons/FileX.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileX: Icon = forwardRef((props, ref) => ( - -)); - -FileX.displayName = "FileX"; diff --git a/src/icons/FileXls.tsx b/src/icons/FileXls.tsx deleted file mode 100644 index a91f39420..000000000 --- a/src/icons/FileXls.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileXls: Icon = forwardRef((props, ref) => ( - -)); - -FileXls.displayName = "FileXls"; diff --git a/src/icons/FileZip.tsx b/src/icons/FileZip.tsx deleted file mode 100644 index ba0221f14..000000000 --- a/src/icons/FileZip.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FileZip: Icon = forwardRef((props, ref) => ( - -)); - -FileZip.displayName = "FileZip"; diff --git a/src/icons/Files.tsx b/src/icons/Files.tsx deleted file mode 100644 index 499da3f0d..000000000 --- a/src/icons/Files.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", - <> - - , - ], -]); - -export const Files: Icon = forwardRef((props, ref) => ( - -)); - -Files.displayName = "Files"; diff --git a/src/icons/FilmReel.tsx b/src/icons/FilmReel.tsx deleted file mode 100644 index 7dbb3d01e..000000000 --- a/src/icons/FilmReel.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", - <> - - , - ], -]); - -export const FilmReel: Icon = forwardRef((props, ref) => ( - -)); - -FilmReel.displayName = "FilmReel"; diff --git a/src/icons/FilmScript.tsx b/src/icons/FilmScript.tsx deleted file mode 100644 index eef9bec92..000000000 --- a/src/icons/FilmScript.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", - <> - - , - ], -]); - -export const FilmScript: Icon = forwardRef((props, ref) => ( - -)); - -FilmScript.displayName = "FilmScript"; diff --git a/src/icons/FilmSlate.tsx b/src/icons/FilmSlate.tsx deleted file mode 100644 index 3583da59c..000000000 --- a/src/icons/FilmSlate.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", - <> - - , - ], -]); - -export const FilmSlate: Icon = forwardRef((props, ref) => ( - -)); - -FilmSlate.displayName = "FilmSlate"; diff --git a/src/icons/FilmStrip.tsx b/src/icons/FilmStrip.tsx deleted file mode 100644 index 608fc370a..000000000 --- a/src/icons/FilmStrip.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", - <> - - , - ], -]); - -export const FilmStrip: Icon = forwardRef((props, ref) => ( - -)); - -FilmStrip.displayName = "FilmStrip"; diff --git a/src/icons/Fingerprint.tsx b/src/icons/Fingerprint.tsx deleted file mode 100644 index f60f0a0a8..000000000 --- a/src/icons/Fingerprint.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Fingerprint: Icon = forwardRef((props, ref) => ( - -)); - -Fingerprint.displayName = "Fingerprint"; diff --git a/src/icons/FingerprintSimple.tsx b/src/icons/FingerprintSimple.tsx deleted file mode 100644 index 325f8273e..000000000 --- a/src/icons/FingerprintSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FingerprintSimple: Icon = forwardRef((props, ref) => ( - -)); - -FingerprintSimple.displayName = "FingerprintSimple"; diff --git a/src/icons/FinnTheHuman.tsx b/src/icons/FinnTheHuman.tsx deleted file mode 100644 index b6072afd1..000000000 --- a/src/icons/FinnTheHuman.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", - <> - - , - ], -]); - -export const FinnTheHuman: Icon = forwardRef((props, ref) => ( - -)); - -FinnTheHuman.displayName = "FinnTheHuman"; diff --git a/src/icons/Fire.tsx b/src/icons/Fire.tsx deleted file mode 100644 index 3f1b5ad2b..000000000 --- a/src/icons/Fire.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", - <> - - , - ], -]); - -export const Fire: Icon = forwardRef((props, ref) => ( - -)); - -Fire.displayName = "Fire"; diff --git a/src/icons/FireExtinguisher.tsx b/src/icons/FireExtinguisher.tsx deleted file mode 100644 index 6e394b00e..000000000 --- a/src/icons/FireExtinguisher.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", - <> - - , - ], -]); - -export const FireExtinguisher: Icon = forwardRef((props, ref) => ( - -)); - -FireExtinguisher.displayName = "FireExtinguisher"; diff --git a/src/icons/FireSimple.tsx b/src/icons/FireSimple.tsx deleted file mode 100644 index ee3ba28bd..000000000 --- a/src/icons/FireSimple.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", - <> - - , - ], -]); - -export const FireSimple: Icon = forwardRef((props, ref) => ( - -)); - -FireSimple.displayName = "FireSimple"; diff --git a/src/icons/FirstAid.tsx b/src/icons/FirstAid.tsx deleted file mode 100644 index d5610609a..000000000 --- a/src/icons/FirstAid.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", - <> - - , - ], -]); - -export const FirstAid: Icon = forwardRef((props, ref) => ( - -)); - -FirstAid.displayName = "FirstAid"; diff --git a/src/icons/FirstAidKit.tsx b/src/icons/FirstAidKit.tsx deleted file mode 100644 index 73a4094a3..000000000 --- a/src/icons/FirstAidKit.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", - <> - - , - ], -]); - -export const FirstAidKit: Icon = forwardRef((props, ref) => ( - -)); - -FirstAidKit.displayName = "FirstAidKit"; diff --git a/src/icons/Fish.tsx b/src/icons/Fish.tsx deleted file mode 100644 index 2f934c263..000000000 --- a/src/icons/Fish.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", - <> - - , - ], -]); - -export const Fish: Icon = forwardRef((props, ref) => ( - -)); - -Fish.displayName = "Fish"; diff --git a/src/icons/FishSimple.tsx b/src/icons/FishSimple.tsx deleted file mode 100644 index 63075fb24..000000000 --- a/src/icons/FishSimple.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", - <> - - , - ], -]); - -export const FishSimple: Icon = forwardRef((props, ref) => ( - -)); - -FishSimple.displayName = "FishSimple"; diff --git a/src/icons/Flag.tsx b/src/icons/Flag.tsx deleted file mode 100644 index 1b892993b..000000000 --- a/src/icons/Flag.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", - <> - - , - ], -]); - -export const Flag: Icon = forwardRef((props, ref) => ( - -)); - -Flag.displayName = "Flag"; diff --git a/src/icons/FlagBanner.tsx b/src/icons/FlagBanner.tsx deleted file mode 100644 index 05efc8b5c..000000000 --- a/src/icons/FlagBanner.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FlagBanner: Icon = forwardRef((props, ref) => ( - -)); - -FlagBanner.displayName = "FlagBanner"; diff --git a/src/icons/FlagCheckered.tsx b/src/icons/FlagCheckered.tsx deleted file mode 100644 index 2e42a3b2e..000000000 --- a/src/icons/FlagCheckered.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", - <> - - , - ], -]); - -export const FlagCheckered: Icon = forwardRef((props, ref) => ( - -)); - -FlagCheckered.displayName = "FlagCheckered"; diff --git a/src/icons/FlagPennant.tsx b/src/icons/FlagPennant.tsx deleted file mode 100644 index a4fc912f3..000000000 --- a/src/icons/FlagPennant.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FlagPennant: Icon = forwardRef((props, ref) => ( - -)); - -FlagPennant.displayName = "FlagPennant"; diff --git a/src/icons/Flame.tsx b/src/icons/Flame.tsx deleted file mode 100644 index f179b18a0..000000000 --- a/src/icons/Flame.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", - <> - - , - ], -]); - -export const Flame: Icon = forwardRef((props, ref) => ( - -)); - -Flame.displayName = "Flame"; diff --git a/src/icons/Flashlight.tsx b/src/icons/Flashlight.tsx deleted file mode 100644 index 2fb8c70cb..000000000 --- a/src/icons/Flashlight.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", - <> - - , - ], -]); - -export const Flashlight: Icon = forwardRef((props, ref) => ( - -)); - -Flashlight.displayName = "Flashlight"; diff --git a/src/icons/Flask.tsx b/src/icons/Flask.tsx deleted file mode 100644 index 73cfee846..000000000 --- a/src/icons/Flask.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", - <> - - , - ], -]); - -export const Flask: Icon = forwardRef((props, ref) => ( - -)); - -Flask.displayName = "Flask"; diff --git a/src/icons/FloppyDisk.tsx b/src/icons/FloppyDisk.tsx deleted file mode 100644 index ba08c3d46..000000000 --- a/src/icons/FloppyDisk.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", - <> - - , - ], -]); - -export const FloppyDisk: Icon = forwardRef((props, ref) => ( - -)); - -FloppyDisk.displayName = "FloppyDisk"; diff --git a/src/icons/FloppyDiskBack.tsx b/src/icons/FloppyDiskBack.tsx deleted file mode 100644 index a5a9d82f3..000000000 --- a/src/icons/FloppyDiskBack.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", - <> - - , - ], -]); - -export const FloppyDiskBack: Icon = forwardRef((props, ref) => ( - -)); - -FloppyDiskBack.displayName = "FloppyDiskBack"; diff --git a/src/icons/FlowArrow.tsx b/src/icons/FlowArrow.tsx deleted file mode 100644 index 22e042e06..000000000 --- a/src/icons/FlowArrow.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FlowArrow: Icon = forwardRef((props, ref) => ( - -)); - -FlowArrow.displayName = "FlowArrow"; diff --git a/src/icons/Flower.tsx b/src/icons/Flower.tsx deleted file mode 100644 index c01738caf..000000000 --- a/src/icons/Flower.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", - <> - - , - ], -]); - -export const Flower: Icon = forwardRef((props, ref) => ( - -)); - -Flower.displayName = "Flower"; diff --git a/src/icons/FlowerLotus.tsx b/src/icons/FlowerLotus.tsx deleted file mode 100644 index a87b3a521..000000000 --- a/src/icons/FlowerLotus.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", - <> - - , - ], -]); - -export const FlowerLotus: Icon = forwardRef((props, ref) => ( - -)); - -FlowerLotus.displayName = "FlowerLotus"; diff --git a/src/icons/FlowerTulip.tsx b/src/icons/FlowerTulip.tsx deleted file mode 100644 index 1244e5d72..000000000 --- a/src/icons/FlowerTulip.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", - <> - - , - ], -]); - -export const FlowerTulip: Icon = forwardRef((props, ref) => ( - -)); - -FlowerTulip.displayName = "FlowerTulip"; diff --git a/src/icons/FlyingSaucer.tsx b/src/icons/FlyingSaucer.tsx deleted file mode 100644 index 2c67060db..000000000 --- a/src/icons/FlyingSaucer.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", - <> - - , - ], -]); - -export const FlyingSaucer: Icon = forwardRef((props, ref) => ( - -)); - -FlyingSaucer.displayName = "FlyingSaucer"; diff --git a/src/icons/Folder.tsx b/src/icons/Folder.tsx deleted file mode 100644 index afe551d82..000000000 --- a/src/icons/Folder.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", - <> - - , - ], -]); - -export const Folder: Icon = forwardRef((props, ref) => ( - -)); - -Folder.displayName = "Folder"; diff --git a/src/icons/FolderDashed.tsx b/src/icons/FolderDashed.tsx deleted file mode 100644 index 2c116fe10..000000000 --- a/src/icons/FolderDashed.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", - <> - - , - ], -]); - -export const FolderDashed: Icon = forwardRef((props, ref) => ( - -)); - -FolderDashed.displayName = "FolderDashed"; diff --git a/src/icons/FolderLock.tsx b/src/icons/FolderLock.tsx deleted file mode 100644 index 1384ff0a5..000000000 --- a/src/icons/FolderLock.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", - <> - - , - ], -]); - -export const FolderLock: Icon = forwardRef((props, ref) => ( - -)); - -FolderLock.displayName = "FolderLock"; diff --git a/src/icons/FolderMinus.tsx b/src/icons/FolderMinus.tsx deleted file mode 100644 index 8ab77e431..000000000 --- a/src/icons/FolderMinus.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", - <> - - , - ], -]); - -export const FolderMinus: Icon = forwardRef((props, ref) => ( - -)); - -FolderMinus.displayName = "FolderMinus"; diff --git a/src/icons/FolderNotch.tsx b/src/icons/FolderNotch.tsx deleted file mode 100644 index 78d56c2d0..000000000 --- a/src/icons/FolderNotch.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", - <> - - , - ], -]); - -export const FolderNotch: Icon = forwardRef((props, ref) => ( - -)); - -FolderNotch.displayName = "FolderNotch"; diff --git a/src/icons/FolderNotchMinus.tsx b/src/icons/FolderNotchMinus.tsx deleted file mode 100644 index ba692a84b..000000000 --- a/src/icons/FolderNotchMinus.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", - <> - - , - ], -]); - -export const FolderNotchMinus: Icon = forwardRef((props, ref) => ( - -)); - -FolderNotchMinus.displayName = "FolderNotchMinus"; diff --git a/src/icons/FolderNotchOpen.tsx b/src/icons/FolderNotchOpen.tsx deleted file mode 100644 index 3b0032538..000000000 --- a/src/icons/FolderNotchOpen.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", - <> - - , - ], -]); - -export const FolderNotchOpen: Icon = forwardRef((props, ref) => ( - -)); - -FolderNotchOpen.displayName = "FolderNotchOpen"; diff --git a/src/icons/FolderNotchPlus.tsx b/src/icons/FolderNotchPlus.tsx deleted file mode 100644 index cf2f9311e..000000000 --- a/src/icons/FolderNotchPlus.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", - <> - - , - ], -]); - -export const FolderNotchPlus: Icon = forwardRef((props, ref) => ( - -)); - -FolderNotchPlus.displayName = "FolderNotchPlus"; diff --git a/src/icons/FolderOpen.tsx b/src/icons/FolderOpen.tsx deleted file mode 100644 index 87bf995ac..000000000 --- a/src/icons/FolderOpen.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", - <> - - , - ], -]); - -export const FolderOpen: Icon = forwardRef((props, ref) => ( - -)); - -FolderOpen.displayName = "FolderOpen"; diff --git a/src/icons/FolderPlus.tsx b/src/icons/FolderPlus.tsx deleted file mode 100644 index 09e874677..000000000 --- a/src/icons/FolderPlus.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", - <> - - , - ], -]); - -export const FolderPlus: Icon = forwardRef((props, ref) => ( - -)); - -FolderPlus.displayName = "FolderPlus"; diff --git a/src/icons/FolderSimple.tsx b/src/icons/FolderSimple.tsx deleted file mode 100644 index fcf3e5a5c..000000000 --- a/src/icons/FolderSimple.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", - <> - - , - ], -]); - -export const FolderSimple: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimple.displayName = "FolderSimple"; diff --git a/src/icons/FolderSimpleDashed.tsx b/src/icons/FolderSimpleDashed.tsx deleted file mode 100644 index c3435fc19..000000000 --- a/src/icons/FolderSimpleDashed.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", - <> - - , - ], -]); - -export const FolderSimpleDashed: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimpleDashed.displayName = "FolderSimpleDashed"; diff --git a/src/icons/FolderSimpleLock.tsx b/src/icons/FolderSimpleLock.tsx deleted file mode 100644 index af2a34c6d..000000000 --- a/src/icons/FolderSimpleLock.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FolderSimpleLock: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimpleLock.displayName = "FolderSimpleLock"; diff --git a/src/icons/FolderSimpleMinus.tsx b/src/icons/FolderSimpleMinus.tsx deleted file mode 100644 index 65b06c810..000000000 --- a/src/icons/FolderSimpleMinus.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", - <> - - , - ], -]); - -export const FolderSimpleMinus: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimpleMinus.displayName = "FolderSimpleMinus"; diff --git a/src/icons/FolderSimplePlus.tsx b/src/icons/FolderSimplePlus.tsx deleted file mode 100644 index 0a226e963..000000000 --- a/src/icons/FolderSimplePlus.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", - <> - - , - ], -]); - -export const FolderSimplePlus: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimplePlus.displayName = "FolderSimplePlus"; diff --git a/src/icons/FolderSimpleStar.tsx b/src/icons/FolderSimpleStar.tsx deleted file mode 100644 index c4fca9510..000000000 --- a/src/icons/FolderSimpleStar.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", - <> - - , - ], -]); - -export const FolderSimpleStar: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimpleStar.displayName = "FolderSimpleStar"; diff --git a/src/icons/FolderSimpleUser.tsx b/src/icons/FolderSimpleUser.tsx deleted file mode 100644 index 9295db884..000000000 --- a/src/icons/FolderSimpleUser.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FolderSimpleUser: Icon = forwardRef((props, ref) => ( - -)); - -FolderSimpleUser.displayName = "FolderSimpleUser"; diff --git a/src/icons/FolderStar.tsx b/src/icons/FolderStar.tsx deleted file mode 100644 index cee3e090c..000000000 --- a/src/icons/FolderStar.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", - <> - - , - ], -]); - -export const FolderStar: Icon = forwardRef((props, ref) => ( - -)); - -FolderStar.displayName = "FolderStar"; diff --git a/src/icons/FolderUser.tsx b/src/icons/FolderUser.tsx deleted file mode 100644 index 613b63fa4..000000000 --- a/src/icons/FolderUser.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const FolderUser: Icon = forwardRef((props, ref) => ( - -)); - -FolderUser.displayName = "FolderUser"; diff --git a/src/icons/Folders.tsx b/src/icons/Folders.tsx deleted file mode 100644 index 15d23c5ba..000000000 --- a/src/icons/Folders.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", - <> - - , - ], -]); - -export const Folders: Icon = forwardRef((props, ref) => ( - -)); - -Folders.displayName = "Folders"; diff --git a/src/icons/Football.tsx b/src/icons/Football.tsx deleted file mode 100644 index 82059f446..000000000 --- a/src/icons/Football.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", - <> - - , - ], -]); - -export const Football: Icon = forwardRef((props, ref) => ( - -)); - -Football.displayName = "Football"; diff --git a/src/icons/Footprints.tsx b/src/icons/Footprints.tsx deleted file mode 100644 index e3ef22669..000000000 --- a/src/icons/Footprints.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", - <> - - , - ], -]); - -export const Footprints: Icon = forwardRef((props, ref) => ( - -)); - -Footprints.displayName = "Footprints"; diff --git a/src/icons/ForkKnife.tsx b/src/icons/ForkKnife.tsx deleted file mode 100644 index b34cde650..000000000 --- a/src/icons/ForkKnife.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ForkKnife: Icon = forwardRef((props, ref) => ( - -)); - -ForkKnife.displayName = "ForkKnife"; diff --git a/src/icons/FrameCorners.tsx b/src/icons/FrameCorners.tsx deleted file mode 100644 index 96e4dc33f..000000000 --- a/src/icons/FrameCorners.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", - <> - - , - ], -]); - -export const FrameCorners: Icon = forwardRef((props, ref) => ( - -)); - -FrameCorners.displayName = "FrameCorners"; diff --git a/src/icons/FramerLogo.tsx b/src/icons/FramerLogo.tsx deleted file mode 100644 index e3d44b2de..000000000 --- a/src/icons/FramerLogo.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", - <> - - , - ], -]); - -export const FramerLogo: Icon = forwardRef((props, ref) => ( - -)); - -FramerLogo.displayName = "FramerLogo"; diff --git a/src/icons/Function.tsx b/src/icons/Function.tsx deleted file mode 100644 index 57dde919e..000000000 --- a/src/icons/Function.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", - <> - - , - ], -]); - -export const Function: Icon = forwardRef((props, ref) => ( - -)); - -Function.displayName = "Function"; diff --git a/src/icons/Funnel.tsx b/src/icons/Funnel.tsx deleted file mode 100644 index 05a72b192..000000000 --- a/src/icons/Funnel.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", - <> - - , - ], -]); - -export const Funnel: Icon = forwardRef((props, ref) => ( - -)); - -Funnel.displayName = "Funnel"; diff --git a/src/icons/FunnelSimple.tsx b/src/icons/FunnelSimple.tsx deleted file mode 100644 index ffda257cb..000000000 --- a/src/icons/FunnelSimple.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", - <> - - , - ], -]); - -export const FunnelSimple: Icon = forwardRef((props, ref) => ( - -)); - -FunnelSimple.displayName = "FunnelSimple"; diff --git a/src/icons/GameController.tsx b/src/icons/GameController.tsx deleted file mode 100644 index f74024f3c..000000000 --- a/src/icons/GameController.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", - <> - - , - ], -]); - -export const GameController: Icon = forwardRef((props, ref) => ( - -)); - -GameController.displayName = "GameController"; diff --git a/src/icons/Garage.tsx b/src/icons/Garage.tsx deleted file mode 100644 index 9fa2859be..000000000 --- a/src/icons/Garage.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Garage: Icon = forwardRef((props, ref) => ( - -)); - -Garage.displayName = "Garage"; diff --git a/src/icons/GasCan.tsx b/src/icons/GasCan.tsx deleted file mode 100644 index f05b0d7a8..000000000 --- a/src/icons/GasCan.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", - <> - - , - ], -]); - -export const GasCan: Icon = forwardRef((props, ref) => ( - -)); - -GasCan.displayName = "GasCan"; diff --git a/src/icons/GasPump.tsx b/src/icons/GasPump.tsx deleted file mode 100644 index ed090b91b..000000000 --- a/src/icons/GasPump.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", - <> - - , - ], -]); - -export const GasPump: Icon = forwardRef((props, ref) => ( - -)); - -GasPump.displayName = "GasPump"; diff --git a/src/icons/Gauge.tsx b/src/icons/Gauge.tsx deleted file mode 100644 index 533852e77..000000000 --- a/src/icons/Gauge.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", - <> - - , - ], -]); - -export const Gauge: Icon = forwardRef((props, ref) => ( - -)); - -Gauge.displayName = "Gauge"; diff --git a/src/icons/Gavel.tsx b/src/icons/Gavel.tsx deleted file mode 100644 index eb8b0fc7a..000000000 --- a/src/icons/Gavel.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", - <> - - , - ], -]); - -export const Gavel: Icon = forwardRef((props, ref) => ( - -)); - -Gavel.displayName = "Gavel"; diff --git a/src/icons/Gear.tsx b/src/icons/Gear.tsx deleted file mode 100644 index 8bc5cc4c3..000000000 --- a/src/icons/Gear.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", - <> - - , - ], -]); - -export const Gear: Icon = forwardRef((props, ref) => ( - -)); - -Gear.displayName = "Gear"; diff --git a/src/icons/GearFine.tsx b/src/icons/GearFine.tsx deleted file mode 100644 index fa02f4875..000000000 --- a/src/icons/GearFine.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GearFine: Icon = forwardRef((props, ref) => ( - -)); - -GearFine.displayName = "GearFine"; diff --git a/src/icons/GearSix.tsx b/src/icons/GearSix.tsx deleted file mode 100644 index f52b71457..000000000 --- a/src/icons/GearSix.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", - <> - - , - ], -]); - -export const GearSix: Icon = forwardRef((props, ref) => ( - -)); - -GearSix.displayName = "GearSix"; diff --git a/src/icons/GenderFemale.tsx b/src/icons/GenderFemale.tsx deleted file mode 100644 index 260276a2c..000000000 --- a/src/icons/GenderFemale.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GenderFemale: Icon = forwardRef((props, ref) => ( - -)); - -GenderFemale.displayName = "GenderFemale"; diff --git a/src/icons/GenderIntersex.tsx b/src/icons/GenderIntersex.tsx deleted file mode 100644 index 765e1cd1e..000000000 --- a/src/icons/GenderIntersex.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GenderIntersex: Icon = forwardRef((props, ref) => ( - -)); - -GenderIntersex.displayName = "GenderIntersex"; diff --git a/src/icons/GenderMale.tsx b/src/icons/GenderMale.tsx deleted file mode 100644 index e62c64ef6..000000000 --- a/src/icons/GenderMale.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", - <> - - , - ], -]); - -export const GenderMale: Icon = forwardRef((props, ref) => ( - -)); - -GenderMale.displayName = "GenderMale"; diff --git a/src/icons/GenderNeuter.tsx b/src/icons/GenderNeuter.tsx deleted file mode 100644 index f2117b19e..000000000 --- a/src/icons/GenderNeuter.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GenderNeuter: Icon = forwardRef((props, ref) => ( - -)); - -GenderNeuter.displayName = "GenderNeuter"; diff --git a/src/icons/GenderNonbinary.tsx b/src/icons/GenderNonbinary.tsx deleted file mode 100644 index 4f062c708..000000000 --- a/src/icons/GenderNonbinary.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GenderNonbinary: Icon = forwardRef((props, ref) => ( - -)); - -GenderNonbinary.displayName = "GenderNonbinary"; diff --git a/src/icons/GenderTransgender.tsx b/src/icons/GenderTransgender.tsx deleted file mode 100644 index 957eef96c..000000000 --- a/src/icons/GenderTransgender.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", - <> - - , - ], -]); - -export const GenderTransgender: Icon = forwardRef((props, ref) => ( - -)); - -GenderTransgender.displayName = "GenderTransgender"; diff --git a/src/icons/Ghost.tsx b/src/icons/Ghost.tsx deleted file mode 100644 index 072f20625..000000000 --- a/src/icons/Ghost.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", - <> - - , - ], -]); - -export const Ghost: Icon = forwardRef((props, ref) => ( - -)); - -Ghost.displayName = "Ghost"; diff --git a/src/icons/Gif.tsx b/src/icons/Gif.tsx deleted file mode 100644 index 6200714b4..000000000 --- a/src/icons/Gif.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", - <> - - , - ], -]); - -export const Gif: Icon = forwardRef((props, ref) => ( - -)); - -Gif.displayName = "Gif"; diff --git a/src/icons/Gift.tsx b/src/icons/Gift.tsx deleted file mode 100644 index a943d7579..000000000 --- a/src/icons/Gift.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Gift: Icon = forwardRef((props, ref) => ( - -)); - -Gift.displayName = "Gift"; diff --git a/src/icons/GitBranch.tsx b/src/icons/GitBranch.tsx deleted file mode 100644 index f9d88348a..000000000 --- a/src/icons/GitBranch.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GitBranch: Icon = forwardRef((props, ref) => ( - -)); - -GitBranch.displayName = "GitBranch"; diff --git a/src/icons/GitCommit.tsx b/src/icons/GitCommit.tsx deleted file mode 100644 index 75398fffd..000000000 --- a/src/icons/GitCommit.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GitCommit: Icon = forwardRef((props, ref) => ( - -)); - -GitCommit.displayName = "GitCommit"; diff --git a/src/icons/GitDiff.tsx b/src/icons/GitDiff.tsx deleted file mode 100644 index c86375424..000000000 --- a/src/icons/GitDiff.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", - <> - - , - ], -]); - -export const GitDiff: Icon = forwardRef((props, ref) => ( - -)); - -GitDiff.displayName = "GitDiff"; diff --git a/src/icons/GitFork.tsx b/src/icons/GitFork.tsx deleted file mode 100644 index 6f45a2478..000000000 --- a/src/icons/GitFork.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", - <> - - , - ], -]); - -export const GitFork: Icon = forwardRef((props, ref) => ( - -)); - -GitFork.displayName = "GitFork"; diff --git a/src/icons/GitMerge.tsx b/src/icons/GitMerge.tsx deleted file mode 100644 index 8dd4b3f80..000000000 --- a/src/icons/GitMerge.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GitMerge: Icon = forwardRef((props, ref) => ( - -)); - -GitMerge.displayName = "GitMerge"; diff --git a/src/icons/GitPullRequest.tsx b/src/icons/GitPullRequest.tsx deleted file mode 100644 index 58f3ffda5..000000000 --- a/src/icons/GitPullRequest.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", - <> - - , - ], -]); - -export const GitPullRequest: Icon = forwardRef((props, ref) => ( - -)); - -GitPullRequest.displayName = "GitPullRequest"; diff --git a/src/icons/GithubLogo.tsx b/src/icons/GithubLogo.tsx deleted file mode 100644 index 95c248577..000000000 --- a/src/icons/GithubLogo.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", - <> - - , - ], -]); - -export const GithubLogo: Icon = forwardRef((props, ref) => ( - -)); - -GithubLogo.displayName = "GithubLogo"; diff --git a/src/icons/GitlabLogo.tsx b/src/icons/GitlabLogo.tsx deleted file mode 100644 index 6a7d1db16..000000000 --- a/src/icons/GitlabLogo.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", - <> - - , - ], -]); - -export const GitlabLogo: Icon = forwardRef((props, ref) => ( - -)); - -GitlabLogo.displayName = "GitlabLogo"; diff --git a/src/icons/GitlabLogoSimple.tsx b/src/icons/GitlabLogoSimple.tsx deleted file mode 100644 index c0092913f..000000000 --- a/src/icons/GitlabLogoSimple.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", - <> - - , - ], -]); - -export const GitlabLogoSimple: Icon = forwardRef((props, ref) => ( - -)); - -GitlabLogoSimple.displayName = "GitlabLogoSimple"; diff --git a/src/icons/Globe.tsx b/src/icons/Globe.tsx deleted file mode 100644 index d7afe2ca8..000000000 --- a/src/icons/Globe.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Globe: Icon = forwardRef((props, ref) => ( - -)); - -Globe.displayName = "Globe"; diff --git a/src/icons/GlobeHemisphereEast.tsx b/src/icons/GlobeHemisphereEast.tsx deleted file mode 100644 index bd759bf2c..000000000 --- a/src/icons/GlobeHemisphereEast.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", - <> - - , - ], -]); - -export const GlobeHemisphereEast: Icon = forwardRef((props, ref) => ( - -)); - -GlobeHemisphereEast.displayName = "GlobeHemisphereEast"; diff --git a/src/icons/GlobeHemisphereWest.tsx b/src/icons/GlobeHemisphereWest.tsx deleted file mode 100644 index 9839e6e99..000000000 --- a/src/icons/GlobeHemisphereWest.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", - <> - - , - ], -]); - -export const GlobeHemisphereWest: Icon = forwardRef((props, ref) => ( - -)); - -GlobeHemisphereWest.displayName = "GlobeHemisphereWest"; diff --git a/src/icons/GlobeSimple.tsx b/src/icons/GlobeSimple.tsx deleted file mode 100644 index 43225652e..000000000 --- a/src/icons/GlobeSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GlobeSimple: Icon = forwardRef((props, ref) => ( - -)); - -GlobeSimple.displayName = "GlobeSimple"; diff --git a/src/icons/GlobeStand.tsx b/src/icons/GlobeStand.tsx deleted file mode 100644 index 3a4d320ad..000000000 --- a/src/icons/GlobeStand.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GlobeStand: Icon = forwardRef((props, ref) => ( - -)); - -GlobeStand.displayName = "GlobeStand"; diff --git a/src/icons/Goggles.tsx b/src/icons/Goggles.tsx deleted file mode 100644 index 50e85d4b7..000000000 --- a/src/icons/Goggles.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", - <> - - , - ], -]); - -export const Goggles: Icon = forwardRef((props, ref) => ( - -)); - -Goggles.displayName = "Goggles"; diff --git a/src/icons/GoodreadsLogo.tsx b/src/icons/GoodreadsLogo.tsx deleted file mode 100644 index 1758aea09..000000000 --- a/src/icons/GoodreadsLogo.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", - <> - - , - ], -]); - -export const GoodreadsLogo: Icon = forwardRef((props, ref) => ( - -)); - -GoodreadsLogo.displayName = "GoodreadsLogo"; diff --git a/src/icons/GoogleCardboardLogo.tsx b/src/icons/GoogleCardboardLogo.tsx deleted file mode 100644 index c0b1b4848..000000000 --- a/src/icons/GoogleCardboardLogo.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", - <> - - , - ], -]); - -export const GoogleCardboardLogo: Icon = forwardRef((props, ref) => ( - -)); - -GoogleCardboardLogo.displayName = "GoogleCardboardLogo"; diff --git a/src/icons/GoogleChromeLogo.tsx b/src/icons/GoogleChromeLogo.tsx deleted file mode 100644 index 854907569..000000000 --- a/src/icons/GoogleChromeLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GoogleChromeLogo: Icon = forwardRef((props, ref) => ( - -)); - -GoogleChromeLogo.displayName = "GoogleChromeLogo"; diff --git a/src/icons/GoogleDriveLogo.tsx b/src/icons/GoogleDriveLogo.tsx deleted file mode 100644 index 7e053f4ef..000000000 --- a/src/icons/GoogleDriveLogo.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", - <> - - , - ], -]); - -export const GoogleDriveLogo: Icon = forwardRef((props, ref) => ( - -)); - -GoogleDriveLogo.displayName = "GoogleDriveLogo"; diff --git a/src/icons/GoogleLogo.tsx b/src/icons/GoogleLogo.tsx deleted file mode 100644 index 9b8594a4c..000000000 --- a/src/icons/GoogleLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const GoogleLogo: Icon = forwardRef((props, ref) => ( - -)); - -GoogleLogo.displayName = "GoogleLogo"; diff --git a/src/icons/GooglePhotosLogo.tsx b/src/icons/GooglePhotosLogo.tsx deleted file mode 100644 index 49afb98e2..000000000 --- a/src/icons/GooglePhotosLogo.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", - <> - - , - ], -]); - -export const GooglePhotosLogo: Icon = forwardRef((props, ref) => ( - -)); - -GooglePhotosLogo.displayName = "GooglePhotosLogo"; diff --git a/src/icons/GooglePlayLogo.tsx b/src/icons/GooglePlayLogo.tsx deleted file mode 100644 index 38fd632f7..000000000 --- a/src/icons/GooglePlayLogo.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", - <> - - , - ], -]); - -export const GooglePlayLogo: Icon = forwardRef((props, ref) => ( - -)); - -GooglePlayLogo.displayName = "GooglePlayLogo"; diff --git a/src/icons/GooglePodcastsLogo.tsx b/src/icons/GooglePodcastsLogo.tsx deleted file mode 100644 index 7ec2904f4..000000000 --- a/src/icons/GooglePodcastsLogo.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", - <> - - , - ], -]); - -export const GooglePodcastsLogo: Icon = forwardRef((props, ref) => ( - -)); - -GooglePodcastsLogo.displayName = "GooglePodcastsLogo"; diff --git a/src/icons/Gradient.tsx b/src/icons/Gradient.tsx deleted file mode 100644 index a7c5721c5..000000000 --- a/src/icons/Gradient.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Gradient: Icon = forwardRef((props, ref) => ( - -)); - -Gradient.displayName = "Gradient"; diff --git a/src/icons/GraduationCap.tsx b/src/icons/GraduationCap.tsx deleted file mode 100644 index 9d32fd499..000000000 --- a/src/icons/GraduationCap.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", - <> - - , - ], -]); - -export const GraduationCap: Icon = forwardRef((props, ref) => ( - -)); - -GraduationCap.displayName = "GraduationCap"; diff --git a/src/icons/Grains.tsx b/src/icons/Grains.tsx deleted file mode 100644 index 66d0f8f72..000000000 --- a/src/icons/Grains.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", - <> - - , - ], -]); - -export const Grains: Icon = forwardRef((props, ref) => ( - -)); - -Grains.displayName = "Grains"; diff --git a/src/icons/GrainsSlash.tsx b/src/icons/GrainsSlash.tsx deleted file mode 100644 index b6052cfe6..000000000 --- a/src/icons/GrainsSlash.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", - <> - - , - ], -]); - -export const GrainsSlash: Icon = forwardRef((props, ref) => ( - -)); - -GrainsSlash.displayName = "GrainsSlash"; diff --git a/src/icons/Graph.tsx b/src/icons/Graph.tsx deleted file mode 100644 index 87b73686f..000000000 --- a/src/icons/Graph.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Graph: Icon = forwardRef((props, ref) => ( - -)); - -Graph.displayName = "Graph"; diff --git a/src/icons/GridFour.tsx b/src/icons/GridFour.tsx deleted file mode 100644 index 5807816ee..000000000 --- a/src/icons/GridFour.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", - <> - - , - ], -]); - -export const GridFour: Icon = forwardRef((props, ref) => ( - -)); - -GridFour.displayName = "GridFour"; diff --git a/src/icons/GridNine.tsx b/src/icons/GridNine.tsx deleted file mode 100644 index 76fe21586..000000000 --- a/src/icons/GridNine.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", - <> - - , - ], -]); - -export const GridNine: Icon = forwardRef((props, ref) => ( - -)); - -GridNine.displayName = "GridNine"; diff --git a/src/icons/Guitar.tsx b/src/icons/Guitar.tsx deleted file mode 100644 index 03d90718b..000000000 --- a/src/icons/Guitar.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", - <> - - , - ], -]); - -export const Guitar: Icon = forwardRef((props, ref) => ( - -)); - -Guitar.displayName = "Guitar"; diff --git a/src/icons/Hamburger.tsx b/src/icons/Hamburger.tsx deleted file mode 100644 index a89d436cb..000000000 --- a/src/icons/Hamburger.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", - <> - - , - ], -]); - -export const Hamburger: Icon = forwardRef((props, ref) => ( - -)); - -Hamburger.displayName = "Hamburger"; diff --git a/src/icons/Hammer.tsx b/src/icons/Hammer.tsx deleted file mode 100644 index e09bbcf51..000000000 --- a/src/icons/Hammer.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", - <> - - , - ], -]); - -export const Hammer: Icon = forwardRef((props, ref) => ( - -)); - -Hammer.displayName = "Hammer"; diff --git a/src/icons/Hand.tsx b/src/icons/Hand.tsx deleted file mode 100644 index b99b2eddc..000000000 --- a/src/icons/Hand.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", - <> - - , - ], -]); - -export const Hand: Icon = forwardRef((props, ref) => ( - -)); - -Hand.displayName = "Hand"; diff --git a/src/icons/HandCoins.tsx b/src/icons/HandCoins.tsx deleted file mode 100644 index c9f8c8a6a..000000000 --- a/src/icons/HandCoins.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", - <> - - , - ], -]); - -export const HandCoins: Icon = forwardRef((props, ref) => ( - -)); - -HandCoins.displayName = "HandCoins"; diff --git a/src/icons/HandEye.tsx b/src/icons/HandEye.tsx deleted file mode 100644 index c4ad786a3..000000000 --- a/src/icons/HandEye.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", - <> - - , - ], -]); - -export const HandEye: Icon = forwardRef((props, ref) => ( - -)); - -HandEye.displayName = "HandEye"; diff --git a/src/icons/HandFist.tsx b/src/icons/HandFist.tsx deleted file mode 100644 index 80d71a596..000000000 --- a/src/icons/HandFist.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", - <> - - , - ], -]); - -export const HandFist: Icon = forwardRef((props, ref) => ( - -)); - -HandFist.displayName = "HandFist"; diff --git a/src/icons/HandGrabbing.tsx b/src/icons/HandGrabbing.tsx deleted file mode 100644 index a3171f57d..000000000 --- a/src/icons/HandGrabbing.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", - <> - - , - ], -]); - -export const HandGrabbing: Icon = forwardRef((props, ref) => ( - -)); - -HandGrabbing.displayName = "HandGrabbing"; diff --git a/src/icons/HandHeart.tsx b/src/icons/HandHeart.tsx deleted file mode 100644 index 02cba5b77..000000000 --- a/src/icons/HandHeart.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", - <> - - , - ], -]); - -export const HandHeart: Icon = forwardRef((props, ref) => ( - -)); - -HandHeart.displayName = "HandHeart"; diff --git a/src/icons/HandPalm.tsx b/src/icons/HandPalm.tsx deleted file mode 100644 index b05364ce8..000000000 --- a/src/icons/HandPalm.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", - <> - - , - ], -]); - -export const HandPalm: Icon = forwardRef((props, ref) => ( - -)); - -HandPalm.displayName = "HandPalm"; diff --git a/src/icons/HandPointing.tsx b/src/icons/HandPointing.tsx deleted file mode 100644 index 8c240c693..000000000 --- a/src/icons/HandPointing.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", - <> - - , - ], -]); - -export const HandPointing: Icon = forwardRef((props, ref) => ( - -)); - -HandPointing.displayName = "HandPointing"; diff --git a/src/icons/HandSoap.tsx b/src/icons/HandSoap.tsx deleted file mode 100644 index 555d94c95..000000000 --- a/src/icons/HandSoap.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", - <> - - , - ], -]); - -export const HandSoap: Icon = forwardRef((props, ref) => ( - -)); - -HandSoap.displayName = "HandSoap"; diff --git a/src/icons/HandSwipeLeft.tsx b/src/icons/HandSwipeLeft.tsx deleted file mode 100644 index 8addc1a4e..000000000 --- a/src/icons/HandSwipeLeft.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", - <> - - , - ], -]); - -export const HandSwipeLeft: Icon = forwardRef((props, ref) => ( - -)); - -HandSwipeLeft.displayName = "HandSwipeLeft"; diff --git a/src/icons/HandSwipeRight.tsx b/src/icons/HandSwipeRight.tsx deleted file mode 100644 index fe849fba8..000000000 --- a/src/icons/HandSwipeRight.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", - <> - - , - ], -]); - -export const HandSwipeRight: Icon = forwardRef((props, ref) => ( - -)); - -HandSwipeRight.displayName = "HandSwipeRight"; diff --git a/src/icons/HandTap.tsx b/src/icons/HandTap.tsx deleted file mode 100644 index db17b8f56..000000000 --- a/src/icons/HandTap.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", - <> - - , - ], -]); - -export const HandTap: Icon = forwardRef((props, ref) => ( - -)); - -HandTap.displayName = "HandTap"; diff --git a/src/icons/HandWaving.tsx b/src/icons/HandWaving.tsx deleted file mode 100644 index 11a5ce040..000000000 --- a/src/icons/HandWaving.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", - <> - - , - ], -]); - -export const HandWaving: Icon = forwardRef((props, ref) => ( - -)); - -HandWaving.displayName = "HandWaving"; diff --git a/src/icons/Handbag.tsx b/src/icons/Handbag.tsx deleted file mode 100644 index a44ee7b5c..000000000 --- a/src/icons/Handbag.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", - <> - - , - ], -]); - -export const Handbag: Icon = forwardRef((props, ref) => ( - -)); - -Handbag.displayName = "Handbag"; diff --git a/src/icons/HandbagSimple.tsx b/src/icons/HandbagSimple.tsx deleted file mode 100644 index 43393a2fc..000000000 --- a/src/icons/HandbagSimple.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", - <> - - , - ], -]); - -export const HandbagSimple: Icon = forwardRef((props, ref) => ( - -)); - -HandbagSimple.displayName = "HandbagSimple"; diff --git a/src/icons/HandsClapping.tsx b/src/icons/HandsClapping.tsx deleted file mode 100644 index b367ed1f8..000000000 --- a/src/icons/HandsClapping.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", - <> - - , - ], -]); - -export const HandsClapping: Icon = forwardRef((props, ref) => ( - -)); - -HandsClapping.displayName = "HandsClapping"; diff --git a/src/icons/HandsPraying.tsx b/src/icons/HandsPraying.tsx deleted file mode 100644 index 9b5010be6..000000000 --- a/src/icons/HandsPraying.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", - <> - - , - ], -]); - -export const HandsPraying: Icon = forwardRef((props, ref) => ( - -)); - -HandsPraying.displayName = "HandsPraying"; diff --git a/src/icons/Handshake.tsx b/src/icons/Handshake.tsx deleted file mode 100644 index 3711cf5a7..000000000 --- a/src/icons/Handshake.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", - <> - - , - ], -]); - -export const Handshake: Icon = forwardRef((props, ref) => ( - -)); - -Handshake.displayName = "Handshake"; diff --git a/src/icons/HardDrive.tsx b/src/icons/HardDrive.tsx deleted file mode 100644 index a15162357..000000000 --- a/src/icons/HardDrive.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", - <> - - , - ], -]); - -export const HardDrive: Icon = forwardRef((props, ref) => ( - -)); - -HardDrive.displayName = "HardDrive"; diff --git a/src/icons/HardDrives.tsx b/src/icons/HardDrives.tsx deleted file mode 100644 index 1c7d74922..000000000 --- a/src/icons/HardDrives.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const HardDrives: Icon = forwardRef((props, ref) => ( - -)); - -HardDrives.displayName = "HardDrives"; diff --git a/src/icons/Hash.tsx b/src/icons/Hash.tsx deleted file mode 100644 index 60b393bbb..000000000 --- a/src/icons/Hash.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Hash: Icon = forwardRef((props, ref) => ( - -)); - -Hash.displayName = "Hash"; diff --git a/src/icons/HashStraight.tsx b/src/icons/HashStraight.tsx deleted file mode 100644 index b6fd3f309..000000000 --- a/src/icons/HashStraight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const HashStraight: Icon = forwardRef((props, ref) => ( - -)); - -HashStraight.displayName = "HashStraight"; diff --git a/src/icons/Headlights.tsx b/src/icons/Headlights.tsx deleted file mode 100644 index 9f46cf865..000000000 --- a/src/icons/Headlights.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", - <> - - , - ], -]); - -export const Headlights: Icon = forwardRef((props, ref) => ( - -)); - -Headlights.displayName = "Headlights"; diff --git a/src/icons/Headphones.tsx b/src/icons/Headphones.tsx deleted file mode 100644 index b8557557c..000000000 --- a/src/icons/Headphones.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", - <> - - , - ], -]); - -export const Headphones: Icon = forwardRef((props, ref) => ( - -)); - -Headphones.displayName = "Headphones"; diff --git a/src/icons/Headset.tsx b/src/icons/Headset.tsx deleted file mode 100644 index 0272ca0da..000000000 --- a/src/icons/Headset.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", - <> - - , - ], -]); - -export const Headset: Icon = forwardRef((props, ref) => ( - -)); - -Headset.displayName = "Headset"; diff --git a/src/icons/Heart.tsx b/src/icons/Heart.tsx deleted file mode 100644 index 44a1ccc4d..000000000 --- a/src/icons/Heart.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", - <> - - , - ], -]); - -export const Heart: Icon = forwardRef((props, ref) => ( - -)); - -Heart.displayName = "Heart"; diff --git a/src/icons/HeartBreak.tsx b/src/icons/HeartBreak.tsx deleted file mode 100644 index 23908e631..000000000 --- a/src/icons/HeartBreak.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", - <> - - , - ], -]); - -export const HeartBreak: Icon = forwardRef((props, ref) => ( - -)); - -HeartBreak.displayName = "HeartBreak"; diff --git a/src/icons/HeartHalf.tsx b/src/icons/HeartHalf.tsx deleted file mode 100644 index 1180dedcd..000000000 --- a/src/icons/HeartHalf.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", - <> - - , - ], -]); - -export const HeartHalf: Icon = forwardRef((props, ref) => ( - -)); - -HeartHalf.displayName = "HeartHalf"; diff --git a/src/icons/HeartStraight.tsx b/src/icons/HeartStraight.tsx deleted file mode 100644 index 7f622d01f..000000000 --- a/src/icons/HeartStraight.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", - <> - - , - ], -]); - -export const HeartStraight: Icon = forwardRef((props, ref) => ( - -)); - -HeartStraight.displayName = "HeartStraight"; diff --git a/src/icons/HeartStraightBreak.tsx b/src/icons/HeartStraightBreak.tsx deleted file mode 100644 index a5cbaed86..000000000 --- a/src/icons/HeartStraightBreak.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", - <> - - , - ], -]); - -export const HeartStraightBreak: Icon = forwardRef((props, ref) => ( - -)); - -HeartStraightBreak.displayName = "HeartStraightBreak"; diff --git a/src/icons/Heartbeat.tsx b/src/icons/Heartbeat.tsx deleted file mode 100644 index 50cfed786..000000000 --- a/src/icons/Heartbeat.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", - <> - - , - ], -]); - -export const Heartbeat: Icon = forwardRef((props, ref) => ( - -)); - -Heartbeat.displayName = "Heartbeat"; diff --git a/src/icons/Hexagon.tsx b/src/icons/Hexagon.tsx deleted file mode 100644 index be3706066..000000000 --- a/src/icons/Hexagon.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", - <> - - , - ], -]); - -export const Hexagon: Icon = forwardRef((props, ref) => ( - -)); - -Hexagon.displayName = "Hexagon"; diff --git a/src/icons/HighHeel.tsx b/src/icons/HighHeel.tsx deleted file mode 100644 index bd4ccb611..000000000 --- a/src/icons/HighHeel.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", - <> - - , - ], -]); - -export const HighHeel: Icon = forwardRef((props, ref) => ( - -)); - -HighHeel.displayName = "HighHeel"; diff --git a/src/icons/HighlighterCircle.tsx b/src/icons/HighlighterCircle.tsx deleted file mode 100644 index 8ded9bd97..000000000 --- a/src/icons/HighlighterCircle.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", - <> - - , - ], -]); - -export const HighlighterCircle: Icon = forwardRef((props, ref) => ( - -)); - -HighlighterCircle.displayName = "HighlighterCircle"; diff --git a/src/icons/Hoodie.tsx b/src/icons/Hoodie.tsx deleted file mode 100644 index 2b2819029..000000000 --- a/src/icons/Hoodie.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", - <> - - , - ], -]); - -export const Hoodie: Icon = forwardRef((props, ref) => ( - -)); - -Hoodie.displayName = "Hoodie"; diff --git a/src/icons/Horse.tsx b/src/icons/Horse.tsx deleted file mode 100644 index 23b56848d..000000000 --- a/src/icons/Horse.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", - <> - - , - ], -]); - -export const Horse: Icon = forwardRef((props, ref) => ( - -)); - -Horse.displayName = "Horse"; diff --git a/src/icons/Hourglass.tsx b/src/icons/Hourglass.tsx deleted file mode 100644 index cdda26c19..000000000 --- a/src/icons/Hourglass.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", - <> - - , - ], -]); - -export const Hourglass: Icon = forwardRef((props, ref) => ( - -)); - -Hourglass.displayName = "Hourglass"; diff --git a/src/icons/HourglassHigh.tsx b/src/icons/HourglassHigh.tsx deleted file mode 100644 index 6396a3617..000000000 --- a/src/icons/HourglassHigh.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", - <> - - , - ], -]); - -export const HourglassHigh: Icon = forwardRef((props, ref) => ( - -)); - -HourglassHigh.displayName = "HourglassHigh"; diff --git a/src/icons/HourglassLow.tsx b/src/icons/HourglassLow.tsx deleted file mode 100644 index 4a9894800..000000000 --- a/src/icons/HourglassLow.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const HourglassLow: Icon = forwardRef((props, ref) => ( - -)); - -HourglassLow.displayName = "HourglassLow"; diff --git a/src/icons/HourglassMedium.tsx b/src/icons/HourglassMedium.tsx deleted file mode 100644 index da558b755..000000000 --- a/src/icons/HourglassMedium.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const HourglassMedium: Icon = forwardRef((props, ref) => ( - -)); - -HourglassMedium.displayName = "HourglassMedium"; diff --git a/src/icons/HourglassSimple.tsx b/src/icons/HourglassSimple.tsx deleted file mode 100644 index b59c9c198..000000000 --- a/src/icons/HourglassSimple.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", - <> - - , - ], -]); - -export const HourglassSimple: Icon = forwardRef((props, ref) => ( - -)); - -HourglassSimple.displayName = "HourglassSimple"; diff --git a/src/icons/HourglassSimpleHigh.tsx b/src/icons/HourglassSimpleHigh.tsx deleted file mode 100644 index 463f6f536..000000000 --- a/src/icons/HourglassSimpleHigh.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const HourglassSimpleHigh: Icon = forwardRef((props, ref) => ( - -)); - -HourglassSimpleHigh.displayName = "HourglassSimpleHigh"; diff --git a/src/icons/HourglassSimpleLow.tsx b/src/icons/HourglassSimpleLow.tsx deleted file mode 100644 index 2f81c59fd..000000000 --- a/src/icons/HourglassSimpleLow.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", - <> - - , - ], -]); - -export const HourglassSimpleLow: Icon = forwardRef((props, ref) => ( - -)); - -HourglassSimpleLow.displayName = "HourglassSimpleLow"; diff --git a/src/icons/HourglassSimpleMedium.tsx b/src/icons/HourglassSimpleMedium.tsx deleted file mode 100644 index 7e9e0c712..000000000 --- a/src/icons/HourglassSimpleMedium.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const HourglassSimpleMedium: Icon = forwardRef((props, ref) => ( - -)); - -HourglassSimpleMedium.displayName = "HourglassSimpleMedium"; diff --git a/src/icons/House.tsx b/src/icons/House.tsx deleted file mode 100644 index c63cb40c9..000000000 --- a/src/icons/House.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", - <> - - , - ], -]); - -export const House: Icon = forwardRef((props, ref) => ( - -)); - -House.displayName = "House"; diff --git a/src/icons/HouseLine.tsx b/src/icons/HouseLine.tsx deleted file mode 100644 index acf5ab0fc..000000000 --- a/src/icons/HouseLine.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", - <> - - , - ], -]); - -export const HouseLine: Icon = forwardRef((props, ref) => ( - -)); - -HouseLine.displayName = "HouseLine"; diff --git a/src/icons/HouseSimple.tsx b/src/icons/HouseSimple.tsx deleted file mode 100644 index fb8a32b8d..000000000 --- a/src/icons/HouseSimple.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", - <> - - , - ], -]); - -export const HouseSimple: Icon = forwardRef((props, ref) => ( - -)); - -HouseSimple.displayName = "HouseSimple"; diff --git a/src/icons/IceCream.tsx b/src/icons/IceCream.tsx deleted file mode 100644 index d27002b6a..000000000 --- a/src/icons/IceCream.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", - <> - - , - ], -]); - -export const IceCream: Icon = forwardRef((props, ref) => ( - -)); - -IceCream.displayName = "IceCream"; diff --git a/src/icons/IdentificationBadge.tsx b/src/icons/IdentificationBadge.tsx deleted file mode 100644 index acdcb4c44..000000000 --- a/src/icons/IdentificationBadge.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", - <> - - , - ], -]); - -export const IdentificationBadge: Icon = forwardRef((props, ref) => ( - -)); - -IdentificationBadge.displayName = "IdentificationBadge"; diff --git a/src/icons/IdentificationCard.tsx b/src/icons/IdentificationCard.tsx deleted file mode 100644 index 9794722a0..000000000 --- a/src/icons/IdentificationCard.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", - <> - - , - ], -]); - -export const IdentificationCard: Icon = forwardRef((props, ref) => ( - -)); - -IdentificationCard.displayName = "IdentificationCard"; diff --git a/src/icons/Image.tsx b/src/icons/Image.tsx deleted file mode 100644 index d41cb22c0..000000000 --- a/src/icons/Image.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", - <> - - , - ], -]); - -export const Image: Icon = forwardRef((props, ref) => ( - -)); - -Image.displayName = "Image"; diff --git a/src/icons/ImageSquare.tsx b/src/icons/ImageSquare.tsx deleted file mode 100644 index b7540101c..000000000 --- a/src/icons/ImageSquare.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", - <> - - , - ], -]); - -export const ImageSquare: Icon = forwardRef((props, ref) => ( - -)); - -ImageSquare.displayName = "ImageSquare"; diff --git a/src/icons/Images.tsx b/src/icons/Images.tsx deleted file mode 100644 index 98eb8608a..000000000 --- a/src/icons/Images.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", - <> - - , - ], -]); - -export const Images: Icon = forwardRef((props, ref) => ( - -)); - -Images.displayName = "Images"; diff --git a/src/icons/ImagesSquare.tsx b/src/icons/ImagesSquare.tsx deleted file mode 100644 index 5b058dea0..000000000 --- a/src/icons/ImagesSquare.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", - <> - - , - ], -]); - -export const ImagesSquare: Icon = forwardRef((props, ref) => ( - -)); - -ImagesSquare.displayName = "ImagesSquare"; diff --git a/src/icons/Infinity.tsx b/src/icons/Infinity.tsx deleted file mode 100644 index 167a07814..000000000 --- a/src/icons/Infinity.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", - <> - - , - ], -]); - -export const Infinity: Icon = forwardRef((props, ref) => ( - -)); - -Infinity.displayName = "Infinity"; diff --git a/src/icons/Info.tsx b/src/icons/Info.tsx deleted file mode 100644 index d7ad03f2e..000000000 --- a/src/icons/Info.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Info: Icon = forwardRef((props, ref) => ( - -)); - -Info.displayName = "Info"; diff --git a/src/icons/InstagramLogo.tsx b/src/icons/InstagramLogo.tsx deleted file mode 100644 index 3458aef73..000000000 --- a/src/icons/InstagramLogo.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", - <> - - , - ], -]); - -export const InstagramLogo: Icon = forwardRef((props, ref) => ( - -)); - -InstagramLogo.displayName = "InstagramLogo"; diff --git a/src/icons/Intersect.tsx b/src/icons/Intersect.tsx deleted file mode 100644 index 858a2c3d4..000000000 --- a/src/icons/Intersect.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", - <> - - , - ], -]); - -export const Intersect: Icon = forwardRef((props, ref) => ( - -)); - -Intersect.displayName = "Intersect"; diff --git a/src/icons/IntersectSquare.tsx b/src/icons/IntersectSquare.tsx deleted file mode 100644 index c47ae8a84..000000000 --- a/src/icons/IntersectSquare.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const IntersectSquare: Icon = forwardRef((props, ref) => ( - -)); - -IntersectSquare.displayName = "IntersectSquare"; diff --git a/src/icons/IntersectThree.tsx b/src/icons/IntersectThree.tsx deleted file mode 100644 index 37735542a..000000000 --- a/src/icons/IntersectThree.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", - <> - - , - ], -]); - -export const IntersectThree: Icon = forwardRef((props, ref) => ( - -)); - -IntersectThree.displayName = "IntersectThree"; diff --git a/src/icons/Jeep.tsx b/src/icons/Jeep.tsx deleted file mode 100644 index 0ffdd26d7..000000000 --- a/src/icons/Jeep.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", - <> - - , - ], -]); - -export const Jeep: Icon = forwardRef((props, ref) => ( - -)); - -Jeep.displayName = "Jeep"; diff --git a/src/icons/Kanban.tsx b/src/icons/Kanban.tsx deleted file mode 100644 index 86dd9021c..000000000 --- a/src/icons/Kanban.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", - <> - - , - ], -]); - -export const Kanban: Icon = forwardRef((props, ref) => ( - -)); - -Kanban.displayName = "Kanban"; diff --git a/src/icons/Key.tsx b/src/icons/Key.tsx deleted file mode 100644 index 295ac1ecf..000000000 --- a/src/icons/Key.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", - <> - - , - ], -]); - -export const Key: Icon = forwardRef((props, ref) => ( - -)); - -Key.displayName = "Key"; diff --git a/src/icons/KeyReturn.tsx b/src/icons/KeyReturn.tsx deleted file mode 100644 index fc3254a99..000000000 --- a/src/icons/KeyReturn.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", - <> - - , - ], -]); - -export const KeyReturn: Icon = forwardRef((props, ref) => ( - -)); - -KeyReturn.displayName = "KeyReturn"; diff --git a/src/icons/Keyboard.tsx b/src/icons/Keyboard.tsx deleted file mode 100644 index 4d2c2b62f..000000000 --- a/src/icons/Keyboard.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", - <> - - , - ], -]); - -export const Keyboard: Icon = forwardRef((props, ref) => ( - -)); - -Keyboard.displayName = "Keyboard"; diff --git a/src/icons/Keyhole.tsx b/src/icons/Keyhole.tsx deleted file mode 100644 index 737192d44..000000000 --- a/src/icons/Keyhole.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", - <> - - , - ], -]); - -export const Keyhole: Icon = forwardRef((props, ref) => ( - -)); - -Keyhole.displayName = "Keyhole"; diff --git a/src/icons/Knife.tsx b/src/icons/Knife.tsx deleted file mode 100644 index ad1370aa6..000000000 --- a/src/icons/Knife.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", - <> - - , - ], -]); - -export const Knife: Icon = forwardRef((props, ref) => ( - -)); - -Knife.displayName = "Knife"; diff --git a/src/icons/Ladder.tsx b/src/icons/Ladder.tsx deleted file mode 100644 index d09c4d162..000000000 --- a/src/icons/Ladder.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Ladder: Icon = forwardRef((props, ref) => ( - -)); - -Ladder.displayName = "Ladder"; diff --git a/src/icons/LadderSimple.tsx b/src/icons/LadderSimple.tsx deleted file mode 100644 index 5b9977ed8..000000000 --- a/src/icons/LadderSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const LadderSimple: Icon = forwardRef((props, ref) => ( - -)); - -LadderSimple.displayName = "LadderSimple"; diff --git a/src/icons/Lamp.tsx b/src/icons/Lamp.tsx deleted file mode 100644 index 363e95f8e..000000000 --- a/src/icons/Lamp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Lamp: Icon = forwardRef((props, ref) => ( - -)); - -Lamp.displayName = "Lamp"; diff --git a/src/icons/Laptop.tsx b/src/icons/Laptop.tsx deleted file mode 100644 index 0e9f31ada..000000000 --- a/src/icons/Laptop.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", - <> - - , - ], -]); - -export const Laptop: Icon = forwardRef((props, ref) => ( - -)); - -Laptop.displayName = "Laptop"; diff --git a/src/icons/Layout.tsx b/src/icons/Layout.tsx deleted file mode 100644 index 18b23031c..000000000 --- a/src/icons/Layout.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Layout: Icon = forwardRef((props, ref) => ( - -)); - -Layout.displayName = "Layout"; diff --git a/src/icons/Leaf.tsx b/src/icons/Leaf.tsx deleted file mode 100644 index 603d675ea..000000000 --- a/src/icons/Leaf.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", - <> - - , - ], -]); - -export const Leaf: Icon = forwardRef((props, ref) => ( - -)); - -Leaf.displayName = "Leaf"; diff --git a/src/icons/Lifebuoy.tsx b/src/icons/Lifebuoy.tsx deleted file mode 100644 index 26053c0cf..000000000 --- a/src/icons/Lifebuoy.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", - <> - - , - ], -]); - -export const Lifebuoy: Icon = forwardRef((props, ref) => ( - -)); - -Lifebuoy.displayName = "Lifebuoy"; diff --git a/src/icons/Lightbulb.tsx b/src/icons/Lightbulb.tsx deleted file mode 100644 index fea5e800b..000000000 --- a/src/icons/Lightbulb.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", - <> - - , - ], -]); - -export const Lightbulb: Icon = forwardRef((props, ref) => ( - -)); - -Lightbulb.displayName = "Lightbulb"; diff --git a/src/icons/LightbulbFilament.tsx b/src/icons/LightbulbFilament.tsx deleted file mode 100644 index de47f5694..000000000 --- a/src/icons/LightbulbFilament.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", - <> - - , - ], -]); - -export const LightbulbFilament: Icon = forwardRef((props, ref) => ( - -)); - -LightbulbFilament.displayName = "LightbulbFilament"; diff --git a/src/icons/Lighthouse.tsx b/src/icons/Lighthouse.tsx deleted file mode 100644 index 3dfdd80e6..000000000 --- a/src/icons/Lighthouse.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", - <> - - , - ], -]); - -export const Lighthouse: Icon = forwardRef((props, ref) => ( - -)); - -Lighthouse.displayName = "Lighthouse"; diff --git a/src/icons/Lightning.tsx b/src/icons/Lightning.tsx deleted file mode 100644 index 0d149d238..000000000 --- a/src/icons/Lightning.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Lightning: Icon = forwardRef((props, ref) => ( - -)); - -Lightning.displayName = "Lightning"; diff --git a/src/icons/LightningA.tsx b/src/icons/LightningA.tsx deleted file mode 100644 index 96ae0cfad..000000000 --- a/src/icons/LightningA.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", - <> - - , - ], -]); - -export const LightningA: Icon = forwardRef((props, ref) => ( - -)); - -LightningA.displayName = "LightningA"; diff --git a/src/icons/LightningSlash.tsx b/src/icons/LightningSlash.tsx deleted file mode 100644 index 7ed1d96a2..000000000 --- a/src/icons/LightningSlash.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const LightningSlash: Icon = forwardRef((props, ref) => ( - -)); - -LightningSlash.displayName = "LightningSlash"; diff --git a/src/icons/LineSegment.tsx b/src/icons/LineSegment.tsx deleted file mode 100644 index 3a051500f..000000000 --- a/src/icons/LineSegment.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", - <> - - , - ], -]); - -export const LineSegment: Icon = forwardRef((props, ref) => ( - -)); - -LineSegment.displayName = "LineSegment"; diff --git a/src/icons/LineSegments.tsx b/src/icons/LineSegments.tsx deleted file mode 100644 index 2d2ac4993..000000000 --- a/src/icons/LineSegments.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", - <> - - , - ], -]); - -export const LineSegments: Icon = forwardRef((props, ref) => ( - -)); - -LineSegments.displayName = "LineSegments"; diff --git a/src/icons/Link.tsx b/src/icons/Link.tsx deleted file mode 100644 index 234395fd8..000000000 --- a/src/icons/Link.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", - <> - - , - ], -]); - -export const Link: Icon = forwardRef((props, ref) => ( - -)); - -Link.displayName = "Link"; diff --git a/src/icons/LinkBreak.tsx b/src/icons/LinkBreak.tsx deleted file mode 100644 index 86e44c966..000000000 --- a/src/icons/LinkBreak.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", - <> - - , - ], -]); - -export const LinkBreak: Icon = forwardRef((props, ref) => ( - -)); - -LinkBreak.displayName = "LinkBreak"; diff --git a/src/icons/LinkSimple.tsx b/src/icons/LinkSimple.tsx deleted file mode 100644 index c4a64099b..000000000 --- a/src/icons/LinkSimple.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", - <> - - , - ], -]); - -export const LinkSimple: Icon = forwardRef((props, ref) => ( - -)); - -LinkSimple.displayName = "LinkSimple"; diff --git a/src/icons/LinkSimpleBreak.tsx b/src/icons/LinkSimpleBreak.tsx deleted file mode 100644 index 26ff7a60e..000000000 --- a/src/icons/LinkSimpleBreak.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", - <> - - , - ], -]); - -export const LinkSimpleBreak: Icon = forwardRef((props, ref) => ( - -)); - -LinkSimpleBreak.displayName = "LinkSimpleBreak"; diff --git a/src/icons/LinkSimpleHorizontal.tsx b/src/icons/LinkSimpleHorizontal.tsx deleted file mode 100644 index 8edbb4317..000000000 --- a/src/icons/LinkSimpleHorizontal.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", - <> - - , - ], -]); - -export const LinkSimpleHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -LinkSimpleHorizontal.displayName = "LinkSimpleHorizontal"; diff --git a/src/icons/LinkSimpleHorizontalBreak.tsx b/src/icons/LinkSimpleHorizontalBreak.tsx deleted file mode 100644 index 9388f7b78..000000000 --- a/src/icons/LinkSimpleHorizontalBreak.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", - <> - - , - ], -]); - -export const LinkSimpleHorizontalBreak: Icon = forwardRef((props, ref) => ( - -)); - -LinkSimpleHorizontalBreak.displayName = "LinkSimpleHorizontalBreak"; diff --git a/src/icons/LinkedinLogo.tsx b/src/icons/LinkedinLogo.tsx deleted file mode 100644 index c46214537..000000000 --- a/src/icons/LinkedinLogo.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", - <> - - , - ], -]); - -export const LinkedinLogo: Icon = forwardRef((props, ref) => ( - -)); - -LinkedinLogo.displayName = "LinkedinLogo"; diff --git a/src/icons/LinuxLogo.tsx b/src/icons/LinuxLogo.tsx deleted file mode 100644 index 19a458a32..000000000 --- a/src/icons/LinuxLogo.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", - <> - - , - ], -]); - -export const LinuxLogo: Icon = forwardRef((props, ref) => ( - -)); - -LinuxLogo.displayName = "LinuxLogo"; diff --git a/src/icons/List.tsx b/src/icons/List.tsx deleted file mode 100644 index f61b35f27..000000000 --- a/src/icons/List.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const List: Icon = forwardRef((props, ref) => ( - -)); - -List.displayName = "List"; diff --git a/src/icons/ListBullets.tsx b/src/icons/ListBullets.tsx deleted file mode 100644 index ae616ce55..000000000 --- a/src/icons/ListBullets.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ListBullets: Icon = forwardRef((props, ref) => ( - -)); - -ListBullets.displayName = "ListBullets"; diff --git a/src/icons/ListChecks.tsx b/src/icons/ListChecks.tsx deleted file mode 100644 index 05e7c1791..000000000 --- a/src/icons/ListChecks.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ListChecks: Icon = forwardRef((props, ref) => ( - -)); - -ListChecks.displayName = "ListChecks"; diff --git a/src/icons/ListDashes.tsx b/src/icons/ListDashes.tsx deleted file mode 100644 index d0d8a610a..000000000 --- a/src/icons/ListDashes.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ListDashes: Icon = forwardRef((props, ref) => ( - -)); - -ListDashes.displayName = "ListDashes"; diff --git a/src/icons/ListMagnifyingGlass.tsx b/src/icons/ListMagnifyingGlass.tsx deleted file mode 100644 index c0da2cd35..000000000 --- a/src/icons/ListMagnifyingGlass.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ListMagnifyingGlass: Icon = forwardRef((props, ref) => ( - -)); - -ListMagnifyingGlass.displayName = "ListMagnifyingGlass"; diff --git a/src/icons/ListNumbers.tsx b/src/icons/ListNumbers.tsx deleted file mode 100644 index fa6d0d9c4..000000000 --- a/src/icons/ListNumbers.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ListNumbers: Icon = forwardRef((props, ref) => ( - -)); - -ListNumbers.displayName = "ListNumbers"; diff --git a/src/icons/ListPlus.tsx b/src/icons/ListPlus.tsx deleted file mode 100644 index 1eef875f1..000000000 --- a/src/icons/ListPlus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ListPlus: Icon = forwardRef((props, ref) => ( - -)); - -ListPlus.displayName = "ListPlus"; diff --git a/src/icons/Lock.tsx b/src/icons/Lock.tsx deleted file mode 100644 index a3f913052..000000000 --- a/src/icons/Lock.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", - <> - - , - ], -]); - -export const Lock: Icon = forwardRef((props, ref) => ( - -)); - -Lock.displayName = "Lock"; diff --git a/src/icons/LockKey.tsx b/src/icons/LockKey.tsx deleted file mode 100644 index e453f8d3e..000000000 --- a/src/icons/LockKey.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", - <> - - , - ], -]); - -export const LockKey: Icon = forwardRef((props, ref) => ( - -)); - -LockKey.displayName = "LockKey"; diff --git a/src/icons/LockKeyOpen.tsx b/src/icons/LockKeyOpen.tsx deleted file mode 100644 index 7f0737866..000000000 --- a/src/icons/LockKeyOpen.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", - <> - - , - ], -]); - -export const LockKeyOpen: Icon = forwardRef((props, ref) => ( - -)); - -LockKeyOpen.displayName = "LockKeyOpen"; diff --git a/src/icons/LockLaminated.tsx b/src/icons/LockLaminated.tsx deleted file mode 100644 index 2404f9a59..000000000 --- a/src/icons/LockLaminated.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", - <> - - , - ], -]); - -export const LockLaminated: Icon = forwardRef((props, ref) => ( - -)); - -LockLaminated.displayName = "LockLaminated"; diff --git a/src/icons/LockLaminatedOpen.tsx b/src/icons/LockLaminatedOpen.tsx deleted file mode 100644 index d1bc9cbda..000000000 --- a/src/icons/LockLaminatedOpen.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", - <> - - , - ], -]); - -export const LockLaminatedOpen: Icon = forwardRef((props, ref) => ( - -)); - -LockLaminatedOpen.displayName = "LockLaminatedOpen"; diff --git a/src/icons/LockOpen.tsx b/src/icons/LockOpen.tsx deleted file mode 100644 index 87d3481bb..000000000 --- a/src/icons/LockOpen.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", - <> - - , - ], -]); - -export const LockOpen: Icon = forwardRef((props, ref) => ( - -)); - -LockOpen.displayName = "LockOpen"; diff --git a/src/icons/LockSimple.tsx b/src/icons/LockSimple.tsx deleted file mode 100644 index f7804dea1..000000000 --- a/src/icons/LockSimple.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", - <> - - , - ], -]); - -export const LockSimple: Icon = forwardRef((props, ref) => ( - -)); - -LockSimple.displayName = "LockSimple"; diff --git a/src/icons/LockSimpleOpen.tsx b/src/icons/LockSimpleOpen.tsx deleted file mode 100644 index 708bcb607..000000000 --- a/src/icons/LockSimpleOpen.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", - <> - - , - ], -]); - -export const LockSimpleOpen: Icon = forwardRef((props, ref) => ( - -)); - -LockSimpleOpen.displayName = "LockSimpleOpen"; diff --git a/src/icons/Lockers.tsx b/src/icons/Lockers.tsx deleted file mode 100644 index 31347a07b..000000000 --- a/src/icons/Lockers.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", - <> - - , - ], -]); - -export const Lockers: Icon = forwardRef((props, ref) => ( - -)); - -Lockers.displayName = "Lockers"; diff --git a/src/icons/MagicWand.tsx b/src/icons/MagicWand.tsx deleted file mode 100644 index 57fee1248..000000000 --- a/src/icons/MagicWand.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", - <> - - , - ], -]); - -export const MagicWand: Icon = forwardRef((props, ref) => ( - -)); - -MagicWand.displayName = "MagicWand"; diff --git a/src/icons/Magnet.tsx b/src/icons/Magnet.tsx deleted file mode 100644 index 8e012f4cc..000000000 --- a/src/icons/Magnet.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", - <> - - , - ], -]); - -export const Magnet: Icon = forwardRef((props, ref) => ( - -)); - -Magnet.displayName = "Magnet"; diff --git a/src/icons/MagnetStraight.tsx b/src/icons/MagnetStraight.tsx deleted file mode 100644 index fe1bce115..000000000 --- a/src/icons/MagnetStraight.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", - <> - - , - ], -]); - -export const MagnetStraight: Icon = forwardRef((props, ref) => ( - -)); - -MagnetStraight.displayName = "MagnetStraight"; diff --git a/src/icons/MagnifyingGlass.tsx b/src/icons/MagnifyingGlass.tsx deleted file mode 100644 index 2b659d94c..000000000 --- a/src/icons/MagnifyingGlass.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const MagnifyingGlass: Icon = forwardRef((props, ref) => ( - -)); - -MagnifyingGlass.displayName = "MagnifyingGlass"; diff --git a/src/icons/MagnifyingGlassMinus.tsx b/src/icons/MagnifyingGlassMinus.tsx deleted file mode 100644 index 3461a3e80..000000000 --- a/src/icons/MagnifyingGlassMinus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const MagnifyingGlassMinus: Icon = forwardRef((props, ref) => ( - -)); - -MagnifyingGlassMinus.displayName = "MagnifyingGlassMinus"; diff --git a/src/icons/MagnifyingGlassPlus.tsx b/src/icons/MagnifyingGlassPlus.tsx deleted file mode 100644 index eaebe2c35..000000000 --- a/src/icons/MagnifyingGlassPlus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const MagnifyingGlassPlus: Icon = forwardRef((props, ref) => ( - -)); - -MagnifyingGlassPlus.displayName = "MagnifyingGlassPlus"; diff --git a/src/icons/MapPin.tsx b/src/icons/MapPin.tsx deleted file mode 100644 index 403e4d881..000000000 --- a/src/icons/MapPin.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", - <> - - , - ], -]); - -export const MapPin: Icon = forwardRef((props, ref) => ( - -)); - -MapPin.displayName = "MapPin"; diff --git a/src/icons/MapPinLine.tsx b/src/icons/MapPinLine.tsx deleted file mode 100644 index 8548a9f26..000000000 --- a/src/icons/MapPinLine.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", - <> - - , - ], -]); - -export const MapPinLine: Icon = forwardRef((props, ref) => ( - -)); - -MapPinLine.displayName = "MapPinLine"; diff --git a/src/icons/MapTrifold.tsx b/src/icons/MapTrifold.tsx deleted file mode 100644 index 383ef68fe..000000000 --- a/src/icons/MapTrifold.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const MapTrifold: Icon = forwardRef((props, ref) => ( - -)); - -MapTrifold.displayName = "MapTrifold"; diff --git a/src/icons/MarkerCircle.tsx b/src/icons/MarkerCircle.tsx deleted file mode 100644 index 5faaab574..000000000 --- a/src/icons/MarkerCircle.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", - <> - - , - ], -]); - -export const MarkerCircle: Icon = forwardRef((props, ref) => ( - -)); - -MarkerCircle.displayName = "MarkerCircle"; diff --git a/src/icons/Martini.tsx b/src/icons/Martini.tsx deleted file mode 100644 index c1ba25a7c..000000000 --- a/src/icons/Martini.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Martini: Icon = forwardRef((props, ref) => ( - -)); - -Martini.displayName = "Martini"; diff --git a/src/icons/MaskHappy.tsx b/src/icons/MaskHappy.tsx deleted file mode 100644 index 739724405..000000000 --- a/src/icons/MaskHappy.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", - <> - - , - ], -]); - -export const MaskHappy: Icon = forwardRef((props, ref) => ( - -)); - -MaskHappy.displayName = "MaskHappy"; diff --git a/src/icons/MaskSad.tsx b/src/icons/MaskSad.tsx deleted file mode 100644 index 1de355a95..000000000 --- a/src/icons/MaskSad.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", - <> - - , - ], -]); - -export const MaskSad: Icon = forwardRef((props, ref) => ( - -)); - -MaskSad.displayName = "MaskSad"; diff --git a/src/icons/MathOperations.tsx b/src/icons/MathOperations.tsx deleted file mode 100644 index 8e127758b..000000000 --- a/src/icons/MathOperations.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", - <> - - , - ], -]); - -export const MathOperations: Icon = forwardRef((props, ref) => ( - -)); - -MathOperations.displayName = "MathOperations"; diff --git a/src/icons/Medal.tsx b/src/icons/Medal.tsx deleted file mode 100644 index 3a436fb43..000000000 --- a/src/icons/Medal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Medal: Icon = forwardRef((props, ref) => ( - -)); - -Medal.displayName = "Medal"; diff --git a/src/icons/MedalMilitary.tsx b/src/icons/MedalMilitary.tsx deleted file mode 100644 index 3fdd58698..000000000 --- a/src/icons/MedalMilitary.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", - <> - - , - ], -]); - -export const MedalMilitary: Icon = forwardRef((props, ref) => ( - -)); - -MedalMilitary.displayName = "MedalMilitary"; diff --git a/src/icons/MediumLogo.tsx b/src/icons/MediumLogo.tsx deleted file mode 100644 index 11717f5f6..000000000 --- a/src/icons/MediumLogo.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", - <> - - , - ], -]); - -export const MediumLogo: Icon = forwardRef((props, ref) => ( - -)); - -MediumLogo.displayName = "MediumLogo"; diff --git a/src/icons/Megaphone.tsx b/src/icons/Megaphone.tsx deleted file mode 100644 index ff6922778..000000000 --- a/src/icons/Megaphone.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", - <> - - , - ], -]); - -export const Megaphone: Icon = forwardRef((props, ref) => ( - -)); - -Megaphone.displayName = "Megaphone"; diff --git a/src/icons/MegaphoneSimple.tsx b/src/icons/MegaphoneSimple.tsx deleted file mode 100644 index 89c2a482f..000000000 --- a/src/icons/MegaphoneSimple.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", - <> - - , - ], -]); - -export const MegaphoneSimple: Icon = forwardRef((props, ref) => ( - -)); - -MegaphoneSimple.displayName = "MegaphoneSimple"; diff --git a/src/icons/MessengerLogo.tsx b/src/icons/MessengerLogo.tsx deleted file mode 100644 index e185ab3f3..000000000 --- a/src/icons/MessengerLogo.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", - <> - - , - ], -]); - -export const MessengerLogo: Icon = forwardRef((props, ref) => ( - -)); - -MessengerLogo.displayName = "MessengerLogo"; diff --git a/src/icons/MetaLogo.tsx b/src/icons/MetaLogo.tsx deleted file mode 100644 index c3376b6e3..000000000 --- a/src/icons/MetaLogo.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", - <> - - , - ], -]); - -export const MetaLogo: Icon = forwardRef((props, ref) => ( - -)); - -MetaLogo.displayName = "MetaLogo"; diff --git a/src/icons/Metronome.tsx b/src/icons/Metronome.tsx deleted file mode 100644 index c867bb418..000000000 --- a/src/icons/Metronome.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", - <> - - , - ], -]); - -export const Metronome: Icon = forwardRef((props, ref) => ( - -)); - -Metronome.displayName = "Metronome"; diff --git a/src/icons/Microphone.tsx b/src/icons/Microphone.tsx deleted file mode 100644 index 63f63b260..000000000 --- a/src/icons/Microphone.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", - <> - - , - ], -]); - -export const Microphone: Icon = forwardRef((props, ref) => ( - -)); - -Microphone.displayName = "Microphone"; diff --git a/src/icons/MicrophoneSlash.tsx b/src/icons/MicrophoneSlash.tsx deleted file mode 100644 index 92ea324e4..000000000 --- a/src/icons/MicrophoneSlash.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", - <> - - , - ], -]); - -export const MicrophoneSlash: Icon = forwardRef((props, ref) => ( - -)); - -MicrophoneSlash.displayName = "MicrophoneSlash"; diff --git a/src/icons/MicrophoneStage.tsx b/src/icons/MicrophoneStage.tsx deleted file mode 100644 index 27d791ad1..000000000 --- a/src/icons/MicrophoneStage.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", - <> - - , - ], -]); - -export const MicrophoneStage: Icon = forwardRef((props, ref) => ( - -)); - -MicrophoneStage.displayName = "MicrophoneStage"; diff --git a/src/icons/MicrosoftExcelLogo.tsx b/src/icons/MicrosoftExcelLogo.tsx deleted file mode 100644 index 596298614..000000000 --- a/src/icons/MicrosoftExcelLogo.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", - <> - - , - ], -]); - -export const MicrosoftExcelLogo: Icon = forwardRef((props, ref) => ( - -)); - -MicrosoftExcelLogo.displayName = "MicrosoftExcelLogo"; diff --git a/src/icons/MicrosoftOutlookLogo.tsx b/src/icons/MicrosoftOutlookLogo.tsx deleted file mode 100644 index 292e6faa8..000000000 --- a/src/icons/MicrosoftOutlookLogo.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", - <> - - , - ], -]); - -export const MicrosoftOutlookLogo: Icon = forwardRef((props, ref) => ( - -)); - -MicrosoftOutlookLogo.displayName = "MicrosoftOutlookLogo"; diff --git a/src/icons/MicrosoftPowerpointLogo.tsx b/src/icons/MicrosoftPowerpointLogo.tsx deleted file mode 100644 index f30f60f4f..000000000 --- a/src/icons/MicrosoftPowerpointLogo.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", - <> - - , - ], -]); - -export const MicrosoftPowerpointLogo: Icon = forwardRef((props, ref) => ( - -)); - -MicrosoftPowerpointLogo.displayName = "MicrosoftPowerpointLogo"; diff --git a/src/icons/MicrosoftTeamsLogo.tsx b/src/icons/MicrosoftTeamsLogo.tsx deleted file mode 100644 index d0f75b641..000000000 --- a/src/icons/MicrosoftTeamsLogo.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", - <> - - , - ], -]); - -export const MicrosoftTeamsLogo: Icon = forwardRef((props, ref) => ( - -)); - -MicrosoftTeamsLogo.displayName = "MicrosoftTeamsLogo"; diff --git a/src/icons/MicrosoftWordLogo.tsx b/src/icons/MicrosoftWordLogo.tsx deleted file mode 100644 index fcbaa48dc..000000000 --- a/src/icons/MicrosoftWordLogo.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", - <> - - , - ], -]); - -export const MicrosoftWordLogo: Icon = forwardRef((props, ref) => ( - -)); - -MicrosoftWordLogo.displayName = "MicrosoftWordLogo"; diff --git a/src/icons/Minus.tsx b/src/icons/Minus.tsx deleted file mode 100644 index 2d7ce0b48..000000000 --- a/src/icons/Minus.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", - <> - - , - ], -]); - -export const Minus: Icon = forwardRef((props, ref) => ( - -)); - -Minus.displayName = "Minus"; diff --git a/src/icons/MinusCircle.tsx b/src/icons/MinusCircle.tsx deleted file mode 100644 index e5e3008c6..000000000 --- a/src/icons/MinusCircle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const MinusCircle: Icon = forwardRef((props, ref) => ( - -)); - -MinusCircle.displayName = "MinusCircle"; diff --git a/src/icons/MinusSquare.tsx b/src/icons/MinusSquare.tsx deleted file mode 100644 index fd20bfc38..000000000 --- a/src/icons/MinusSquare.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", - <> - - , - ], -]); - -export const MinusSquare: Icon = forwardRef((props, ref) => ( - -)); - -MinusSquare.displayName = "MinusSquare"; diff --git a/src/icons/Money.tsx b/src/icons/Money.tsx deleted file mode 100644 index 5151ed8a3..000000000 --- a/src/icons/Money.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", - <> - - , - ], -]); - -export const Money: Icon = forwardRef((props, ref) => ( - -)); - -Money.displayName = "Money"; diff --git a/src/icons/Monitor.tsx b/src/icons/Monitor.tsx deleted file mode 100644 index ea65484a7..000000000 --- a/src/icons/Monitor.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const Monitor: Icon = forwardRef((props, ref) => ( - -)); - -Monitor.displayName = "Monitor"; diff --git a/src/icons/MonitorPlay.tsx b/src/icons/MonitorPlay.tsx deleted file mode 100644 index ad352d579..000000000 --- a/src/icons/MonitorPlay.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", - <> - - , - ], -]); - -export const MonitorPlay: Icon = forwardRef((props, ref) => ( - -)); - -MonitorPlay.displayName = "MonitorPlay"; diff --git a/src/icons/Moon.tsx b/src/icons/Moon.tsx deleted file mode 100644 index 1e0d445c1..000000000 --- a/src/icons/Moon.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", - <> - - , - ], -]); - -export const Moon: Icon = forwardRef((props, ref) => ( - -)); - -Moon.displayName = "Moon"; diff --git a/src/icons/MoonStars.tsx b/src/icons/MoonStars.tsx deleted file mode 100644 index 0cd30a040..000000000 --- a/src/icons/MoonStars.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", - <> - - , - ], -]); - -export const MoonStars: Icon = forwardRef((props, ref) => ( - -)); - -MoonStars.displayName = "MoonStars"; diff --git a/src/icons/Moped.tsx b/src/icons/Moped.tsx deleted file mode 100644 index cb93e1361..000000000 --- a/src/icons/Moped.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Moped: Icon = forwardRef((props, ref) => ( - -)); - -Moped.displayName = "Moped"; diff --git a/src/icons/MopedFront.tsx b/src/icons/MopedFront.tsx deleted file mode 100644 index acb380ceb..000000000 --- a/src/icons/MopedFront.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", - <> - - , - ], -]); - -export const MopedFront: Icon = forwardRef((props, ref) => ( - -)); - -MopedFront.displayName = "MopedFront"; diff --git a/src/icons/Mosque.tsx b/src/icons/Mosque.tsx deleted file mode 100644 index e16cb92c2..000000000 --- a/src/icons/Mosque.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", - <> - - , - ], -]); - -export const Mosque: Icon = forwardRef((props, ref) => ( - -)); - -Mosque.displayName = "Mosque"; diff --git a/src/icons/Motorcycle.tsx b/src/icons/Motorcycle.tsx deleted file mode 100644 index 84e33a473..000000000 --- a/src/icons/Motorcycle.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", - <> - - , - ], -]); - -export const Motorcycle: Icon = forwardRef((props, ref) => ( - -)); - -Motorcycle.displayName = "Motorcycle"; diff --git a/src/icons/Mountains.tsx b/src/icons/Mountains.tsx deleted file mode 100644 index 62870dfd4..000000000 --- a/src/icons/Mountains.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", - <> - - , - ], -]); - -export const Mountains: Icon = forwardRef((props, ref) => ( - -)); - -Mountains.displayName = "Mountains"; diff --git a/src/icons/Mouse.tsx b/src/icons/Mouse.tsx deleted file mode 100644 index a16000af8..000000000 --- a/src/icons/Mouse.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Mouse: Icon = forwardRef((props, ref) => ( - -)); - -Mouse.displayName = "Mouse"; diff --git a/src/icons/MouseSimple.tsx b/src/icons/MouseSimple.tsx deleted file mode 100644 index 61b034ade..000000000 --- a/src/icons/MouseSimple.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", - <> - - , - ], -]); - -export const MouseSimple: Icon = forwardRef((props, ref) => ( - -)); - -MouseSimple.displayName = "MouseSimple"; diff --git a/src/icons/MusicNote.tsx b/src/icons/MusicNote.tsx deleted file mode 100644 index 576904780..000000000 --- a/src/icons/MusicNote.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const MusicNote: Icon = forwardRef((props, ref) => ( - -)); - -MusicNote.displayName = "MusicNote"; diff --git a/src/icons/MusicNoteSimple.tsx b/src/icons/MusicNoteSimple.tsx deleted file mode 100644 index cd131d41e..000000000 --- a/src/icons/MusicNoteSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const MusicNoteSimple: Icon = forwardRef((props, ref) => ( - -)); - -MusicNoteSimple.displayName = "MusicNoteSimple"; diff --git a/src/icons/MusicNotes.tsx b/src/icons/MusicNotes.tsx deleted file mode 100644 index d21d06879..000000000 --- a/src/icons/MusicNotes.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", - <> - - , - ], -]); - -export const MusicNotes: Icon = forwardRef((props, ref) => ( - -)); - -MusicNotes.displayName = "MusicNotes"; diff --git a/src/icons/MusicNotesPlus.tsx b/src/icons/MusicNotesPlus.tsx deleted file mode 100644 index 8b8fe5cb7..000000000 --- a/src/icons/MusicNotesPlus.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", - <> - - , - ], -]); - -export const MusicNotesPlus: Icon = forwardRef((props, ref) => ( - -)); - -MusicNotesPlus.displayName = "MusicNotesPlus"; diff --git a/src/icons/MusicNotesSimple.tsx b/src/icons/MusicNotesSimple.tsx deleted file mode 100644 index 96ab87a45..000000000 --- a/src/icons/MusicNotesSimple.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", - <> - - , - ], -]); - -export const MusicNotesSimple: Icon = forwardRef((props, ref) => ( - -)); - -MusicNotesSimple.displayName = "MusicNotesSimple"; diff --git a/src/icons/NavigationArrow.tsx b/src/icons/NavigationArrow.tsx deleted file mode 100644 index 9c547e4d9..000000000 --- a/src/icons/NavigationArrow.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", - <> - - , - ], -]); - -export const NavigationArrow: Icon = forwardRef((props, ref) => ( - -)); - -NavigationArrow.displayName = "NavigationArrow"; diff --git a/src/icons/Needle.tsx b/src/icons/Needle.tsx deleted file mode 100644 index 08306eb18..000000000 --- a/src/icons/Needle.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", - <> - - , - ], -]); - -export const Needle: Icon = forwardRef((props, ref) => ( - -)); - -Needle.displayName = "Needle"; diff --git a/src/icons/Newspaper.tsx b/src/icons/Newspaper.tsx deleted file mode 100644 index 60a4f26d8..000000000 --- a/src/icons/Newspaper.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", - <> - - , - ], -]); - -export const Newspaper: Icon = forwardRef((props, ref) => ( - -)); - -Newspaper.displayName = "Newspaper"; diff --git a/src/icons/NewspaperClipping.tsx b/src/icons/NewspaperClipping.tsx deleted file mode 100644 index 7762e617f..000000000 --- a/src/icons/NewspaperClipping.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", - <> - - , - ], -]); - -export const NewspaperClipping: Icon = forwardRef((props, ref) => ( - -)); - -NewspaperClipping.displayName = "NewspaperClipping"; diff --git a/src/icons/Notches.tsx b/src/icons/Notches.tsx deleted file mode 100644 index 44fa59d4f..000000000 --- a/src/icons/Notches.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Notches: Icon = forwardRef((props, ref) => ( - -)); - -Notches.displayName = "Notches"; diff --git a/src/icons/Note.tsx b/src/icons/Note.tsx deleted file mode 100644 index 9faaabb4b..000000000 --- a/src/icons/Note.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Note: Icon = forwardRef((props, ref) => ( - -)); - -Note.displayName = "Note"; diff --git a/src/icons/NoteBlank.tsx b/src/icons/NoteBlank.tsx deleted file mode 100644 index 92341dd53..000000000 --- a/src/icons/NoteBlank.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NoteBlank: Icon = forwardRef((props, ref) => ( - -)); - -NoteBlank.displayName = "NoteBlank"; diff --git a/src/icons/NotePencil.tsx b/src/icons/NotePencil.tsx deleted file mode 100644 index 0334a24c3..000000000 --- a/src/icons/NotePencil.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NotePencil: Icon = forwardRef((props, ref) => ( - -)); - -NotePencil.displayName = "NotePencil"; diff --git a/src/icons/Notebook.tsx b/src/icons/Notebook.tsx deleted file mode 100644 index e7e70b5f3..000000000 --- a/src/icons/Notebook.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Notebook: Icon = forwardRef((props, ref) => ( - -)); - -Notebook.displayName = "Notebook"; diff --git a/src/icons/Notepad.tsx b/src/icons/Notepad.tsx deleted file mode 100644 index 77df9e4b5..000000000 --- a/src/icons/Notepad.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", - <> - - , - ], -]); - -export const Notepad: Icon = forwardRef((props, ref) => ( - -)); - -Notepad.displayName = "Notepad"; diff --git a/src/icons/Notification.tsx b/src/icons/Notification.tsx deleted file mode 100644 index b38180c47..000000000 --- a/src/icons/Notification.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Notification: Icon = forwardRef((props, ref) => ( - -)); - -Notification.displayName = "Notification"; diff --git a/src/icons/NotionLogo.tsx b/src/icons/NotionLogo.tsx deleted file mode 100644 index 1d5678ca6..000000000 --- a/src/icons/NotionLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NotionLogo: Icon = forwardRef((props, ref) => ( - -)); - -NotionLogo.displayName = "NotionLogo"; diff --git a/src/icons/NumberCircleEight.tsx b/src/icons/NumberCircleEight.tsx deleted file mode 100644 index 275f43962..000000000 --- a/src/icons/NumberCircleEight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleEight: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleEight.displayName = "NumberCircleEight"; diff --git a/src/icons/NumberCircleFive.tsx b/src/icons/NumberCircleFive.tsx deleted file mode 100644 index b3e248eac..000000000 --- a/src/icons/NumberCircleFive.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleFive: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleFive.displayName = "NumberCircleFive"; diff --git a/src/icons/NumberCircleFour.tsx b/src/icons/NumberCircleFour.tsx deleted file mode 100644 index e3abd1333..000000000 --- a/src/icons/NumberCircleFour.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleFour: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleFour.displayName = "NumberCircleFour"; diff --git a/src/icons/NumberCircleNine.tsx b/src/icons/NumberCircleNine.tsx deleted file mode 100644 index a26b45390..000000000 --- a/src/icons/NumberCircleNine.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleNine: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleNine.displayName = "NumberCircleNine"; diff --git a/src/icons/NumberCircleOne.tsx b/src/icons/NumberCircleOne.tsx deleted file mode 100644 index ca8684f6e..000000000 --- a/src/icons/NumberCircleOne.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleOne: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleOne.displayName = "NumberCircleOne"; diff --git a/src/icons/NumberCircleSeven.tsx b/src/icons/NumberCircleSeven.tsx deleted file mode 100644 index a824c01e0..000000000 --- a/src/icons/NumberCircleSeven.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleSeven: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleSeven.displayName = "NumberCircleSeven"; diff --git a/src/icons/NumberCircleSix.tsx b/src/icons/NumberCircleSix.tsx deleted file mode 100644 index 5b20fb110..000000000 --- a/src/icons/NumberCircleSix.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleSix: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleSix.displayName = "NumberCircleSix"; diff --git a/src/icons/NumberCircleThree.tsx b/src/icons/NumberCircleThree.tsx deleted file mode 100644 index 3e254dc5a..000000000 --- a/src/icons/NumberCircleThree.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleThree: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleThree.displayName = "NumberCircleThree"; diff --git a/src/icons/NumberCircleTwo.tsx b/src/icons/NumberCircleTwo.tsx deleted file mode 100644 index bf03d178e..000000000 --- a/src/icons/NumberCircleTwo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleTwo: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleTwo.displayName = "NumberCircleTwo"; diff --git a/src/icons/NumberCircleZero.tsx b/src/icons/NumberCircleZero.tsx deleted file mode 100644 index 4d96558a7..000000000 --- a/src/icons/NumberCircleZero.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NumberCircleZero: Icon = forwardRef((props, ref) => ( - -)); - -NumberCircleZero.displayName = "NumberCircleZero"; diff --git a/src/icons/NumberEight.tsx b/src/icons/NumberEight.tsx deleted file mode 100644 index 930a9cc3c..000000000 --- a/src/icons/NumberEight.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", - <> - - , - ], -]); - -export const NumberEight: Icon = forwardRef((props, ref) => ( - -)); - -NumberEight.displayName = "NumberEight"; diff --git a/src/icons/NumberFive.tsx b/src/icons/NumberFive.tsx deleted file mode 100644 index 29efd82ee..000000000 --- a/src/icons/NumberFive.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", - <> - - , - ], -]); - -export const NumberFive: Icon = forwardRef((props, ref) => ( - -)); - -NumberFive.displayName = "NumberFive"; diff --git a/src/icons/NumberFour.tsx b/src/icons/NumberFour.tsx deleted file mode 100644 index b777f0074..000000000 --- a/src/icons/NumberFour.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", - <> - - , - ], -]); - -export const NumberFour: Icon = forwardRef((props, ref) => ( - -)); - -NumberFour.displayName = "NumberFour"; diff --git a/src/icons/NumberNine.tsx b/src/icons/NumberNine.tsx deleted file mode 100644 index 47e390fb2..000000000 --- a/src/icons/NumberNine.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", - <> - - , - ], -]); - -export const NumberNine: Icon = forwardRef((props, ref) => ( - -)); - -NumberNine.displayName = "NumberNine"; diff --git a/src/icons/NumberOne.tsx b/src/icons/NumberOne.tsx deleted file mode 100644 index 85c66b826..000000000 --- a/src/icons/NumberOne.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", - <> - - , - ], -]); - -export const NumberOne: Icon = forwardRef((props, ref) => ( - -)); - -NumberOne.displayName = "NumberOne"; diff --git a/src/icons/NumberSeven.tsx b/src/icons/NumberSeven.tsx deleted file mode 100644 index 40bec594a..000000000 --- a/src/icons/NumberSeven.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", - <> - - , - ], -]); - -export const NumberSeven: Icon = forwardRef((props, ref) => ( - -)); - -NumberSeven.displayName = "NumberSeven"; diff --git a/src/icons/NumberSix.tsx b/src/icons/NumberSix.tsx deleted file mode 100644 index 0e45349ba..000000000 --- a/src/icons/NumberSix.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", - <> - - , - ], -]); - -export const NumberSix: Icon = forwardRef((props, ref) => ( - -)); - -NumberSix.displayName = "NumberSix"; diff --git a/src/icons/NumberSquareEight.tsx b/src/icons/NumberSquareEight.tsx deleted file mode 100644 index 9321c2251..000000000 --- a/src/icons/NumberSquareEight.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", - <> - - , - ], -]); - -export const NumberSquareEight: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareEight.displayName = "NumberSquareEight"; diff --git a/src/icons/NumberSquareFive.tsx b/src/icons/NumberSquareFive.tsx deleted file mode 100644 index cf283b62f..000000000 --- a/src/icons/NumberSquareFive.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", - <> - - , - ], -]); - -export const NumberSquareFive: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareFive.displayName = "NumberSquareFive"; diff --git a/src/icons/NumberSquareFour.tsx b/src/icons/NumberSquareFour.tsx deleted file mode 100644 index 94f880e5f..000000000 --- a/src/icons/NumberSquareFour.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", - <> - - , - ], -]); - -export const NumberSquareFour: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareFour.displayName = "NumberSquareFour"; diff --git a/src/icons/NumberSquareNine.tsx b/src/icons/NumberSquareNine.tsx deleted file mode 100644 index 3a0763677..000000000 --- a/src/icons/NumberSquareNine.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", - <> - - , - ], -]); - -export const NumberSquareNine: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareNine.displayName = "NumberSquareNine"; diff --git a/src/icons/NumberSquareOne.tsx b/src/icons/NumberSquareOne.tsx deleted file mode 100644 index 9a19cba42..000000000 --- a/src/icons/NumberSquareOne.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", - <> - - , - ], -]); - -export const NumberSquareOne: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareOne.displayName = "NumberSquareOne"; diff --git a/src/icons/NumberSquareSeven.tsx b/src/icons/NumberSquareSeven.tsx deleted file mode 100644 index 809b2acd8..000000000 --- a/src/icons/NumberSquareSeven.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", - <> - - , - ], -]); - -export const NumberSquareSeven: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareSeven.displayName = "NumberSquareSeven"; diff --git a/src/icons/NumberSquareSix.tsx b/src/icons/NumberSquareSix.tsx deleted file mode 100644 index 03ddc6017..000000000 --- a/src/icons/NumberSquareSix.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", - <> - - , - ], -]); - -export const NumberSquareSix: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareSix.displayName = "NumberSquareSix"; diff --git a/src/icons/NumberSquareThree.tsx b/src/icons/NumberSquareThree.tsx deleted file mode 100644 index d1bceb4dc..000000000 --- a/src/icons/NumberSquareThree.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", - <> - - , - ], -]); - -export const NumberSquareThree: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareThree.displayName = "NumberSquareThree"; diff --git a/src/icons/NumberSquareTwo.tsx b/src/icons/NumberSquareTwo.tsx deleted file mode 100644 index 760890d53..000000000 --- a/src/icons/NumberSquareTwo.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", - <> - - , - ], -]); - -export const NumberSquareTwo: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareTwo.displayName = "NumberSquareTwo"; diff --git a/src/icons/NumberSquareZero.tsx b/src/icons/NumberSquareZero.tsx deleted file mode 100644 index 63a0786bf..000000000 --- a/src/icons/NumberSquareZero.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", - <> - - , - ], -]); - -export const NumberSquareZero: Icon = forwardRef((props, ref) => ( - -)); - -NumberSquareZero.displayName = "NumberSquareZero"; diff --git a/src/icons/NumberThree.tsx b/src/icons/NumberThree.tsx deleted file mode 100644 index 9f524cb35..000000000 --- a/src/icons/NumberThree.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", - <> - - , - ], -]); - -export const NumberThree: Icon = forwardRef((props, ref) => ( - -)); - -NumberThree.displayName = "NumberThree"; diff --git a/src/icons/NumberTwo.tsx b/src/icons/NumberTwo.tsx deleted file mode 100644 index 124bf2f85..000000000 --- a/src/icons/NumberTwo.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", - <> - - , - ], -]); - -export const NumberTwo: Icon = forwardRef((props, ref) => ( - -)); - -NumberTwo.displayName = "NumberTwo"; diff --git a/src/icons/NumberZero.tsx b/src/icons/NumberZero.tsx deleted file mode 100644 index 8f34266ac..000000000 --- a/src/icons/NumberZero.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", - <> - - , - ], -]); - -export const NumberZero: Icon = forwardRef((props, ref) => ( - -)); - -NumberZero.displayName = "NumberZero"; diff --git a/src/icons/Nut.tsx b/src/icons/Nut.tsx deleted file mode 100644 index 57f2e1bb7..000000000 --- a/src/icons/Nut.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", - <> - - , - ], -]); - -export const Nut: Icon = forwardRef((props, ref) => ( - -)); - -Nut.displayName = "Nut"; diff --git a/src/icons/NyTimesLogo.tsx b/src/icons/NyTimesLogo.tsx deleted file mode 100644 index d3bf96d86..000000000 --- a/src/icons/NyTimesLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const NyTimesLogo: Icon = forwardRef((props, ref) => ( - -)); - -NyTimesLogo.displayName = "NyTimesLogo"; diff --git a/src/icons/Octagon.tsx b/src/icons/Octagon.tsx deleted file mode 100644 index 7c3b35b09..000000000 --- a/src/icons/Octagon.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", - <> - - , - ], -]); - -export const Octagon: Icon = forwardRef((props, ref) => ( - -)); - -Octagon.displayName = "Octagon"; diff --git a/src/icons/OfficeChair.tsx b/src/icons/OfficeChair.tsx deleted file mode 100644 index 76f109f91..000000000 --- a/src/icons/OfficeChair.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", - <> - - , - ], -]); - -export const OfficeChair: Icon = forwardRef((props, ref) => ( - -)); - -OfficeChair.displayName = "OfficeChair"; diff --git a/src/icons/Option.tsx b/src/icons/Option.tsx deleted file mode 100644 index 43a3af24f..000000000 --- a/src/icons/Option.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Option: Icon = forwardRef((props, ref) => ( - -)); - -Option.displayName = "Option"; diff --git a/src/icons/OrangeSlice.tsx b/src/icons/OrangeSlice.tsx deleted file mode 100644 index 962df30fe..000000000 --- a/src/icons/OrangeSlice.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const OrangeSlice: Icon = forwardRef((props, ref) => ( - -)); - -OrangeSlice.displayName = "OrangeSlice"; diff --git a/src/icons/Package.tsx b/src/icons/Package.tsx deleted file mode 100644 index 5836a9eec..000000000 --- a/src/icons/Package.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", - <> - - , - ], -]); - -export const Package: Icon = forwardRef((props, ref) => ( - -)); - -Package.displayName = "Package"; diff --git a/src/icons/PaintBrush.tsx b/src/icons/PaintBrush.tsx deleted file mode 100644 index 952c92823..000000000 --- a/src/icons/PaintBrush.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", - <> - - , - ], -]); - -export const PaintBrush: Icon = forwardRef((props, ref) => ( - -)); - -PaintBrush.displayName = "PaintBrush"; diff --git a/src/icons/PaintBrushBroad.tsx b/src/icons/PaintBrushBroad.tsx deleted file mode 100644 index 5e09ceb15..000000000 --- a/src/icons/PaintBrushBroad.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", - <> - - , - ], -]); - -export const PaintBrushBroad: Icon = forwardRef((props, ref) => ( - -)); - -PaintBrushBroad.displayName = "PaintBrushBroad"; diff --git a/src/icons/PaintBrushHousehold.tsx b/src/icons/PaintBrushHousehold.tsx deleted file mode 100644 index 7a56fd5d4..000000000 --- a/src/icons/PaintBrushHousehold.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", - <> - - , - ], -]); - -export const PaintBrushHousehold: Icon = forwardRef((props, ref) => ( - -)); - -PaintBrushHousehold.displayName = "PaintBrushHousehold"; diff --git a/src/icons/PaintBucket.tsx b/src/icons/PaintBucket.tsx deleted file mode 100644 index 9507fdfd7..000000000 --- a/src/icons/PaintBucket.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", - <> - - , - ], -]); - -export const PaintBucket: Icon = forwardRef((props, ref) => ( - -)); - -PaintBucket.displayName = "PaintBucket"; diff --git a/src/icons/PaintRoller.tsx b/src/icons/PaintRoller.tsx deleted file mode 100644 index a5b13ae0c..000000000 --- a/src/icons/PaintRoller.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", - <> - - , - ], -]); - -export const PaintRoller: Icon = forwardRef((props, ref) => ( - -)); - -PaintRoller.displayName = "PaintRoller"; diff --git a/src/icons/Palette.tsx b/src/icons/Palette.tsx deleted file mode 100644 index d95db90d0..000000000 --- a/src/icons/Palette.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", - <> - - , - ], -]); - -export const Palette: Icon = forwardRef((props, ref) => ( - -)); - -Palette.displayName = "Palette"; diff --git a/src/icons/Pants.tsx b/src/icons/Pants.tsx deleted file mode 100644 index 59028c475..000000000 --- a/src/icons/Pants.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", - <> - - , - ], -]); - -export const Pants: Icon = forwardRef((props, ref) => ( - -)); - -Pants.displayName = "Pants"; diff --git a/src/icons/PaperPlane.tsx b/src/icons/PaperPlane.tsx deleted file mode 100644 index b9e191be0..000000000 --- a/src/icons/PaperPlane.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", - <> - - , - ], -]); - -export const PaperPlane: Icon = forwardRef((props, ref) => ( - -)); - -PaperPlane.displayName = "PaperPlane"; diff --git a/src/icons/PaperPlaneRight.tsx b/src/icons/PaperPlaneRight.tsx deleted file mode 100644 index 868ea8963..000000000 --- a/src/icons/PaperPlaneRight.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", - <> - - , - ], -]); - -export const PaperPlaneRight: Icon = forwardRef((props, ref) => ( - -)); - -PaperPlaneRight.displayName = "PaperPlaneRight"; diff --git a/src/icons/PaperPlaneTilt.tsx b/src/icons/PaperPlaneTilt.tsx deleted file mode 100644 index ec1ea1e31..000000000 --- a/src/icons/PaperPlaneTilt.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", - <> - - , - ], -]); - -export const PaperPlaneTilt: Icon = forwardRef((props, ref) => ( - -)); - -PaperPlaneTilt.displayName = "PaperPlaneTilt"; diff --git a/src/icons/Paperclip.tsx b/src/icons/Paperclip.tsx deleted file mode 100644 index e56a8413a..000000000 --- a/src/icons/Paperclip.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", - <> - - , - ], -]); - -export const Paperclip: Icon = forwardRef((props, ref) => ( - -)); - -Paperclip.displayName = "Paperclip"; diff --git a/src/icons/PaperclipHorizontal.tsx b/src/icons/PaperclipHorizontal.tsx deleted file mode 100644 index 9d68ef360..000000000 --- a/src/icons/PaperclipHorizontal.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", - <> - - , - ], -]); - -export const PaperclipHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -PaperclipHorizontal.displayName = "PaperclipHorizontal"; diff --git a/src/icons/Parachute.tsx b/src/icons/Parachute.tsx deleted file mode 100644 index 107796a32..000000000 --- a/src/icons/Parachute.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", - <> - - , - ], -]); - -export const Parachute: Icon = forwardRef((props, ref) => ( - -)); - -Parachute.displayName = "Parachute"; diff --git a/src/icons/Paragraph.tsx b/src/icons/Paragraph.tsx deleted file mode 100644 index 2b1868594..000000000 --- a/src/icons/Paragraph.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Paragraph: Icon = forwardRef((props, ref) => ( - -)); - -Paragraph.displayName = "Paragraph"; diff --git a/src/icons/Parallelogram.tsx b/src/icons/Parallelogram.tsx deleted file mode 100644 index 02cab38fb..000000000 --- a/src/icons/Parallelogram.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", - <> - - , - ], -]); - -export const Parallelogram: Icon = forwardRef((props, ref) => ( - -)); - -Parallelogram.displayName = "Parallelogram"; diff --git a/src/icons/Park.tsx b/src/icons/Park.tsx deleted file mode 100644 index 6bbf65141..000000000 --- a/src/icons/Park.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Park: Icon = forwardRef((props, ref) => ( - -)); - -Park.displayName = "Park"; diff --git a/src/icons/Password.tsx b/src/icons/Password.tsx deleted file mode 100644 index 2f18685c3..000000000 --- a/src/icons/Password.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", - <> - - , - ], -]); - -export const Password: Icon = forwardRef((props, ref) => ( - -)); - -Password.displayName = "Password"; diff --git a/src/icons/Path.tsx b/src/icons/Path.tsx deleted file mode 100644 index b7a1ea6c7..000000000 --- a/src/icons/Path.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Path: Icon = forwardRef((props, ref) => ( - -)); - -Path.displayName = "Path"; diff --git a/src/icons/PatreonLogo.tsx b/src/icons/PatreonLogo.tsx deleted file mode 100644 index 0865094f4..000000000 --- a/src/icons/PatreonLogo.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", - <> - - , - ], -]); - -export const PatreonLogo: Icon = forwardRef((props, ref) => ( - -)); - -PatreonLogo.displayName = "PatreonLogo"; diff --git a/src/icons/Pause.tsx b/src/icons/Pause.tsx deleted file mode 100644 index d8458df9f..000000000 --- a/src/icons/Pause.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", - <> - - , - ], -]); - -export const Pause: Icon = forwardRef((props, ref) => ( - -)); - -Pause.displayName = "Pause"; diff --git a/src/icons/PauseCircle.tsx b/src/icons/PauseCircle.tsx deleted file mode 100644 index 85d9c7bc5..000000000 --- a/src/icons/PauseCircle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PauseCircle: Icon = forwardRef((props, ref) => ( - -)); - -PauseCircle.displayName = "PauseCircle"; diff --git a/src/icons/PawPrint.tsx b/src/icons/PawPrint.tsx deleted file mode 100644 index 73340bc89..000000000 --- a/src/icons/PawPrint.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", - <> - - , - ], -]); - -export const PawPrint: Icon = forwardRef((props, ref) => ( - -)); - -PawPrint.displayName = "PawPrint"; diff --git a/src/icons/PaypalLogo.tsx b/src/icons/PaypalLogo.tsx deleted file mode 100644 index fd220549f..000000000 --- a/src/icons/PaypalLogo.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", - <> - - , - ], -]); - -export const PaypalLogo: Icon = forwardRef((props, ref) => ( - -)); - -PaypalLogo.displayName = "PaypalLogo"; diff --git a/src/icons/Peace.tsx b/src/icons/Peace.tsx deleted file mode 100644 index ddaae6faf..000000000 --- a/src/icons/Peace.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Peace: Icon = forwardRef((props, ref) => ( - -)); - -Peace.displayName = "Peace"; diff --git a/src/icons/Pen.tsx b/src/icons/Pen.tsx deleted file mode 100644 index 2858eaae3..000000000 --- a/src/icons/Pen.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", - <> - - , - ], -]); - -export const Pen: Icon = forwardRef((props, ref) => ( - -)); - -Pen.displayName = "Pen"; diff --git a/src/icons/PenNib.tsx b/src/icons/PenNib.tsx deleted file mode 100644 index cef4950c1..000000000 --- a/src/icons/PenNib.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", - <> - - , - ], -]); - -export const PenNib: Icon = forwardRef((props, ref) => ( - -)); - -PenNib.displayName = "PenNib"; diff --git a/src/icons/PenNibStraight.tsx b/src/icons/PenNibStraight.tsx deleted file mode 100644 index 6fa062db5..000000000 --- a/src/icons/PenNibStraight.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", - <> - - , - ], -]); - -export const PenNibStraight: Icon = forwardRef((props, ref) => ( - -)); - -PenNibStraight.displayName = "PenNibStraight"; diff --git a/src/icons/Pencil.tsx b/src/icons/Pencil.tsx deleted file mode 100644 index 668225f82..000000000 --- a/src/icons/Pencil.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", - <> - - , - ], -]); - -export const Pencil: Icon = forwardRef((props, ref) => ( - -)); - -Pencil.displayName = "Pencil"; diff --git a/src/icons/PencilCircle.tsx b/src/icons/PencilCircle.tsx deleted file mode 100644 index 88f483eed..000000000 --- a/src/icons/PencilCircle.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", - <> - - , - ], -]); - -export const PencilCircle: Icon = forwardRef((props, ref) => ( - -)); - -PencilCircle.displayName = "PencilCircle"; diff --git a/src/icons/PencilLine.tsx b/src/icons/PencilLine.tsx deleted file mode 100644 index c4e234c9b..000000000 --- a/src/icons/PencilLine.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", - <> - - , - ], -]); - -export const PencilLine: Icon = forwardRef((props, ref) => ( - -)); - -PencilLine.displayName = "PencilLine"; diff --git a/src/icons/PencilSimple.tsx b/src/icons/PencilSimple.tsx deleted file mode 100644 index c13d547d4..000000000 --- a/src/icons/PencilSimple.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", - <> - - , - ], -]); - -export const PencilSimple: Icon = forwardRef((props, ref) => ( - -)); - -PencilSimple.displayName = "PencilSimple"; diff --git a/src/icons/PencilSimpleLine.tsx b/src/icons/PencilSimpleLine.tsx deleted file mode 100644 index 297a1674d..000000000 --- a/src/icons/PencilSimpleLine.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", - <> - - , - ], -]); - -export const PencilSimpleLine: Icon = forwardRef((props, ref) => ( - -)); - -PencilSimpleLine.displayName = "PencilSimpleLine"; diff --git a/src/icons/PencilSimpleSlash.tsx b/src/icons/PencilSimpleSlash.tsx deleted file mode 100644 index 62d5ba2a5..000000000 --- a/src/icons/PencilSimpleSlash.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", - <> - - , - ], -]); - -export const PencilSimpleSlash: Icon = forwardRef((props, ref) => ( - -)); - -PencilSimpleSlash.displayName = "PencilSimpleSlash"; diff --git a/src/icons/PencilSlash.tsx b/src/icons/PencilSlash.tsx deleted file mode 100644 index 7e4881f9b..000000000 --- a/src/icons/PencilSlash.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", - <> - - , - ], -]); - -export const PencilSlash: Icon = forwardRef((props, ref) => ( - -)); - -PencilSlash.displayName = "PencilSlash"; diff --git a/src/icons/Pentagram.tsx b/src/icons/Pentagram.tsx deleted file mode 100644 index ed01722cb..000000000 --- a/src/icons/Pentagram.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", - <> - - , - ], -]); - -export const Pentagram: Icon = forwardRef((props, ref) => ( - -)); - -Pentagram.displayName = "Pentagram"; diff --git a/src/icons/Pepper.tsx b/src/icons/Pepper.tsx deleted file mode 100644 index 640ffebfd..000000000 --- a/src/icons/Pepper.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", - <> - - , - ], -]); - -export const Pepper: Icon = forwardRef((props, ref) => ( - -)); - -Pepper.displayName = "Pepper"; diff --git a/src/icons/Percent.tsx b/src/icons/Percent.tsx deleted file mode 100644 index b48d58dce..000000000 --- a/src/icons/Percent.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", - <> - - , - ], -]); - -export const Percent: Icon = forwardRef((props, ref) => ( - -)); - -Percent.displayName = "Percent"; diff --git a/src/icons/Person.tsx b/src/icons/Person.tsx deleted file mode 100644 index 966f91d08..000000000 --- a/src/icons/Person.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", - <> - - , - ], -]); - -export const Person: Icon = forwardRef((props, ref) => ( - -)); - -Person.displayName = "Person"; diff --git a/src/icons/PersonArmsSpread.tsx b/src/icons/PersonArmsSpread.tsx deleted file mode 100644 index 13cbda6bd..000000000 --- a/src/icons/PersonArmsSpread.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", - <> - - , - ], -]); - -export const PersonArmsSpread: Icon = forwardRef((props, ref) => ( - -)); - -PersonArmsSpread.displayName = "PersonArmsSpread"; diff --git a/src/icons/PersonSimple.tsx b/src/icons/PersonSimple.tsx deleted file mode 100644 index 625eb08bc..000000000 --- a/src/icons/PersonSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PersonSimple: Icon = forwardRef((props, ref) => ( - -)); - -PersonSimple.displayName = "PersonSimple"; diff --git a/src/icons/PersonSimpleBike.tsx b/src/icons/PersonSimpleBike.tsx deleted file mode 100644 index 71a8c52de..000000000 --- a/src/icons/PersonSimpleBike.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", - <> - - , - ], -]); - -export const PersonSimpleBike: Icon = forwardRef((props, ref) => ( - -)); - -PersonSimpleBike.displayName = "PersonSimpleBike"; diff --git a/src/icons/PersonSimpleRun.tsx b/src/icons/PersonSimpleRun.tsx deleted file mode 100644 index 8dbf21a67..000000000 --- a/src/icons/PersonSimpleRun.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PersonSimpleRun: Icon = forwardRef((props, ref) => ( - -)); - -PersonSimpleRun.displayName = "PersonSimpleRun"; diff --git a/src/icons/PersonSimpleThrow.tsx b/src/icons/PersonSimpleThrow.tsx deleted file mode 100644 index 4974047fc..000000000 --- a/src/icons/PersonSimpleThrow.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PersonSimpleThrow: Icon = forwardRef((props, ref) => ( - -)); - -PersonSimpleThrow.displayName = "PersonSimpleThrow"; diff --git a/src/icons/PersonSimpleWalk.tsx b/src/icons/PersonSimpleWalk.tsx deleted file mode 100644 index 32ca9e512..000000000 --- a/src/icons/PersonSimpleWalk.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PersonSimpleWalk: Icon = forwardRef((props, ref) => ( - -)); - -PersonSimpleWalk.displayName = "PersonSimpleWalk"; diff --git a/src/icons/Perspective.tsx b/src/icons/Perspective.tsx deleted file mode 100644 index 5eed1b1d0..000000000 --- a/src/icons/Perspective.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", - <> - - , - ], -]); - -export const Perspective: Icon = forwardRef((props, ref) => ( - -)); - -Perspective.displayName = "Perspective"; diff --git a/src/icons/Phone.tsx b/src/icons/Phone.tsx deleted file mode 100644 index a7707c7c0..000000000 --- a/src/icons/Phone.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", - <> - - , - ], -]); - -export const Phone: Icon = forwardRef((props, ref) => ( - -)); - -Phone.displayName = "Phone"; diff --git a/src/icons/PhoneCall.tsx b/src/icons/PhoneCall.tsx deleted file mode 100644 index 8feab70e8..000000000 --- a/src/icons/PhoneCall.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", - <> - - , - ], -]); - -export const PhoneCall: Icon = forwardRef((props, ref) => ( - -)); - -PhoneCall.displayName = "PhoneCall"; diff --git a/src/icons/PhoneDisconnect.tsx b/src/icons/PhoneDisconnect.tsx deleted file mode 100644 index 19e5439c6..000000000 --- a/src/icons/PhoneDisconnect.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", - <> - - , - ], -]); - -export const PhoneDisconnect: Icon = forwardRef((props, ref) => ( - -)); - -PhoneDisconnect.displayName = "PhoneDisconnect"; diff --git a/src/icons/PhoneIncoming.tsx b/src/icons/PhoneIncoming.tsx deleted file mode 100644 index 3ef20baf5..000000000 --- a/src/icons/PhoneIncoming.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", - <> - - , - ], -]); - -export const PhoneIncoming: Icon = forwardRef((props, ref) => ( - -)); - -PhoneIncoming.displayName = "PhoneIncoming"; diff --git a/src/icons/PhoneOutgoing.tsx b/src/icons/PhoneOutgoing.tsx deleted file mode 100644 index 049565b3b..000000000 --- a/src/icons/PhoneOutgoing.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", - <> - - , - ], -]); - -export const PhoneOutgoing: Icon = forwardRef((props, ref) => ( - -)); - -PhoneOutgoing.displayName = "PhoneOutgoing"; diff --git a/src/icons/PhonePlus.tsx b/src/icons/PhonePlus.tsx deleted file mode 100644 index ebeac9051..000000000 --- a/src/icons/PhonePlus.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", - <> - - , - ], -]); - -export const PhonePlus: Icon = forwardRef((props, ref) => ( - -)); - -PhonePlus.displayName = "PhonePlus"; diff --git a/src/icons/PhoneSlash.tsx b/src/icons/PhoneSlash.tsx deleted file mode 100644 index b6f4432bc..000000000 --- a/src/icons/PhoneSlash.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", - <> - - , - ], -]); - -export const PhoneSlash: Icon = forwardRef((props, ref) => ( - -)); - -PhoneSlash.displayName = "PhoneSlash"; diff --git a/src/icons/PhoneX.tsx b/src/icons/PhoneX.tsx deleted file mode 100644 index ba6b0826e..000000000 --- a/src/icons/PhoneX.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", - <> - - , - ], -]); - -export const PhoneX: Icon = forwardRef((props, ref) => ( - -)); - -PhoneX.displayName = "PhoneX"; diff --git a/src/icons/PhosphorLogo.tsx b/src/icons/PhosphorLogo.tsx deleted file mode 100644 index 4c3846765..000000000 --- a/src/icons/PhosphorLogo.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", - <> - - , - ], -]); - -export const PhosphorLogo: Icon = forwardRef((props, ref) => ( - -)); - -PhosphorLogo.displayName = "PhosphorLogo"; diff --git a/src/icons/Pi.tsx b/src/icons/Pi.tsx deleted file mode 100644 index 15dda3cc9..000000000 --- a/src/icons/Pi.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Pi: Icon = forwardRef((props, ref) => ( - -)); - -Pi.displayName = "Pi"; diff --git a/src/icons/PianoKeys.tsx b/src/icons/PianoKeys.tsx deleted file mode 100644 index 846ea2756..000000000 --- a/src/icons/PianoKeys.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PianoKeys: Icon = forwardRef((props, ref) => ( - -)); - -PianoKeys.displayName = "PianoKeys"; diff --git a/src/icons/PictureInPicture.tsx b/src/icons/PictureInPicture.tsx deleted file mode 100644 index 88be63cae..000000000 --- a/src/icons/PictureInPicture.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", - <> - - , - ], -]); - -export const PictureInPicture: Icon = forwardRef((props, ref) => ( - -)); - -PictureInPicture.displayName = "PictureInPicture"; diff --git a/src/icons/PiggyBank.tsx b/src/icons/PiggyBank.tsx deleted file mode 100644 index f8ecc06a8..000000000 --- a/src/icons/PiggyBank.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", - <> - - , - ], -]); - -export const PiggyBank: Icon = forwardRef((props, ref) => ( - -)); - -PiggyBank.displayName = "PiggyBank"; diff --git a/src/icons/Pill.tsx b/src/icons/Pill.tsx deleted file mode 100644 index a83d0d4cd..000000000 --- a/src/icons/Pill.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", - <> - - , - ], -]); - -export const Pill: Icon = forwardRef((props, ref) => ( - -)); - -Pill.displayName = "Pill"; diff --git a/src/icons/PinterestLogo.tsx b/src/icons/PinterestLogo.tsx deleted file mode 100644 index 892ef5ea8..000000000 --- a/src/icons/PinterestLogo.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", - <> - - , - ], -]); - -export const PinterestLogo: Icon = forwardRef((props, ref) => ( - -)); - -PinterestLogo.displayName = "PinterestLogo"; diff --git a/src/icons/Pinwheel.tsx b/src/icons/Pinwheel.tsx deleted file mode 100644 index c362e2fd3..000000000 --- a/src/icons/Pinwheel.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", - <> - - , - ], -]); - -export const Pinwheel: Icon = forwardRef((props, ref) => ( - -)); - -Pinwheel.displayName = "Pinwheel"; diff --git a/src/icons/Pizza.tsx b/src/icons/Pizza.tsx deleted file mode 100644 index 3b28070d2..000000000 --- a/src/icons/Pizza.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", - <> - - , - ], -]); - -export const Pizza: Icon = forwardRef((props, ref) => ( - -)); - -Pizza.displayName = "Pizza"; diff --git a/src/icons/Placeholder.tsx b/src/icons/Placeholder.tsx deleted file mode 100644 index 13085e591..000000000 --- a/src/icons/Placeholder.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", - <> - - , - ], -]); - -export const Placeholder: Icon = forwardRef((props, ref) => ( - -)); - -Placeholder.displayName = "Placeholder"; diff --git a/src/icons/Planet.tsx b/src/icons/Planet.tsx deleted file mode 100644 index 3363f003b..000000000 --- a/src/icons/Planet.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Planet: Icon = forwardRef((props, ref) => ( - -)); - -Planet.displayName = "Planet"; diff --git a/src/icons/Plant.tsx b/src/icons/Plant.tsx deleted file mode 100644 index 2642462ef..000000000 --- a/src/icons/Plant.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", - <> - - , - ], -]); - -export const Plant: Icon = forwardRef((props, ref) => ( - -)); - -Plant.displayName = "Plant"; diff --git a/src/icons/Play.tsx b/src/icons/Play.tsx deleted file mode 100644 index 1ad6c1569..000000000 --- a/src/icons/Play.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", - <> - - , - ], -]); - -export const Play: Icon = forwardRef((props, ref) => ( - -)); - -Play.displayName = "Play"; diff --git a/src/icons/PlayCircle.tsx b/src/icons/PlayCircle.tsx deleted file mode 100644 index e44a2a460..000000000 --- a/src/icons/PlayCircle.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", - <> - - , - ], -]); - -export const PlayCircle: Icon = forwardRef((props, ref) => ( - -)); - -PlayCircle.displayName = "PlayCircle"; diff --git a/src/icons/PlayPause.tsx b/src/icons/PlayPause.tsx deleted file mode 100644 index 0b757b95e..000000000 --- a/src/icons/PlayPause.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", - <> - - , - ], -]); - -export const PlayPause: Icon = forwardRef((props, ref) => ( - -)); - -PlayPause.displayName = "PlayPause"; diff --git a/src/icons/Playlist.tsx b/src/icons/Playlist.tsx deleted file mode 100644 index 624cc62d9..000000000 --- a/src/icons/Playlist.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Playlist: Icon = forwardRef((props, ref) => ( - -)); - -Playlist.displayName = "Playlist"; diff --git a/src/icons/Plug.tsx b/src/icons/Plug.tsx deleted file mode 100644 index 2807d740f..000000000 --- a/src/icons/Plug.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", - <> - - , - ], -]); - -export const Plug: Icon = forwardRef((props, ref) => ( - -)); - -Plug.displayName = "Plug"; diff --git a/src/icons/PlugCharging.tsx b/src/icons/PlugCharging.tsx deleted file mode 100644 index 0f5d803bb..000000000 --- a/src/icons/PlugCharging.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", - <> - - , - ], -]); - -export const PlugCharging: Icon = forwardRef((props, ref) => ( - -)); - -PlugCharging.displayName = "PlugCharging"; diff --git a/src/icons/Plugs.tsx b/src/icons/Plugs.tsx deleted file mode 100644 index 8f1d0004b..000000000 --- a/src/icons/Plugs.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", - <> - - , - ], -]); - -export const Plugs: Icon = forwardRef((props, ref) => ( - -)); - -Plugs.displayName = "Plugs"; diff --git a/src/icons/PlugsConnected.tsx b/src/icons/PlugsConnected.tsx deleted file mode 100644 index 6628e26cd..000000000 --- a/src/icons/PlugsConnected.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", - <> - - , - ], -]); - -export const PlugsConnected: Icon = forwardRef((props, ref) => ( - -)); - -PlugsConnected.displayName = "PlugsConnected"; diff --git a/src/icons/Plus.tsx b/src/icons/Plus.tsx deleted file mode 100644 index a69dacb19..000000000 --- a/src/icons/Plus.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", - <> - - , - ], -]); - -export const Plus: Icon = forwardRef((props, ref) => ( - -)); - -Plus.displayName = "Plus"; diff --git a/src/icons/PlusCircle.tsx b/src/icons/PlusCircle.tsx deleted file mode 100644 index 2c40ff96b..000000000 --- a/src/icons/PlusCircle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PlusCircle: Icon = forwardRef((props, ref) => ( - -)); - -PlusCircle.displayName = "PlusCircle"; diff --git a/src/icons/PlusMinus.tsx b/src/icons/PlusMinus.tsx deleted file mode 100644 index 7a8e1f1e1..000000000 --- a/src/icons/PlusMinus.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", - <> - - , - ], -]); - -export const PlusMinus: Icon = forwardRef((props, ref) => ( - -)); - -PlusMinus.displayName = "PlusMinus"; diff --git a/src/icons/PlusSquare.tsx b/src/icons/PlusSquare.tsx deleted file mode 100644 index fd4aa79d6..000000000 --- a/src/icons/PlusSquare.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", - <> - - , - ], -]); - -export const PlusSquare: Icon = forwardRef((props, ref) => ( - -)); - -PlusSquare.displayName = "PlusSquare"; diff --git a/src/icons/PokerChip.tsx b/src/icons/PokerChip.tsx deleted file mode 100644 index 23c60b240..000000000 --- a/src/icons/PokerChip.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", - <> - - , - ], -]); - -export const PokerChip: Icon = forwardRef((props, ref) => ( - -)); - -PokerChip.displayName = "PokerChip"; diff --git a/src/icons/PoliceCar.tsx b/src/icons/PoliceCar.tsx deleted file mode 100644 index 3a1925d94..000000000 --- a/src/icons/PoliceCar.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", - <> - - , - ], -]); - -export const PoliceCar: Icon = forwardRef((props, ref) => ( - -)); - -PoliceCar.displayName = "PoliceCar"; diff --git a/src/icons/Polygon.tsx b/src/icons/Polygon.tsx deleted file mode 100644 index 6a4e3c7c9..000000000 --- a/src/icons/Polygon.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", - <> - - , - ], -]); - -export const Polygon: Icon = forwardRef((props, ref) => ( - -)); - -Polygon.displayName = "Polygon"; diff --git a/src/icons/Popcorn.tsx b/src/icons/Popcorn.tsx deleted file mode 100644 index b189e0b60..000000000 --- a/src/icons/Popcorn.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", - <> - - , - ], -]); - -export const Popcorn: Icon = forwardRef((props, ref) => ( - -)); - -Popcorn.displayName = "Popcorn"; diff --git a/src/icons/PottedPlant.tsx b/src/icons/PottedPlant.tsx deleted file mode 100644 index 3667ac567..000000000 --- a/src/icons/PottedPlant.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", - <> - - , - ], -]); - -export const PottedPlant: Icon = forwardRef((props, ref) => ( - -)); - -PottedPlant.displayName = "PottedPlant"; diff --git a/src/icons/Power.tsx b/src/icons/Power.tsx deleted file mode 100644 index 0bc4918cb..000000000 --- a/src/icons/Power.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Power: Icon = forwardRef((props, ref) => ( - -)); - -Power.displayName = "Power"; diff --git a/src/icons/Prescription.tsx b/src/icons/Prescription.tsx deleted file mode 100644 index 19654ad5e..000000000 --- a/src/icons/Prescription.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", - <> - - , - ], -]); - -export const Prescription: Icon = forwardRef((props, ref) => ( - -)); - -Prescription.displayName = "Prescription"; diff --git a/src/icons/Presentation.tsx b/src/icons/Presentation.tsx deleted file mode 100644 index 6193ab06d..000000000 --- a/src/icons/Presentation.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", - <> - - , - ], -]); - -export const Presentation: Icon = forwardRef((props, ref) => ( - -)); - -Presentation.displayName = "Presentation"; diff --git a/src/icons/PresentationChart.tsx b/src/icons/PresentationChart.tsx deleted file mode 100644 index bd2c1fd17..000000000 --- a/src/icons/PresentationChart.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", - <> - - , - ], -]); - -export const PresentationChart: Icon = forwardRef((props, ref) => ( - -)); - -PresentationChart.displayName = "PresentationChart"; diff --git a/src/icons/Printer.tsx b/src/icons/Printer.tsx deleted file mode 100644 index 5af9e6236..000000000 --- a/src/icons/Printer.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", - <> - - , - ], -]); - -export const Printer: Icon = forwardRef((props, ref) => ( - -)); - -Printer.displayName = "Printer"; diff --git a/src/icons/Prohibit.tsx b/src/icons/Prohibit.tsx deleted file mode 100644 index 4b59f5b3b..000000000 --- a/src/icons/Prohibit.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Prohibit: Icon = forwardRef((props, ref) => ( - -)); - -Prohibit.displayName = "Prohibit"; diff --git a/src/icons/ProhibitInset.tsx b/src/icons/ProhibitInset.tsx deleted file mode 100644 index 702a7d127..000000000 --- a/src/icons/ProhibitInset.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ProhibitInset: Icon = forwardRef((props, ref) => ( - -)); - -ProhibitInset.displayName = "ProhibitInset"; diff --git a/src/icons/ProjectorScreen.tsx b/src/icons/ProjectorScreen.tsx deleted file mode 100644 index 52d46a99e..000000000 --- a/src/icons/ProjectorScreen.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ProjectorScreen: Icon = forwardRef((props, ref) => ( - -)); - -ProjectorScreen.displayName = "ProjectorScreen"; diff --git a/src/icons/ProjectorScreenChart.tsx b/src/icons/ProjectorScreenChart.tsx deleted file mode 100644 index 49e942156..000000000 --- a/src/icons/ProjectorScreenChart.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ProjectorScreenChart: Icon = forwardRef((props, ref) => ( - -)); - -ProjectorScreenChart.displayName = "ProjectorScreenChart"; diff --git a/src/icons/Pulse.tsx b/src/icons/Pulse.tsx deleted file mode 100644 index 14a03da96..000000000 --- a/src/icons/Pulse.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Pulse: Icon = forwardRef((props, ref) => ( - -)); - -Pulse.displayName = "Pulse"; diff --git a/src/icons/PushPin.tsx b/src/icons/PushPin.tsx deleted file mode 100644 index 185660c09..000000000 --- a/src/icons/PushPin.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", - <> - - , - ], -]); - -export const PushPin: Icon = forwardRef((props, ref) => ( - -)); - -PushPin.displayName = "PushPin"; diff --git a/src/icons/PushPinSimple.tsx b/src/icons/PushPinSimple.tsx deleted file mode 100644 index 09c3605d7..000000000 --- a/src/icons/PushPinSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const PushPinSimple: Icon = forwardRef((props, ref) => ( - -)); - -PushPinSimple.displayName = "PushPinSimple"; diff --git a/src/icons/PushPinSimpleSlash.tsx b/src/icons/PushPinSimpleSlash.tsx deleted file mode 100644 index 3a19deae5..000000000 --- a/src/icons/PushPinSimpleSlash.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", - <> - - , - ], -]); - -export const PushPinSimpleSlash: Icon = forwardRef((props, ref) => ( - -)); - -PushPinSimpleSlash.displayName = "PushPinSimpleSlash"; diff --git a/src/icons/PushPinSlash.tsx b/src/icons/PushPinSlash.tsx deleted file mode 100644 index 38aa2b278..000000000 --- a/src/icons/PushPinSlash.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", - <> - - , - ], -]); - -export const PushPinSlash: Icon = forwardRef((props, ref) => ( - -)); - -PushPinSlash.displayName = "PushPinSlash"; diff --git a/src/icons/PuzzlePiece.tsx b/src/icons/PuzzlePiece.tsx deleted file mode 100644 index 14d7dcba7..000000000 --- a/src/icons/PuzzlePiece.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", - <> - - , - ], -]); - -export const PuzzlePiece: Icon = forwardRef((props, ref) => ( - -)); - -PuzzlePiece.displayName = "PuzzlePiece"; diff --git a/src/icons/QrCode.tsx b/src/icons/QrCode.tsx deleted file mode 100644 index 937e399dd..000000000 --- a/src/icons/QrCode.tsx +++ /dev/null @@ -1,57 +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", - <> - - , - ], -]); - -export const QrCode: Icon = forwardRef((props, ref) => ( - -)); - -QrCode.displayName = "QrCode"; diff --git a/src/icons/Question.tsx b/src/icons/Question.tsx deleted file mode 100644 index 7a05cc0c0..000000000 --- a/src/icons/Question.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Question: Icon = forwardRef((props, ref) => ( - -)); - -Question.displayName = "Question"; diff --git a/src/icons/Queue.tsx b/src/icons/Queue.tsx deleted file mode 100644 index 775e7f8cc..000000000 --- a/src/icons/Queue.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Queue: Icon = forwardRef((props, ref) => ( - -)); - -Queue.displayName = "Queue"; diff --git a/src/icons/Quotes.tsx b/src/icons/Quotes.tsx deleted file mode 100644 index ce55f86a8..000000000 --- a/src/icons/Quotes.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", - <> - - , - ], -]); - -export const Quotes: Icon = forwardRef((props, ref) => ( - -)); - -Quotes.displayName = "Quotes"; diff --git a/src/icons/Radical.tsx b/src/icons/Radical.tsx deleted file mode 100644 index c2611f076..000000000 --- a/src/icons/Radical.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Radical: Icon = forwardRef((props, ref) => ( - -)); - -Radical.displayName = "Radical"; diff --git a/src/icons/Radio.tsx b/src/icons/Radio.tsx deleted file mode 100644 index f9fa8d926..000000000 --- a/src/icons/Radio.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", - <> - - , - ], -]); - -export const Radio: Icon = forwardRef((props, ref) => ( - -)); - -Radio.displayName = "Radio"; diff --git a/src/icons/RadioButton.tsx b/src/icons/RadioButton.tsx deleted file mode 100644 index 8f2423bd4..000000000 --- a/src/icons/RadioButton.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const RadioButton: Icon = forwardRef((props, ref) => ( - -)); - -RadioButton.displayName = "RadioButton"; diff --git a/src/icons/Radioactive.tsx b/src/icons/Radioactive.tsx deleted file mode 100644 index 47afbc75b..000000000 --- a/src/icons/Radioactive.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", - <> - - , - ], -]); - -export const Radioactive: Icon = forwardRef((props, ref) => ( - -)); - -Radioactive.displayName = "Radioactive"; diff --git a/src/icons/Rainbow.tsx b/src/icons/Rainbow.tsx deleted file mode 100644 index 6ca84fd76..000000000 --- a/src/icons/Rainbow.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", - <> - - , - ], -]); - -export const Rainbow: Icon = forwardRef((props, ref) => ( - -)); - -Rainbow.displayName = "Rainbow"; diff --git a/src/icons/RainbowCloud.tsx b/src/icons/RainbowCloud.tsx deleted file mode 100644 index 7bf8c3c23..000000000 --- a/src/icons/RainbowCloud.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", - <> - - , - ], -]); - -export const RainbowCloud: Icon = forwardRef((props, ref) => ( - -)); - -RainbowCloud.displayName = "RainbowCloud"; diff --git a/src/icons/ReadCvLogo.tsx b/src/icons/ReadCvLogo.tsx deleted file mode 100644 index d506faeaa..000000000 --- a/src/icons/ReadCvLogo.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", - <> - - , - ], -]); - -export const ReadCvLogo: Icon = forwardRef((props, ref) => ( - -)); - -ReadCvLogo.displayName = "ReadCvLogo"; diff --git a/src/icons/Receipt.tsx b/src/icons/Receipt.tsx deleted file mode 100644 index e11214a25..000000000 --- a/src/icons/Receipt.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", - <> - - , - ], -]); - -export const Receipt: Icon = forwardRef((props, ref) => ( - -)); - -Receipt.displayName = "Receipt"; diff --git a/src/icons/ReceiptX.tsx b/src/icons/ReceiptX.tsx deleted file mode 100644 index bc914ad59..000000000 --- a/src/icons/ReceiptX.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", - <> - - , - ], -]); - -export const ReceiptX: Icon = forwardRef((props, ref) => ( - -)); - -ReceiptX.displayName = "ReceiptX"; diff --git a/src/icons/Record.tsx b/src/icons/Record.tsx deleted file mode 100644 index 447a7461a..000000000 --- a/src/icons/Record.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", - <> - - , - ], -]); - -export const Record: Icon = forwardRef((props, ref) => ( - -)); - -Record.displayName = "Record"; diff --git a/src/icons/Rectangle.tsx b/src/icons/Rectangle.tsx deleted file mode 100644 index 5aaf119a9..000000000 --- a/src/icons/Rectangle.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", - <> - - , - ], -]); - -export const Rectangle: Icon = forwardRef((props, ref) => ( - -)); - -Rectangle.displayName = "Rectangle"; diff --git a/src/icons/Recycle.tsx b/src/icons/Recycle.tsx deleted file mode 100644 index aedc58568..000000000 --- a/src/icons/Recycle.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", - <> - - , - ], -]); - -export const Recycle: Icon = forwardRef((props, ref) => ( - -)); - -Recycle.displayName = "Recycle"; diff --git a/src/icons/RedditLogo.tsx b/src/icons/RedditLogo.tsx deleted file mode 100644 index ea1ed95c2..000000000 --- a/src/icons/RedditLogo.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", - <> - - , - ], -]); - -export const RedditLogo: Icon = forwardRef((props, ref) => ( - -)); - -RedditLogo.displayName = "RedditLogo"; diff --git a/src/icons/Repeat.tsx b/src/icons/Repeat.tsx deleted file mode 100644 index a34a22db0..000000000 --- a/src/icons/Repeat.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", - <> - - , - ], -]); - -export const Repeat: Icon = forwardRef((props, ref) => ( - -)); - -Repeat.displayName = "Repeat"; diff --git a/src/icons/RepeatOnce.tsx b/src/icons/RepeatOnce.tsx deleted file mode 100644 index e4636cf79..000000000 --- a/src/icons/RepeatOnce.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", - <> - - , - ], -]); - -export const RepeatOnce: Icon = forwardRef((props, ref) => ( - -)); - -RepeatOnce.displayName = "RepeatOnce"; diff --git a/src/icons/Rewind.tsx b/src/icons/Rewind.tsx deleted file mode 100644 index a8dbcd045..000000000 --- a/src/icons/Rewind.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", - <> - - , - ], -]); - -export const Rewind: Icon = forwardRef((props, ref) => ( - -)); - -Rewind.displayName = "Rewind"; diff --git a/src/icons/RewindCircle.tsx b/src/icons/RewindCircle.tsx deleted file mode 100644 index 1f807bfe5..000000000 --- a/src/icons/RewindCircle.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", - <> - - , - ], -]); - -export const RewindCircle: Icon = forwardRef((props, ref) => ( - -)); - -RewindCircle.displayName = "RewindCircle"; diff --git a/src/icons/RoadHorizon.tsx b/src/icons/RoadHorizon.tsx deleted file mode 100644 index 8c5074d5d..000000000 --- a/src/icons/RoadHorizon.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const RoadHorizon: Icon = forwardRef((props, ref) => ( - -)); - -RoadHorizon.displayName = "RoadHorizon"; diff --git a/src/icons/Robot.tsx b/src/icons/Robot.tsx deleted file mode 100644 index ce97bed9c..000000000 --- a/src/icons/Robot.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", - <> - - , - ], -]); - -export const Robot: Icon = forwardRef((props, ref) => ( - -)); - -Robot.displayName = "Robot"; diff --git a/src/icons/Rocket.tsx b/src/icons/Rocket.tsx deleted file mode 100644 index 44d5f4209..000000000 --- a/src/icons/Rocket.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", - <> - - , - ], -]); - -export const Rocket: Icon = forwardRef((props, ref) => ( - -)); - -Rocket.displayName = "Rocket"; diff --git a/src/icons/RocketLaunch.tsx b/src/icons/RocketLaunch.tsx deleted file mode 100644 index ec579d926..000000000 --- a/src/icons/RocketLaunch.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", - <> - - , - ], -]); - -export const RocketLaunch: Icon = forwardRef((props, ref) => ( - -)); - -RocketLaunch.displayName = "RocketLaunch"; diff --git a/src/icons/Rows.tsx b/src/icons/Rows.tsx deleted file mode 100644 index 641760a5d..000000000 --- a/src/icons/Rows.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", - <> - - , - ], -]); - -export const Rows: Icon = forwardRef((props, ref) => ( - -)); - -Rows.displayName = "Rows"; diff --git a/src/icons/Rss.tsx b/src/icons/Rss.tsx deleted file mode 100644 index b94a8d711..000000000 --- a/src/icons/Rss.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Rss: Icon = forwardRef((props, ref) => ( - -)); - -Rss.displayName = "Rss"; diff --git a/src/icons/RssSimple.tsx b/src/icons/RssSimple.tsx deleted file mode 100644 index feb5229b6..000000000 --- a/src/icons/RssSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const RssSimple: Icon = forwardRef((props, ref) => ( - -)); - -RssSimple.displayName = "RssSimple"; diff --git a/src/icons/Rug.tsx b/src/icons/Rug.tsx deleted file mode 100644 index 044e41cea..000000000 --- a/src/icons/Rug.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Rug: Icon = forwardRef((props, ref) => ( - -)); - -Rug.displayName = "Rug"; diff --git a/src/icons/Ruler.tsx b/src/icons/Ruler.tsx deleted file mode 100644 index 98e034ac1..000000000 --- a/src/icons/Ruler.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", - <> - - , - ], -]); - -export const Ruler: Icon = forwardRef((props, ref) => ( - -)); - -Ruler.displayName = "Ruler"; diff --git a/src/icons/Scales.tsx b/src/icons/Scales.tsx deleted file mode 100644 index 7dd76ed75..000000000 --- a/src/icons/Scales.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", - <> - - , - ], -]); - -export const Scales: Icon = forwardRef((props, ref) => ( - -)); - -Scales.displayName = "Scales"; diff --git a/src/icons/Scan.tsx b/src/icons/Scan.tsx deleted file mode 100644 index fba19abf7..000000000 --- a/src/icons/Scan.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", - <> - - , - ], -]); - -export const Scan: Icon = forwardRef((props, ref) => ( - -)); - -Scan.displayName = "Scan"; diff --git a/src/icons/Scissors.tsx b/src/icons/Scissors.tsx deleted file mode 100644 index 8fc8a04c6..000000000 --- a/src/icons/Scissors.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", - <> - - , - ], -]); - -export const Scissors: Icon = forwardRef((props, ref) => ( - -)); - -Scissors.displayName = "Scissors"; diff --git a/src/icons/Scooter.tsx b/src/icons/Scooter.tsx deleted file mode 100644 index d67ab7e05..000000000 --- a/src/icons/Scooter.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", - <> - - , - ], -]); - -export const Scooter: Icon = forwardRef((props, ref) => ( - -)); - -Scooter.displayName = "Scooter"; diff --git a/src/icons/Screencast.tsx b/src/icons/Screencast.tsx deleted file mode 100644 index aff7f44c1..000000000 --- a/src/icons/Screencast.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", - <> - - , - ], -]); - -export const Screencast: Icon = forwardRef((props, ref) => ( - -)); - -Screencast.displayName = "Screencast"; diff --git a/src/icons/ScribbleLoop.tsx b/src/icons/ScribbleLoop.tsx deleted file mode 100644 index 6fcd28b5d..000000000 --- a/src/icons/ScribbleLoop.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", - <> - - , - ], -]); - -export const ScribbleLoop: Icon = forwardRef((props, ref) => ( - -)); - -ScribbleLoop.displayName = "ScribbleLoop"; diff --git a/src/icons/Scroll.tsx b/src/icons/Scroll.tsx deleted file mode 100644 index c132546fb..000000000 --- a/src/icons/Scroll.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", - <> - - , - ], -]); - -export const Scroll: Icon = forwardRef((props, ref) => ( - -)); - -Scroll.displayName = "Scroll"; diff --git a/src/icons/Seal.tsx b/src/icons/Seal.tsx deleted file mode 100644 index a5e3ad8c0..000000000 --- a/src/icons/Seal.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", - <> - - , - ], -]); - -export const Seal: Icon = forwardRef((props, ref) => ( - -)); - -Seal.displayName = "Seal"; diff --git a/src/icons/SealCheck.tsx b/src/icons/SealCheck.tsx deleted file mode 100644 index e9d4a3302..000000000 --- a/src/icons/SealCheck.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", - <> - - , - ], -]); - -export const SealCheck: Icon = forwardRef((props, ref) => ( - -)); - -SealCheck.displayName = "SealCheck"; diff --git a/src/icons/SealQuestion.tsx b/src/icons/SealQuestion.tsx deleted file mode 100644 index ed5544a4f..000000000 --- a/src/icons/SealQuestion.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", - <> - - , - ], -]); - -export const SealQuestion: Icon = forwardRef((props, ref) => ( - -)); - -SealQuestion.displayName = "SealQuestion"; diff --git a/src/icons/SealWarning.tsx b/src/icons/SealWarning.tsx deleted file mode 100644 index 9c610aafe..000000000 --- a/src/icons/SealWarning.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", - <> - - , - ], -]); - -export const SealWarning: Icon = forwardRef((props, ref) => ( - -)); - -SealWarning.displayName = "SealWarning"; diff --git a/src/icons/Selection.tsx b/src/icons/Selection.tsx deleted file mode 100644 index 431a7c0ad..000000000 --- a/src/icons/Selection.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Selection: Icon = forwardRef((props, ref) => ( - -)); - -Selection.displayName = "Selection"; diff --git a/src/icons/SelectionAll.tsx b/src/icons/SelectionAll.tsx deleted file mode 100644 index 2e64ae651..000000000 --- a/src/icons/SelectionAll.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SelectionAll: Icon = forwardRef((props, ref) => ( - -)); - -SelectionAll.displayName = "SelectionAll"; diff --git a/src/icons/SelectionBackground.tsx b/src/icons/SelectionBackground.tsx deleted file mode 100644 index 12eae8b50..000000000 --- a/src/icons/SelectionBackground.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", - <> - - , - ], -]); - -export const SelectionBackground: Icon = forwardRef((props, ref) => ( - -)); - -SelectionBackground.displayName = "SelectionBackground"; diff --git a/src/icons/SelectionForeground.tsx b/src/icons/SelectionForeground.tsx deleted file mode 100644 index eeac1ac6f..000000000 --- a/src/icons/SelectionForeground.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", - <> - - , - ], -]); - -export const SelectionForeground: Icon = forwardRef((props, ref) => ( - -)); - -SelectionForeground.displayName = "SelectionForeground"; diff --git a/src/icons/SelectionInverse.tsx b/src/icons/SelectionInverse.tsx deleted file mode 100644 index 00cdbbd80..000000000 --- a/src/icons/SelectionInverse.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", - <> - - , - ], -]); - -export const SelectionInverse: Icon = forwardRef((props, ref) => ( - -)); - -SelectionInverse.displayName = "SelectionInverse"; diff --git a/src/icons/SelectionPlus.tsx b/src/icons/SelectionPlus.tsx deleted file mode 100644 index b5d2980ff..000000000 --- a/src/icons/SelectionPlus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SelectionPlus: Icon = forwardRef((props, ref) => ( - -)); - -SelectionPlus.displayName = "SelectionPlus"; diff --git a/src/icons/SelectionSlash.tsx b/src/icons/SelectionSlash.tsx deleted file mode 100644 index 91fa2c746..000000000 --- a/src/icons/SelectionSlash.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SelectionSlash: Icon = forwardRef((props, ref) => ( - -)); - -SelectionSlash.displayName = "SelectionSlash"; diff --git a/src/icons/Shapes.tsx b/src/icons/Shapes.tsx deleted file mode 100644 index b167f6845..000000000 --- a/src/icons/Shapes.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", - <> - - , - ], -]); - -export const Shapes: Icon = forwardRef((props, ref) => ( - -)); - -Shapes.displayName = "Shapes"; diff --git a/src/icons/Share.tsx b/src/icons/Share.tsx deleted file mode 100644 index 42be36388..000000000 --- a/src/icons/Share.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Share: Icon = forwardRef((props, ref) => ( - -)); - -Share.displayName = "Share"; diff --git a/src/icons/ShareFat.tsx b/src/icons/ShareFat.tsx deleted file mode 100644 index 47d890736..000000000 --- a/src/icons/ShareFat.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", - <> - - , - ], -]); - -export const ShareFat: Icon = forwardRef((props, ref) => ( - -)); - -ShareFat.displayName = "ShareFat"; diff --git a/src/icons/ShareNetwork.tsx b/src/icons/ShareNetwork.tsx deleted file mode 100644 index 7eb6f7dab..000000000 --- a/src/icons/ShareNetwork.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", - <> - - , - ], -]); - -export const ShareNetwork: Icon = forwardRef((props, ref) => ( - -)); - -ShareNetwork.displayName = "ShareNetwork"; diff --git a/src/icons/Shield.tsx b/src/icons/Shield.tsx deleted file mode 100644 index 8ce2656e3..000000000 --- a/src/icons/Shield.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", - <> - - , - ], -]); - -export const Shield: Icon = forwardRef((props, ref) => ( - -)); - -Shield.displayName = "Shield"; diff --git a/src/icons/ShieldCheck.tsx b/src/icons/ShieldCheck.tsx deleted file mode 100644 index dd6e00d57..000000000 --- a/src/icons/ShieldCheck.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", - <> - - , - ], -]); - -export const ShieldCheck: Icon = forwardRef((props, ref) => ( - -)); - -ShieldCheck.displayName = "ShieldCheck"; diff --git a/src/icons/ShieldCheckered.tsx b/src/icons/ShieldCheckered.tsx deleted file mode 100644 index 076d96045..000000000 --- a/src/icons/ShieldCheckered.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", - <> - - , - ], -]); - -export const ShieldCheckered: Icon = forwardRef((props, ref) => ( - -)); - -ShieldCheckered.displayName = "ShieldCheckered"; diff --git a/src/icons/ShieldChevron.tsx b/src/icons/ShieldChevron.tsx deleted file mode 100644 index 648d0a1fc..000000000 --- a/src/icons/ShieldChevron.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", - <> - - , - ], -]); - -export const ShieldChevron: Icon = forwardRef((props, ref) => ( - -)); - -ShieldChevron.displayName = "ShieldChevron"; diff --git a/src/icons/ShieldPlus.tsx b/src/icons/ShieldPlus.tsx deleted file mode 100644 index c570efd4f..000000000 --- a/src/icons/ShieldPlus.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", - <> - - , - ], -]); - -export const ShieldPlus: Icon = forwardRef((props, ref) => ( - -)); - -ShieldPlus.displayName = "ShieldPlus"; diff --git a/src/icons/ShieldSlash.tsx b/src/icons/ShieldSlash.tsx deleted file mode 100644 index e50abc78d..000000000 --- a/src/icons/ShieldSlash.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", - <> - - , - ], -]); - -export const ShieldSlash: Icon = forwardRef((props, ref) => ( - -)); - -ShieldSlash.displayName = "ShieldSlash"; diff --git a/src/icons/ShieldStar.tsx b/src/icons/ShieldStar.tsx deleted file mode 100644 index fe3cf673e..000000000 --- a/src/icons/ShieldStar.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", - <> - - , - ], -]); - -export const ShieldStar: Icon = forwardRef((props, ref) => ( - -)); - -ShieldStar.displayName = "ShieldStar"; diff --git a/src/icons/ShieldWarning.tsx b/src/icons/ShieldWarning.tsx deleted file mode 100644 index c390d37e5..000000000 --- a/src/icons/ShieldWarning.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", - <> - - , - ], -]); - -export const ShieldWarning: Icon = forwardRef((props, ref) => ( - -)); - -ShieldWarning.displayName = "ShieldWarning"; diff --git a/src/icons/ShirtFolded.tsx b/src/icons/ShirtFolded.tsx deleted file mode 100644 index 5073e7b45..000000000 --- a/src/icons/ShirtFolded.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", - <> - - , - ], -]); - -export const ShirtFolded: Icon = forwardRef((props, ref) => ( - -)); - -ShirtFolded.displayName = "ShirtFolded"; diff --git a/src/icons/ShootingStar.tsx b/src/icons/ShootingStar.tsx deleted file mode 100644 index 2c88b05a2..000000000 --- a/src/icons/ShootingStar.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", - <> - - , - ], -]); - -export const ShootingStar: Icon = forwardRef((props, ref) => ( - -)); - -ShootingStar.displayName = "ShootingStar"; diff --git a/src/icons/ShoppingBag.tsx b/src/icons/ShoppingBag.tsx deleted file mode 100644 index 0b75df5f7..000000000 --- a/src/icons/ShoppingBag.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", - <> - - , - ], -]); - -export const ShoppingBag: Icon = forwardRef((props, ref) => ( - -)); - -ShoppingBag.displayName = "ShoppingBag"; diff --git a/src/icons/ShoppingBagOpen.tsx b/src/icons/ShoppingBagOpen.tsx deleted file mode 100644 index f78051603..000000000 --- a/src/icons/ShoppingBagOpen.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", - <> - - , - ], -]); - -export const ShoppingBagOpen: Icon = forwardRef((props, ref) => ( - -)); - -ShoppingBagOpen.displayName = "ShoppingBagOpen"; diff --git a/src/icons/ShoppingCart.tsx b/src/icons/ShoppingCart.tsx deleted file mode 100644 index d41d82f89..000000000 --- a/src/icons/ShoppingCart.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", - <> - - , - ], -]); - -export const ShoppingCart: Icon = forwardRef((props, ref) => ( - -)); - -ShoppingCart.displayName = "ShoppingCart"; diff --git a/src/icons/ShoppingCartSimple.tsx b/src/icons/ShoppingCartSimple.tsx deleted file mode 100644 index 253d3ca3a..000000000 --- a/src/icons/ShoppingCartSimple.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", - <> - - , - ], -]); - -export const ShoppingCartSimple: Icon = forwardRef((props, ref) => ( - -)); - -ShoppingCartSimple.displayName = "ShoppingCartSimple"; diff --git a/src/icons/Shower.tsx b/src/icons/Shower.tsx deleted file mode 100644 index 325f8277c..000000000 --- a/src/icons/Shower.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", - <> - - , - ], -]); - -export const Shower: Icon = forwardRef((props, ref) => ( - -)); - -Shower.displayName = "Shower"; diff --git a/src/icons/Shrimp.tsx b/src/icons/Shrimp.tsx deleted file mode 100644 index e08bc7173..000000000 --- a/src/icons/Shrimp.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", - <> - - , - ], -]); - -export const Shrimp: Icon = forwardRef((props, ref) => ( - -)); - -Shrimp.displayName = "Shrimp"; diff --git a/src/icons/Shuffle.tsx b/src/icons/Shuffle.tsx deleted file mode 100644 index 5474f199e..000000000 --- a/src/icons/Shuffle.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", - <> - - , - ], -]); - -export const Shuffle: Icon = forwardRef((props, ref) => ( - -)); - -Shuffle.displayName = "Shuffle"; diff --git a/src/icons/ShuffleAngular.tsx b/src/icons/ShuffleAngular.tsx deleted file mode 100644 index 49ee5fa27..000000000 --- a/src/icons/ShuffleAngular.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", - <> - - , - ], -]); - -export const ShuffleAngular: Icon = forwardRef((props, ref) => ( - -)); - -ShuffleAngular.displayName = "ShuffleAngular"; diff --git a/src/icons/ShuffleSimple.tsx b/src/icons/ShuffleSimple.tsx deleted file mode 100644 index f53f567d0..000000000 --- a/src/icons/ShuffleSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ShuffleSimple: Icon = forwardRef((props, ref) => ( - -)); - -ShuffleSimple.displayName = "ShuffleSimple"; diff --git a/src/icons/Sidebar.tsx b/src/icons/Sidebar.tsx deleted file mode 100644 index c916c8728..000000000 --- a/src/icons/Sidebar.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Sidebar: Icon = forwardRef((props, ref) => ( - -)); - -Sidebar.displayName = "Sidebar"; diff --git a/src/icons/SidebarSimple.tsx b/src/icons/SidebarSimple.tsx deleted file mode 100644 index fe3643842..000000000 --- a/src/icons/SidebarSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SidebarSimple: Icon = forwardRef((props, ref) => ( - -)); - -SidebarSimple.displayName = "SidebarSimple"; diff --git a/src/icons/Sigma.tsx b/src/icons/Sigma.tsx deleted file mode 100644 index 8c278ad2c..000000000 --- a/src/icons/Sigma.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Sigma: Icon = forwardRef((props, ref) => ( - -)); - -Sigma.displayName = "Sigma"; diff --git a/src/icons/SignIn.tsx b/src/icons/SignIn.tsx deleted file mode 100644 index 4694c1fd9..000000000 --- a/src/icons/SignIn.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SignIn: Icon = forwardRef((props, ref) => ( - -)); - -SignIn.displayName = "SignIn"; diff --git a/src/icons/SignOut.tsx b/src/icons/SignOut.tsx deleted file mode 100644 index 462daf895..000000000 --- a/src/icons/SignOut.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SignOut: Icon = forwardRef((props, ref) => ( - -)); - -SignOut.displayName = "SignOut"; diff --git a/src/icons/Signature.tsx b/src/icons/Signature.tsx deleted file mode 100644 index d51e0fab8..000000000 --- a/src/icons/Signature.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", - <> - - , - ], -]); - -export const Signature: Icon = forwardRef((props, ref) => ( - -)); - -Signature.displayName = "Signature"; diff --git a/src/icons/Signpost.tsx b/src/icons/Signpost.tsx deleted file mode 100644 index ce8e8e697..000000000 --- a/src/icons/Signpost.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", - <> - - , - ], -]); - -export const Signpost: Icon = forwardRef((props, ref) => ( - -)); - -Signpost.displayName = "Signpost"; diff --git a/src/icons/SimCard.tsx b/src/icons/SimCard.tsx deleted file mode 100644 index b8c30c2a9..000000000 --- a/src/icons/SimCard.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SimCard: Icon = forwardRef((props, ref) => ( - -)); - -SimCard.displayName = "SimCard"; diff --git a/src/icons/Siren.tsx b/src/icons/Siren.tsx deleted file mode 100644 index 3435e5c0c..000000000 --- a/src/icons/Siren.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", - <> - - , - ], -]); - -export const Siren: Icon = forwardRef((props, ref) => ( - -)); - -Siren.displayName = "Siren"; diff --git a/src/icons/SketchLogo.tsx b/src/icons/SketchLogo.tsx deleted file mode 100644 index 6624d7106..000000000 --- a/src/icons/SketchLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SketchLogo: Icon = forwardRef((props, ref) => ( - -)); - -SketchLogo.displayName = "SketchLogo"; diff --git a/src/icons/SkipBack.tsx b/src/icons/SkipBack.tsx deleted file mode 100644 index 4bb28bea2..000000000 --- a/src/icons/SkipBack.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", - <> - - , - ], -]); - -export const SkipBack: Icon = forwardRef((props, ref) => ( - -)); - -SkipBack.displayName = "SkipBack"; diff --git a/src/icons/SkipBackCircle.tsx b/src/icons/SkipBackCircle.tsx deleted file mode 100644 index 5fdb7dfb4..000000000 --- a/src/icons/SkipBackCircle.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", - <> - - , - ], -]); - -export const SkipBackCircle: Icon = forwardRef((props, ref) => ( - -)); - -SkipBackCircle.displayName = "SkipBackCircle"; diff --git a/src/icons/SkipForward.tsx b/src/icons/SkipForward.tsx deleted file mode 100644 index 573fbe075..000000000 --- a/src/icons/SkipForward.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", - <> - - , - ], -]); - -export const SkipForward: Icon = forwardRef((props, ref) => ( - -)); - -SkipForward.displayName = "SkipForward"; diff --git a/src/icons/SkipForwardCircle.tsx b/src/icons/SkipForwardCircle.tsx deleted file mode 100644 index 020a07532..000000000 --- a/src/icons/SkipForwardCircle.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", - <> - - , - ], -]); - -export const SkipForwardCircle: Icon = forwardRef((props, ref) => ( - -)); - -SkipForwardCircle.displayName = "SkipForwardCircle"; diff --git a/src/icons/Skull.tsx b/src/icons/Skull.tsx deleted file mode 100644 index ebf2c1eb9..000000000 --- a/src/icons/Skull.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", - <> - - , - ], -]); - -export const Skull: Icon = forwardRef((props, ref) => ( - -)); - -Skull.displayName = "Skull"; diff --git a/src/icons/SlackLogo.tsx b/src/icons/SlackLogo.tsx deleted file mode 100644 index a37df4519..000000000 --- a/src/icons/SlackLogo.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", - <> - - , - ], -]); - -export const SlackLogo: Icon = forwardRef((props, ref) => ( - -)); - -SlackLogo.displayName = "SlackLogo"; diff --git a/src/icons/Sliders.tsx b/src/icons/Sliders.tsx deleted file mode 100644 index efd2fb82b..000000000 --- a/src/icons/Sliders.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", - <> - - , - ], -]); - -export const Sliders: Icon = forwardRef((props, ref) => ( - -)); - -Sliders.displayName = "Sliders"; diff --git a/src/icons/SlidersHorizontal.tsx b/src/icons/SlidersHorizontal.tsx deleted file mode 100644 index 42bc2f3b4..000000000 --- a/src/icons/SlidersHorizontal.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", - <> - - , - ], -]); - -export const SlidersHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -SlidersHorizontal.displayName = "SlidersHorizontal"; diff --git a/src/icons/Slideshow.tsx b/src/icons/Slideshow.tsx deleted file mode 100644 index abeaa3ba6..000000000 --- a/src/icons/Slideshow.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", - <> - - , - ], -]); - -export const Slideshow: Icon = forwardRef((props, ref) => ( - -)); - -Slideshow.displayName = "Slideshow"; diff --git a/src/icons/Smiley.tsx b/src/icons/Smiley.tsx deleted file mode 100644 index fcfdda260..000000000 --- a/src/icons/Smiley.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Smiley: Icon = forwardRef((props, ref) => ( - -)); - -Smiley.displayName = "Smiley"; diff --git a/src/icons/SmileyAngry.tsx b/src/icons/SmileyAngry.tsx deleted file mode 100644 index 954fe3263..000000000 --- a/src/icons/SmileyAngry.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SmileyAngry: Icon = forwardRef((props, ref) => ( - -)); - -SmileyAngry.displayName = "SmileyAngry"; diff --git a/src/icons/SmileyBlank.tsx b/src/icons/SmileyBlank.tsx deleted file mode 100644 index 853ff6f49..000000000 --- a/src/icons/SmileyBlank.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SmileyBlank: Icon = forwardRef((props, ref) => ( - -)); - -SmileyBlank.displayName = "SmileyBlank"; diff --git a/src/icons/SmileyMeh.tsx b/src/icons/SmileyMeh.tsx deleted file mode 100644 index 3ebbb3b83..000000000 --- a/src/icons/SmileyMeh.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SmileyMeh: Icon = forwardRef((props, ref) => ( - -)); - -SmileyMeh.displayName = "SmileyMeh"; diff --git a/src/icons/SmileyNervous.tsx b/src/icons/SmileyNervous.tsx deleted file mode 100644 index ec8accef1..000000000 --- a/src/icons/SmileyNervous.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SmileyNervous: Icon = forwardRef((props, ref) => ( - -)); - -SmileyNervous.displayName = "SmileyNervous"; diff --git a/src/icons/SmileySad.tsx b/src/icons/SmileySad.tsx deleted file mode 100644 index 984beaaa9..000000000 --- a/src/icons/SmileySad.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SmileySad: Icon = forwardRef((props, ref) => ( - -)); - -SmileySad.displayName = "SmileySad"; diff --git a/src/icons/SmileySticker.tsx b/src/icons/SmileySticker.tsx deleted file mode 100644 index ba9f77999..000000000 --- a/src/icons/SmileySticker.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", - <> - - , - ], -]); - -export const SmileySticker: Icon = forwardRef((props, ref) => ( - -)); - -SmileySticker.displayName = "SmileySticker"; diff --git a/src/icons/SmileyWink.tsx b/src/icons/SmileyWink.tsx deleted file mode 100644 index 03fc31f81..000000000 --- a/src/icons/SmileyWink.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SmileyWink: Icon = forwardRef((props, ref) => ( - -)); - -SmileyWink.displayName = "SmileyWink"; diff --git a/src/icons/SmileyXEyes.tsx b/src/icons/SmileyXEyes.tsx deleted file mode 100644 index 1761b4fc9..000000000 --- a/src/icons/SmileyXEyes.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SmileyXEyes: Icon = forwardRef((props, ref) => ( - -)); - -SmileyXEyes.displayName = "SmileyXEyes"; diff --git a/src/icons/SnapchatLogo.tsx b/src/icons/SnapchatLogo.tsx deleted file mode 100644 index 6ed951112..000000000 --- a/src/icons/SnapchatLogo.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", - <> - - , - ], -]); - -export const SnapchatLogo: Icon = forwardRef((props, ref) => ( - -)); - -SnapchatLogo.displayName = "SnapchatLogo"; diff --git a/src/icons/Sneaker.tsx b/src/icons/Sneaker.tsx deleted file mode 100644 index f631a525f..000000000 --- a/src/icons/Sneaker.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", - <> - - , - ], -]); - -export const Sneaker: Icon = forwardRef((props, ref) => ( - -)); - -Sneaker.displayName = "Sneaker"; diff --git a/src/icons/SneakerMove.tsx b/src/icons/SneakerMove.tsx deleted file mode 100644 index 28c507ea8..000000000 --- a/src/icons/SneakerMove.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", - <> - - , - ], -]); - -export const SneakerMove: Icon = forwardRef((props, ref) => ( - -)); - -SneakerMove.displayName = "SneakerMove"; diff --git a/src/icons/Snowflake.tsx b/src/icons/Snowflake.tsx deleted file mode 100644 index 767086741..000000000 --- a/src/icons/Snowflake.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", - <> - - , - ], -]); - -export const Snowflake: Icon = forwardRef((props, ref) => ( - -)); - -Snowflake.displayName = "Snowflake"; diff --git a/src/icons/SoccerBall.tsx b/src/icons/SoccerBall.tsx deleted file mode 100644 index f2af0ce83..000000000 --- a/src/icons/SoccerBall.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", - <> - - , - ], -]); - -export const SoccerBall: Icon = forwardRef((props, ref) => ( - -)); - -SoccerBall.displayName = "SoccerBall"; diff --git a/src/icons/SortAscending.tsx b/src/icons/SortAscending.tsx deleted file mode 100644 index c9440710e..000000000 --- a/src/icons/SortAscending.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SortAscending: Icon = forwardRef((props, ref) => ( - -)); - -SortAscending.displayName = "SortAscending"; diff --git a/src/icons/SortDescending.tsx b/src/icons/SortDescending.tsx deleted file mode 100644 index 16baa1816..000000000 --- a/src/icons/SortDescending.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SortDescending: Icon = forwardRef((props, ref) => ( - -)); - -SortDescending.displayName = "SortDescending"; diff --git a/src/icons/SoundcloudLogo.tsx b/src/icons/SoundcloudLogo.tsx deleted file mode 100644 index a4119969d..000000000 --- a/src/icons/SoundcloudLogo.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", - <> - - , - ], -]); - -export const SoundcloudLogo: Icon = forwardRef((props, ref) => ( - -)); - -SoundcloudLogo.displayName = "SoundcloudLogo"; diff --git a/src/icons/Spade.tsx b/src/icons/Spade.tsx deleted file mode 100644 index c10a79657..000000000 --- a/src/icons/Spade.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", - <> - - , - ], -]); - -export const Spade: Icon = forwardRef((props, ref) => ( - -)); - -Spade.displayName = "Spade"; diff --git a/src/icons/Sparkle.tsx b/src/icons/Sparkle.tsx deleted file mode 100644 index 9ded4273e..000000000 --- a/src/icons/Sparkle.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", - <> - - , - ], -]); - -export const Sparkle: Icon = forwardRef((props, ref) => ( - -)); - -Sparkle.displayName = "Sparkle"; diff --git a/src/icons/SpeakerHifi.tsx b/src/icons/SpeakerHifi.tsx deleted file mode 100644 index 2a8412024..000000000 --- a/src/icons/SpeakerHifi.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", - <> - - , - ], -]); - -export const SpeakerHifi: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerHifi.displayName = "SpeakerHifi"; diff --git a/src/icons/SpeakerHigh.tsx b/src/icons/SpeakerHigh.tsx deleted file mode 100644 index 40983c95b..000000000 --- a/src/icons/SpeakerHigh.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SpeakerHigh: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerHigh.displayName = "SpeakerHigh"; diff --git a/src/icons/SpeakerLow.tsx b/src/icons/SpeakerLow.tsx deleted file mode 100644 index 69742f72a..000000000 --- a/src/icons/SpeakerLow.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SpeakerLow: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerLow.displayName = "SpeakerLow"; diff --git a/src/icons/SpeakerNone.tsx b/src/icons/SpeakerNone.tsx deleted file mode 100644 index 53e9b1a68..000000000 --- a/src/icons/SpeakerNone.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SpeakerNone: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerNone.displayName = "SpeakerNone"; diff --git a/src/icons/SpeakerSimpleHigh.tsx b/src/icons/SpeakerSimpleHigh.tsx deleted file mode 100644 index 1603ec008..000000000 --- a/src/icons/SpeakerSimpleHigh.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", - <> - - , - ], -]); - -export const SpeakerSimpleHigh: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerSimpleHigh.displayName = "SpeakerSimpleHigh"; diff --git a/src/icons/SpeakerSimpleLow.tsx b/src/icons/SpeakerSimpleLow.tsx deleted file mode 100644 index 51f09a385..000000000 --- a/src/icons/SpeakerSimpleLow.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", - <> - - , - ], -]); - -export const SpeakerSimpleLow: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerSimpleLow.displayName = "SpeakerSimpleLow"; diff --git a/src/icons/SpeakerSimpleNone.tsx b/src/icons/SpeakerSimpleNone.tsx deleted file mode 100644 index 5c5dbd455..000000000 --- a/src/icons/SpeakerSimpleNone.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", - <> - - , - ], -]); - -export const SpeakerSimpleNone: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerSimpleNone.displayName = "SpeakerSimpleNone"; diff --git a/src/icons/SpeakerSimpleSlash.tsx b/src/icons/SpeakerSimpleSlash.tsx deleted file mode 100644 index b139a4948..000000000 --- a/src/icons/SpeakerSimpleSlash.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", - <> - - , - ], -]); - -export const SpeakerSimpleSlash: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerSimpleSlash.displayName = "SpeakerSimpleSlash"; diff --git a/src/icons/SpeakerSimpleX.tsx b/src/icons/SpeakerSimpleX.tsx deleted file mode 100644 index e5d3e2136..000000000 --- a/src/icons/SpeakerSimpleX.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const SpeakerSimpleX: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerSimpleX.displayName = "SpeakerSimpleX"; diff --git a/src/icons/SpeakerSlash.tsx b/src/icons/SpeakerSlash.tsx deleted file mode 100644 index c2778a33c..000000000 --- a/src/icons/SpeakerSlash.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SpeakerSlash: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerSlash.displayName = "SpeakerSlash"; diff --git a/src/icons/SpeakerX.tsx b/src/icons/SpeakerX.tsx deleted file mode 100644 index 24ac9e681..000000000 --- a/src/icons/SpeakerX.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", - <> - - , - ], -]); - -export const SpeakerX: Icon = forwardRef((props, ref) => ( - -)); - -SpeakerX.displayName = "SpeakerX"; diff --git a/src/icons/Spinner.tsx b/src/icons/Spinner.tsx deleted file mode 100644 index 9fe170f08..000000000 --- a/src/icons/Spinner.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Spinner: Icon = forwardRef((props, ref) => ( - -)); - -Spinner.displayName = "Spinner"; diff --git a/src/icons/SpinnerGap.tsx b/src/icons/SpinnerGap.tsx deleted file mode 100644 index a69b668e7..000000000 --- a/src/icons/SpinnerGap.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SpinnerGap: Icon = forwardRef((props, ref) => ( - -)); - -SpinnerGap.displayName = "SpinnerGap"; diff --git a/src/icons/Spiral.tsx b/src/icons/Spiral.tsx deleted file mode 100644 index 9ae59a52e..000000000 --- a/src/icons/Spiral.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", - <> - - , - ], -]); - -export const Spiral: Icon = forwardRef((props, ref) => ( - -)); - -Spiral.displayName = "Spiral"; diff --git a/src/icons/SplitHorizontal.tsx b/src/icons/SplitHorizontal.tsx deleted file mode 100644 index c57856e02..000000000 --- a/src/icons/SplitHorizontal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SplitHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -SplitHorizontal.displayName = "SplitHorizontal"; diff --git a/src/icons/SplitVertical.tsx b/src/icons/SplitVertical.tsx deleted file mode 100644 index 0ba472772..000000000 --- a/src/icons/SplitVertical.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SplitVertical: Icon = forwardRef((props, ref) => ( - -)); - -SplitVertical.displayName = "SplitVertical"; diff --git a/src/icons/SpotifyLogo.tsx b/src/icons/SpotifyLogo.tsx deleted file mode 100644 index 7012f21e6..000000000 --- a/src/icons/SpotifyLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SpotifyLogo: Icon = forwardRef((props, ref) => ( - -)); - -SpotifyLogo.displayName = "SpotifyLogo"; diff --git a/src/icons/Square.tsx b/src/icons/Square.tsx deleted file mode 100644 index f6275fb38..000000000 --- a/src/icons/Square.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", - <> - - , - ], -]); - -export const Square: Icon = forwardRef((props, ref) => ( - -)); - -Square.displayName = "Square"; diff --git a/src/icons/SquareHalf.tsx b/src/icons/SquareHalf.tsx deleted file mode 100644 index 90f67d9f1..000000000 --- a/src/icons/SquareHalf.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", - <> - - , - ], -]); - -export const SquareHalf: Icon = forwardRef((props, ref) => ( - -)); - -SquareHalf.displayName = "SquareHalf"; diff --git a/src/icons/SquareHalfBottom.tsx b/src/icons/SquareHalfBottom.tsx deleted file mode 100644 index fbbdb3f6f..000000000 --- a/src/icons/SquareHalfBottom.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SquareHalfBottom: Icon = forwardRef((props, ref) => ( - -)); - -SquareHalfBottom.displayName = "SquareHalfBottom"; diff --git a/src/icons/SquareLogo.tsx b/src/icons/SquareLogo.tsx deleted file mode 100644 index 03dae89b2..000000000 --- a/src/icons/SquareLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SquareLogo: Icon = forwardRef((props, ref) => ( - -)); - -SquareLogo.displayName = "SquareLogo"; diff --git a/src/icons/SquareSplitHorizontal.tsx b/src/icons/SquareSplitHorizontal.tsx deleted file mode 100644 index 150055b9d..000000000 --- a/src/icons/SquareSplitHorizontal.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", - <> - - , - ], -]); - -export const SquareSplitHorizontal: Icon = forwardRef((props, ref) => ( - -)); - -SquareSplitHorizontal.displayName = "SquareSplitHorizontal"; diff --git a/src/icons/SquareSplitVertical.tsx b/src/icons/SquareSplitVertical.tsx deleted file mode 100644 index bf8d1e910..000000000 --- a/src/icons/SquareSplitVertical.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", - <> - - , - ], -]); - -export const SquareSplitVertical: Icon = forwardRef((props, ref) => ( - -)); - -SquareSplitVertical.displayName = "SquareSplitVertical"; diff --git a/src/icons/SquaresFour.tsx b/src/icons/SquaresFour.tsx deleted file mode 100644 index 9c93b4584..000000000 --- a/src/icons/SquaresFour.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", - <> - - , - ], -]); - -export const SquaresFour: Icon = forwardRef((props, ref) => ( - -)); - -SquaresFour.displayName = "SquaresFour"; diff --git a/src/icons/Stack.tsx b/src/icons/Stack.tsx deleted file mode 100644 index 78682a586..000000000 --- a/src/icons/Stack.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", - <> - - , - ], -]); - -export const Stack: Icon = forwardRef((props, ref) => ( - -)); - -Stack.displayName = "Stack"; diff --git a/src/icons/StackOverflowLogo.tsx b/src/icons/StackOverflowLogo.tsx deleted file mode 100644 index 001ab8047..000000000 --- a/src/icons/StackOverflowLogo.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const StackOverflowLogo: Icon = forwardRef((props, ref) => ( - -)); - -StackOverflowLogo.displayName = "StackOverflowLogo"; diff --git a/src/icons/StackSimple.tsx b/src/icons/StackSimple.tsx deleted file mode 100644 index a77642023..000000000 --- a/src/icons/StackSimple.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", - <> - - , - ], -]); - -export const StackSimple: Icon = forwardRef((props, ref) => ( - -)); - -StackSimple.displayName = "StackSimple"; diff --git a/src/icons/Stairs.tsx b/src/icons/Stairs.tsx deleted file mode 100644 index 74fef21c4..000000000 --- a/src/icons/Stairs.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", - <> - - , - ], -]); - -export const Stairs: Icon = forwardRef((props, ref) => ( - -)); - -Stairs.displayName = "Stairs"; diff --git a/src/icons/Stamp.tsx b/src/icons/Stamp.tsx deleted file mode 100644 index f7ec81b80..000000000 --- a/src/icons/Stamp.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", - <> - - , - ], -]); - -export const Stamp: Icon = forwardRef((props, ref) => ( - -)); - -Stamp.displayName = "Stamp"; diff --git a/src/icons/Star.tsx b/src/icons/Star.tsx deleted file mode 100644 index 0a2d94783..000000000 --- a/src/icons/Star.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", - <> - - , - ], -]); - -export const Star: Icon = forwardRef((props, ref) => ( - -)); - -Star.displayName = "Star"; diff --git a/src/icons/StarAndCrescent.tsx b/src/icons/StarAndCrescent.tsx deleted file mode 100644 index 7124a06d1..000000000 --- a/src/icons/StarAndCrescent.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", - <> - - , - ], -]); - -export const StarAndCrescent: Icon = forwardRef((props, ref) => ( - -)); - -StarAndCrescent.displayName = "StarAndCrescent"; diff --git a/src/icons/StarFour.tsx b/src/icons/StarFour.tsx deleted file mode 100644 index 85e9cb772..000000000 --- a/src/icons/StarFour.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", - <> - - , - ], -]); - -export const StarFour: Icon = forwardRef((props, ref) => ( - -)); - -StarFour.displayName = "StarFour"; diff --git a/src/icons/StarHalf.tsx b/src/icons/StarHalf.tsx deleted file mode 100644 index c224dade1..000000000 --- a/src/icons/StarHalf.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", - <> - - , - ], -]); - -export const StarHalf: Icon = forwardRef((props, ref) => ( - -)); - -StarHalf.displayName = "StarHalf"; diff --git a/src/icons/StarOfDavid.tsx b/src/icons/StarOfDavid.tsx deleted file mode 100644 index c69e16892..000000000 --- a/src/icons/StarOfDavid.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", - <> - - , - ], -]); - -export const StarOfDavid: Icon = forwardRef((props, ref) => ( - -)); - -StarOfDavid.displayName = "StarOfDavid"; diff --git a/src/icons/SteeringWheel.tsx b/src/icons/SteeringWheel.tsx deleted file mode 100644 index 7970eef5c..000000000 --- a/src/icons/SteeringWheel.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", - <> - - , - ], -]); - -export const SteeringWheel: Icon = forwardRef((props, ref) => ( - -)); - -SteeringWheel.displayName = "SteeringWheel"; diff --git a/src/icons/Steps.tsx b/src/icons/Steps.tsx deleted file mode 100644 index 559357d8e..000000000 --- a/src/icons/Steps.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Steps: Icon = forwardRef((props, ref) => ( - -)); - -Steps.displayName = "Steps"; diff --git a/src/icons/Stethoscope.tsx b/src/icons/Stethoscope.tsx deleted file mode 100644 index dbbb175e8..000000000 --- a/src/icons/Stethoscope.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Stethoscope: Icon = forwardRef((props, ref) => ( - -)); - -Stethoscope.displayName = "Stethoscope"; diff --git a/src/icons/Sticker.tsx b/src/icons/Sticker.tsx deleted file mode 100644 index af5609df9..000000000 --- a/src/icons/Sticker.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", - <> - - , - ], -]); - -export const Sticker: Icon = forwardRef((props, ref) => ( - -)); - -Sticker.displayName = "Sticker"; diff --git a/src/icons/Stool.tsx b/src/icons/Stool.tsx deleted file mode 100644 index 3dd7c753d..000000000 --- a/src/icons/Stool.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", - <> - - , - ], -]); - -export const Stool: Icon = forwardRef((props, ref) => ( - -)); - -Stool.displayName = "Stool"; diff --git a/src/icons/Stop.tsx b/src/icons/Stop.tsx deleted file mode 100644 index c98a8950f..000000000 --- a/src/icons/Stop.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", - <> - - , - ], -]); - -export const Stop: Icon = forwardRef((props, ref) => ( - -)); - -Stop.displayName = "Stop"; diff --git a/src/icons/StopCircle.tsx b/src/icons/StopCircle.tsx deleted file mode 100644 index e3400c294..000000000 --- a/src/icons/StopCircle.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", - <> - - , - ], -]); - -export const StopCircle: Icon = forwardRef((props, ref) => ( - -)); - -StopCircle.displayName = "StopCircle"; diff --git a/src/icons/Storefront.tsx b/src/icons/Storefront.tsx deleted file mode 100644 index f9c0f5fe4..000000000 --- a/src/icons/Storefront.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", - <> - - , - ], -]); - -export const Storefront: Icon = forwardRef((props, ref) => ( - -)); - -Storefront.displayName = "Storefront"; diff --git a/src/icons/Strategy.tsx b/src/icons/Strategy.tsx deleted file mode 100644 index c31949645..000000000 --- a/src/icons/Strategy.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Strategy: Icon = forwardRef((props, ref) => ( - -)); - -Strategy.displayName = "Strategy"; diff --git a/src/icons/StripeLogo.tsx b/src/icons/StripeLogo.tsx deleted file mode 100644 index c615aebe9..000000000 --- a/src/icons/StripeLogo.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", - <> - - , - ], -]); - -export const StripeLogo: Icon = forwardRef((props, ref) => ( - -)); - -StripeLogo.displayName = "StripeLogo"; diff --git a/src/icons/Student.tsx b/src/icons/Student.tsx deleted file mode 100644 index c1c4ff5bd..000000000 --- a/src/icons/Student.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Student: Icon = forwardRef((props, ref) => ( - -)); - -Student.displayName = "Student"; diff --git a/src/icons/Subtitles.tsx b/src/icons/Subtitles.tsx deleted file mode 100644 index 8b27a4136..000000000 --- a/src/icons/Subtitles.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", - <> - - , - ], -]); - -export const Subtitles: Icon = forwardRef((props, ref) => ( - -)); - -Subtitles.displayName = "Subtitles"; diff --git a/src/icons/Subtract.tsx b/src/icons/Subtract.tsx deleted file mode 100644 index d7786985a..000000000 --- a/src/icons/Subtract.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", - <> - - , - ], -]); - -export const Subtract: Icon = forwardRef((props, ref) => ( - -)); - -Subtract.displayName = "Subtract"; diff --git a/src/icons/SubtractSquare.tsx b/src/icons/SubtractSquare.tsx deleted file mode 100644 index 3f657adca..000000000 --- a/src/icons/SubtractSquare.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SubtractSquare: Icon = forwardRef((props, ref) => ( - -)); - -SubtractSquare.displayName = "SubtractSquare"; diff --git a/src/icons/Suitcase.tsx b/src/icons/Suitcase.tsx deleted file mode 100644 index 8076e7c7e..000000000 --- a/src/icons/Suitcase.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", - <> - - , - ], -]); - -export const Suitcase: Icon = forwardRef((props, ref) => ( - -)); - -Suitcase.displayName = "Suitcase"; diff --git a/src/icons/SuitcaseRolling.tsx b/src/icons/SuitcaseRolling.tsx deleted file mode 100644 index 3deadd3f6..000000000 --- a/src/icons/SuitcaseRolling.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", - <> - - , - ], -]); - -export const SuitcaseRolling: Icon = forwardRef((props, ref) => ( - -)); - -SuitcaseRolling.displayName = "SuitcaseRolling"; diff --git a/src/icons/SuitcaseSimple.tsx b/src/icons/SuitcaseSimple.tsx deleted file mode 100644 index c8daca942..000000000 --- a/src/icons/SuitcaseSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SuitcaseSimple: Icon = forwardRef((props, ref) => ( - -)); - -SuitcaseSimple.displayName = "SuitcaseSimple"; diff --git a/src/icons/Sun.tsx b/src/icons/Sun.tsx deleted file mode 100644 index 3b279e240..000000000 --- a/src/icons/Sun.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Sun: Icon = forwardRef((props, ref) => ( - -)); - -Sun.displayName = "Sun"; diff --git a/src/icons/SunDim.tsx b/src/icons/SunDim.tsx deleted file mode 100644 index ac73c8938..000000000 --- a/src/icons/SunDim.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const SunDim: Icon = forwardRef((props, ref) => ( - -)); - -SunDim.displayName = "SunDim"; diff --git a/src/icons/SunHorizon.tsx b/src/icons/SunHorizon.tsx deleted file mode 100644 index 9f25456f9..000000000 --- a/src/icons/SunHorizon.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", - <> - - , - ], -]); - -export const SunHorizon: Icon = forwardRef((props, ref) => ( - -)); - -SunHorizon.displayName = "SunHorizon"; diff --git a/src/icons/Sunglasses.tsx b/src/icons/Sunglasses.tsx deleted file mode 100644 index aeb50370e..000000000 --- a/src/icons/Sunglasses.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", - <> - - , - ], -]); - -export const Sunglasses: Icon = forwardRef((props, ref) => ( - -)); - -Sunglasses.displayName = "Sunglasses"; diff --git a/src/icons/Swap.tsx b/src/icons/Swap.tsx deleted file mode 100644 index 31697e2f0..000000000 --- a/src/icons/Swap.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", - <> - - , - ], -]); - -export const Swap: Icon = forwardRef((props, ref) => ( - -)); - -Swap.displayName = "Swap"; diff --git a/src/icons/Swatches.tsx b/src/icons/Swatches.tsx deleted file mode 100644 index 8274a62f5..000000000 --- a/src/icons/Swatches.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", - <> - - , - ], -]); - -export const Swatches: Icon = forwardRef((props, ref) => ( - -)); - -Swatches.displayName = "Swatches"; diff --git a/src/icons/SwimmingPool.tsx b/src/icons/SwimmingPool.tsx deleted file mode 100644 index cb2a7a75c..000000000 --- a/src/icons/SwimmingPool.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", - <> - - , - ], -]); - -export const SwimmingPool: Icon = forwardRef((props, ref) => ( - -)); - -SwimmingPool.displayName = "SwimmingPool"; diff --git a/src/icons/Sword.tsx b/src/icons/Sword.tsx deleted file mode 100644 index 530595d4c..000000000 --- a/src/icons/Sword.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", - <> - - , - ], -]); - -export const Sword: Icon = forwardRef((props, ref) => ( - -)); - -Sword.displayName = "Sword"; diff --git a/src/icons/Synagogue.tsx b/src/icons/Synagogue.tsx deleted file mode 100644 index fae41e6c8..000000000 --- a/src/icons/Synagogue.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", - <> - - , - ], -]); - -export const Synagogue: Icon = forwardRef((props, ref) => ( - -)); - -Synagogue.displayName = "Synagogue"; diff --git a/src/icons/Syringe.tsx b/src/icons/Syringe.tsx deleted file mode 100644 index d4137ba6d..000000000 --- a/src/icons/Syringe.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", - <> - - , - ], -]); - -export const Syringe: Icon = forwardRef((props, ref) => ( - -)); - -Syringe.displayName = "Syringe"; diff --git a/src/icons/TShirt.tsx b/src/icons/TShirt.tsx deleted file mode 100644 index 7dfa46e71..000000000 --- a/src/icons/TShirt.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", - <> - - , - ], -]); - -export const TShirt: Icon = forwardRef((props, ref) => ( - -)); - -TShirt.displayName = "TShirt"; diff --git a/src/icons/Table.tsx b/src/icons/Table.tsx deleted file mode 100644 index bcbf3022b..000000000 --- a/src/icons/Table.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Table: Icon = forwardRef((props, ref) => ( - -)); - -Table.displayName = "Table"; diff --git a/src/icons/Tabs.tsx b/src/icons/Tabs.tsx deleted file mode 100644 index 12884c69c..000000000 --- a/src/icons/Tabs.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", - <> - - , - ], -]); - -export const Tabs: Icon = forwardRef((props, ref) => ( - -)); - -Tabs.displayName = "Tabs"; diff --git a/src/icons/Tag.tsx b/src/icons/Tag.tsx deleted file mode 100644 index 13b222be8..000000000 --- a/src/icons/Tag.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", - <> - - , - ], -]); - -export const Tag: Icon = forwardRef((props, ref) => ( - -)); - -Tag.displayName = "Tag"; diff --git a/src/icons/TagChevron.tsx b/src/icons/TagChevron.tsx deleted file mode 100644 index 4ece9f97c..000000000 --- a/src/icons/TagChevron.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", - <> - - , - ], -]); - -export const TagChevron: Icon = forwardRef((props, ref) => ( - -)); - -TagChevron.displayName = "TagChevron"; diff --git a/src/icons/TagSimple.tsx b/src/icons/TagSimple.tsx deleted file mode 100644 index fe96af6c4..000000000 --- a/src/icons/TagSimple.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", - <> - - , - ], -]); - -export const TagSimple: Icon = forwardRef((props, ref) => ( - -)); - -TagSimple.displayName = "TagSimple"; diff --git a/src/icons/Target.tsx b/src/icons/Target.tsx deleted file mode 100644 index b76497476..000000000 --- a/src/icons/Target.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Target: Icon = forwardRef((props, ref) => ( - -)); - -Target.displayName = "Target"; diff --git a/src/icons/Taxi.tsx b/src/icons/Taxi.tsx deleted file mode 100644 index 1b2d89288..000000000 --- a/src/icons/Taxi.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", - <> - - , - ], -]); - -export const Taxi: Icon = forwardRef((props, ref) => ( - -)); - -Taxi.displayName = "Taxi"; diff --git a/src/icons/TelegramLogo.tsx b/src/icons/TelegramLogo.tsx deleted file mode 100644 index 1e89b4f83..000000000 --- a/src/icons/TelegramLogo.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", - <> - - , - ], -]); - -export const TelegramLogo: Icon = forwardRef((props, ref) => ( - -)); - -TelegramLogo.displayName = "TelegramLogo"; diff --git a/src/icons/Television.tsx b/src/icons/Television.tsx deleted file mode 100644 index c3cf6c5c5..000000000 --- a/src/icons/Television.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Television: Icon = forwardRef((props, ref) => ( - -)); - -Television.displayName = "Television"; diff --git a/src/icons/TelevisionSimple.tsx b/src/icons/TelevisionSimple.tsx deleted file mode 100644 index ab354aab9..000000000 --- a/src/icons/TelevisionSimple.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", - <> - - , - ], -]); - -export const TelevisionSimple: Icon = forwardRef((props, ref) => ( - -)); - -TelevisionSimple.displayName = "TelevisionSimple"; diff --git a/src/icons/TennisBall.tsx b/src/icons/TennisBall.tsx deleted file mode 100644 index dd4439c1e..000000000 --- a/src/icons/TennisBall.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", - <> - - , - ], -]); - -export const TennisBall: Icon = forwardRef((props, ref) => ( - -)); - -TennisBall.displayName = "TennisBall"; diff --git a/src/icons/Tent.tsx b/src/icons/Tent.tsx deleted file mode 100644 index cd761c90f..000000000 --- a/src/icons/Tent.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Tent: Icon = forwardRef((props, ref) => ( - -)); - -Tent.displayName = "Tent"; diff --git a/src/icons/Terminal.tsx b/src/icons/Terminal.tsx deleted file mode 100644 index fa1ca21d6..000000000 --- a/src/icons/Terminal.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Terminal: Icon = forwardRef((props, ref) => ( - -)); - -Terminal.displayName = "Terminal"; diff --git a/src/icons/TerminalWindow.tsx b/src/icons/TerminalWindow.tsx deleted file mode 100644 index e1f98c764..000000000 --- a/src/icons/TerminalWindow.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", - <> - - , - ], -]); - -export const TerminalWindow: Icon = forwardRef((props, ref) => ( - -)); - -TerminalWindow.displayName = "TerminalWindow"; diff --git a/src/icons/TestTube.tsx b/src/icons/TestTube.tsx deleted file mode 100644 index afd6feb0a..000000000 --- a/src/icons/TestTube.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", - <> - - , - ], -]); - -export const TestTube: Icon = forwardRef((props, ref) => ( - -)); - -TestTube.displayName = "TestTube"; diff --git a/src/icons/TextAUnderline.tsx b/src/icons/TextAUnderline.tsx deleted file mode 100644 index 27adbc421..000000000 --- a/src/icons/TextAUnderline.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextAUnderline: Icon = forwardRef((props, ref) => ( - -)); - -TextAUnderline.displayName = "TextAUnderline"; diff --git a/src/icons/TextAa.tsx b/src/icons/TextAa.tsx deleted file mode 100644 index 1865184ad..000000000 --- a/src/icons/TextAa.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", - <> - - , - ], -]); - -export const TextAa: Icon = forwardRef((props, ref) => ( - -)); - -TextAa.displayName = "TextAa"; diff --git a/src/icons/TextAlignCenter.tsx b/src/icons/TextAlignCenter.tsx deleted file mode 100644 index e33e95496..000000000 --- a/src/icons/TextAlignCenter.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextAlignCenter: Icon = forwardRef((props, ref) => ( - -)); - -TextAlignCenter.displayName = "TextAlignCenter"; diff --git a/src/icons/TextAlignJustify.tsx b/src/icons/TextAlignJustify.tsx deleted file mode 100644 index 5c003c885..000000000 --- a/src/icons/TextAlignJustify.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextAlignJustify: Icon = forwardRef((props, ref) => ( - -)); - -TextAlignJustify.displayName = "TextAlignJustify"; diff --git a/src/icons/TextAlignLeft.tsx b/src/icons/TextAlignLeft.tsx deleted file mode 100644 index 02cceeb47..000000000 --- a/src/icons/TextAlignLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextAlignLeft: Icon = forwardRef((props, ref) => ( - -)); - -TextAlignLeft.displayName = "TextAlignLeft"; diff --git a/src/icons/TextAlignRight.tsx b/src/icons/TextAlignRight.tsx deleted file mode 100644 index fdbf5fe9e..000000000 --- a/src/icons/TextAlignRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextAlignRight: Icon = forwardRef((props, ref) => ( - -)); - -TextAlignRight.displayName = "TextAlignRight"; diff --git a/src/icons/TextB.tsx b/src/icons/TextB.tsx deleted file mode 100644 index 2fd3bc952..000000000 --- a/src/icons/TextB.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", - <> - - , - ], -]); - -export const TextB: Icon = forwardRef((props, ref) => ( - -)); - -TextB.displayName = "TextB"; diff --git a/src/icons/TextColumns.tsx b/src/icons/TextColumns.tsx deleted file mode 100644 index add30d4c5..000000000 --- a/src/icons/TextColumns.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextColumns: Icon = forwardRef((props, ref) => ( - -)); - -TextColumns.displayName = "TextColumns"; diff --git a/src/icons/TextH.tsx b/src/icons/TextH.tsx deleted file mode 100644 index 3963852fc..000000000 --- a/src/icons/TextH.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextH: Icon = forwardRef((props, ref) => ( - -)); - -TextH.displayName = "TextH"; diff --git a/src/icons/TextHFive.tsx b/src/icons/TextHFive.tsx deleted file mode 100644 index 67ecc0e9e..000000000 --- a/src/icons/TextHFive.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", - <> - - , - ], -]); - -export const TextHFive: Icon = forwardRef((props, ref) => ( - -)); - -TextHFive.displayName = "TextHFive"; diff --git a/src/icons/TextHFour.tsx b/src/icons/TextHFour.tsx deleted file mode 100644 index fe946af2a..000000000 --- a/src/icons/TextHFour.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", - <> - - , - ], -]); - -export const TextHFour: Icon = forwardRef((props, ref) => ( - -)); - -TextHFour.displayName = "TextHFour"; diff --git a/src/icons/TextHOne.tsx b/src/icons/TextHOne.tsx deleted file mode 100644 index 53d14b2bf..000000000 --- a/src/icons/TextHOne.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", - <> - - , - ], -]); - -export const TextHOne: Icon = forwardRef((props, ref) => ( - -)); - -TextHOne.displayName = "TextHOne"; diff --git a/src/icons/TextHSix.tsx b/src/icons/TextHSix.tsx deleted file mode 100644 index 62a69484b..000000000 --- a/src/icons/TextHSix.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", - <> - - , - ], -]); - -export const TextHSix: Icon = forwardRef((props, ref) => ( - -)); - -TextHSix.displayName = "TextHSix"; diff --git a/src/icons/TextHThree.tsx b/src/icons/TextHThree.tsx deleted file mode 100644 index 527f07322..000000000 --- a/src/icons/TextHThree.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", - <> - - , - ], -]); - -export const TextHThree: Icon = forwardRef((props, ref) => ( - -)); - -TextHThree.displayName = "TextHThree"; diff --git a/src/icons/TextHTwo.tsx b/src/icons/TextHTwo.tsx deleted file mode 100644 index 120b20c16..000000000 --- a/src/icons/TextHTwo.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", - <> - - , - ], -]); - -export const TextHTwo: Icon = forwardRef((props, ref) => ( - -)); - -TextHTwo.displayName = "TextHTwo"; diff --git a/src/icons/TextIndent.tsx b/src/icons/TextIndent.tsx deleted file mode 100644 index 5d08183bb..000000000 --- a/src/icons/TextIndent.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextIndent: Icon = forwardRef((props, ref) => ( - -)); - -TextIndent.displayName = "TextIndent"; diff --git a/src/icons/TextItalic.tsx b/src/icons/TextItalic.tsx deleted file mode 100644 index a933e6bad..000000000 --- a/src/icons/TextItalic.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextItalic: Icon = forwardRef((props, ref) => ( - -)); - -TextItalic.displayName = "TextItalic"; diff --git a/src/icons/TextOutdent.tsx b/src/icons/TextOutdent.tsx deleted file mode 100644 index 1f3995190..000000000 --- a/src/icons/TextOutdent.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextOutdent: Icon = forwardRef((props, ref) => ( - -)); - -TextOutdent.displayName = "TextOutdent"; diff --git a/src/icons/TextStrikethrough.tsx b/src/icons/TextStrikethrough.tsx deleted file mode 100644 index 93bcb8582..000000000 --- a/src/icons/TextStrikethrough.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", - <> - - , - ], -]); - -export const TextStrikethrough: Icon = forwardRef((props, ref) => ( - -)); - -TextStrikethrough.displayName = "TextStrikethrough"; diff --git a/src/icons/TextT.tsx b/src/icons/TextT.tsx deleted file mode 100644 index feeb1e6fa..000000000 --- a/src/icons/TextT.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextT: Icon = forwardRef((props, ref) => ( - -)); - -TextT.displayName = "TextT"; diff --git a/src/icons/TextUnderline.tsx b/src/icons/TextUnderline.tsx deleted file mode 100644 index 8ae7a3382..000000000 --- a/src/icons/TextUnderline.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TextUnderline: Icon = forwardRef((props, ref) => ( - -)); - -TextUnderline.displayName = "TextUnderline"; diff --git a/src/icons/Textbox.tsx b/src/icons/Textbox.tsx deleted file mode 100644 index 3bf94ae9b..000000000 --- a/src/icons/Textbox.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", - <> - - , - ], -]); - -export const Textbox: Icon = forwardRef((props, ref) => ( - -)); - -Textbox.displayName = "Textbox"; diff --git a/src/icons/Thermometer.tsx b/src/icons/Thermometer.tsx deleted file mode 100644 index 5f023e196..000000000 --- a/src/icons/Thermometer.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", - <> - - , - ], -]); - -export const Thermometer: Icon = forwardRef((props, ref) => ( - -)); - -Thermometer.displayName = "Thermometer"; diff --git a/src/icons/ThermometerCold.tsx b/src/icons/ThermometerCold.tsx deleted file mode 100644 index 02b0351b6..000000000 --- a/src/icons/ThermometerCold.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", - <> - - , - ], -]); - -export const ThermometerCold: Icon = forwardRef((props, ref) => ( - -)); - -ThermometerCold.displayName = "ThermometerCold"; diff --git a/src/icons/ThermometerHot.tsx b/src/icons/ThermometerHot.tsx deleted file mode 100644 index 0a8da171a..000000000 --- a/src/icons/ThermometerHot.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", - <> - - , - ], -]); - -export const ThermometerHot: Icon = forwardRef((props, ref) => ( - -)); - -ThermometerHot.displayName = "ThermometerHot"; diff --git a/src/icons/ThermometerSimple.tsx b/src/icons/ThermometerSimple.tsx deleted file mode 100644 index 5b58f0a64..000000000 --- a/src/icons/ThermometerSimple.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", - <> - - , - ], -]); - -export const ThermometerSimple: Icon = forwardRef((props, ref) => ( - -)); - -ThermometerSimple.displayName = "ThermometerSimple"; diff --git a/src/icons/ThumbsDown.tsx b/src/icons/ThumbsDown.tsx deleted file mode 100644 index 4350e7bb3..000000000 --- a/src/icons/ThumbsDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ThumbsDown: Icon = forwardRef((props, ref) => ( - -)); - -ThumbsDown.displayName = "ThumbsDown"; diff --git a/src/icons/ThumbsUp.tsx b/src/icons/ThumbsUp.tsx deleted file mode 100644 index bb3139d8a..000000000 --- a/src/icons/ThumbsUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ThumbsUp: Icon = forwardRef((props, ref) => ( - -)); - -ThumbsUp.displayName = "ThumbsUp"; diff --git a/src/icons/Ticket.tsx b/src/icons/Ticket.tsx deleted file mode 100644 index fbd57cd9e..000000000 --- a/src/icons/Ticket.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", - <> - - , - ], -]); - -export const Ticket: Icon = forwardRef((props, ref) => ( - -)); - -Ticket.displayName = "Ticket"; diff --git a/src/icons/TidalLogo.tsx b/src/icons/TidalLogo.tsx deleted file mode 100644 index 80f08e6d3..000000000 --- a/src/icons/TidalLogo.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", - <> - - , - ], -]); - -export const TidalLogo: Icon = forwardRef((props, ref) => ( - -)); - -TidalLogo.displayName = "TidalLogo"; diff --git a/src/icons/TiktokLogo.tsx b/src/icons/TiktokLogo.tsx deleted file mode 100644 index 511b6e23d..000000000 --- a/src/icons/TiktokLogo.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", - <> - - , - ], -]); - -export const TiktokLogo: Icon = forwardRef((props, ref) => ( - -)); - -TiktokLogo.displayName = "TiktokLogo"; diff --git a/src/icons/Timer.tsx b/src/icons/Timer.tsx deleted file mode 100644 index a73c93c76..000000000 --- a/src/icons/Timer.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Timer: Icon = forwardRef((props, ref) => ( - -)); - -Timer.displayName = "Timer"; diff --git a/src/icons/Tipi.tsx b/src/icons/Tipi.tsx deleted file mode 100644 index 9e633383f..000000000 --- a/src/icons/Tipi.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Tipi: Icon = forwardRef((props, ref) => ( - -)); - -Tipi.displayName = "Tipi"; diff --git a/src/icons/ToggleLeft.tsx b/src/icons/ToggleLeft.tsx deleted file mode 100644 index 3bc94299f..000000000 --- a/src/icons/ToggleLeft.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ToggleLeft: Icon = forwardRef((props, ref) => ( - -)); - -ToggleLeft.displayName = "ToggleLeft"; diff --git a/src/icons/ToggleRight.tsx b/src/icons/ToggleRight.tsx deleted file mode 100644 index dd906d3d3..000000000 --- a/src/icons/ToggleRight.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const ToggleRight: Icon = forwardRef((props, ref) => ( - -)); - -ToggleRight.displayName = "ToggleRight"; diff --git a/src/icons/Toilet.tsx b/src/icons/Toilet.tsx deleted file mode 100644 index 6e564af05..000000000 --- a/src/icons/Toilet.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", - <> - - , - ], -]); - -export const Toilet: Icon = forwardRef((props, ref) => ( - -)); - -Toilet.displayName = "Toilet"; diff --git a/src/icons/ToiletPaper.tsx b/src/icons/ToiletPaper.tsx deleted file mode 100644 index 965962269..000000000 --- a/src/icons/ToiletPaper.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", - <> - - , - ], -]); - -export const ToiletPaper: Icon = forwardRef((props, ref) => ( - -)); - -ToiletPaper.displayName = "ToiletPaper"; diff --git a/src/icons/Toolbox.tsx b/src/icons/Toolbox.tsx deleted file mode 100644 index fa6276499..000000000 --- a/src/icons/Toolbox.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Toolbox: Icon = forwardRef((props, ref) => ( - -)); - -Toolbox.displayName = "Toolbox"; diff --git a/src/icons/Tooth.tsx b/src/icons/Tooth.tsx deleted file mode 100644 index a35687208..000000000 --- a/src/icons/Tooth.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", - <> - - , - ], -]); - -export const Tooth: Icon = forwardRef((props, ref) => ( - -)); - -Tooth.displayName = "Tooth"; diff --git a/src/icons/Tote.tsx b/src/icons/Tote.tsx deleted file mode 100644 index 6dea8a4ba..000000000 --- a/src/icons/Tote.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", - <> - - , - ], -]); - -export const Tote: Icon = forwardRef((props, ref) => ( - -)); - -Tote.displayName = "Tote"; diff --git a/src/icons/ToteSimple.tsx b/src/icons/ToteSimple.tsx deleted file mode 100644 index f1ebd7f34..000000000 --- a/src/icons/ToteSimple.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", - <> - - , - ], -]); - -export const ToteSimple: Icon = forwardRef((props, ref) => ( - -)); - -ToteSimple.displayName = "ToteSimple"; diff --git a/src/icons/Trademark.tsx b/src/icons/Trademark.tsx deleted file mode 100644 index 1cee7914a..000000000 --- a/src/icons/Trademark.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Trademark: Icon = forwardRef((props, ref) => ( - -)); - -Trademark.displayName = "Trademark"; diff --git a/src/icons/TrademarkRegistered.tsx b/src/icons/TrademarkRegistered.tsx deleted file mode 100644 index d2c085220..000000000 --- a/src/icons/TrademarkRegistered.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TrademarkRegistered: Icon = forwardRef((props, ref) => ( - -)); - -TrademarkRegistered.displayName = "TrademarkRegistered"; diff --git a/src/icons/TrafficCone.tsx b/src/icons/TrafficCone.tsx deleted file mode 100644 index e5a7d1b5c..000000000 --- a/src/icons/TrafficCone.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TrafficCone: Icon = forwardRef((props, ref) => ( - -)); - -TrafficCone.displayName = "TrafficCone"; diff --git a/src/icons/TrafficSign.tsx b/src/icons/TrafficSign.tsx deleted file mode 100644 index 1577fef9c..000000000 --- a/src/icons/TrafficSign.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", - <> - - , - ], -]); - -export const TrafficSign: Icon = forwardRef((props, ref) => ( - -)); - -TrafficSign.displayName = "TrafficSign"; diff --git a/src/icons/TrafficSignal.tsx b/src/icons/TrafficSignal.tsx deleted file mode 100644 index d5b8cb22a..000000000 --- a/src/icons/TrafficSignal.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", - <> - - , - ], -]); - -export const TrafficSignal: Icon = forwardRef((props, ref) => ( - -)); - -TrafficSignal.displayName = "TrafficSignal"; diff --git a/src/icons/Train.tsx b/src/icons/Train.tsx deleted file mode 100644 index 2e2a2f00d..000000000 --- a/src/icons/Train.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Train: Icon = forwardRef((props, ref) => ( - -)); - -Train.displayName = "Train"; diff --git a/src/icons/TrainRegional.tsx b/src/icons/TrainRegional.tsx deleted file mode 100644 index bc09e1bff..000000000 --- a/src/icons/TrainRegional.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", - <> - - , - ], -]); - -export const TrainRegional: Icon = forwardRef((props, ref) => ( - -)); - -TrainRegional.displayName = "TrainRegional"; diff --git a/src/icons/TrainSimple.tsx b/src/icons/TrainSimple.tsx deleted file mode 100644 index 1b22d525b..000000000 --- a/src/icons/TrainSimple.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", - <> - - , - ], -]); - -export const TrainSimple: Icon = forwardRef((props, ref) => ( - -)); - -TrainSimple.displayName = "TrainSimple"; diff --git a/src/icons/Tram.tsx b/src/icons/Tram.tsx deleted file mode 100644 index e6b37e3cc..000000000 --- a/src/icons/Tram.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", - <> - - , - ], -]); - -export const Tram: Icon = forwardRef((props, ref) => ( - -)); - -Tram.displayName = "Tram"; diff --git a/src/icons/Translate.tsx b/src/icons/Translate.tsx deleted file mode 100644 index 122467add..000000000 --- a/src/icons/Translate.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", - <> - - , - ], -]); - -export const Translate: Icon = forwardRef((props, ref) => ( - -)); - -Translate.displayName = "Translate"; diff --git a/src/icons/Trash.tsx b/src/icons/Trash.tsx deleted file mode 100644 index 83dd56e22..000000000 --- a/src/icons/Trash.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Trash: Icon = forwardRef((props, ref) => ( - -)); - -Trash.displayName = "Trash"; diff --git a/src/icons/TrashSimple.tsx b/src/icons/TrashSimple.tsx deleted file mode 100644 index 443e29c42..000000000 --- a/src/icons/TrashSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TrashSimple: Icon = forwardRef((props, ref) => ( - -)); - -TrashSimple.displayName = "TrashSimple"; diff --git a/src/icons/Tray.tsx b/src/icons/Tray.tsx deleted file mode 100644 index 7ef9c63e1..000000000 --- a/src/icons/Tray.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", - <> - - , - ], -]); - -export const Tray: Icon = forwardRef((props, ref) => ( - -)); - -Tray.displayName = "Tray"; diff --git a/src/icons/Tree.tsx b/src/icons/Tree.tsx deleted file mode 100644 index 606f30288..000000000 --- a/src/icons/Tree.tsx +++ /dev/null @@ -1,53 +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", - <> - - , - ], -]); - -export const Tree: Icon = forwardRef((props, ref) => ( - -)); - -Tree.displayName = "Tree"; diff --git a/src/icons/TreeEvergreen.tsx b/src/icons/TreeEvergreen.tsx deleted file mode 100644 index 1deddec10..000000000 --- a/src/icons/TreeEvergreen.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TreeEvergreen: Icon = forwardRef((props, ref) => ( - -)); - -TreeEvergreen.displayName = "TreeEvergreen"; diff --git a/src/icons/TreePalm.tsx b/src/icons/TreePalm.tsx deleted file mode 100644 index c135b70a1..000000000 --- a/src/icons/TreePalm.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", - <> - - , - ], -]); - -export const TreePalm: Icon = forwardRef((props, ref) => ( - -)); - -TreePalm.displayName = "TreePalm"; diff --git a/src/icons/TreeStructure.tsx b/src/icons/TreeStructure.tsx deleted file mode 100644 index 596354c5b..000000000 --- a/src/icons/TreeStructure.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", - <> - - , - ], -]); - -export const TreeStructure: Icon = forwardRef((props, ref) => ( - -)); - -TreeStructure.displayName = "TreeStructure"; diff --git a/src/icons/TrendDown.tsx b/src/icons/TrendDown.tsx deleted file mode 100644 index b061d211a..000000000 --- a/src/icons/TrendDown.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TrendDown: Icon = forwardRef((props, ref) => ( - -)); - -TrendDown.displayName = "TrendDown"; diff --git a/src/icons/TrendUp.tsx b/src/icons/TrendUp.tsx deleted file mode 100644 index 628fbc31a..000000000 --- a/src/icons/TrendUp.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const TrendUp: Icon = forwardRef((props, ref) => ( - -)); - -TrendUp.displayName = "TrendUp"; diff --git a/src/icons/Triangle.tsx b/src/icons/Triangle.tsx deleted file mode 100644 index 67c32fdcd..000000000 --- a/src/icons/Triangle.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", - <> - - , - ], -]); - -export const Triangle: Icon = forwardRef((props, ref) => ( - -)); - -Triangle.displayName = "Triangle"; diff --git a/src/icons/Trophy.tsx b/src/icons/Trophy.tsx deleted file mode 100644 index 5911310ca..000000000 --- a/src/icons/Trophy.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", - <> - - , - ], -]); - -export const Trophy: Icon = forwardRef((props, ref) => ( - -)); - -Trophy.displayName = "Trophy"; diff --git a/src/icons/Truck.tsx b/src/icons/Truck.tsx deleted file mode 100644 index 89eb64a5d..000000000 --- a/src/icons/Truck.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", - <> - - , - ], -]); - -export const Truck: Icon = forwardRef((props, ref) => ( - -)); - -Truck.displayName = "Truck"; diff --git a/src/icons/TwitchLogo.tsx b/src/icons/TwitchLogo.tsx deleted file mode 100644 index 581a05efc..000000000 --- a/src/icons/TwitchLogo.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", - <> - - , - ], -]); - -export const TwitchLogo: Icon = forwardRef((props, ref) => ( - -)); - -TwitchLogo.displayName = "TwitchLogo"; diff --git a/src/icons/TwitterLogo.tsx b/src/icons/TwitterLogo.tsx deleted file mode 100644 index 57c7e2127..000000000 --- a/src/icons/TwitterLogo.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", - <> - - , - ], -]); - -export const TwitterLogo: Icon = forwardRef((props, ref) => ( - -)); - -TwitterLogo.displayName = "TwitterLogo"; diff --git a/src/icons/Umbrella.tsx b/src/icons/Umbrella.tsx deleted file mode 100644 index 54a967249..000000000 --- a/src/icons/Umbrella.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", - <> - - , - ], -]); - -export const Umbrella: Icon = forwardRef((props, ref) => ( - -)); - -Umbrella.displayName = "Umbrella"; diff --git a/src/icons/UmbrellaSimple.tsx b/src/icons/UmbrellaSimple.tsx deleted file mode 100644 index a1fe670f6..000000000 --- a/src/icons/UmbrellaSimple.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", - <> - - , - ], -]); - -export const UmbrellaSimple: Icon = forwardRef((props, ref) => ( - -)); - -UmbrellaSimple.displayName = "UmbrellaSimple"; diff --git a/src/icons/Unite.tsx b/src/icons/Unite.tsx deleted file mode 100644 index f4bfe444a..000000000 --- a/src/icons/Unite.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", - <> - - , - ], -]); - -export const Unite: Icon = forwardRef((props, ref) => ( - -)); - -Unite.displayName = "Unite"; diff --git a/src/icons/UniteSquare.tsx b/src/icons/UniteSquare.tsx deleted file mode 100644 index 13c739b1d..000000000 --- a/src/icons/UniteSquare.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const UniteSquare: Icon = forwardRef((props, ref) => ( - -)); - -UniteSquare.displayName = "UniteSquare"; diff --git a/src/icons/Upload.tsx b/src/icons/Upload.tsx deleted file mode 100644 index 7bde3e705..000000000 --- a/src/icons/Upload.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", - <> - - , - ], -]); - -export const Upload: Icon = forwardRef((props, ref) => ( - -)); - -Upload.displayName = "Upload"; diff --git a/src/icons/UploadSimple.tsx b/src/icons/UploadSimple.tsx deleted file mode 100644 index f29342094..000000000 --- a/src/icons/UploadSimple.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const UploadSimple: Icon = forwardRef((props, ref) => ( - -)); - -UploadSimple.displayName = "UploadSimple"; diff --git a/src/icons/Usb.tsx b/src/icons/Usb.tsx deleted file mode 100644 index 603bae9a7..000000000 --- a/src/icons/Usb.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", - <> - - , - ], -]); - -export const Usb: Icon = forwardRef((props, ref) => ( - -)); - -Usb.displayName = "Usb"; diff --git a/src/icons/User.tsx b/src/icons/User.tsx deleted file mode 100644 index 7837c9871..000000000 --- a/src/icons/User.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const User: Icon = forwardRef((props, ref) => ( - -)); - -User.displayName = "User"; diff --git a/src/icons/UserCircle.tsx b/src/icons/UserCircle.tsx deleted file mode 100644 index 97e4a7d72..000000000 --- a/src/icons/UserCircle.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", - <> - - , - ], -]); - -export const UserCircle: Icon = forwardRef((props, ref) => ( - -)); - -UserCircle.displayName = "UserCircle"; diff --git a/src/icons/UserCircleGear.tsx b/src/icons/UserCircleGear.tsx deleted file mode 100644 index cd1f7d0f7..000000000 --- a/src/icons/UserCircleGear.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", - <> - - , - ], -]); - -export const UserCircleGear: Icon = forwardRef((props, ref) => ( - -)); - -UserCircleGear.displayName = "UserCircleGear"; diff --git a/src/icons/UserCircleMinus.tsx b/src/icons/UserCircleMinus.tsx deleted file mode 100644 index 7594879e8..000000000 --- a/src/icons/UserCircleMinus.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", - <> - - , - ], -]); - -export const UserCircleMinus: Icon = forwardRef((props, ref) => ( - -)); - -UserCircleMinus.displayName = "UserCircleMinus"; diff --git a/src/icons/UserCirclePlus.tsx b/src/icons/UserCirclePlus.tsx deleted file mode 100644 index fdc2ef71e..000000000 --- a/src/icons/UserCirclePlus.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", - <> - - , - ], -]); - -export const UserCirclePlus: Icon = forwardRef((props, ref) => ( - -)); - -UserCirclePlus.displayName = "UserCirclePlus"; diff --git a/src/icons/UserFocus.tsx b/src/icons/UserFocus.tsx deleted file mode 100644 index 7d41467df..000000000 --- a/src/icons/UserFocus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const UserFocus: Icon = forwardRef((props, ref) => ( - -)); - -UserFocus.displayName = "UserFocus"; diff --git a/src/icons/UserGear.tsx b/src/icons/UserGear.tsx deleted file mode 100644 index c12977a1b..000000000 --- a/src/icons/UserGear.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const UserGear: Icon = forwardRef((props, ref) => ( - -)); - -UserGear.displayName = "UserGear"; diff --git a/src/icons/UserList.tsx b/src/icons/UserList.tsx deleted file mode 100644 index 079ec56bb..000000000 --- a/src/icons/UserList.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const UserList: Icon = forwardRef((props, ref) => ( - -)); - -UserList.displayName = "UserList"; diff --git a/src/icons/UserMinus.tsx b/src/icons/UserMinus.tsx deleted file mode 100644 index 292e6ad9e..000000000 --- a/src/icons/UserMinus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const UserMinus: Icon = forwardRef((props, ref) => ( - -)); - -UserMinus.displayName = "UserMinus"; diff --git a/src/icons/UserPlus.tsx b/src/icons/UserPlus.tsx deleted file mode 100644 index 674da1200..000000000 --- a/src/icons/UserPlus.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const UserPlus: Icon = forwardRef((props, ref) => ( - -)); - -UserPlus.displayName = "UserPlus"; diff --git a/src/icons/UserRectangle.tsx b/src/icons/UserRectangle.tsx deleted file mode 100644 index 5d56f9740..000000000 --- a/src/icons/UserRectangle.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", - <> - - , - ], -]); - -export const UserRectangle: Icon = forwardRef((props, ref) => ( - -)); - -UserRectangle.displayName = "UserRectangle"; diff --git a/src/icons/UserSquare.tsx b/src/icons/UserSquare.tsx deleted file mode 100644 index ad9a35e94..000000000 --- a/src/icons/UserSquare.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", - <> - - , - ], -]); - -export const UserSquare: Icon = forwardRef((props, ref) => ( - -)); - -UserSquare.displayName = "UserSquare"; diff --git a/src/icons/UserSwitch.tsx b/src/icons/UserSwitch.tsx deleted file mode 100644 index f3f9207a0..000000000 --- a/src/icons/UserSwitch.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", - <> - - , - ], -]); - -export const UserSwitch: Icon = forwardRef((props, ref) => ( - -)); - -UserSwitch.displayName = "UserSwitch"; diff --git a/src/icons/Users.tsx b/src/icons/Users.tsx deleted file mode 100644 index f1e3282c4..000000000 --- a/src/icons/Users.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Users: Icon = forwardRef((props, ref) => ( - -)); - -Users.displayName = "Users"; diff --git a/src/icons/UsersFour.tsx b/src/icons/UsersFour.tsx deleted file mode 100644 index cb5652baa..000000000 --- a/src/icons/UsersFour.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", - <> - - , - ], -]); - -export const UsersFour: Icon = forwardRef((props, ref) => ( - -)); - -UsersFour.displayName = "UsersFour"; diff --git a/src/icons/UsersThree.tsx b/src/icons/UsersThree.tsx deleted file mode 100644 index d3a068dab..000000000 --- a/src/icons/UsersThree.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", - <> - - , - ], -]); - -export const UsersThree: Icon = forwardRef((props, ref) => ( - -)); - -UsersThree.displayName = "UsersThree"; diff --git a/src/icons/Van.tsx b/src/icons/Van.tsx deleted file mode 100644 index 5ffdc6ea6..000000000 --- a/src/icons/Van.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", - <> - - , - ], -]); - -export const Van: Icon = forwardRef((props, ref) => ( - -)); - -Van.displayName = "Van"; diff --git a/src/icons/Vault.tsx b/src/icons/Vault.tsx deleted file mode 100644 index af4da0204..000000000 --- a/src/icons/Vault.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", - <> - - , - ], -]); - -export const Vault: Icon = forwardRef((props, ref) => ( - -)); - -Vault.displayName = "Vault"; diff --git a/src/icons/Vibrate.tsx b/src/icons/Vibrate.tsx deleted file mode 100644 index 3e41fe093..000000000 --- a/src/icons/Vibrate.tsx +++ /dev/null @@ -1,56 +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", - <> - - , - ], -]); - -export const Vibrate: Icon = forwardRef((props, ref) => ( - -)); - -Vibrate.displayName = "Vibrate"; diff --git a/src/icons/Video.tsx b/src/icons/Video.tsx deleted file mode 100644 index 20ffb38b7..000000000 --- a/src/icons/Video.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", - <> - - , - ], -]); - -export const Video: Icon = forwardRef((props, ref) => ( - -)); - -Video.displayName = "Video"; diff --git a/src/icons/VideoCamera.tsx b/src/icons/VideoCamera.tsx deleted file mode 100644 index 3d66d659d..000000000 --- a/src/icons/VideoCamera.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", - <> - - , - ], -]); - -export const VideoCamera: Icon = forwardRef((props, ref) => ( - -)); - -VideoCamera.displayName = "VideoCamera"; diff --git a/src/icons/VideoCameraSlash.tsx b/src/icons/VideoCameraSlash.tsx deleted file mode 100644 index 39bb17248..000000000 --- a/src/icons/VideoCameraSlash.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", - <> - - , - ], -]); - -export const VideoCameraSlash: Icon = forwardRef((props, ref) => ( - -)); - -VideoCameraSlash.displayName = "VideoCameraSlash"; diff --git a/src/icons/Vignette.tsx b/src/icons/Vignette.tsx deleted file mode 100644 index c1cd01e7b..000000000 --- a/src/icons/Vignette.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", - <> - - , - ], -]); - -export const Vignette: Icon = forwardRef((props, ref) => ( - -)); - -Vignette.displayName = "Vignette"; diff --git a/src/icons/VinylRecord.tsx b/src/icons/VinylRecord.tsx deleted file mode 100644 index 35819e1f7..000000000 --- a/src/icons/VinylRecord.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", - <> - - , - ], -]); - -export const VinylRecord: Icon = forwardRef((props, ref) => ( - -)); - -VinylRecord.displayName = "VinylRecord"; diff --git a/src/icons/VirtualReality.tsx b/src/icons/VirtualReality.tsx deleted file mode 100644 index 0aabebe86..000000000 --- a/src/icons/VirtualReality.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", - <> - - , - ], -]); - -export const VirtualReality: Icon = forwardRef((props, ref) => ( - -)); - -VirtualReality.displayName = "VirtualReality"; diff --git a/src/icons/Virus.tsx b/src/icons/Virus.tsx deleted file mode 100644 index 8ebd369c2..000000000 --- a/src/icons/Virus.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", - <> - - , - ], -]); - -export const Virus: Icon = forwardRef((props, ref) => ( - -)); - -Virus.displayName = "Virus"; diff --git a/src/icons/Voicemail.tsx b/src/icons/Voicemail.tsx deleted file mode 100644 index de7a4187e..000000000 --- a/src/icons/Voicemail.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", - <> - - , - ], -]); - -export const Voicemail: Icon = forwardRef((props, ref) => ( - -)); - -Voicemail.displayName = "Voicemail"; diff --git a/src/icons/Volleyball.tsx b/src/icons/Volleyball.tsx deleted file mode 100644 index bc1fc1c9d..000000000 --- a/src/icons/Volleyball.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", - <> - - , - ], -]); - -export const Volleyball: Icon = forwardRef((props, ref) => ( - -)); - -Volleyball.displayName = "Volleyball"; diff --git a/src/icons/Wall.tsx b/src/icons/Wall.tsx deleted file mode 100644 index 4636f64c7..000000000 --- a/src/icons/Wall.tsx +++ /dev/null @@ -1,55 +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", - <> - - , - ], -]); - -export const Wall: Icon = forwardRef((props, ref) => ( - -)); - -Wall.displayName = "Wall"; diff --git a/src/icons/Wallet.tsx b/src/icons/Wallet.tsx deleted file mode 100644 index 04e919251..000000000 --- a/src/icons/Wallet.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", - <> - - , - ], -]); - -export const Wallet: Icon = forwardRef((props, ref) => ( - -)); - -Wallet.displayName = "Wallet"; diff --git a/src/icons/Warehouse.tsx b/src/icons/Warehouse.tsx deleted file mode 100644 index 5c2699855..000000000 --- a/src/icons/Warehouse.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Warehouse: Icon = forwardRef((props, ref) => ( - -)); - -Warehouse.displayName = "Warehouse"; diff --git a/src/icons/Warning.tsx b/src/icons/Warning.tsx deleted file mode 100644 index ca159d92d..000000000 --- a/src/icons/Warning.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", - <> - - , - ], -]); - -export const Warning: Icon = forwardRef((props, ref) => ( - -)); - -Warning.displayName = "Warning"; diff --git a/src/icons/WarningCircle.tsx b/src/icons/WarningCircle.tsx deleted file mode 100644 index fa04330cf..000000000 --- a/src/icons/WarningCircle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const WarningCircle: Icon = forwardRef((props, ref) => ( - -)); - -WarningCircle.displayName = "WarningCircle"; diff --git a/src/icons/WarningDiamond.tsx b/src/icons/WarningDiamond.tsx deleted file mode 100644 index 316217fd7..000000000 --- a/src/icons/WarningDiamond.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", - <> - - , - ], -]); - -export const WarningDiamond: Icon = forwardRef((props, ref) => ( - -)); - -WarningDiamond.displayName = "WarningDiamond"; diff --git a/src/icons/WarningOctagon.tsx b/src/icons/WarningOctagon.tsx deleted file mode 100644 index cd7cd259d..000000000 --- a/src/icons/WarningOctagon.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", - <> - - , - ], -]); - -export const WarningOctagon: Icon = forwardRef((props, ref) => ( - -)); - -WarningOctagon.displayName = "WarningOctagon"; diff --git a/src/icons/Watch.tsx b/src/icons/Watch.tsx deleted file mode 100644 index 9c1088f85..000000000 --- a/src/icons/Watch.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Watch: Icon = forwardRef((props, ref) => ( - -)); - -Watch.displayName = "Watch"; diff --git a/src/icons/WaveSawtooth.tsx b/src/icons/WaveSawtooth.tsx deleted file mode 100644 index 2db54b3d5..000000000 --- a/src/icons/WaveSawtooth.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const WaveSawtooth: Icon = forwardRef((props, ref) => ( - -)); - -WaveSawtooth.displayName = "WaveSawtooth"; diff --git a/src/icons/WaveSine.tsx b/src/icons/WaveSine.tsx deleted file mode 100644 index f4dee286a..000000000 --- a/src/icons/WaveSine.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", - <> - - , - ], -]); - -export const WaveSine: Icon = forwardRef((props, ref) => ( - -)); - -WaveSine.displayName = "WaveSine"; diff --git a/src/icons/WaveSquare.tsx b/src/icons/WaveSquare.tsx deleted file mode 100644 index 225e4e92e..000000000 --- a/src/icons/WaveSquare.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const WaveSquare: Icon = forwardRef((props, ref) => ( - -)); - -WaveSquare.displayName = "WaveSquare"; diff --git a/src/icons/WaveTriangle.tsx b/src/icons/WaveTriangle.tsx deleted file mode 100644 index e26892f60..000000000 --- a/src/icons/WaveTriangle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const WaveTriangle: Icon = forwardRef((props, ref) => ( - -)); - -WaveTriangle.displayName = "WaveTriangle"; diff --git a/src/icons/Waveform.tsx b/src/icons/Waveform.tsx deleted file mode 100644 index 9e3059a8f..000000000 --- a/src/icons/Waveform.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Waveform: Icon = forwardRef((props, ref) => ( - -)); - -Waveform.displayName = "Waveform"; diff --git a/src/icons/Waves.tsx b/src/icons/Waves.tsx deleted file mode 100644 index 16571a123..000000000 --- a/src/icons/Waves.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", - <> - - , - ], -]); - -export const Waves: Icon = forwardRef((props, ref) => ( - -)); - -Waves.displayName = "Waves"; diff --git a/src/icons/Webcam.tsx b/src/icons/Webcam.tsx deleted file mode 100644 index e944db3fc..000000000 --- a/src/icons/Webcam.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", - <> - - , - ], -]); - -export const Webcam: Icon = forwardRef((props, ref) => ( - -)); - -Webcam.displayName = "Webcam"; diff --git a/src/icons/WebcamSlash.tsx b/src/icons/WebcamSlash.tsx deleted file mode 100644 index 18d4e15fd..000000000 --- a/src/icons/WebcamSlash.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", - <> - - , - ], -]); - -export const WebcamSlash: Icon = forwardRef((props, ref) => ( - -)); - -WebcamSlash.displayName = "WebcamSlash"; diff --git a/src/icons/WebhooksLogo.tsx b/src/icons/WebhooksLogo.tsx deleted file mode 100644 index 3a8e2b46b..000000000 --- a/src/icons/WebhooksLogo.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", - <> - - , - ], -]); - -export const WebhooksLogo: Icon = forwardRef((props, ref) => ( - -)); - -WebhooksLogo.displayName = "WebhooksLogo"; diff --git a/src/icons/WechatLogo.tsx b/src/icons/WechatLogo.tsx deleted file mode 100644 index a1f55e6c3..000000000 --- a/src/icons/WechatLogo.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", - <> - - , - ], -]); - -export const WechatLogo: Icon = forwardRef((props, ref) => ( - -)); - -WechatLogo.displayName = "WechatLogo"; diff --git a/src/icons/WhatsappLogo.tsx b/src/icons/WhatsappLogo.tsx deleted file mode 100644 index 713f06fe1..000000000 --- a/src/icons/WhatsappLogo.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", - <> - - , - ], -]); - -export const WhatsappLogo: Icon = forwardRef((props, ref) => ( - -)); - -WhatsappLogo.displayName = "WhatsappLogo"; diff --git a/src/icons/Wheelchair.tsx b/src/icons/Wheelchair.tsx deleted file mode 100644 index ec954b35a..000000000 --- a/src/icons/Wheelchair.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const Wheelchair: Icon = forwardRef((props, ref) => ( - -)); - -Wheelchair.displayName = "Wheelchair"; diff --git a/src/icons/WheelchairMotion.tsx b/src/icons/WheelchairMotion.tsx deleted file mode 100644 index 309ed74d9..000000000 --- a/src/icons/WheelchairMotion.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const WheelchairMotion: Icon = forwardRef((props, ref) => ( - -)); - -WheelchairMotion.displayName = "WheelchairMotion"; diff --git a/src/icons/WifiHigh.tsx b/src/icons/WifiHigh.tsx deleted file mode 100644 index c06c9b831..000000000 --- a/src/icons/WifiHigh.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", - <> - - , - ], -]); - -export const WifiHigh: Icon = forwardRef((props, ref) => ( - -)); - -WifiHigh.displayName = "WifiHigh"; diff --git a/src/icons/WifiLow.tsx b/src/icons/WifiLow.tsx deleted file mode 100644 index d96814d3e..000000000 --- a/src/icons/WifiLow.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", - <> - - , - ], -]); - -export const WifiLow: Icon = forwardRef((props, ref) => ( - -)); - -WifiLow.displayName = "WifiLow"; diff --git a/src/icons/WifiMedium.tsx b/src/icons/WifiMedium.tsx deleted file mode 100644 index 856eadb49..000000000 --- a/src/icons/WifiMedium.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", - <> - - , - ], -]); - -export const WifiMedium: Icon = forwardRef((props, ref) => ( - -)); - -WifiMedium.displayName = "WifiMedium"; diff --git a/src/icons/WifiNone.tsx b/src/icons/WifiNone.tsx deleted file mode 100644 index 76bcf1c0d..000000000 --- a/src/icons/WifiNone.tsx +++ /dev/null @@ -1,48 +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", - <> - - , - ], -]); - -export const WifiNone: Icon = forwardRef((props, ref) => ( - -)); - -WifiNone.displayName = "WifiNone"; diff --git a/src/icons/WifiSlash.tsx b/src/icons/WifiSlash.tsx deleted file mode 100644 index a0dd73e09..000000000 --- a/src/icons/WifiSlash.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", - <> - - , - ], -]); - -export const WifiSlash: Icon = forwardRef((props, ref) => ( - -)); - -WifiSlash.displayName = "WifiSlash"; diff --git a/src/icons/WifiX.tsx b/src/icons/WifiX.tsx deleted file mode 100644 index 3f389b87b..000000000 --- a/src/icons/WifiX.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", - <> - - , - ], -]); - -export const WifiX: Icon = forwardRef((props, ref) => ( - -)); - -WifiX.displayName = "WifiX"; diff --git a/src/icons/Wind.tsx b/src/icons/Wind.tsx deleted file mode 100644 index ea9da7676..000000000 --- a/src/icons/Wind.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", - <> - - , - ], -]); - -export const Wind: Icon = forwardRef((props, ref) => ( - -)); - -Wind.displayName = "Wind"; diff --git a/src/icons/WindowsLogo.tsx b/src/icons/WindowsLogo.tsx deleted file mode 100644 index ae60e6b29..000000000 --- a/src/icons/WindowsLogo.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", - <> - - , - ], -]); - -export const WindowsLogo: Icon = forwardRef((props, ref) => ( - -)); - -WindowsLogo.displayName = "WindowsLogo"; diff --git a/src/icons/Wine.tsx b/src/icons/Wine.tsx deleted file mode 100644 index 3b60f2c67..000000000 --- a/src/icons/Wine.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", - <> - - , - ], -]); - -export const Wine: Icon = forwardRef((props, ref) => ( - -)); - -Wine.displayName = "Wine"; diff --git a/src/icons/Wrench.tsx b/src/icons/Wrench.tsx deleted file mode 100644 index 2638a693a..000000000 --- a/src/icons/Wrench.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", - <> - - , - ], -]); - -export const Wrench: Icon = forwardRef((props, ref) => ( - -)); - -Wrench.displayName = "Wrench"; diff --git a/src/icons/X.tsx b/src/icons/X.tsx deleted file mode 100644 index 2a4dccedd..000000000 --- a/src/icons/X.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", - <> - - , - ], -]); - -export const X: Icon = forwardRef((props, ref) => ( - -)); - -X.displayName = "X"; diff --git a/src/icons/XCircle.tsx b/src/icons/XCircle.tsx deleted file mode 100644 index d6e200385..000000000 --- a/src/icons/XCircle.tsx +++ /dev/null @@ -1,49 +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", - <> - - , - ], -]); - -export const XCircle: Icon = forwardRef((props, ref) => ( - -)); - -XCircle.displayName = "XCircle"; diff --git a/src/icons/XSquare.tsx b/src/icons/XSquare.tsx deleted file mode 100644 index 5020b2edb..000000000 --- a/src/icons/XSquare.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", - <> - - , - ], -]); - -export const XSquare: Icon = forwardRef((props, ref) => ( - -)); - -XSquare.displayName = "XSquare"; diff --git a/src/icons/YinYang.tsx b/src/icons/YinYang.tsx deleted file mode 100644 index 243198453..000000000 --- a/src/icons/YinYang.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", - <> - - , - ], -]); - -export const YinYang: Icon = forwardRef((props, ref) => ( - -)); - -YinYang.displayName = "YinYang"; diff --git a/src/icons/YoutubeLogo.tsx b/src/icons/YoutubeLogo.tsx deleted file mode 100644 index 395d3ac85..000000000 --- a/src/icons/YoutubeLogo.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", - <> - - , - ], -]); - -export const YoutubeLogo: Icon = forwardRef((props, ref) => ( - -)); - -YoutubeLogo.displayName = "YoutubeLogo"; diff --git a/src/index.ts b/src/index.ts index 7d341f717..0a67f63e0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,1267 +1,1265 @@ /* GENERATED FILE */ export type { Icon, IconProps, IconWeight } from "./lib"; export { IconContext, IconBase } from "./lib"; +export * as SSR from "./ssr"; -export { AddressBook } from "./icons/AddressBook"; -export { AirTrafficControl } from "./icons/AirTrafficControl"; -export { Airplane } from "./icons/Airplane"; -export { AirplaneInFlight } from "./icons/AirplaneInFlight"; -export { AirplaneLanding } from "./icons/AirplaneLanding"; -export { AirplaneTakeoff } from "./icons/AirplaneTakeoff"; -export { AirplaneTilt } from "./icons/AirplaneTilt"; -export { Airplay } from "./icons/Airplay"; -export { Alarm } from "./icons/Alarm"; -export { Alien } from "./icons/Alien"; -export { AlignBottom } from "./icons/AlignBottom"; -export { AlignBottomSimple } from "./icons/AlignBottomSimple"; -export { AlignCenterHorizontal } from "./icons/AlignCenterHorizontal"; -export { AlignCenterHorizontalSimple } from "./icons/AlignCenterHorizontalSimple"; -export { AlignCenterVertical } from "./icons/AlignCenterVertical"; -export { AlignCenterVerticalSimple } from "./icons/AlignCenterVerticalSimple"; -export { AlignLeft } from "./icons/AlignLeft"; -export { AlignLeftSimple } from "./icons/AlignLeftSimple"; -export { AlignRight } from "./icons/AlignRight"; -export { AlignRightSimple } from "./icons/AlignRightSimple"; -export { AlignTop } from "./icons/AlignTop"; -export { AlignTopSimple } from "./icons/AlignTopSimple"; -export { AmazonLogo } from "./icons/AmazonLogo"; -export { Anchor } from "./icons/Anchor"; -export { AnchorSimple } from "./icons/AnchorSimple"; -export { AndroidLogo } from "./icons/AndroidLogo"; -export { AngularLogo } from "./icons/AngularLogo"; -export { Aperture } from "./icons/Aperture"; -export { AppStoreLogo } from "./icons/AppStoreLogo"; -export { AppWindow } from "./icons/AppWindow"; -export { AppleLogo } from "./icons/AppleLogo"; -export { ApplePodcastsLogo } from "./icons/ApplePodcastsLogo"; -export { Archive } from "./icons/Archive"; -export { ArchiveBox } from "./icons/ArchiveBox"; -export { ArchiveTray } from "./icons/ArchiveTray"; -export { Armchair } from "./icons/Armchair"; -export { ArrowArcLeft } from "./icons/ArrowArcLeft"; -export { ArrowArcRight } from "./icons/ArrowArcRight"; -export { ArrowBendDoubleUpLeft } from "./icons/ArrowBendDoubleUpLeft"; -export { ArrowBendDoubleUpRight } from "./icons/ArrowBendDoubleUpRight"; -export { ArrowBendDownLeft } from "./icons/ArrowBendDownLeft"; -export { ArrowBendDownRight } from "./icons/ArrowBendDownRight"; -export { ArrowBendLeftDown } from "./icons/ArrowBendLeftDown"; -export { ArrowBendLeftUp } from "./icons/ArrowBendLeftUp"; -export { ArrowBendRightDown } from "./icons/ArrowBendRightDown"; -export { ArrowBendRightUp } from "./icons/ArrowBendRightUp"; -export { ArrowBendUpLeft } from "./icons/ArrowBendUpLeft"; -export { ArrowBendUpRight } from "./icons/ArrowBendUpRight"; -export { ArrowCircleDown } from "./icons/ArrowCircleDown"; -export { ArrowCircleDownLeft } from "./icons/ArrowCircleDownLeft"; -export { ArrowCircleDownRight } from "./icons/ArrowCircleDownRight"; -export { ArrowCircleLeft } from "./icons/ArrowCircleLeft"; -export { ArrowCircleRight } from "./icons/ArrowCircleRight"; -export { ArrowCircleUp } from "./icons/ArrowCircleUp"; -export { ArrowCircleUpLeft } from "./icons/ArrowCircleUpLeft"; -export { ArrowCircleUpRight } from "./icons/ArrowCircleUpRight"; -export { ArrowClockwise } from "./icons/ArrowClockwise"; -export { ArrowCounterClockwise } from "./icons/ArrowCounterClockwise"; -export { ArrowDown } from "./icons/ArrowDown"; -export { ArrowDownLeft } from "./icons/ArrowDownLeft"; -export { ArrowDownRight } from "./icons/ArrowDownRight"; -export { ArrowElbowDownLeft } from "./icons/ArrowElbowDownLeft"; -export { ArrowElbowDownRight } from "./icons/ArrowElbowDownRight"; -export { ArrowElbowLeft } from "./icons/ArrowElbowLeft"; -export { ArrowElbowLeftDown } from "./icons/ArrowElbowLeftDown"; -export { ArrowElbowLeftUp } from "./icons/ArrowElbowLeftUp"; -export { ArrowElbowRight } from "./icons/ArrowElbowRight"; -export { ArrowElbowRightDown } from "./icons/ArrowElbowRightDown"; -export { ArrowElbowRightUp } from "./icons/ArrowElbowRightUp"; -export { ArrowElbowUpLeft } from "./icons/ArrowElbowUpLeft"; -export { ArrowElbowUpRight } from "./icons/ArrowElbowUpRight"; -export { ArrowFatDown } from "./icons/ArrowFatDown"; -export { ArrowFatLeft } from "./icons/ArrowFatLeft"; -export { ArrowFatLineDown } from "./icons/ArrowFatLineDown"; -export { ArrowFatLineLeft } from "./icons/ArrowFatLineLeft"; -export { ArrowFatLineRight } from "./icons/ArrowFatLineRight"; -export { ArrowFatLineUp } from "./icons/ArrowFatLineUp"; -export { ArrowFatLinesDown } from "./icons/ArrowFatLinesDown"; -export { ArrowFatLinesLeft } from "./icons/ArrowFatLinesLeft"; -export { ArrowFatLinesRight } from "./icons/ArrowFatLinesRight"; -export { ArrowFatLinesUp } from "./icons/ArrowFatLinesUp"; -export { ArrowFatRight } from "./icons/ArrowFatRight"; -export { ArrowFatUp } from "./icons/ArrowFatUp"; -export { ArrowLeft } from "./icons/ArrowLeft"; -export { ArrowLineDown } from "./icons/ArrowLineDown"; -export { ArrowLineDownLeft } from "./icons/ArrowLineDownLeft"; -export { ArrowLineDownRight } from "./icons/ArrowLineDownRight"; -export { ArrowLineLeft } from "./icons/ArrowLineLeft"; -export { ArrowLineRight } from "./icons/ArrowLineRight"; -export { ArrowLineUp } from "./icons/ArrowLineUp"; -export { ArrowLineUpLeft } from "./icons/ArrowLineUpLeft"; -export { ArrowLineUpRight } from "./icons/ArrowLineUpRight"; -export { ArrowRight } from "./icons/ArrowRight"; -export { ArrowSquareDown } from "./icons/ArrowSquareDown"; -export { ArrowSquareDownLeft } from "./icons/ArrowSquareDownLeft"; -export { ArrowSquareDownRight } from "./icons/ArrowSquareDownRight"; -export { ArrowSquareIn } from "./icons/ArrowSquareIn"; -export { ArrowSquareLeft } from "./icons/ArrowSquareLeft"; -export { ArrowSquareOut } from "./icons/ArrowSquareOut"; -export { ArrowSquareRight } from "./icons/ArrowSquareRight"; -export { ArrowSquareUp } from "./icons/ArrowSquareUp"; -export { ArrowSquareUpLeft } from "./icons/ArrowSquareUpLeft"; -export { ArrowSquareUpRight } from "./icons/ArrowSquareUpRight"; -export { ArrowUDownLeft } from "./icons/ArrowUDownLeft"; -export { ArrowUDownRight } from "./icons/ArrowUDownRight"; -export { ArrowULeftDown } from "./icons/ArrowULeftDown"; -export { ArrowULeftUp } from "./icons/ArrowULeftUp"; -export { ArrowURightDown } from "./icons/ArrowURightDown"; -export { ArrowURightUp } from "./icons/ArrowURightUp"; -export { ArrowUUpLeft } from "./icons/ArrowUUpLeft"; -export { ArrowUUpRight } from "./icons/ArrowUUpRight"; -export { ArrowUp } from "./icons/ArrowUp"; -export { ArrowUpLeft } from "./icons/ArrowUpLeft"; -export { ArrowUpRight } from "./icons/ArrowUpRight"; -export { ArrowsClockwise } from "./icons/ArrowsClockwise"; -export { ArrowsCounterClockwise } from "./icons/ArrowsCounterClockwise"; -export { ArrowsDownUp } from "./icons/ArrowsDownUp"; -export { ArrowsHorizontal } from "./icons/ArrowsHorizontal"; -export { ArrowsIn } from "./icons/ArrowsIn"; -export { ArrowsInCardinal } from "./icons/ArrowsInCardinal"; -export { ArrowsInLineHorizontal } from "./icons/ArrowsInLineHorizontal"; -export { ArrowsInLineVertical } from "./icons/ArrowsInLineVertical"; -export { ArrowsInSimple } from "./icons/ArrowsInSimple"; -export { ArrowsLeftRight } from "./icons/ArrowsLeftRight"; -export { ArrowsMerge } from "./icons/ArrowsMerge"; -export { ArrowsOut } from "./icons/ArrowsOut"; -export { ArrowsOutCardinal } from "./icons/ArrowsOutCardinal"; -export { ArrowsOutLineHorizontal } from "./icons/ArrowsOutLineHorizontal"; -export { ArrowsOutLineVertical } from "./icons/ArrowsOutLineVertical"; -export { ArrowsOutSimple } from "./icons/ArrowsOutSimple"; -export { ArrowsSplit } from "./icons/ArrowsSplit"; -export { ArrowsVertical } from "./icons/ArrowsVertical"; -export { Article } from "./icons/Article"; -export { ArticleMedium } from "./icons/ArticleMedium"; -export { ArticleNyTimes } from "./icons/ArticleNyTimes"; -export { Asterisk } from "./icons/Asterisk"; -export { AsteriskSimple } from "./icons/AsteriskSimple"; -export { At } from "./icons/At"; -export { Atom } from "./icons/Atom"; -export { Baby } from "./icons/Baby"; -export { Backpack } from "./icons/Backpack"; -export { Backspace } from "./icons/Backspace"; -export { Bag } from "./icons/Bag"; -export { BagSimple } from "./icons/BagSimple"; -export { Balloon } from "./icons/Balloon"; -export { Bandaids } from "./icons/Bandaids"; -export { Bank } from "./icons/Bank"; -export { Barbell } from "./icons/Barbell"; -export { Barcode } from "./icons/Barcode"; -export { Barricade } from "./icons/Barricade"; -export { Baseball } from "./icons/Baseball"; -export { BaseballCap } from "./icons/BaseballCap"; -export { Basket } from "./icons/Basket"; -export { Basketball } from "./icons/Basketball"; -export { Bathtub } from "./icons/Bathtub"; -export { BatteryCharging } from "./icons/BatteryCharging"; -export { BatteryChargingVertical } from "./icons/BatteryChargingVertical"; -export { BatteryEmpty } from "./icons/BatteryEmpty"; -export { BatteryFull } from "./icons/BatteryFull"; -export { BatteryHigh } from "./icons/BatteryHigh"; -export { BatteryLow } from "./icons/BatteryLow"; -export { BatteryMedium } from "./icons/BatteryMedium"; -export { BatteryPlus } from "./icons/BatteryPlus"; -export { BatteryPlusVertical } from "./icons/BatteryPlusVertical"; -export { BatteryVerticalEmpty } from "./icons/BatteryVerticalEmpty"; -export { BatteryVerticalFull } from "./icons/BatteryVerticalFull"; -export { BatteryVerticalHigh } from "./icons/BatteryVerticalHigh"; -export { BatteryVerticalLow } from "./icons/BatteryVerticalLow"; -export { BatteryVerticalMedium } from "./icons/BatteryVerticalMedium"; -export { BatteryWarning } from "./icons/BatteryWarning"; -export { BatteryWarningVertical } from "./icons/BatteryWarningVertical"; -export { Bed } from "./icons/Bed"; -export { BeerBottle } from "./icons/BeerBottle"; -export { BeerStein } from "./icons/BeerStein"; -export { BehanceLogo } from "./icons/BehanceLogo"; -export { Bell } from "./icons/Bell"; -export { BellRinging } from "./icons/BellRinging"; -export { BellSimple } from "./icons/BellSimple"; -export { BellSimpleRinging } from "./icons/BellSimpleRinging"; -export { BellSimpleSlash } from "./icons/BellSimpleSlash"; -export { BellSimpleZ } from "./icons/BellSimpleZ"; -export { BellSlash } from "./icons/BellSlash"; -export { BellZ } from "./icons/BellZ"; -export { BezierCurve } from "./icons/BezierCurve"; -export { Bicycle } from "./icons/Bicycle"; -export { Binoculars } from "./icons/Binoculars"; -export { Bird } from "./icons/Bird"; -export { Bluetooth } from "./icons/Bluetooth"; -export { BluetoothConnected } from "./icons/BluetoothConnected"; -export { BluetoothSlash } from "./icons/BluetoothSlash"; -export { BluetoothX } from "./icons/BluetoothX"; -export { Boat } from "./icons/Boat"; -export { Bone } from "./icons/Bone"; -export { Book } from "./icons/Book"; -export { BookBookmark } from "./icons/BookBookmark"; -export { BookOpen } from "./icons/BookOpen"; -export { BookOpenText } from "./icons/BookOpenText"; -export { Bookmark } from "./icons/Bookmark"; -export { BookmarkSimple } from "./icons/BookmarkSimple"; -export { Bookmarks } from "./icons/Bookmarks"; -export { BookmarksSimple } from "./icons/BookmarksSimple"; -export { Books } from "./icons/Books"; -export { Boot } from "./icons/Boot"; -export { BoundingBox } from "./icons/BoundingBox"; -export { BowlFood } from "./icons/BowlFood"; -export { BracketsAngle } from "./icons/BracketsAngle"; -export { BracketsCurly } from "./icons/BracketsCurly"; -export { BracketsRound } from "./icons/BracketsRound"; -export { BracketsSquare } from "./icons/BracketsSquare"; -export { Brain } from "./icons/Brain"; -export { Brandy } from "./icons/Brandy"; -export { Bridge } from "./icons/Bridge"; -export { Briefcase } from "./icons/Briefcase"; -export { BriefcaseMetal } from "./icons/BriefcaseMetal"; -export { Broadcast } from "./icons/Broadcast"; -export { Broom } from "./icons/Broom"; -export { Browser } from "./icons/Browser"; -export { Browsers } from "./icons/Browsers"; -export { BugBeetle } from "./icons/BugBeetle"; -export { Bug } from "./icons/Bug"; -export { BugDroid } from "./icons/BugDroid"; -export { Buildings } from "./icons/Buildings"; -export { Bus } from "./icons/Bus"; -export { Butterfly } from "./icons/Butterfly"; -export { Cactus } from "./icons/Cactus"; -export { Cake } from "./icons/Cake"; -export { Calculator } from "./icons/Calculator"; -export { CalendarBlank } from "./icons/CalendarBlank"; -export { Calendar } from "./icons/Calendar"; -export { CalendarCheck } from "./icons/CalendarCheck"; -export { CalendarPlus } from "./icons/CalendarPlus"; -export { CalendarX } from "./icons/CalendarX"; -export { CallBell } from "./icons/CallBell"; -export { Camera } from "./icons/Camera"; -export { CameraPlus } from "./icons/CameraPlus"; -export { CameraRotate } from "./icons/CameraRotate"; -export { CameraSlash } from "./icons/CameraSlash"; -export { Campfire } from "./icons/Campfire"; -export { Car } from "./icons/Car"; -export { CarProfile } from "./icons/CarProfile"; -export { CarSimple } from "./icons/CarSimple"; -export { Cardholder } from "./icons/Cardholder"; -export { Cards } from "./icons/Cards"; -export { CaretCircleDoubleDown } from "./icons/CaretCircleDoubleDown"; -export { CaretCircleDoubleLeft } from "./icons/CaretCircleDoubleLeft"; -export { CaretCircleDoubleRight } from "./icons/CaretCircleDoubleRight"; -export { CaretCircleDoubleUp } from "./icons/CaretCircleDoubleUp"; -export { CaretCircleDown } from "./icons/CaretCircleDown"; -export { CaretCircleLeft } from "./icons/CaretCircleLeft"; -export { CaretCircleRight } from "./icons/CaretCircleRight"; -export { CaretCircleUp } from "./icons/CaretCircleUp"; -export { CaretCircleUpDown } from "./icons/CaretCircleUpDown"; -export { CaretDoubleDown } from "./icons/CaretDoubleDown"; -export { CaretDoubleLeft } from "./icons/CaretDoubleLeft"; -export { CaretDoubleRight } from "./icons/CaretDoubleRight"; -export { CaretDoubleUp } from "./icons/CaretDoubleUp"; -export { CaretDown } from "./icons/CaretDown"; -export { CaretLeft } from "./icons/CaretLeft"; -export { CaretRight } from "./icons/CaretRight"; -export { CaretUp } from "./icons/CaretUp"; -export { CaretUpDown } from "./icons/CaretUpDown"; -export { Carrot } from "./icons/Carrot"; -export { CassetteTape } from "./icons/CassetteTape"; -export { CastleTurret } from "./icons/CastleTurret"; -export { Cat } from "./icons/Cat"; -export { CellSignalFull } from "./icons/CellSignalFull"; -export { CellSignalHigh } from "./icons/CellSignalHigh"; -export { CellSignalLow } from "./icons/CellSignalLow"; -export { CellSignalMedium } from "./icons/CellSignalMedium"; -export { CellSignalNone } from "./icons/CellSignalNone"; -export { CellSignalSlash } from "./icons/CellSignalSlash"; -export { CellSignalX } from "./icons/CellSignalX"; -export { Certificate } from "./icons/Certificate"; -export { Chair } from "./icons/Chair"; -export { Chalkboard } from "./icons/Chalkboard"; -export { ChalkboardSimple } from "./icons/ChalkboardSimple"; -export { ChalkboardTeacher } from "./icons/ChalkboardTeacher"; -export { Champagne } from "./icons/Champagne"; -export { ChargingStation } from "./icons/ChargingStation"; -export { ChartBar } from "./icons/ChartBar"; -export { ChartBarHorizontal } from "./icons/ChartBarHorizontal"; -export { ChartDonut } from "./icons/ChartDonut"; -export { ChartLine } from "./icons/ChartLine"; -export { ChartLineDown } from "./icons/ChartLineDown"; -export { ChartLineUp } from "./icons/ChartLineUp"; -export { ChartPie } from "./icons/ChartPie"; -export { ChartPieSlice } from "./icons/ChartPieSlice"; -export { ChartPolar } from "./icons/ChartPolar"; -export { ChartScatter } from "./icons/ChartScatter"; -export { Chat } from "./icons/Chat"; -export { ChatCentered } from "./icons/ChatCentered"; -export { ChatCenteredDots } from "./icons/ChatCenteredDots"; -export { ChatCenteredText } from "./icons/ChatCenteredText"; -export { ChatCircle } from "./icons/ChatCircle"; -export { ChatCircleDots } from "./icons/ChatCircleDots"; -export { ChatCircleText } from "./icons/ChatCircleText"; -export { ChatDots } from "./icons/ChatDots"; -export { ChatTeardrop } from "./icons/ChatTeardrop"; -export { ChatTeardropDots } from "./icons/ChatTeardropDots"; -export { ChatTeardropText } from "./icons/ChatTeardropText"; -export { ChatText } from "./icons/ChatText"; -export { Chats } from "./icons/Chats"; -export { ChatsCircle } from "./icons/ChatsCircle"; -export { ChatsTeardrop } from "./icons/ChatsTeardrop"; -export { Check } from "./icons/Check"; -export { CheckCircle } from "./icons/CheckCircle"; -export { CheckFat } from "./icons/CheckFat"; -export { CheckSquare } from "./icons/CheckSquare"; -export { CheckSquareOffset } from "./icons/CheckSquareOffset"; -export { Checks } from "./icons/Checks"; -export { Church } from "./icons/Church"; -export { Circle } from "./icons/Circle"; -export { CircleDashed } from "./icons/CircleDashed"; -export { CircleHalf } from "./icons/CircleHalf"; -export { CircleHalfTilt } from "./icons/CircleHalfTilt"; -export { CircleNotch } from "./icons/CircleNotch"; -export { CirclesFour } from "./icons/CirclesFour"; -export { CirclesThree } from "./icons/CirclesThree"; -export { CirclesThreePlus } from "./icons/CirclesThreePlus"; -export { Circuitry } from "./icons/Circuitry"; -export { Clipboard } from "./icons/Clipboard"; -export { ClipboardText } from "./icons/ClipboardText"; -export { ClockAfternoon } from "./icons/ClockAfternoon"; -export { Clock } from "./icons/Clock"; -export { ClockClockwise } from "./icons/ClockClockwise"; -export { ClockCountdown } from "./icons/ClockCountdown"; -export { ClockCounterClockwise } from "./icons/ClockCounterClockwise"; -export { ClosedCaptioning } from "./icons/ClosedCaptioning"; -export { CloudArrowDown } from "./icons/CloudArrowDown"; -export { CloudArrowUp } from "./icons/CloudArrowUp"; -export { Cloud } from "./icons/Cloud"; -export { CloudCheck } from "./icons/CloudCheck"; -export { CloudFog } from "./icons/CloudFog"; -export { CloudLightning } from "./icons/CloudLightning"; -export { CloudMoon } from "./icons/CloudMoon"; -export { CloudRain } from "./icons/CloudRain"; -export { CloudSlash } from "./icons/CloudSlash"; -export { CloudSnow } from "./icons/CloudSnow"; -export { CloudSun } from "./icons/CloudSun"; -export { CloudWarning } from "./icons/CloudWarning"; -export { CloudX } from "./icons/CloudX"; -export { Club } from "./icons/Club"; -export { CoatHanger } from "./icons/CoatHanger"; -export { CodaLogo } from "./icons/CodaLogo"; -export { CodeBlock } from "./icons/CodeBlock"; -export { Code } from "./icons/Code"; -export { CodeSimple } from "./icons/CodeSimple"; -export { CodepenLogo } from "./icons/CodepenLogo"; -export { CodesandboxLogo } from "./icons/CodesandboxLogo"; -export { Coffee } from "./icons/Coffee"; -export { Coin } from "./icons/Coin"; -export { CoinVertical } from "./icons/CoinVertical"; -export { Coins } from "./icons/Coins"; -export { Columns } from "./icons/Columns"; -export { Command } from "./icons/Command"; -export { Compass } from "./icons/Compass"; -export { CompassTool } from "./icons/CompassTool"; -export { ComputerTower } from "./icons/ComputerTower"; -export { Confetti } from "./icons/Confetti"; -export { ContactlessPayment } from "./icons/ContactlessPayment"; -export { Control } from "./icons/Control"; -export { Cookie } from "./icons/Cookie"; -export { CookingPot } from "./icons/CookingPot"; -export { Copy } from "./icons/Copy"; -export { CopySimple } from "./icons/CopySimple"; -export { Copyleft } from "./icons/Copyleft"; -export { Copyright } from "./icons/Copyright"; -export { CornersIn } from "./icons/CornersIn"; -export { CornersOut } from "./icons/CornersOut"; -export { Couch } from "./icons/Couch"; -export { Cpu } from "./icons/Cpu"; -export { CreditCard } from "./icons/CreditCard"; -export { Crop } from "./icons/Crop"; -export { Cross } from "./icons/Cross"; -export { Crosshair } from "./icons/Crosshair"; -export { CrosshairSimple } from "./icons/CrosshairSimple"; -export { Crown } from "./icons/Crown"; -export { CrownSimple } from "./icons/CrownSimple"; -export { Cube } from "./icons/Cube"; -export { CubeFocus } from "./icons/CubeFocus"; -export { CubeTransparent } from "./icons/CubeTransparent"; -export { CurrencyBtc } from "./icons/CurrencyBtc"; -export { CurrencyCircleDollar } from "./icons/CurrencyCircleDollar"; -export { CurrencyCny } from "./icons/CurrencyCny"; -export { CurrencyDollar } from "./icons/CurrencyDollar"; -export { CurrencyDollarSimple } from "./icons/CurrencyDollarSimple"; -export { CurrencyEth } from "./icons/CurrencyEth"; -export { CurrencyEur } from "./icons/CurrencyEur"; -export { CurrencyGbp } from "./icons/CurrencyGbp"; -export { CurrencyInr } from "./icons/CurrencyInr"; -export { CurrencyJpy } from "./icons/CurrencyJpy"; -export { CurrencyKrw } from "./icons/CurrencyKrw"; -export { CurrencyKzt } from "./icons/CurrencyKzt"; -export { CurrencyNgn } from "./icons/CurrencyNgn"; -export { CurrencyRub } from "./icons/CurrencyRub"; -export { Cursor } from "./icons/Cursor"; -export { CursorClick } from "./icons/CursorClick"; -export { CursorText } from "./icons/CursorText"; -export { Cylinder } from "./icons/Cylinder"; -export { Database } from "./icons/Database"; -export { Desktop } from "./icons/Desktop"; -export { DesktopTower } from "./icons/DesktopTower"; -export { Detective } from "./icons/Detective"; -export { DevToLogo } from "./icons/DevToLogo"; -export { DeviceMobile } from "./icons/DeviceMobile"; -export { DeviceMobileCamera } from "./icons/DeviceMobileCamera"; -export { DeviceMobileSpeaker } from "./icons/DeviceMobileSpeaker"; -export { DeviceTablet } from "./icons/DeviceTablet"; -export { DeviceTabletCamera } from "./icons/DeviceTabletCamera"; -export { DeviceTabletSpeaker } from "./icons/DeviceTabletSpeaker"; -export { Devices } from "./icons/Devices"; -export { Diamond } from "./icons/Diamond"; -export { DiamondsFour } from "./icons/DiamondsFour"; -export { DiceFive } from "./icons/DiceFive"; -export { DiceFour } from "./icons/DiceFour"; -export { DiceOne } from "./icons/DiceOne"; -export { DiceSix } from "./icons/DiceSix"; -export { DiceThree } from "./icons/DiceThree"; -export { DiceTwo } from "./icons/DiceTwo"; -export { Disc } from "./icons/Disc"; -export { DiscordLogo } from "./icons/DiscordLogo"; -export { Divide } from "./icons/Divide"; -export { Dna } from "./icons/Dna"; -export { Dog } from "./icons/Dog"; -export { Door } from "./icons/Door"; -export { DoorOpen } from "./icons/DoorOpen"; -export { Dot } from "./icons/Dot"; -export { DotOutline } from "./icons/DotOutline"; -export { DotsNine } from "./icons/DotsNine"; -export { DotsSix } from "./icons/DotsSix"; -export { DotsSixVertical } from "./icons/DotsSixVertical"; -export { DotsThree } from "./icons/DotsThree"; -export { DotsThreeCircle } from "./icons/DotsThreeCircle"; -export { DotsThreeCircleVertical } from "./icons/DotsThreeCircleVertical"; -export { DotsThreeOutline } from "./icons/DotsThreeOutline"; -export { DotsThreeOutlineVertical } from "./icons/DotsThreeOutlineVertical"; -export { DotsThreeVertical } from "./icons/DotsThreeVertical"; -export { Download } from "./icons/Download"; -export { DownloadSimple } from "./icons/DownloadSimple"; -export { Dress } from "./icons/Dress"; -export { DribbbleLogo } from "./icons/DribbbleLogo"; -export { Drop } from "./icons/Drop"; -export { DropHalf } from "./icons/DropHalf"; -export { DropHalfBottom } from "./icons/DropHalfBottom"; -export { DropboxLogo } from "./icons/DropboxLogo"; -export { Ear } from "./icons/Ear"; -export { EarSlash } from "./icons/EarSlash"; -export { Egg } from "./icons/Egg"; -export { EggCrack } from "./icons/EggCrack"; -export { Eject } from "./icons/Eject"; -export { EjectSimple } from "./icons/EjectSimple"; -export { Elevator } from "./icons/Elevator"; -export { Engine } from "./icons/Engine"; -export { Envelope } from "./icons/Envelope"; -export { EnvelopeOpen } from "./icons/EnvelopeOpen"; -export { EnvelopeSimple } from "./icons/EnvelopeSimple"; -export { EnvelopeSimpleOpen } from "./icons/EnvelopeSimpleOpen"; -export { Equalizer } from "./icons/Equalizer"; -export { Equals } from "./icons/Equals"; -export { Eraser } from "./icons/Eraser"; -export { EscalatorDown } from "./icons/EscalatorDown"; -export { EscalatorUp } from "./icons/EscalatorUp"; -export { Exam } from "./icons/Exam"; -export { Exclude } from "./icons/Exclude"; -export { ExcludeSquare } from "./icons/ExcludeSquare"; -export { Export } from "./icons/Export"; -export { Eye } from "./icons/Eye"; -export { EyeClosed } from "./icons/EyeClosed"; -export { EyeSlash } from "./icons/EyeSlash"; -export { Eyedropper } from "./icons/Eyedropper"; -export { EyedropperSample } from "./icons/EyedropperSample"; -export { Eyeglasses } from "./icons/Eyeglasses"; -export { FaceMask } from "./icons/FaceMask"; -export { FacebookLogo } from "./icons/FacebookLogo"; -export { Factory } from "./icons/Factory"; -export { Faders } from "./icons/Faders"; -export { FadersHorizontal } from "./icons/FadersHorizontal"; -export { Fan } from "./icons/Fan"; -export { FastForward } from "./icons/FastForward"; -export { FastForwardCircle } from "./icons/FastForwardCircle"; -export { Feather } from "./icons/Feather"; -export { FigmaLogo } from "./icons/FigmaLogo"; -export { FileArchive } from "./icons/FileArchive"; -export { FileArrowDown } from "./icons/FileArrowDown"; -export { FileArrowUp } from "./icons/FileArrowUp"; -export { FileAudio } from "./icons/FileAudio"; -export { File } from "./icons/File"; -export { FileCloud } from "./icons/FileCloud"; -export { FileCode } from "./icons/FileCode"; -export { FileCss } from "./icons/FileCss"; -export { FileCsv } from "./icons/FileCsv"; -export { FileDashed, FileDashed as FileDotted } from "./icons/FileDashed"; -export { FileDoc } from "./icons/FileDoc"; -export { FileHtml } from "./icons/FileHtml"; -export { FileImage } from "./icons/FileImage"; -export { FileJpg } from "./icons/FileJpg"; -export { FileJs } from "./icons/FileJs"; -export { FileJsx } from "./icons/FileJsx"; -export { FileLock } from "./icons/FileLock"; +export { AddressBook } from "./csr/AddressBook"; +export { AirTrafficControl } from "./csr/AirTrafficControl"; +export { Airplane } from "./csr/Airplane"; +export { AirplaneInFlight } from "./csr/AirplaneInFlight"; +export { AirplaneLanding } from "./csr/AirplaneLanding"; +export { AirplaneTakeoff } from "./csr/AirplaneTakeoff"; +export { AirplaneTilt } from "./csr/AirplaneTilt"; +export { Airplay } from "./csr/Airplay"; +export { Alarm } from "./csr/Alarm"; +export { Alien } from "./csr/Alien"; +export { AlignBottom } from "./csr/AlignBottom"; +export { AlignBottomSimple } from "./csr/AlignBottomSimple"; +export { AlignCenterHorizontal } from "./csr/AlignCenterHorizontal"; +export { AlignCenterHorizontalSimple } from "./csr/AlignCenterHorizontalSimple"; +export { AlignCenterVertical } from "./csr/AlignCenterVertical"; +export { AlignCenterVerticalSimple } from "./csr/AlignCenterVerticalSimple"; +export { AlignLeft } from "./csr/AlignLeft"; +export { AlignLeftSimple } from "./csr/AlignLeftSimple"; +export { AlignRight } from "./csr/AlignRight"; +export { AlignRightSimple } from "./csr/AlignRightSimple"; +export { AlignTop } from "./csr/AlignTop"; +export { AlignTopSimple } from "./csr/AlignTopSimple"; +export { AmazonLogo } from "./csr/AmazonLogo"; +export { Anchor } from "./csr/Anchor"; +export { AnchorSimple } from "./csr/AnchorSimple"; +export { AndroidLogo } from "./csr/AndroidLogo"; +export { AngularLogo } from "./csr/AngularLogo"; +export { Aperture } from "./csr/Aperture"; +export { AppStoreLogo } from "./csr/AppStoreLogo"; +export { AppWindow } from "./csr/AppWindow"; +export { AppleLogo } from "./csr/AppleLogo"; +export { ApplePodcastsLogo } from "./csr/ApplePodcastsLogo"; +export { Archive } from "./csr/Archive"; +export { ArchiveBox } from "./csr/ArchiveBox"; +export { ArchiveTray } from "./csr/ArchiveTray"; +export { Armchair } from "./csr/Armchair"; +export { ArrowArcLeft } from "./csr/ArrowArcLeft"; +export { ArrowArcRight } from "./csr/ArrowArcRight"; +export { ArrowBendDoubleUpLeft } from "./csr/ArrowBendDoubleUpLeft"; +export { ArrowBendDoubleUpRight } from "./csr/ArrowBendDoubleUpRight"; +export { ArrowBendDownLeft } from "./csr/ArrowBendDownLeft"; +export { ArrowBendDownRight } from "./csr/ArrowBendDownRight"; +export { ArrowBendLeftDown } from "./csr/ArrowBendLeftDown"; +export { ArrowBendLeftUp } from "./csr/ArrowBendLeftUp"; +export { ArrowBendRightDown } from "./csr/ArrowBendRightDown"; +export { ArrowBendRightUp } from "./csr/ArrowBendRightUp"; +export { ArrowBendUpLeft } from "./csr/ArrowBendUpLeft"; +export { ArrowBendUpRight } from "./csr/ArrowBendUpRight"; +export { ArrowCircleDown } from "./csr/ArrowCircleDown"; +export { ArrowCircleDownLeft } from "./csr/ArrowCircleDownLeft"; +export { ArrowCircleDownRight } from "./csr/ArrowCircleDownRight"; +export { ArrowCircleLeft } from "./csr/ArrowCircleLeft"; +export { ArrowCircleRight } from "./csr/ArrowCircleRight"; +export { ArrowCircleUp } from "./csr/ArrowCircleUp"; +export { ArrowCircleUpLeft } from "./csr/ArrowCircleUpLeft"; +export { ArrowCircleUpRight } from "./csr/ArrowCircleUpRight"; +export { ArrowClockwise } from "./csr/ArrowClockwise"; +export { ArrowCounterClockwise } from "./csr/ArrowCounterClockwise"; +export { ArrowDown } from "./csr/ArrowDown"; +export { ArrowDownLeft } from "./csr/ArrowDownLeft"; +export { ArrowDownRight } from "./csr/ArrowDownRight"; +export { ArrowElbowDownLeft } from "./csr/ArrowElbowDownLeft"; +export { ArrowElbowDownRight } from "./csr/ArrowElbowDownRight"; +export { ArrowElbowLeft } from "./csr/ArrowElbowLeft"; +export { ArrowElbowLeftDown } from "./csr/ArrowElbowLeftDown"; +export { ArrowElbowLeftUp } from "./csr/ArrowElbowLeftUp"; +export { ArrowElbowRight } from "./csr/ArrowElbowRight"; +export { ArrowElbowRightDown } from "./csr/ArrowElbowRightDown"; +export { ArrowElbowRightUp } from "./csr/ArrowElbowRightUp"; +export { ArrowElbowUpLeft } from "./csr/ArrowElbowUpLeft"; +export { ArrowElbowUpRight } from "./csr/ArrowElbowUpRight"; +export { ArrowFatDown } from "./csr/ArrowFatDown"; +export { ArrowFatLeft } from "./csr/ArrowFatLeft"; +export { ArrowFatLineDown } from "./csr/ArrowFatLineDown"; +export { ArrowFatLineLeft } from "./csr/ArrowFatLineLeft"; +export { ArrowFatLineRight } from "./csr/ArrowFatLineRight"; +export { ArrowFatLineUp } from "./csr/ArrowFatLineUp"; +export { ArrowFatLinesDown } from "./csr/ArrowFatLinesDown"; +export { ArrowFatLinesLeft } from "./csr/ArrowFatLinesLeft"; +export { ArrowFatLinesRight } from "./csr/ArrowFatLinesRight"; +export { ArrowFatLinesUp } from "./csr/ArrowFatLinesUp"; +export { ArrowFatRight } from "./csr/ArrowFatRight"; +export { ArrowFatUp } from "./csr/ArrowFatUp"; +export { ArrowLeft } from "./csr/ArrowLeft"; +export { ArrowLineDown } from "./csr/ArrowLineDown"; +export { ArrowLineDownLeft } from "./csr/ArrowLineDownLeft"; +export { ArrowLineDownRight } from "./csr/ArrowLineDownRight"; +export { ArrowLineLeft } from "./csr/ArrowLineLeft"; +export { ArrowLineRight } from "./csr/ArrowLineRight"; +export { ArrowLineUp } from "./csr/ArrowLineUp"; +export { ArrowLineUpLeft } from "./csr/ArrowLineUpLeft"; +export { ArrowLineUpRight } from "./csr/ArrowLineUpRight"; +export { ArrowRight } from "./csr/ArrowRight"; +export { ArrowSquareDown } from "./csr/ArrowSquareDown"; +export { ArrowSquareDownLeft } from "./csr/ArrowSquareDownLeft"; +export { ArrowSquareDownRight } from "./csr/ArrowSquareDownRight"; +export { ArrowSquareIn } from "./csr/ArrowSquareIn"; +export { ArrowSquareLeft } from "./csr/ArrowSquareLeft"; +export { ArrowSquareOut } from "./csr/ArrowSquareOut"; +export { ArrowSquareRight } from "./csr/ArrowSquareRight"; +export { ArrowSquareUp } from "./csr/ArrowSquareUp"; +export { ArrowSquareUpLeft } from "./csr/ArrowSquareUpLeft"; +export { ArrowSquareUpRight } from "./csr/ArrowSquareUpRight"; +export { ArrowUDownLeft } from "./csr/ArrowUDownLeft"; +export { ArrowUDownRight } from "./csr/ArrowUDownRight"; +export { ArrowULeftDown } from "./csr/ArrowULeftDown"; +export { ArrowULeftUp } from "./csr/ArrowULeftUp"; +export { ArrowURightDown } from "./csr/ArrowURightDown"; +export { ArrowURightUp } from "./csr/ArrowURightUp"; +export { ArrowUUpLeft } from "./csr/ArrowUUpLeft"; +export { ArrowUUpRight } from "./csr/ArrowUUpRight"; +export { ArrowUp } from "./csr/ArrowUp"; +export { ArrowUpLeft } from "./csr/ArrowUpLeft"; +export { ArrowUpRight } from "./csr/ArrowUpRight"; +export { ArrowsClockwise } from "./csr/ArrowsClockwise"; +export { ArrowsCounterClockwise } from "./csr/ArrowsCounterClockwise"; +export { ArrowsDownUp } from "./csr/ArrowsDownUp"; +export { ArrowsHorizontal } from "./csr/ArrowsHorizontal"; +export { ArrowsIn } from "./csr/ArrowsIn"; +export { ArrowsInCardinal } from "./csr/ArrowsInCardinal"; +export { ArrowsInLineHorizontal } from "./csr/ArrowsInLineHorizontal"; +export { ArrowsInLineVertical } from "./csr/ArrowsInLineVertical"; +export { ArrowsInSimple } from "./csr/ArrowsInSimple"; +export { ArrowsLeftRight } from "./csr/ArrowsLeftRight"; +export { ArrowsMerge } from "./csr/ArrowsMerge"; +export { ArrowsOut } from "./csr/ArrowsOut"; +export { ArrowsOutCardinal } from "./csr/ArrowsOutCardinal"; +export { ArrowsOutLineHorizontal } from "./csr/ArrowsOutLineHorizontal"; +export { ArrowsOutLineVertical } from "./csr/ArrowsOutLineVertical"; +export { ArrowsOutSimple } from "./csr/ArrowsOutSimple"; +export { ArrowsSplit } from "./csr/ArrowsSplit"; +export { ArrowsVertical } from "./csr/ArrowsVertical"; +export { Article } from "./csr/Article"; +export { ArticleMedium } from "./csr/ArticleMedium"; +export { ArticleNyTimes } from "./csr/ArticleNyTimes"; +export { Asterisk } from "./csr/Asterisk"; +export { AsteriskSimple } from "./csr/AsteriskSimple"; +export { At } from "./csr/At"; +export { Atom } from "./csr/Atom"; +export { Baby } from "./csr/Baby"; +export { Backpack } from "./csr/Backpack"; +export { Backspace } from "./csr/Backspace"; +export { Bag } from "./csr/Bag"; +export { BagSimple } from "./csr/BagSimple"; +export { Balloon } from "./csr/Balloon"; +export { Bandaids } from "./csr/Bandaids"; +export { Bank } from "./csr/Bank"; +export { Barbell } from "./csr/Barbell"; +export { Barcode } from "./csr/Barcode"; +export { Barricade } from "./csr/Barricade"; +export { Baseball } from "./csr/Baseball"; +export { BaseballCap } from "./csr/BaseballCap"; +export { Basket } from "./csr/Basket"; +export { Basketball } from "./csr/Basketball"; +export { Bathtub } from "./csr/Bathtub"; +export { BatteryCharging } from "./csr/BatteryCharging"; +export { BatteryChargingVertical } from "./csr/BatteryChargingVertical"; +export { BatteryEmpty } from "./csr/BatteryEmpty"; +export { BatteryFull } from "./csr/BatteryFull"; +export { BatteryHigh } from "./csr/BatteryHigh"; +export { BatteryLow } from "./csr/BatteryLow"; +export { BatteryMedium } from "./csr/BatteryMedium"; +export { BatteryPlus } from "./csr/BatteryPlus"; +export { BatteryPlusVertical } from "./csr/BatteryPlusVertical"; +export { BatteryVerticalEmpty } from "./csr/BatteryVerticalEmpty"; +export { BatteryVerticalFull } from "./csr/BatteryVerticalFull"; +export { BatteryVerticalHigh } from "./csr/BatteryVerticalHigh"; +export { BatteryVerticalLow } from "./csr/BatteryVerticalLow"; +export { BatteryVerticalMedium } from "./csr/BatteryVerticalMedium"; +export { BatteryWarning } from "./csr/BatteryWarning"; +export { BatteryWarningVertical } from "./csr/BatteryWarningVertical"; +export { Bed } from "./csr/Bed"; +export { BeerBottle } from "./csr/BeerBottle"; +export { BeerStein } from "./csr/BeerStein"; +export { BehanceLogo } from "./csr/BehanceLogo"; +export { Bell } from "./csr/Bell"; +export { BellRinging } from "./csr/BellRinging"; +export { BellSimple } from "./csr/BellSimple"; +export { BellSimpleRinging } from "./csr/BellSimpleRinging"; +export { BellSimpleSlash } from "./csr/BellSimpleSlash"; +export { BellSimpleZ } from "./csr/BellSimpleZ"; +export { BellSlash } from "./csr/BellSlash"; +export { BellZ } from "./csr/BellZ"; +export { BezierCurve } from "./csr/BezierCurve"; +export { Bicycle } from "./csr/Bicycle"; +export { Binoculars } from "./csr/Binoculars"; +export { Bird } from "./csr/Bird"; +export { Bluetooth } from "./csr/Bluetooth"; +export { BluetoothConnected } from "./csr/BluetoothConnected"; +export { BluetoothSlash } from "./csr/BluetoothSlash"; +export { BluetoothX } from "./csr/BluetoothX"; +export { Boat } from "./csr/Boat"; +export { Bone } from "./csr/Bone"; +export { Book } from "./csr/Book"; +export { BookBookmark } from "./csr/BookBookmark"; +export { BookOpen } from "./csr/BookOpen"; +export { BookOpenText } from "./csr/BookOpenText"; +export { Bookmark } from "./csr/Bookmark"; +export { BookmarkSimple } from "./csr/BookmarkSimple"; +export { Bookmarks } from "./csr/Bookmarks"; +export { BookmarksSimple } from "./csr/BookmarksSimple"; +export { Books } from "./csr/Books"; +export { Boot } from "./csr/Boot"; +export { BoundingBox } from "./csr/BoundingBox"; +export { BowlFood } from "./csr/BowlFood"; +export { BracketsAngle } from "./csr/BracketsAngle"; +export { BracketsCurly } from "./csr/BracketsCurly"; +export { BracketsRound } from "./csr/BracketsRound"; +export { BracketsSquare } from "./csr/BracketsSquare"; +export { Brain } from "./csr/Brain"; +export { Brandy } from "./csr/Brandy"; +export { Bridge } from "./csr/Bridge"; +export { Briefcase } from "./csr/Briefcase"; +export { BriefcaseMetal } from "./csr/BriefcaseMetal"; +export { Broadcast } from "./csr/Broadcast"; +export { Broom } from "./csr/Broom"; +export { Browser } from "./csr/Browser"; +export { Browsers } from "./csr/Browsers"; +export { BugBeetle } from "./csr/BugBeetle"; +export { Bug } from "./csr/Bug"; +export { BugDroid } from "./csr/BugDroid"; +export { Buildings } from "./csr/Buildings"; +export { Bus } from "./csr/Bus"; +export { Butterfly } from "./csr/Butterfly"; +export { Cactus } from "./csr/Cactus"; +export { Cake } from "./csr/Cake"; +export { Calculator } from "./csr/Calculator"; +export { CalendarBlank } from "./csr/CalendarBlank"; +export { Calendar } from "./csr/Calendar"; +export { CalendarCheck } from "./csr/CalendarCheck"; +export { CalendarPlus } from "./csr/CalendarPlus"; +export { CalendarX } from "./csr/CalendarX"; +export { CallBell } from "./csr/CallBell"; +export { Camera } from "./csr/Camera"; +export { CameraPlus } from "./csr/CameraPlus"; +export { CameraRotate } from "./csr/CameraRotate"; +export { CameraSlash } from "./csr/CameraSlash"; +export { Campfire } from "./csr/Campfire"; +export { Car } from "./csr/Car"; +export { CarProfile } from "./csr/CarProfile"; +export { CarSimple } from "./csr/CarSimple"; +export { Cardholder } from "./csr/Cardholder"; +export { Cards } from "./csr/Cards"; +export { CaretCircleDoubleDown } from "./csr/CaretCircleDoubleDown"; +export { CaretCircleDoubleLeft } from "./csr/CaretCircleDoubleLeft"; +export { CaretCircleDoubleRight } from "./csr/CaretCircleDoubleRight"; +export { CaretCircleDoubleUp } from "./csr/CaretCircleDoubleUp"; +export { CaretCircleDown } from "./csr/CaretCircleDown"; +export { CaretCircleLeft } from "./csr/CaretCircleLeft"; +export { CaretCircleRight } from "./csr/CaretCircleRight"; +export { CaretCircleUp } from "./csr/CaretCircleUp"; +export { CaretCircleUpDown } from "./csr/CaretCircleUpDown"; +export { CaretDoubleDown } from "./csr/CaretDoubleDown"; +export { CaretDoubleLeft } from "./csr/CaretDoubleLeft"; +export { CaretDoubleRight } from "./csr/CaretDoubleRight"; +export { CaretDoubleUp } from "./csr/CaretDoubleUp"; +export { CaretDown } from "./csr/CaretDown"; +export { CaretLeft } from "./csr/CaretLeft"; +export { CaretRight } from "./csr/CaretRight"; +export { CaretUp } from "./csr/CaretUp"; +export { CaretUpDown } from "./csr/CaretUpDown"; +export { Carrot } from "./csr/Carrot"; +export { CassetteTape } from "./csr/CassetteTape"; +export { CastleTurret } from "./csr/CastleTurret"; +export { Cat } from "./csr/Cat"; +export { CellSignalFull } from "./csr/CellSignalFull"; +export { CellSignalHigh } from "./csr/CellSignalHigh"; +export { CellSignalLow } from "./csr/CellSignalLow"; +export { CellSignalMedium } from "./csr/CellSignalMedium"; +export { CellSignalNone } from "./csr/CellSignalNone"; +export { CellSignalSlash } from "./csr/CellSignalSlash"; +export { CellSignalX } from "./csr/CellSignalX"; +export { Certificate } from "./csr/Certificate"; +export { Chair } from "./csr/Chair"; +export { Chalkboard } from "./csr/Chalkboard"; +export { ChalkboardSimple } from "./csr/ChalkboardSimple"; +export { ChalkboardTeacher } from "./csr/ChalkboardTeacher"; +export { Champagne } from "./csr/Champagne"; +export { ChargingStation } from "./csr/ChargingStation"; +export { ChartBar } from "./csr/ChartBar"; +export { ChartBarHorizontal } from "./csr/ChartBarHorizontal"; +export { ChartDonut } from "./csr/ChartDonut"; +export { ChartLine } from "./csr/ChartLine"; +export { ChartLineDown } from "./csr/ChartLineDown"; +export { ChartLineUp } from "./csr/ChartLineUp"; +export { ChartPie } from "./csr/ChartPie"; +export { ChartPieSlice } from "./csr/ChartPieSlice"; +export { ChartPolar } from "./csr/ChartPolar"; +export { ChartScatter } from "./csr/ChartScatter"; +export { Chat } from "./csr/Chat"; +export { ChatCentered } from "./csr/ChatCentered"; +export { ChatCenteredDots } from "./csr/ChatCenteredDots"; +export { ChatCenteredText } from "./csr/ChatCenteredText"; +export { ChatCircle } from "./csr/ChatCircle"; +export { ChatCircleDots } from "./csr/ChatCircleDots"; +export { ChatCircleText } from "./csr/ChatCircleText"; +export { ChatDots } from "./csr/ChatDots"; +export { ChatTeardrop } from "./csr/ChatTeardrop"; +export { ChatTeardropDots } from "./csr/ChatTeardropDots"; +export { ChatTeardropText } from "./csr/ChatTeardropText"; +export { ChatText } from "./csr/ChatText"; +export { Chats } from "./csr/Chats"; +export { ChatsCircle } from "./csr/ChatsCircle"; +export { ChatsTeardrop } from "./csr/ChatsTeardrop"; +export { Check } from "./csr/Check"; +export { CheckCircle } from "./csr/CheckCircle"; +export { CheckFat } from "./csr/CheckFat"; +export { CheckSquare } from "./csr/CheckSquare"; +export { CheckSquareOffset } from "./csr/CheckSquareOffset"; +export { Checks } from "./csr/Checks"; +export { Church } from "./csr/Church"; +export { Circle } from "./csr/Circle"; +export { CircleDashed } from "./csr/CircleDashed"; +export { CircleHalf } from "./csr/CircleHalf"; +export { CircleHalfTilt } from "./csr/CircleHalfTilt"; +export { CircleNotch } from "./csr/CircleNotch"; +export { CirclesFour } from "./csr/CirclesFour"; +export { CirclesThree } from "./csr/CirclesThree"; +export { CirclesThreePlus } from "./csr/CirclesThreePlus"; +export { Circuitry } from "./csr/Circuitry"; +export { Clipboard } from "./csr/Clipboard"; +export { ClipboardText } from "./csr/ClipboardText"; +export { ClockAfternoon } from "./csr/ClockAfternoon"; +export { Clock } from "./csr/Clock"; +export { ClockClockwise } from "./csr/ClockClockwise"; +export { ClockCountdown } from "./csr/ClockCountdown"; +export { ClockCounterClockwise } from "./csr/ClockCounterClockwise"; +export { ClosedCaptioning } from "./csr/ClosedCaptioning"; +export { CloudArrowDown } from "./csr/CloudArrowDown"; +export { CloudArrowUp } from "./csr/CloudArrowUp"; +export { Cloud } from "./csr/Cloud"; +export { CloudCheck } from "./csr/CloudCheck"; +export { CloudFog } from "./csr/CloudFog"; +export { CloudLightning } from "./csr/CloudLightning"; +export { CloudMoon } from "./csr/CloudMoon"; +export { CloudRain } from "./csr/CloudRain"; +export { CloudSlash } from "./csr/CloudSlash"; +export { CloudSnow } from "./csr/CloudSnow"; +export { CloudSun } from "./csr/CloudSun"; +export { CloudWarning } from "./csr/CloudWarning"; +export { CloudX } from "./csr/CloudX"; +export { Club } from "./csr/Club"; +export { CoatHanger } from "./csr/CoatHanger"; +export { CodaLogo } from "./csr/CodaLogo"; +export { CodeBlock } from "./csr/CodeBlock"; +export { Code } from "./csr/Code"; +export { CodeSimple } from "./csr/CodeSimple"; +export { CodepenLogo } from "./csr/CodepenLogo"; +export { CodesandboxLogo } from "./csr/CodesandboxLogo"; +export { Coffee } from "./csr/Coffee"; +export { Coin } from "./csr/Coin"; +export { CoinVertical } from "./csr/CoinVertical"; +export { Coins } from "./csr/Coins"; +export { Columns } from "./csr/Columns"; +export { Command } from "./csr/Command"; +export { Compass } from "./csr/Compass"; +export { CompassTool } from "./csr/CompassTool"; +export { ComputerTower } from "./csr/ComputerTower"; +export { Confetti } from "./csr/Confetti"; +export { ContactlessPayment } from "./csr/ContactlessPayment"; +export { Control } from "./csr/Control"; +export { Cookie } from "./csr/Cookie"; +export { CookingPot } from "./csr/CookingPot"; +export { Copy } from "./csr/Copy"; +export { CopySimple } from "./csr/CopySimple"; +export { Copyleft } from "./csr/Copyleft"; +export { Copyright } from "./csr/Copyright"; +export { CornersIn } from "./csr/CornersIn"; +export { CornersOut } from "./csr/CornersOut"; +export { Couch } from "./csr/Couch"; +export { Cpu } from "./csr/Cpu"; +export { CreditCard } from "./csr/CreditCard"; +export { Crop } from "./csr/Crop"; +export { Cross } from "./csr/Cross"; +export { Crosshair } from "./csr/Crosshair"; +export { CrosshairSimple } from "./csr/CrosshairSimple"; +export { Crown } from "./csr/Crown"; +export { CrownSimple } from "./csr/CrownSimple"; +export { Cube } from "./csr/Cube"; +export { CubeFocus } from "./csr/CubeFocus"; +export { CubeTransparent } from "./csr/CubeTransparent"; +export { CurrencyBtc } from "./csr/CurrencyBtc"; +export { CurrencyCircleDollar } from "./csr/CurrencyCircleDollar"; +export { CurrencyCny } from "./csr/CurrencyCny"; +export { CurrencyDollar } from "./csr/CurrencyDollar"; +export { CurrencyDollarSimple } from "./csr/CurrencyDollarSimple"; +export { CurrencyEth } from "./csr/CurrencyEth"; +export { CurrencyEur } from "./csr/CurrencyEur"; +export { CurrencyGbp } from "./csr/CurrencyGbp"; +export { CurrencyInr } from "./csr/CurrencyInr"; +export { CurrencyJpy } from "./csr/CurrencyJpy"; +export { CurrencyKrw } from "./csr/CurrencyKrw"; +export { CurrencyKzt } from "./csr/CurrencyKzt"; +export { CurrencyNgn } from "./csr/CurrencyNgn"; +export { CurrencyRub } from "./csr/CurrencyRub"; +export { Cursor } from "./csr/Cursor"; +export { CursorClick } from "./csr/CursorClick"; +export { CursorText } from "./csr/CursorText"; +export { Cylinder } from "./csr/Cylinder"; +export { Database } from "./csr/Database"; +export { Desktop } from "./csr/Desktop"; +export { DesktopTower } from "./csr/DesktopTower"; +export { Detective } from "./csr/Detective"; +export { DevToLogo } from "./csr/DevToLogo"; +export { DeviceMobile } from "./csr/DeviceMobile"; +export { DeviceMobileCamera } from "./csr/DeviceMobileCamera"; +export { DeviceMobileSpeaker } from "./csr/DeviceMobileSpeaker"; +export { DeviceTablet } from "./csr/DeviceTablet"; +export { DeviceTabletCamera } from "./csr/DeviceTabletCamera"; +export { DeviceTabletSpeaker } from "./csr/DeviceTabletSpeaker"; +export { Devices } from "./csr/Devices"; +export { Diamond } from "./csr/Diamond"; +export { DiamondsFour } from "./csr/DiamondsFour"; +export { DiceFive } from "./csr/DiceFive"; +export { DiceFour } from "./csr/DiceFour"; +export { DiceOne } from "./csr/DiceOne"; +export { DiceSix } from "./csr/DiceSix"; +export { DiceThree } from "./csr/DiceThree"; +export { DiceTwo } from "./csr/DiceTwo"; +export { Disc } from "./csr/Disc"; +export { DiscordLogo } from "./csr/DiscordLogo"; +export { Divide } from "./csr/Divide"; +export { Dna } from "./csr/Dna"; +export { Dog } from "./csr/Dog"; +export { Door } from "./csr/Door"; +export { DoorOpen } from "./csr/DoorOpen"; +export { Dot } from "./csr/Dot"; +export { DotOutline } from "./csr/DotOutline"; +export { DotsNine } from "./csr/DotsNine"; +export { DotsSix } from "./csr/DotsSix"; +export { DotsSixVertical } from "./csr/DotsSixVertical"; +export { DotsThree } from "./csr/DotsThree"; +export { DotsThreeCircle } from "./csr/DotsThreeCircle"; +export { DotsThreeCircleVertical } from "./csr/DotsThreeCircleVertical"; +export { DotsThreeOutline } from "./csr/DotsThreeOutline"; +export { DotsThreeOutlineVertical } from "./csr/DotsThreeOutlineVertical"; +export { DotsThreeVertical } from "./csr/DotsThreeVertical"; +export { Download } from "./csr/Download"; +export { DownloadSimple } from "./csr/DownloadSimple"; +export { Dress } from "./csr/Dress"; +export { DribbbleLogo } from "./csr/DribbbleLogo"; +export { Drop } from "./csr/Drop"; +export { DropHalf } from "./csr/DropHalf"; +export { DropHalfBottom } from "./csr/DropHalfBottom"; +export { DropboxLogo } from "./csr/DropboxLogo"; +export { Ear } from "./csr/Ear"; +export { EarSlash } from "./csr/EarSlash"; +export { Egg } from "./csr/Egg"; +export { EggCrack } from "./csr/EggCrack"; +export { Eject } from "./csr/Eject"; +export { EjectSimple } from "./csr/EjectSimple"; +export { Elevator } from "./csr/Elevator"; +export { Engine } from "./csr/Engine"; +export { Envelope } from "./csr/Envelope"; +export { EnvelopeOpen } from "./csr/EnvelopeOpen"; +export { EnvelopeSimple } from "./csr/EnvelopeSimple"; +export { EnvelopeSimpleOpen } from "./csr/EnvelopeSimpleOpen"; +export { Equalizer } from "./csr/Equalizer"; +export { Equals } from "./csr/Equals"; +export { Eraser } from "./csr/Eraser"; +export { EscalatorDown } from "./csr/EscalatorDown"; +export { EscalatorUp } from "./csr/EscalatorUp"; +export { Exam } from "./csr/Exam"; +export { Exclude } from "./csr/Exclude"; +export { ExcludeSquare } from "./csr/ExcludeSquare"; +export { Export } from "./csr/Export"; +export { Eye } from "./csr/Eye"; +export { EyeClosed } from "./csr/EyeClosed"; +export { EyeSlash } from "./csr/EyeSlash"; +export { Eyedropper } from "./csr/Eyedropper"; +export { EyedropperSample } from "./csr/EyedropperSample"; +export { Eyeglasses } from "./csr/Eyeglasses"; +export { FaceMask } from "./csr/FaceMask"; +export { FacebookLogo } from "./csr/FacebookLogo"; +export { Factory } from "./csr/Factory"; +export { Faders } from "./csr/Faders"; +export { FadersHorizontal } from "./csr/FadersHorizontal"; +export { Fan } from "./csr/Fan"; +export { FastForward } from "./csr/FastForward"; +export { FastForwardCircle } from "./csr/FastForwardCircle"; +export { Feather } from "./csr/Feather"; +export { FigmaLogo } from "./csr/FigmaLogo"; +export { FileArchive } from "./csr/FileArchive"; +export { FileArrowDown } from "./csr/FileArrowDown"; +export { FileArrowUp } from "./csr/FileArrowUp"; +export { FileAudio } from "./csr/FileAudio"; +export { File } from "./csr/File"; +export { FileCloud } from "./csr/FileCloud"; +export { FileCode } from "./csr/FileCode"; +export { FileCss } from "./csr/FileCss"; +export { FileCsv } from "./csr/FileCsv"; +export { FileDashed, FileDashed as FileDotted } from "./csr/FileDashed"; +export { FileDoc } from "./csr/FileDoc"; +export { FileHtml } from "./csr/FileHtml"; +export { FileImage } from "./csr/FileImage"; +export { FileJpg } from "./csr/FileJpg"; +export { FileJs } from "./csr/FileJs"; +export { FileJsx } from "./csr/FileJsx"; +export { FileLock } from "./csr/FileLock"; export { FileMagnifyingGlass, FileMagnifyingGlass as FileSearch, -} from "./icons/FileMagnifyingGlass"; -export { FileMinus } from "./icons/FileMinus"; -export { FilePdf } from "./icons/FilePdf"; -export { FilePlus } from "./icons/FilePlus"; -export { FilePng } from "./icons/FilePng"; -export { FilePpt } from "./icons/FilePpt"; -export { FileRs } from "./icons/FileRs"; -export { FileSql } from "./icons/FileSql"; -export { FileSvg } from "./icons/FileSvg"; -export { FileText } from "./icons/FileText"; -export { FileTs } from "./icons/FileTs"; -export { FileTsx } from "./icons/FileTsx"; -export { FileVideo } from "./icons/FileVideo"; -export { FileVue } from "./icons/FileVue"; -export { FileX } from "./icons/FileX"; -export { FileXls } from "./icons/FileXls"; -export { FileZip } from "./icons/FileZip"; -export { Files } from "./icons/Files"; -export { FilmReel } from "./icons/FilmReel"; -export { FilmScript } from "./icons/FilmScript"; -export { FilmSlate } from "./icons/FilmSlate"; -export { FilmStrip } from "./icons/FilmStrip"; -export { Fingerprint } from "./icons/Fingerprint"; -export { FingerprintSimple } from "./icons/FingerprintSimple"; -export { FinnTheHuman } from "./icons/FinnTheHuman"; -export { Fire } from "./icons/Fire"; -export { FireExtinguisher } from "./icons/FireExtinguisher"; -export { FireSimple } from "./icons/FireSimple"; -export { FirstAid } from "./icons/FirstAid"; -export { FirstAidKit } from "./icons/FirstAidKit"; -export { Fish } from "./icons/Fish"; -export { FishSimple } from "./icons/FishSimple"; -export { FlagBanner } from "./icons/FlagBanner"; -export { Flag } from "./icons/Flag"; -export { FlagCheckered } from "./icons/FlagCheckered"; -export { FlagPennant } from "./icons/FlagPennant"; -export { Flame } from "./icons/Flame"; -export { Flashlight } from "./icons/Flashlight"; -export { Flask } from "./icons/Flask"; -export { FloppyDiskBack } from "./icons/FloppyDiskBack"; -export { FloppyDisk } from "./icons/FloppyDisk"; -export { FlowArrow } from "./icons/FlowArrow"; -export { Flower } from "./icons/Flower"; -export { FlowerLotus } from "./icons/FlowerLotus"; -export { FlowerTulip } from "./icons/FlowerTulip"; -export { FlyingSaucer } from "./icons/FlyingSaucer"; -export { Folder } from "./icons/Folder"; -export { - FolderDashed, - FolderDashed as FolderDotted, -} from "./icons/FolderDashed"; -export { FolderLock } from "./icons/FolderLock"; -export { FolderMinus } from "./icons/FolderMinus"; -export { FolderNotch } from "./icons/FolderNotch"; -export { FolderNotchMinus } from "./icons/FolderNotchMinus"; -export { FolderNotchOpen } from "./icons/FolderNotchOpen"; -export { FolderNotchPlus } from "./icons/FolderNotchPlus"; -export { FolderOpen } from "./icons/FolderOpen"; -export { FolderPlus } from "./icons/FolderPlus"; -export { FolderSimple } from "./icons/FolderSimple"; +} from "./csr/FileMagnifyingGlass"; +export { FileMinus } from "./csr/FileMinus"; +export { FilePdf } from "./csr/FilePdf"; +export { FilePlus } from "./csr/FilePlus"; +export { FilePng } from "./csr/FilePng"; +export { FilePpt } from "./csr/FilePpt"; +export { FileRs } from "./csr/FileRs"; +export { FileSql } from "./csr/FileSql"; +export { FileSvg } from "./csr/FileSvg"; +export { FileText } from "./csr/FileText"; +export { FileTs } from "./csr/FileTs"; +export { FileTsx } from "./csr/FileTsx"; +export { FileVideo } from "./csr/FileVideo"; +export { FileVue } from "./csr/FileVue"; +export { FileX } from "./csr/FileX"; +export { FileXls } from "./csr/FileXls"; +export { FileZip } from "./csr/FileZip"; +export { Files } from "./csr/Files"; +export { FilmReel } from "./csr/FilmReel"; +export { FilmScript } from "./csr/FilmScript"; +export { FilmSlate } from "./csr/FilmSlate"; +export { FilmStrip } from "./csr/FilmStrip"; +export { Fingerprint } from "./csr/Fingerprint"; +export { FingerprintSimple } from "./csr/FingerprintSimple"; +export { FinnTheHuman } from "./csr/FinnTheHuman"; +export { Fire } from "./csr/Fire"; +export { FireExtinguisher } from "./csr/FireExtinguisher"; +export { FireSimple } from "./csr/FireSimple"; +export { FirstAid } from "./csr/FirstAid"; +export { FirstAidKit } from "./csr/FirstAidKit"; +export { Fish } from "./csr/Fish"; +export { FishSimple } from "./csr/FishSimple"; +export { FlagBanner } from "./csr/FlagBanner"; +export { Flag } from "./csr/Flag"; +export { FlagCheckered } from "./csr/FlagCheckered"; +export { FlagPennant } from "./csr/FlagPennant"; +export { Flame } from "./csr/Flame"; +export { Flashlight } from "./csr/Flashlight"; +export { Flask } from "./csr/Flask"; +export { FloppyDiskBack } from "./csr/FloppyDiskBack"; +export { FloppyDisk } from "./csr/FloppyDisk"; +export { FlowArrow } from "./csr/FlowArrow"; +export { Flower } from "./csr/Flower"; +export { FlowerLotus } from "./csr/FlowerLotus"; +export { FlowerTulip } from "./csr/FlowerTulip"; +export { FlyingSaucer } from "./csr/FlyingSaucer"; +export { Folder } from "./csr/Folder"; +export { FolderDashed, FolderDashed as FolderDotted } from "./csr/FolderDashed"; +export { FolderLock } from "./csr/FolderLock"; +export { FolderMinus } from "./csr/FolderMinus"; +export { FolderNotch } from "./csr/FolderNotch"; +export { FolderNotchMinus } from "./csr/FolderNotchMinus"; +export { FolderNotchOpen } from "./csr/FolderNotchOpen"; +export { FolderNotchPlus } from "./csr/FolderNotchPlus"; +export { FolderOpen } from "./csr/FolderOpen"; +export { FolderPlus } from "./csr/FolderPlus"; +export { FolderSimple } from "./csr/FolderSimple"; export { FolderSimpleDashed, FolderSimpleDashed as FolderSimpleDotted, -} from "./icons/FolderSimpleDashed"; -export { FolderSimpleLock } from "./icons/FolderSimpleLock"; -export { FolderSimpleMinus } from "./icons/FolderSimpleMinus"; -export { FolderSimplePlus } from "./icons/FolderSimplePlus"; -export { FolderSimpleStar } from "./icons/FolderSimpleStar"; -export { FolderSimpleUser } from "./icons/FolderSimpleUser"; -export { FolderStar } from "./icons/FolderStar"; -export { FolderUser } from "./icons/FolderUser"; -export { Folders } from "./icons/Folders"; -export { Football } from "./icons/Football"; -export { Footprints } from "./icons/Footprints"; -export { ForkKnife } from "./icons/ForkKnife"; -export { FrameCorners } from "./icons/FrameCorners"; -export { FramerLogo } from "./icons/FramerLogo"; -export { Function } from "./icons/Function"; -export { Funnel } from "./icons/Funnel"; -export { FunnelSimple } from "./icons/FunnelSimple"; -export { GameController } from "./icons/GameController"; -export { Garage } from "./icons/Garage"; -export { GasCan } from "./icons/GasCan"; -export { GasPump } from "./icons/GasPump"; -export { Gauge } from "./icons/Gauge"; -export { Gavel } from "./icons/Gavel"; -export { Gear } from "./icons/Gear"; -export { GearFine } from "./icons/GearFine"; -export { GearSix } from "./icons/GearSix"; -export { GenderFemale } from "./icons/GenderFemale"; -export { GenderIntersex } from "./icons/GenderIntersex"; -export { GenderMale } from "./icons/GenderMale"; -export { GenderNeuter } from "./icons/GenderNeuter"; -export { GenderNonbinary } from "./icons/GenderNonbinary"; -export { GenderTransgender } from "./icons/GenderTransgender"; -export { Ghost } from "./icons/Ghost"; -export { Gif } from "./icons/Gif"; -export { Gift } from "./icons/Gift"; -export { GitBranch } from "./icons/GitBranch"; -export { GitCommit } from "./icons/GitCommit"; -export { GitDiff } from "./icons/GitDiff"; -export { GitFork } from "./icons/GitFork"; -export { GitMerge } from "./icons/GitMerge"; -export { GitPullRequest } from "./icons/GitPullRequest"; -export { GithubLogo } from "./icons/GithubLogo"; -export { GitlabLogo } from "./icons/GitlabLogo"; -export { GitlabLogoSimple } from "./icons/GitlabLogoSimple"; -export { Globe } from "./icons/Globe"; -export { GlobeHemisphereEast } from "./icons/GlobeHemisphereEast"; -export { GlobeHemisphereWest } from "./icons/GlobeHemisphereWest"; -export { GlobeSimple } from "./icons/GlobeSimple"; -export { GlobeStand } from "./icons/GlobeStand"; -export { Goggles } from "./icons/Goggles"; -export { GoodreadsLogo } from "./icons/GoodreadsLogo"; -export { GoogleCardboardLogo } from "./icons/GoogleCardboardLogo"; -export { GoogleChromeLogo } from "./icons/GoogleChromeLogo"; -export { GoogleDriveLogo } from "./icons/GoogleDriveLogo"; -export { GoogleLogo } from "./icons/GoogleLogo"; -export { GooglePhotosLogo } from "./icons/GooglePhotosLogo"; -export { GooglePlayLogo } from "./icons/GooglePlayLogo"; -export { GooglePodcastsLogo } from "./icons/GooglePodcastsLogo"; -export { Gradient } from "./icons/Gradient"; -export { GraduationCap } from "./icons/GraduationCap"; -export { Grains } from "./icons/Grains"; -export { GrainsSlash } from "./icons/GrainsSlash"; -export { Graph } from "./icons/Graph"; -export { GridFour } from "./icons/GridFour"; -export { GridNine } from "./icons/GridNine"; -export { Guitar } from "./icons/Guitar"; -export { Hamburger } from "./icons/Hamburger"; -export { Hammer } from "./icons/Hammer"; -export { Hand } from "./icons/Hand"; -export { HandCoins } from "./icons/HandCoins"; -export { HandEye } from "./icons/HandEye"; -export { HandFist } from "./icons/HandFist"; -export { HandGrabbing } from "./icons/HandGrabbing"; -export { HandHeart } from "./icons/HandHeart"; -export { HandPalm } from "./icons/HandPalm"; -export { HandPointing } from "./icons/HandPointing"; -export { HandSoap } from "./icons/HandSoap"; -export { HandSwipeLeft } from "./icons/HandSwipeLeft"; -export { HandSwipeRight } from "./icons/HandSwipeRight"; -export { HandTap } from "./icons/HandTap"; -export { HandWaving } from "./icons/HandWaving"; -export { Handbag } from "./icons/Handbag"; -export { HandbagSimple } from "./icons/HandbagSimple"; -export { HandsClapping } from "./icons/HandsClapping"; -export { HandsPraying } from "./icons/HandsPraying"; -export { Handshake } from "./icons/Handshake"; -export { HardDrive } from "./icons/HardDrive"; -export { HardDrives } from "./icons/HardDrives"; -export { Hash } from "./icons/Hash"; -export { HashStraight } from "./icons/HashStraight"; -export { Headlights } from "./icons/Headlights"; -export { Headphones } from "./icons/Headphones"; -export { Headset } from "./icons/Headset"; -export { Heart } from "./icons/Heart"; -export { HeartBreak } from "./icons/HeartBreak"; -export { HeartHalf } from "./icons/HeartHalf"; -export { HeartStraight } from "./icons/HeartStraight"; -export { HeartStraightBreak } from "./icons/HeartStraightBreak"; -export { Heartbeat } from "./icons/Heartbeat"; -export { Hexagon } from "./icons/Hexagon"; -export { HighHeel } from "./icons/HighHeel"; -export { HighlighterCircle } from "./icons/HighlighterCircle"; -export { Hoodie } from "./icons/Hoodie"; -export { Horse } from "./icons/Horse"; -export { Hourglass } from "./icons/Hourglass"; -export { HourglassHigh } from "./icons/HourglassHigh"; -export { HourglassLow } from "./icons/HourglassLow"; -export { HourglassMedium } from "./icons/HourglassMedium"; -export { HourglassSimple } from "./icons/HourglassSimple"; -export { HourglassSimpleHigh } from "./icons/HourglassSimpleHigh"; -export { HourglassSimpleLow } from "./icons/HourglassSimpleLow"; -export { HourglassSimpleMedium } from "./icons/HourglassSimpleMedium"; -export { House } from "./icons/House"; -export { HouseLine } from "./icons/HouseLine"; -export { HouseSimple } from "./icons/HouseSimple"; -export { IceCream } from "./icons/IceCream"; -export { IdentificationBadge } from "./icons/IdentificationBadge"; -export { IdentificationCard } from "./icons/IdentificationCard"; -export { Image } from "./icons/Image"; -export { ImageSquare } from "./icons/ImageSquare"; -export { Images } from "./icons/Images"; -export { ImagesSquare } from "./icons/ImagesSquare"; -export { Infinity } from "./icons/Infinity"; -export { Info } from "./icons/Info"; -export { InstagramLogo } from "./icons/InstagramLogo"; -export { Intersect } from "./icons/Intersect"; -export { IntersectSquare } from "./icons/IntersectSquare"; -export { IntersectThree } from "./icons/IntersectThree"; -export { Jeep } from "./icons/Jeep"; -export { Kanban } from "./icons/Kanban"; -export { Key } from "./icons/Key"; -export { KeyReturn } from "./icons/KeyReturn"; -export { Keyboard } from "./icons/Keyboard"; -export { Keyhole } from "./icons/Keyhole"; -export { Knife } from "./icons/Knife"; -export { Ladder } from "./icons/Ladder"; -export { LadderSimple } from "./icons/LadderSimple"; -export { Lamp } from "./icons/Lamp"; -export { Laptop } from "./icons/Laptop"; -export { Layout } from "./icons/Layout"; -export { Leaf } from "./icons/Leaf"; -export { Lifebuoy } from "./icons/Lifebuoy"; -export { Lightbulb } from "./icons/Lightbulb"; -export { LightbulbFilament } from "./icons/LightbulbFilament"; -export { Lighthouse } from "./icons/Lighthouse"; -export { LightningA } from "./icons/LightningA"; -export { Lightning } from "./icons/Lightning"; -export { LightningSlash } from "./icons/LightningSlash"; -export { LineSegment } from "./icons/LineSegment"; -export { LineSegments } from "./icons/LineSegments"; -export { Link } from "./icons/Link"; -export { LinkBreak } from "./icons/LinkBreak"; -export { LinkSimple } from "./icons/LinkSimple"; -export { LinkSimpleBreak } from "./icons/LinkSimpleBreak"; -export { LinkSimpleHorizontal } from "./icons/LinkSimpleHorizontal"; -export { LinkSimpleHorizontalBreak } from "./icons/LinkSimpleHorizontalBreak"; -export { LinkedinLogo } from "./icons/LinkedinLogo"; -export { LinuxLogo } from "./icons/LinuxLogo"; -export { List } from "./icons/List"; -export { ListBullets } from "./icons/ListBullets"; -export { ListChecks } from "./icons/ListChecks"; -export { ListDashes } from "./icons/ListDashes"; -export { ListMagnifyingGlass } from "./icons/ListMagnifyingGlass"; -export { ListNumbers } from "./icons/ListNumbers"; -export { ListPlus } from "./icons/ListPlus"; -export { Lock } from "./icons/Lock"; -export { LockKey } from "./icons/LockKey"; -export { LockKeyOpen } from "./icons/LockKeyOpen"; -export { LockLaminated } from "./icons/LockLaminated"; -export { LockLaminatedOpen } from "./icons/LockLaminatedOpen"; -export { LockOpen } from "./icons/LockOpen"; -export { LockSimple } from "./icons/LockSimple"; -export { LockSimpleOpen } from "./icons/LockSimpleOpen"; -export { Lockers } from "./icons/Lockers"; -export { MagicWand } from "./icons/MagicWand"; -export { Magnet } from "./icons/Magnet"; -export { MagnetStraight } from "./icons/MagnetStraight"; -export { MagnifyingGlass } from "./icons/MagnifyingGlass"; -export { MagnifyingGlassMinus } from "./icons/MagnifyingGlassMinus"; -export { MagnifyingGlassPlus } from "./icons/MagnifyingGlassPlus"; -export { MapPin } from "./icons/MapPin"; -export { MapPinLine } from "./icons/MapPinLine"; -export { MapTrifold } from "./icons/MapTrifold"; -export { MarkerCircle } from "./icons/MarkerCircle"; -export { Martini } from "./icons/Martini"; -export { MaskHappy } from "./icons/MaskHappy"; -export { MaskSad } from "./icons/MaskSad"; -export { MathOperations } from "./icons/MathOperations"; -export { Medal } from "./icons/Medal"; -export { MedalMilitary } from "./icons/MedalMilitary"; -export { MediumLogo } from "./icons/MediumLogo"; -export { Megaphone } from "./icons/Megaphone"; -export { MegaphoneSimple } from "./icons/MegaphoneSimple"; -export { MessengerLogo } from "./icons/MessengerLogo"; -export { MetaLogo } from "./icons/MetaLogo"; -export { Metronome } from "./icons/Metronome"; -export { Microphone } from "./icons/Microphone"; -export { MicrophoneSlash } from "./icons/MicrophoneSlash"; -export { MicrophoneStage } from "./icons/MicrophoneStage"; -export { MicrosoftExcelLogo } from "./icons/MicrosoftExcelLogo"; -export { MicrosoftOutlookLogo } from "./icons/MicrosoftOutlookLogo"; -export { MicrosoftPowerpointLogo } from "./icons/MicrosoftPowerpointLogo"; -export { MicrosoftTeamsLogo } from "./icons/MicrosoftTeamsLogo"; -export { MicrosoftWordLogo } from "./icons/MicrosoftWordLogo"; -export { Minus } from "./icons/Minus"; -export { MinusCircle } from "./icons/MinusCircle"; -export { MinusSquare } from "./icons/MinusSquare"; -export { Money } from "./icons/Money"; -export { Monitor } from "./icons/Monitor"; -export { MonitorPlay } from "./icons/MonitorPlay"; -export { Moon } from "./icons/Moon"; -export { MoonStars } from "./icons/MoonStars"; -export { Moped } from "./icons/Moped"; -export { MopedFront } from "./icons/MopedFront"; -export { Mosque } from "./icons/Mosque"; -export { Motorcycle } from "./icons/Motorcycle"; -export { Mountains } from "./icons/Mountains"; -export { Mouse } from "./icons/Mouse"; -export { MouseSimple } from "./icons/MouseSimple"; -export { MusicNote } from "./icons/MusicNote"; -export { MusicNoteSimple } from "./icons/MusicNoteSimple"; -export { MusicNotes } from "./icons/MusicNotes"; -export { MusicNotesPlus } from "./icons/MusicNotesPlus"; -export { MusicNotesSimple } from "./icons/MusicNotesSimple"; -export { NavigationArrow } from "./icons/NavigationArrow"; -export { Needle } from "./icons/Needle"; -export { Newspaper } from "./icons/Newspaper"; -export { NewspaperClipping } from "./icons/NewspaperClipping"; -export { Notches } from "./icons/Notches"; -export { NoteBlank } from "./icons/NoteBlank"; -export { Note } from "./icons/Note"; -export { NotePencil } from "./icons/NotePencil"; -export { Notebook } from "./icons/Notebook"; -export { Notepad } from "./icons/Notepad"; -export { Notification } from "./icons/Notification"; -export { NotionLogo } from "./icons/NotionLogo"; -export { NumberCircleEight } from "./icons/NumberCircleEight"; -export { NumberCircleFive } from "./icons/NumberCircleFive"; -export { NumberCircleFour } from "./icons/NumberCircleFour"; -export { NumberCircleNine } from "./icons/NumberCircleNine"; -export { NumberCircleOne } from "./icons/NumberCircleOne"; -export { NumberCircleSeven } from "./icons/NumberCircleSeven"; -export { NumberCircleSix } from "./icons/NumberCircleSix"; -export { NumberCircleThree } from "./icons/NumberCircleThree"; -export { NumberCircleTwo } from "./icons/NumberCircleTwo"; -export { NumberCircleZero } from "./icons/NumberCircleZero"; -export { NumberEight } from "./icons/NumberEight"; -export { NumberFive } from "./icons/NumberFive"; -export { NumberFour } from "./icons/NumberFour"; -export { NumberNine } from "./icons/NumberNine"; -export { NumberOne } from "./icons/NumberOne"; -export { NumberSeven } from "./icons/NumberSeven"; -export { NumberSix } from "./icons/NumberSix"; -export { NumberSquareEight } from "./icons/NumberSquareEight"; -export { NumberSquareFive } from "./icons/NumberSquareFive"; -export { NumberSquareFour } from "./icons/NumberSquareFour"; -export { NumberSquareNine } from "./icons/NumberSquareNine"; -export { NumberSquareOne } from "./icons/NumberSquareOne"; -export { NumberSquareSeven } from "./icons/NumberSquareSeven"; -export { NumberSquareSix } from "./icons/NumberSquareSix"; -export { NumberSquareThree } from "./icons/NumberSquareThree"; -export { NumberSquareTwo } from "./icons/NumberSquareTwo"; -export { NumberSquareZero } from "./icons/NumberSquareZero"; -export { NumberThree } from "./icons/NumberThree"; -export { NumberTwo } from "./icons/NumberTwo"; -export { NumberZero } from "./icons/NumberZero"; -export { Nut } from "./icons/Nut"; -export { NyTimesLogo } from "./icons/NyTimesLogo"; -export { Octagon } from "./icons/Octagon"; -export { OfficeChair } from "./icons/OfficeChair"; -export { Option } from "./icons/Option"; -export { OrangeSlice } from "./icons/OrangeSlice"; -export { Package } from "./icons/Package"; -export { PaintBrush } from "./icons/PaintBrush"; -export { PaintBrushBroad } from "./icons/PaintBrushBroad"; -export { PaintBrushHousehold } from "./icons/PaintBrushHousehold"; -export { PaintBucket } from "./icons/PaintBucket"; -export { PaintRoller } from "./icons/PaintRoller"; -export { Palette } from "./icons/Palette"; -export { Pants } from "./icons/Pants"; -export { PaperPlane } from "./icons/PaperPlane"; -export { PaperPlaneRight } from "./icons/PaperPlaneRight"; -export { PaperPlaneTilt } from "./icons/PaperPlaneTilt"; -export { Paperclip } from "./icons/Paperclip"; -export { PaperclipHorizontal } from "./icons/PaperclipHorizontal"; -export { Parachute } from "./icons/Parachute"; -export { Paragraph } from "./icons/Paragraph"; -export { Parallelogram } from "./icons/Parallelogram"; -export { Park } from "./icons/Park"; -export { Password } from "./icons/Password"; -export { Path } from "./icons/Path"; -export { PatreonLogo } from "./icons/PatreonLogo"; -export { Pause } from "./icons/Pause"; -export { PauseCircle } from "./icons/PauseCircle"; -export { PawPrint } from "./icons/PawPrint"; -export { PaypalLogo } from "./icons/PaypalLogo"; -export { Peace } from "./icons/Peace"; -export { Pen } from "./icons/Pen"; -export { PenNib } from "./icons/PenNib"; -export { PenNibStraight } from "./icons/PenNibStraight"; -export { Pencil } from "./icons/Pencil"; -export { PencilCircle } from "./icons/PencilCircle"; -export { PencilLine } from "./icons/PencilLine"; -export { PencilSimple } from "./icons/PencilSimple"; -export { PencilSimpleLine } from "./icons/PencilSimpleLine"; -export { PencilSimpleSlash } from "./icons/PencilSimpleSlash"; -export { PencilSlash } from "./icons/PencilSlash"; -export { Pentagram } from "./icons/Pentagram"; -export { Pepper } from "./icons/Pepper"; -export { Percent } from "./icons/Percent"; -export { PersonArmsSpread } from "./icons/PersonArmsSpread"; -export { Person } from "./icons/Person"; -export { PersonSimpleBike } from "./icons/PersonSimpleBike"; -export { PersonSimple } from "./icons/PersonSimple"; -export { PersonSimpleRun } from "./icons/PersonSimpleRun"; -export { PersonSimpleThrow } from "./icons/PersonSimpleThrow"; -export { PersonSimpleWalk } from "./icons/PersonSimpleWalk"; -export { Perspective } from "./icons/Perspective"; -export { Phone } from "./icons/Phone"; -export { PhoneCall } from "./icons/PhoneCall"; -export { PhoneDisconnect } from "./icons/PhoneDisconnect"; -export { PhoneIncoming } from "./icons/PhoneIncoming"; -export { PhoneOutgoing } from "./icons/PhoneOutgoing"; -export { PhonePlus } from "./icons/PhonePlus"; -export { PhoneSlash } from "./icons/PhoneSlash"; -export { PhoneX } from "./icons/PhoneX"; -export { PhosphorLogo } from "./icons/PhosphorLogo"; -export { Pi } from "./icons/Pi"; -export { PianoKeys } from "./icons/PianoKeys"; -export { PictureInPicture } from "./icons/PictureInPicture"; -export { PiggyBank } from "./icons/PiggyBank"; -export { Pill } from "./icons/Pill"; -export { PinterestLogo } from "./icons/PinterestLogo"; -export { Pinwheel } from "./icons/Pinwheel"; -export { Pizza } from "./icons/Pizza"; -export { Placeholder } from "./icons/Placeholder"; -export { Planet } from "./icons/Planet"; -export { Plant } from "./icons/Plant"; -export { Play } from "./icons/Play"; -export { PlayCircle } from "./icons/PlayCircle"; -export { PlayPause } from "./icons/PlayPause"; -export { Playlist } from "./icons/Playlist"; -export { Plug } from "./icons/Plug"; -export { PlugCharging } from "./icons/PlugCharging"; -export { Plugs } from "./icons/Plugs"; -export { PlugsConnected } from "./icons/PlugsConnected"; -export { Plus } from "./icons/Plus"; -export { PlusCircle } from "./icons/PlusCircle"; -export { PlusMinus } from "./icons/PlusMinus"; -export { PlusSquare } from "./icons/PlusSquare"; -export { PokerChip } from "./icons/PokerChip"; -export { PoliceCar } from "./icons/PoliceCar"; -export { Polygon } from "./icons/Polygon"; -export { Popcorn } from "./icons/Popcorn"; -export { PottedPlant } from "./icons/PottedPlant"; -export { Power } from "./icons/Power"; -export { Prescription } from "./icons/Prescription"; -export { Presentation } from "./icons/Presentation"; -export { PresentationChart } from "./icons/PresentationChart"; -export { Printer } from "./icons/Printer"; -export { Prohibit } from "./icons/Prohibit"; -export { ProhibitInset } from "./icons/ProhibitInset"; -export { ProjectorScreen } from "./icons/ProjectorScreen"; -export { ProjectorScreenChart } from "./icons/ProjectorScreenChart"; -export { Pulse, Pulse as Activity } from "./icons/Pulse"; -export { PushPin } from "./icons/PushPin"; -export { PushPinSimple } from "./icons/PushPinSimple"; -export { PushPinSimpleSlash } from "./icons/PushPinSimpleSlash"; -export { PushPinSlash } from "./icons/PushPinSlash"; -export { PuzzlePiece } from "./icons/PuzzlePiece"; -export { QrCode } from "./icons/QrCode"; -export { Question } from "./icons/Question"; -export { Queue } from "./icons/Queue"; -export { Quotes } from "./icons/Quotes"; -export { Radical } from "./icons/Radical"; -export { Radio } from "./icons/Radio"; -export { RadioButton } from "./icons/RadioButton"; -export { Radioactive } from "./icons/Radioactive"; -export { Rainbow } from "./icons/Rainbow"; -export { RainbowCloud } from "./icons/RainbowCloud"; -export { ReadCvLogo } from "./icons/ReadCvLogo"; -export { Receipt } from "./icons/Receipt"; -export { ReceiptX } from "./icons/ReceiptX"; -export { Record } from "./icons/Record"; -export { Rectangle } from "./icons/Rectangle"; -export { Recycle } from "./icons/Recycle"; -export { RedditLogo } from "./icons/RedditLogo"; -export { Repeat } from "./icons/Repeat"; -export { RepeatOnce } from "./icons/RepeatOnce"; -export { Rewind } from "./icons/Rewind"; -export { RewindCircle } from "./icons/RewindCircle"; -export { RoadHorizon } from "./icons/RoadHorizon"; -export { Robot } from "./icons/Robot"; -export { Rocket } from "./icons/Rocket"; -export { RocketLaunch } from "./icons/RocketLaunch"; -export { Rows } from "./icons/Rows"; -export { Rss } from "./icons/Rss"; -export { RssSimple } from "./icons/RssSimple"; -export { Rug } from "./icons/Rug"; -export { Ruler } from "./icons/Ruler"; -export { Scales } from "./icons/Scales"; -export { Scan } from "./icons/Scan"; -export { Scissors } from "./icons/Scissors"; -export { Scooter } from "./icons/Scooter"; -export { Screencast } from "./icons/Screencast"; -export { ScribbleLoop } from "./icons/ScribbleLoop"; -export { Scroll } from "./icons/Scroll"; -export { Seal, Seal as CircleWavy } from "./icons/Seal"; -export { SealCheck, SealCheck as CircleWavyCheck } from "./icons/SealCheck"; +} from "./csr/FolderSimpleDashed"; +export { FolderSimpleLock } from "./csr/FolderSimpleLock"; +export { FolderSimpleMinus } from "./csr/FolderSimpleMinus"; +export { FolderSimplePlus } from "./csr/FolderSimplePlus"; +export { FolderSimpleStar } from "./csr/FolderSimpleStar"; +export { FolderSimpleUser } from "./csr/FolderSimpleUser"; +export { FolderStar } from "./csr/FolderStar"; +export { FolderUser } from "./csr/FolderUser"; +export { Folders } from "./csr/Folders"; +export { Football } from "./csr/Football"; +export { Footprints } from "./csr/Footprints"; +export { ForkKnife } from "./csr/ForkKnife"; +export { FrameCorners } from "./csr/FrameCorners"; +export { FramerLogo } from "./csr/FramerLogo"; +export { Function } from "./csr/Function"; +export { Funnel } from "./csr/Funnel"; +export { FunnelSimple } from "./csr/FunnelSimple"; +export { GameController } from "./csr/GameController"; +export { Garage } from "./csr/Garage"; +export { GasCan } from "./csr/GasCan"; +export { GasPump } from "./csr/GasPump"; +export { Gauge } from "./csr/Gauge"; +export { Gavel } from "./csr/Gavel"; +export { Gear } from "./csr/Gear"; +export { GearFine } from "./csr/GearFine"; +export { GearSix } from "./csr/GearSix"; +export { GenderFemale } from "./csr/GenderFemale"; +export { GenderIntersex } from "./csr/GenderIntersex"; +export { GenderMale } from "./csr/GenderMale"; +export { GenderNeuter } from "./csr/GenderNeuter"; +export { GenderNonbinary } from "./csr/GenderNonbinary"; +export { GenderTransgender } from "./csr/GenderTransgender"; +export { Ghost } from "./csr/Ghost"; +export { Gif } from "./csr/Gif"; +export { Gift } from "./csr/Gift"; +export { GitBranch } from "./csr/GitBranch"; +export { GitCommit } from "./csr/GitCommit"; +export { GitDiff } from "./csr/GitDiff"; +export { GitFork } from "./csr/GitFork"; +export { GitMerge } from "./csr/GitMerge"; +export { GitPullRequest } from "./csr/GitPullRequest"; +export { GithubLogo } from "./csr/GithubLogo"; +export { GitlabLogo } from "./csr/GitlabLogo"; +export { GitlabLogoSimple } from "./csr/GitlabLogoSimple"; +export { Globe } from "./csr/Globe"; +export { GlobeHemisphereEast } from "./csr/GlobeHemisphereEast"; +export { GlobeHemisphereWest } from "./csr/GlobeHemisphereWest"; +export { GlobeSimple } from "./csr/GlobeSimple"; +export { GlobeStand } from "./csr/GlobeStand"; +export { Goggles } from "./csr/Goggles"; +export { GoodreadsLogo } from "./csr/GoodreadsLogo"; +export { GoogleCardboardLogo } from "./csr/GoogleCardboardLogo"; +export { GoogleChromeLogo } from "./csr/GoogleChromeLogo"; +export { GoogleDriveLogo } from "./csr/GoogleDriveLogo"; +export { GoogleLogo } from "./csr/GoogleLogo"; +export { GooglePhotosLogo } from "./csr/GooglePhotosLogo"; +export { GooglePlayLogo } from "./csr/GooglePlayLogo"; +export { GooglePodcastsLogo } from "./csr/GooglePodcastsLogo"; +export { Gradient } from "./csr/Gradient"; +export { GraduationCap } from "./csr/GraduationCap"; +export { Grains } from "./csr/Grains"; +export { GrainsSlash } from "./csr/GrainsSlash"; +export { Graph } from "./csr/Graph"; +export { GridFour } from "./csr/GridFour"; +export { GridNine } from "./csr/GridNine"; +export { Guitar } from "./csr/Guitar"; +export { Hamburger } from "./csr/Hamburger"; +export { Hammer } from "./csr/Hammer"; +export { Hand } from "./csr/Hand"; +export { HandCoins } from "./csr/HandCoins"; +export { HandEye } from "./csr/HandEye"; +export { HandFist } from "./csr/HandFist"; +export { HandGrabbing } from "./csr/HandGrabbing"; +export { HandHeart } from "./csr/HandHeart"; +export { HandPalm } from "./csr/HandPalm"; +export { HandPointing } from "./csr/HandPointing"; +export { HandSoap } from "./csr/HandSoap"; +export { HandSwipeLeft } from "./csr/HandSwipeLeft"; +export { HandSwipeRight } from "./csr/HandSwipeRight"; +export { HandTap } from "./csr/HandTap"; +export { HandWaving } from "./csr/HandWaving"; +export { Handbag } from "./csr/Handbag"; +export { HandbagSimple } from "./csr/HandbagSimple"; +export { HandsClapping } from "./csr/HandsClapping"; +export { HandsPraying } from "./csr/HandsPraying"; +export { Handshake } from "./csr/Handshake"; +export { HardDrive } from "./csr/HardDrive"; +export { HardDrives } from "./csr/HardDrives"; +export { Hash } from "./csr/Hash"; +export { HashStraight } from "./csr/HashStraight"; +export { Headlights } from "./csr/Headlights"; +export { Headphones } from "./csr/Headphones"; +export { Headset } from "./csr/Headset"; +export { Heart } from "./csr/Heart"; +export { HeartBreak } from "./csr/HeartBreak"; +export { HeartHalf } from "./csr/HeartHalf"; +export { HeartStraight } from "./csr/HeartStraight"; +export { HeartStraightBreak } from "./csr/HeartStraightBreak"; +export { Heartbeat } from "./csr/Heartbeat"; +export { Hexagon } from "./csr/Hexagon"; +export { HighHeel } from "./csr/HighHeel"; +export { HighlighterCircle } from "./csr/HighlighterCircle"; +export { Hoodie } from "./csr/Hoodie"; +export { Horse } from "./csr/Horse"; +export { Hourglass } from "./csr/Hourglass"; +export { HourglassHigh } from "./csr/HourglassHigh"; +export { HourglassLow } from "./csr/HourglassLow"; +export { HourglassMedium } from "./csr/HourglassMedium"; +export { HourglassSimple } from "./csr/HourglassSimple"; +export { HourglassSimpleHigh } from "./csr/HourglassSimpleHigh"; +export { HourglassSimpleLow } from "./csr/HourglassSimpleLow"; +export { HourglassSimpleMedium } from "./csr/HourglassSimpleMedium"; +export { House } from "./csr/House"; +export { HouseLine } from "./csr/HouseLine"; +export { HouseSimple } from "./csr/HouseSimple"; +export { IceCream } from "./csr/IceCream"; +export { IdentificationBadge } from "./csr/IdentificationBadge"; +export { IdentificationCard } from "./csr/IdentificationCard"; +export { Image } from "./csr/Image"; +export { ImageSquare } from "./csr/ImageSquare"; +export { Images } from "./csr/Images"; +export { ImagesSquare } from "./csr/ImagesSquare"; +export { Infinity } from "./csr/Infinity"; +export { Info } from "./csr/Info"; +export { InstagramLogo } from "./csr/InstagramLogo"; +export { Intersect } from "./csr/Intersect"; +export { IntersectSquare } from "./csr/IntersectSquare"; +export { IntersectThree } from "./csr/IntersectThree"; +export { Jeep } from "./csr/Jeep"; +export { Kanban } from "./csr/Kanban"; +export { Key } from "./csr/Key"; +export { KeyReturn } from "./csr/KeyReturn"; +export { Keyboard } from "./csr/Keyboard"; +export { Keyhole } from "./csr/Keyhole"; +export { Knife } from "./csr/Knife"; +export { Ladder } from "./csr/Ladder"; +export { LadderSimple } from "./csr/LadderSimple"; +export { Lamp } from "./csr/Lamp"; +export { Laptop } from "./csr/Laptop"; +export { Layout } from "./csr/Layout"; +export { Leaf } from "./csr/Leaf"; +export { Lifebuoy } from "./csr/Lifebuoy"; +export { Lightbulb } from "./csr/Lightbulb"; +export { LightbulbFilament } from "./csr/LightbulbFilament"; +export { Lighthouse } from "./csr/Lighthouse"; +export { LightningA } from "./csr/LightningA"; +export { Lightning } from "./csr/Lightning"; +export { LightningSlash } from "./csr/LightningSlash"; +export { LineSegment } from "./csr/LineSegment"; +export { LineSegments } from "./csr/LineSegments"; +export { Link } from "./csr/Link"; +export { LinkBreak } from "./csr/LinkBreak"; +export { LinkSimple } from "./csr/LinkSimple"; +export { LinkSimpleBreak } from "./csr/LinkSimpleBreak"; +export { LinkSimpleHorizontal } from "./csr/LinkSimpleHorizontal"; +export { LinkSimpleHorizontalBreak } from "./csr/LinkSimpleHorizontalBreak"; +export { LinkedinLogo } from "./csr/LinkedinLogo"; +export { LinuxLogo } from "./csr/LinuxLogo"; +export { List } from "./csr/List"; +export { ListBullets } from "./csr/ListBullets"; +export { ListChecks } from "./csr/ListChecks"; +export { ListDashes } from "./csr/ListDashes"; +export { ListMagnifyingGlass } from "./csr/ListMagnifyingGlass"; +export { ListNumbers } from "./csr/ListNumbers"; +export { ListPlus } from "./csr/ListPlus"; +export { Lock } from "./csr/Lock"; +export { LockKey } from "./csr/LockKey"; +export { LockKeyOpen } from "./csr/LockKeyOpen"; +export { LockLaminated } from "./csr/LockLaminated"; +export { LockLaminatedOpen } from "./csr/LockLaminatedOpen"; +export { LockOpen } from "./csr/LockOpen"; +export { LockSimple } from "./csr/LockSimple"; +export { LockSimpleOpen } from "./csr/LockSimpleOpen"; +export { Lockers } from "./csr/Lockers"; +export { MagicWand } from "./csr/MagicWand"; +export { Magnet } from "./csr/Magnet"; +export { MagnetStraight } from "./csr/MagnetStraight"; +export { MagnifyingGlass } from "./csr/MagnifyingGlass"; +export { MagnifyingGlassMinus } from "./csr/MagnifyingGlassMinus"; +export { MagnifyingGlassPlus } from "./csr/MagnifyingGlassPlus"; +export { MapPin } from "./csr/MapPin"; +export { MapPinLine } from "./csr/MapPinLine"; +export { MapTrifold } from "./csr/MapTrifold"; +export { MarkerCircle } from "./csr/MarkerCircle"; +export { Martini } from "./csr/Martini"; +export { MaskHappy } from "./csr/MaskHappy"; +export { MaskSad } from "./csr/MaskSad"; +export { MathOperations } from "./csr/MathOperations"; +export { Medal } from "./csr/Medal"; +export { MedalMilitary } from "./csr/MedalMilitary"; +export { MediumLogo } from "./csr/MediumLogo"; +export { Megaphone } from "./csr/Megaphone"; +export { MegaphoneSimple } from "./csr/MegaphoneSimple"; +export { MessengerLogo } from "./csr/MessengerLogo"; +export { MetaLogo } from "./csr/MetaLogo"; +export { Metronome } from "./csr/Metronome"; +export { Microphone } from "./csr/Microphone"; +export { MicrophoneSlash } from "./csr/MicrophoneSlash"; +export { MicrophoneStage } from "./csr/MicrophoneStage"; +export { MicrosoftExcelLogo } from "./csr/MicrosoftExcelLogo"; +export { MicrosoftOutlookLogo } from "./csr/MicrosoftOutlookLogo"; +export { MicrosoftPowerpointLogo } from "./csr/MicrosoftPowerpointLogo"; +export { MicrosoftTeamsLogo } from "./csr/MicrosoftTeamsLogo"; +export { MicrosoftWordLogo } from "./csr/MicrosoftWordLogo"; +export { Minus } from "./csr/Minus"; +export { MinusCircle } from "./csr/MinusCircle"; +export { MinusSquare } from "./csr/MinusSquare"; +export { Money } from "./csr/Money"; +export { Monitor } from "./csr/Monitor"; +export { MonitorPlay } from "./csr/MonitorPlay"; +export { Moon } from "./csr/Moon"; +export { MoonStars } from "./csr/MoonStars"; +export { Moped } from "./csr/Moped"; +export { MopedFront } from "./csr/MopedFront"; +export { Mosque } from "./csr/Mosque"; +export { Motorcycle } from "./csr/Motorcycle"; +export { Mountains } from "./csr/Mountains"; +export { Mouse } from "./csr/Mouse"; +export { MouseSimple } from "./csr/MouseSimple"; +export { MusicNote } from "./csr/MusicNote"; +export { MusicNoteSimple } from "./csr/MusicNoteSimple"; +export { MusicNotes } from "./csr/MusicNotes"; +export { MusicNotesPlus } from "./csr/MusicNotesPlus"; +export { MusicNotesSimple } from "./csr/MusicNotesSimple"; +export { NavigationArrow } from "./csr/NavigationArrow"; +export { Needle } from "./csr/Needle"; +export { Newspaper } from "./csr/Newspaper"; +export { NewspaperClipping } from "./csr/NewspaperClipping"; +export { Notches } from "./csr/Notches"; +export { NoteBlank } from "./csr/NoteBlank"; +export { Note } from "./csr/Note"; +export { NotePencil } from "./csr/NotePencil"; +export { Notebook } from "./csr/Notebook"; +export { Notepad } from "./csr/Notepad"; +export { Notification } from "./csr/Notification"; +export { NotionLogo } from "./csr/NotionLogo"; +export { NumberCircleEight } from "./csr/NumberCircleEight"; +export { NumberCircleFive } from "./csr/NumberCircleFive"; +export { NumberCircleFour } from "./csr/NumberCircleFour"; +export { NumberCircleNine } from "./csr/NumberCircleNine"; +export { NumberCircleOne } from "./csr/NumberCircleOne"; +export { NumberCircleSeven } from "./csr/NumberCircleSeven"; +export { NumberCircleSix } from "./csr/NumberCircleSix"; +export { NumberCircleThree } from "./csr/NumberCircleThree"; +export { NumberCircleTwo } from "./csr/NumberCircleTwo"; +export { NumberCircleZero } from "./csr/NumberCircleZero"; +export { NumberEight } from "./csr/NumberEight"; +export { NumberFive } from "./csr/NumberFive"; +export { NumberFour } from "./csr/NumberFour"; +export { NumberNine } from "./csr/NumberNine"; +export { NumberOne } from "./csr/NumberOne"; +export { NumberSeven } from "./csr/NumberSeven"; +export { NumberSix } from "./csr/NumberSix"; +export { NumberSquareEight } from "./csr/NumberSquareEight"; +export { NumberSquareFive } from "./csr/NumberSquareFive"; +export { NumberSquareFour } from "./csr/NumberSquareFour"; +export { NumberSquareNine } from "./csr/NumberSquareNine"; +export { NumberSquareOne } from "./csr/NumberSquareOne"; +export { NumberSquareSeven } from "./csr/NumberSquareSeven"; +export { NumberSquareSix } from "./csr/NumberSquareSix"; +export { NumberSquareThree } from "./csr/NumberSquareThree"; +export { NumberSquareTwo } from "./csr/NumberSquareTwo"; +export { NumberSquareZero } from "./csr/NumberSquareZero"; +export { NumberThree } from "./csr/NumberThree"; +export { NumberTwo } from "./csr/NumberTwo"; +export { NumberZero } from "./csr/NumberZero"; +export { Nut } from "./csr/Nut"; +export { NyTimesLogo } from "./csr/NyTimesLogo"; +export { Octagon } from "./csr/Octagon"; +export { OfficeChair } from "./csr/OfficeChair"; +export { Option } from "./csr/Option"; +export { OrangeSlice } from "./csr/OrangeSlice"; +export { Package } from "./csr/Package"; +export { PaintBrush } from "./csr/PaintBrush"; +export { PaintBrushBroad } from "./csr/PaintBrushBroad"; +export { PaintBrushHousehold } from "./csr/PaintBrushHousehold"; +export { PaintBucket } from "./csr/PaintBucket"; +export { PaintRoller } from "./csr/PaintRoller"; +export { Palette } from "./csr/Palette"; +export { Pants } from "./csr/Pants"; +export { PaperPlane } from "./csr/PaperPlane"; +export { PaperPlaneRight } from "./csr/PaperPlaneRight"; +export { PaperPlaneTilt } from "./csr/PaperPlaneTilt"; +export { Paperclip } from "./csr/Paperclip"; +export { PaperclipHorizontal } from "./csr/PaperclipHorizontal"; +export { Parachute } from "./csr/Parachute"; +export { Paragraph } from "./csr/Paragraph"; +export { Parallelogram } from "./csr/Parallelogram"; +export { Park } from "./csr/Park"; +export { Password } from "./csr/Password"; +export { Path } from "./csr/Path"; +export { PatreonLogo } from "./csr/PatreonLogo"; +export { Pause } from "./csr/Pause"; +export { PauseCircle } from "./csr/PauseCircle"; +export { PawPrint } from "./csr/PawPrint"; +export { PaypalLogo } from "./csr/PaypalLogo"; +export { Peace } from "./csr/Peace"; +export { Pen } from "./csr/Pen"; +export { PenNib } from "./csr/PenNib"; +export { PenNibStraight } from "./csr/PenNibStraight"; +export { Pencil } from "./csr/Pencil"; +export { PencilCircle } from "./csr/PencilCircle"; +export { PencilLine } from "./csr/PencilLine"; +export { PencilSimple } from "./csr/PencilSimple"; +export { PencilSimpleLine } from "./csr/PencilSimpleLine"; +export { PencilSimpleSlash } from "./csr/PencilSimpleSlash"; +export { PencilSlash } from "./csr/PencilSlash"; +export { Pentagram } from "./csr/Pentagram"; +export { Pepper } from "./csr/Pepper"; +export { Percent } from "./csr/Percent"; +export { PersonArmsSpread } from "./csr/PersonArmsSpread"; +export { Person } from "./csr/Person"; +export { PersonSimpleBike } from "./csr/PersonSimpleBike"; +export { PersonSimple } from "./csr/PersonSimple"; +export { PersonSimpleRun } from "./csr/PersonSimpleRun"; +export { PersonSimpleThrow } from "./csr/PersonSimpleThrow"; +export { PersonSimpleWalk } from "./csr/PersonSimpleWalk"; +export { Perspective } from "./csr/Perspective"; +export { Phone } from "./csr/Phone"; +export { PhoneCall } from "./csr/PhoneCall"; +export { PhoneDisconnect } from "./csr/PhoneDisconnect"; +export { PhoneIncoming } from "./csr/PhoneIncoming"; +export { PhoneOutgoing } from "./csr/PhoneOutgoing"; +export { PhonePlus } from "./csr/PhonePlus"; +export { PhoneSlash } from "./csr/PhoneSlash"; +export { PhoneX } from "./csr/PhoneX"; +export { PhosphorLogo } from "./csr/PhosphorLogo"; +export { Pi } from "./csr/Pi"; +export { PianoKeys } from "./csr/PianoKeys"; +export { PictureInPicture } from "./csr/PictureInPicture"; +export { PiggyBank } from "./csr/PiggyBank"; +export { Pill } from "./csr/Pill"; +export { PinterestLogo } from "./csr/PinterestLogo"; +export { Pinwheel } from "./csr/Pinwheel"; +export { Pizza } from "./csr/Pizza"; +export { Placeholder } from "./csr/Placeholder"; +export { Planet } from "./csr/Planet"; +export { Plant } from "./csr/Plant"; +export { Play } from "./csr/Play"; +export { PlayCircle } from "./csr/PlayCircle"; +export { PlayPause } from "./csr/PlayPause"; +export { Playlist } from "./csr/Playlist"; +export { Plug } from "./csr/Plug"; +export { PlugCharging } from "./csr/PlugCharging"; +export { Plugs } from "./csr/Plugs"; +export { PlugsConnected } from "./csr/PlugsConnected"; +export { Plus } from "./csr/Plus"; +export { PlusCircle } from "./csr/PlusCircle"; +export { PlusMinus } from "./csr/PlusMinus"; +export { PlusSquare } from "./csr/PlusSquare"; +export { PokerChip } from "./csr/PokerChip"; +export { PoliceCar } from "./csr/PoliceCar"; +export { Polygon } from "./csr/Polygon"; +export { Popcorn } from "./csr/Popcorn"; +export { PottedPlant } from "./csr/PottedPlant"; +export { Power } from "./csr/Power"; +export { Prescription } from "./csr/Prescription"; +export { Presentation } from "./csr/Presentation"; +export { PresentationChart } from "./csr/PresentationChart"; +export { Printer } from "./csr/Printer"; +export { Prohibit } from "./csr/Prohibit"; +export { ProhibitInset } from "./csr/ProhibitInset"; +export { ProjectorScreen } from "./csr/ProjectorScreen"; +export { ProjectorScreenChart } from "./csr/ProjectorScreenChart"; +export { Pulse, Pulse as Activity } from "./csr/Pulse"; +export { PushPin } from "./csr/PushPin"; +export { PushPinSimple } from "./csr/PushPinSimple"; +export { PushPinSimpleSlash } from "./csr/PushPinSimpleSlash"; +export { PushPinSlash } from "./csr/PushPinSlash"; +export { PuzzlePiece } from "./csr/PuzzlePiece"; +export { QrCode } from "./csr/QrCode"; +export { Question } from "./csr/Question"; +export { Queue } from "./csr/Queue"; +export { Quotes } from "./csr/Quotes"; +export { Radical } from "./csr/Radical"; +export { Radio } from "./csr/Radio"; +export { RadioButton } from "./csr/RadioButton"; +export { Radioactive } from "./csr/Radioactive"; +export { Rainbow } from "./csr/Rainbow"; +export { RainbowCloud } from "./csr/RainbowCloud"; +export { ReadCvLogo } from "./csr/ReadCvLogo"; +export { Receipt } from "./csr/Receipt"; +export { ReceiptX } from "./csr/ReceiptX"; +export { Record } from "./csr/Record"; +export { Rectangle } from "./csr/Rectangle"; +export { Recycle } from "./csr/Recycle"; +export { RedditLogo } from "./csr/RedditLogo"; +export { Repeat } from "./csr/Repeat"; +export { RepeatOnce } from "./csr/RepeatOnce"; +export { Rewind } from "./csr/Rewind"; +export { RewindCircle } from "./csr/RewindCircle"; +export { RoadHorizon } from "./csr/RoadHorizon"; +export { Robot } from "./csr/Robot"; +export { Rocket } from "./csr/Rocket"; +export { RocketLaunch } from "./csr/RocketLaunch"; +export { Rows } from "./csr/Rows"; +export { Rss } from "./csr/Rss"; +export { RssSimple } from "./csr/RssSimple"; +export { Rug } from "./csr/Rug"; +export { Ruler } from "./csr/Ruler"; +export { Scales } from "./csr/Scales"; +export { Scan } from "./csr/Scan"; +export { Scissors } from "./csr/Scissors"; +export { Scooter } from "./csr/Scooter"; +export { Screencast } from "./csr/Screencast"; +export { ScribbleLoop } from "./csr/ScribbleLoop"; +export { Scroll } from "./csr/Scroll"; +export { Seal, Seal as CircleWavy } from "./csr/Seal"; +export { SealCheck, SealCheck as CircleWavyCheck } from "./csr/SealCheck"; export { SealQuestion, SealQuestion as CircleWavyQuestion, -} from "./icons/SealQuestion"; +} from "./csr/SealQuestion"; export { SealWarning, SealWarning as CircleWavyWarning, -} from "./icons/SealWarning"; -export { SelectionAll } from "./icons/SelectionAll"; -export { SelectionBackground } from "./icons/SelectionBackground"; -export { Selection } from "./icons/Selection"; -export { SelectionForeground } from "./icons/SelectionForeground"; -export { SelectionInverse } from "./icons/SelectionInverse"; -export { SelectionPlus } from "./icons/SelectionPlus"; -export { SelectionSlash } from "./icons/SelectionSlash"; -export { Shapes } from "./icons/Shapes"; -export { Share } from "./icons/Share"; -export { ShareFat } from "./icons/ShareFat"; -export { ShareNetwork } from "./icons/ShareNetwork"; -export { Shield } from "./icons/Shield"; -export { ShieldCheck } from "./icons/ShieldCheck"; -export { ShieldCheckered } from "./icons/ShieldCheckered"; -export { ShieldChevron } from "./icons/ShieldChevron"; -export { ShieldPlus } from "./icons/ShieldPlus"; -export { ShieldSlash } from "./icons/ShieldSlash"; -export { ShieldStar } from "./icons/ShieldStar"; -export { ShieldWarning } from "./icons/ShieldWarning"; -export { ShirtFolded } from "./icons/ShirtFolded"; -export { ShootingStar } from "./icons/ShootingStar"; -export { ShoppingBag } from "./icons/ShoppingBag"; -export { ShoppingBagOpen } from "./icons/ShoppingBagOpen"; -export { ShoppingCart } from "./icons/ShoppingCart"; -export { ShoppingCartSimple } from "./icons/ShoppingCartSimple"; -export { Shower } from "./icons/Shower"; -export { Shrimp } from "./icons/Shrimp"; -export { ShuffleAngular } from "./icons/ShuffleAngular"; -export { Shuffle } from "./icons/Shuffle"; -export { ShuffleSimple } from "./icons/ShuffleSimple"; -export { Sidebar } from "./icons/Sidebar"; -export { SidebarSimple } from "./icons/SidebarSimple"; -export { Sigma } from "./icons/Sigma"; -export { SignIn } from "./icons/SignIn"; -export { SignOut } from "./icons/SignOut"; -export { Signature } from "./icons/Signature"; -export { Signpost } from "./icons/Signpost"; -export { SimCard } from "./icons/SimCard"; -export { Siren } from "./icons/Siren"; -export { SketchLogo } from "./icons/SketchLogo"; -export { SkipBack } from "./icons/SkipBack"; -export { SkipBackCircle } from "./icons/SkipBackCircle"; -export { SkipForward } from "./icons/SkipForward"; -export { SkipForwardCircle } from "./icons/SkipForwardCircle"; -export { Skull } from "./icons/Skull"; -export { SlackLogo } from "./icons/SlackLogo"; -export { Sliders } from "./icons/Sliders"; -export { SlidersHorizontal } from "./icons/SlidersHorizontal"; -export { Slideshow } from "./icons/Slideshow"; -export { SmileyAngry } from "./icons/SmileyAngry"; -export { SmileyBlank } from "./icons/SmileyBlank"; -export { Smiley } from "./icons/Smiley"; -export { SmileyMeh } from "./icons/SmileyMeh"; -export { SmileyNervous } from "./icons/SmileyNervous"; -export { SmileySad } from "./icons/SmileySad"; -export { SmileySticker } from "./icons/SmileySticker"; -export { SmileyWink } from "./icons/SmileyWink"; -export { SmileyXEyes } from "./icons/SmileyXEyes"; -export { SnapchatLogo } from "./icons/SnapchatLogo"; -export { Sneaker } from "./icons/Sneaker"; -export { SneakerMove } from "./icons/SneakerMove"; -export { Snowflake } from "./icons/Snowflake"; -export { SoccerBall } from "./icons/SoccerBall"; -export { SortAscending } from "./icons/SortAscending"; -export { SortDescending } from "./icons/SortDescending"; -export { SoundcloudLogo } from "./icons/SoundcloudLogo"; -export { Spade } from "./icons/Spade"; -export { Sparkle } from "./icons/Sparkle"; -export { SpeakerHifi } from "./icons/SpeakerHifi"; -export { SpeakerHigh } from "./icons/SpeakerHigh"; -export { SpeakerLow } from "./icons/SpeakerLow"; -export { SpeakerNone } from "./icons/SpeakerNone"; -export { SpeakerSimpleHigh } from "./icons/SpeakerSimpleHigh"; -export { SpeakerSimpleLow } from "./icons/SpeakerSimpleLow"; -export { SpeakerSimpleNone } from "./icons/SpeakerSimpleNone"; -export { SpeakerSimpleSlash } from "./icons/SpeakerSimpleSlash"; -export { SpeakerSimpleX } from "./icons/SpeakerSimpleX"; -export { SpeakerSlash } from "./icons/SpeakerSlash"; -export { SpeakerX } from "./icons/SpeakerX"; -export { Spinner } from "./icons/Spinner"; -export { SpinnerGap } from "./icons/SpinnerGap"; -export { Spiral } from "./icons/Spiral"; -export { SplitHorizontal } from "./icons/SplitHorizontal"; -export { SplitVertical } from "./icons/SplitVertical"; -export { SpotifyLogo } from "./icons/SpotifyLogo"; -export { Square } from "./icons/Square"; -export { SquareHalf } from "./icons/SquareHalf"; -export { SquareHalfBottom } from "./icons/SquareHalfBottom"; -export { SquareLogo } from "./icons/SquareLogo"; -export { SquareSplitHorizontal } from "./icons/SquareSplitHorizontal"; -export { SquareSplitVertical } from "./icons/SquareSplitVertical"; -export { SquaresFour } from "./icons/SquaresFour"; -export { Stack } from "./icons/Stack"; -export { StackOverflowLogo } from "./icons/StackOverflowLogo"; -export { StackSimple } from "./icons/StackSimple"; -export { Stairs } from "./icons/Stairs"; -export { Stamp } from "./icons/Stamp"; -export { StarAndCrescent } from "./icons/StarAndCrescent"; -export { Star } from "./icons/Star"; -export { StarFour } from "./icons/StarFour"; -export { StarHalf } from "./icons/StarHalf"; -export { StarOfDavid } from "./icons/StarOfDavid"; -export { SteeringWheel } from "./icons/SteeringWheel"; -export { Steps } from "./icons/Steps"; -export { Stethoscope } from "./icons/Stethoscope"; -export { Sticker } from "./icons/Sticker"; -export { Stool } from "./icons/Stool"; -export { Stop } from "./icons/Stop"; -export { StopCircle } from "./icons/StopCircle"; -export { Storefront } from "./icons/Storefront"; -export { Strategy } from "./icons/Strategy"; -export { StripeLogo } from "./icons/StripeLogo"; -export { Student } from "./icons/Student"; -export { Subtitles } from "./icons/Subtitles"; -export { Subtract } from "./icons/Subtract"; -export { SubtractSquare } from "./icons/SubtractSquare"; -export { Suitcase } from "./icons/Suitcase"; -export { SuitcaseRolling } from "./icons/SuitcaseRolling"; -export { SuitcaseSimple } from "./icons/SuitcaseSimple"; -export { Sun } from "./icons/Sun"; -export { SunDim } from "./icons/SunDim"; -export { SunHorizon } from "./icons/SunHorizon"; -export { Sunglasses } from "./icons/Sunglasses"; -export { Swap } from "./icons/Swap"; -export { Swatches } from "./icons/Swatches"; -export { SwimmingPool } from "./icons/SwimmingPool"; -export { Sword } from "./icons/Sword"; -export { Synagogue } from "./icons/Synagogue"; -export { Syringe } from "./icons/Syringe"; -export { TShirt } from "./icons/TShirt"; -export { Table } from "./icons/Table"; -export { Tabs } from "./icons/Tabs"; -export { Tag } from "./icons/Tag"; -export { TagChevron } from "./icons/TagChevron"; -export { TagSimple } from "./icons/TagSimple"; -export { Target } from "./icons/Target"; -export { Taxi } from "./icons/Taxi"; -export { TelegramLogo } from "./icons/TelegramLogo"; -export { Television } from "./icons/Television"; -export { TelevisionSimple } from "./icons/TelevisionSimple"; -export { TennisBall } from "./icons/TennisBall"; -export { Tent } from "./icons/Tent"; -export { Terminal } from "./icons/Terminal"; -export { TerminalWindow } from "./icons/TerminalWindow"; -export { TestTube } from "./icons/TestTube"; -export { TextAUnderline } from "./icons/TextAUnderline"; -export { TextAa } from "./icons/TextAa"; -export { TextAlignCenter } from "./icons/TextAlignCenter"; -export { TextAlignJustify } from "./icons/TextAlignJustify"; -export { TextAlignLeft } from "./icons/TextAlignLeft"; -export { TextAlignRight } from "./icons/TextAlignRight"; -export { TextB, TextB as TextBolder } from "./icons/TextB"; -export { TextColumns } from "./icons/TextColumns"; -export { TextH } from "./icons/TextH"; -export { TextHFive } from "./icons/TextHFive"; -export { TextHFour } from "./icons/TextHFour"; -export { TextHOne } from "./icons/TextHOne"; -export { TextHSix } from "./icons/TextHSix"; -export { TextHThree } from "./icons/TextHThree"; -export { TextHTwo } from "./icons/TextHTwo"; -export { TextIndent } from "./icons/TextIndent"; -export { TextItalic } from "./icons/TextItalic"; -export { TextOutdent } from "./icons/TextOutdent"; -export { TextStrikethrough } from "./icons/TextStrikethrough"; -export { TextT } from "./icons/TextT"; -export { TextUnderline } from "./icons/TextUnderline"; -export { Textbox } from "./icons/Textbox"; -export { Thermometer } from "./icons/Thermometer"; -export { ThermometerCold } from "./icons/ThermometerCold"; -export { ThermometerHot } from "./icons/ThermometerHot"; -export { ThermometerSimple } from "./icons/ThermometerSimple"; -export { ThumbsDown } from "./icons/ThumbsDown"; -export { ThumbsUp } from "./icons/ThumbsUp"; -export { Ticket } from "./icons/Ticket"; -export { TidalLogo } from "./icons/TidalLogo"; -export { TiktokLogo } from "./icons/TiktokLogo"; -export { Timer } from "./icons/Timer"; -export { Tipi } from "./icons/Tipi"; -export { ToggleLeft } from "./icons/ToggleLeft"; -export { ToggleRight } from "./icons/ToggleRight"; -export { Toilet } from "./icons/Toilet"; -export { ToiletPaper } from "./icons/ToiletPaper"; -export { Toolbox } from "./icons/Toolbox"; -export { Tooth } from "./icons/Tooth"; -export { Tote } from "./icons/Tote"; -export { ToteSimple } from "./icons/ToteSimple"; -export { Trademark } from "./icons/Trademark"; -export { TrademarkRegistered } from "./icons/TrademarkRegistered"; -export { TrafficCone } from "./icons/TrafficCone"; -export { TrafficSign } from "./icons/TrafficSign"; -export { TrafficSignal } from "./icons/TrafficSignal"; -export { Train } from "./icons/Train"; -export { TrainRegional } from "./icons/TrainRegional"; -export { TrainSimple } from "./icons/TrainSimple"; -export { Tram } from "./icons/Tram"; -export { Translate } from "./icons/Translate"; -export { Trash } from "./icons/Trash"; -export { TrashSimple } from "./icons/TrashSimple"; -export { Tray } from "./icons/Tray"; -export { Tree } from "./icons/Tree"; -export { TreeEvergreen } from "./icons/TreeEvergreen"; -export { TreePalm } from "./icons/TreePalm"; -export { TreeStructure } from "./icons/TreeStructure"; -export { TrendDown } from "./icons/TrendDown"; -export { TrendUp } from "./icons/TrendUp"; -export { Triangle } from "./icons/Triangle"; -export { Trophy } from "./icons/Trophy"; -export { Truck } from "./icons/Truck"; -export { TwitchLogo } from "./icons/TwitchLogo"; -export { TwitterLogo } from "./icons/TwitterLogo"; -export { Umbrella } from "./icons/Umbrella"; -export { UmbrellaSimple } from "./icons/UmbrellaSimple"; -export { Unite } from "./icons/Unite"; -export { UniteSquare } from "./icons/UniteSquare"; -export { Upload } from "./icons/Upload"; -export { UploadSimple } from "./icons/UploadSimple"; -export { Usb } from "./icons/Usb"; -export { User } from "./icons/User"; -export { UserCircle } from "./icons/UserCircle"; -export { UserCircleGear } from "./icons/UserCircleGear"; -export { UserCircleMinus } from "./icons/UserCircleMinus"; -export { UserCirclePlus } from "./icons/UserCirclePlus"; -export { UserFocus } from "./icons/UserFocus"; -export { UserGear } from "./icons/UserGear"; -export { UserList } from "./icons/UserList"; -export { UserMinus } from "./icons/UserMinus"; -export { UserPlus } from "./icons/UserPlus"; -export { UserRectangle } from "./icons/UserRectangle"; -export { UserSquare } from "./icons/UserSquare"; -export { UserSwitch } from "./icons/UserSwitch"; -export { Users } from "./icons/Users"; -export { UsersFour } from "./icons/UsersFour"; -export { UsersThree } from "./icons/UsersThree"; -export { Van } from "./icons/Van"; -export { Vault } from "./icons/Vault"; -export { Vibrate } from "./icons/Vibrate"; -export { Video } from "./icons/Video"; -export { VideoCamera } from "./icons/VideoCamera"; -export { VideoCameraSlash } from "./icons/VideoCameraSlash"; -export { Vignette } from "./icons/Vignette"; -export { VinylRecord } from "./icons/VinylRecord"; -export { VirtualReality } from "./icons/VirtualReality"; -export { Virus } from "./icons/Virus"; -export { Voicemail } from "./icons/Voicemail"; -export { Volleyball } from "./icons/Volleyball"; -export { Wall } from "./icons/Wall"; -export { Wallet } from "./icons/Wallet"; -export { Warehouse } from "./icons/Warehouse"; -export { Warning } from "./icons/Warning"; -export { WarningCircle } from "./icons/WarningCircle"; -export { WarningDiamond } from "./icons/WarningDiamond"; -export { WarningOctagon } from "./icons/WarningOctagon"; -export { Watch } from "./icons/Watch"; -export { WaveSawtooth } from "./icons/WaveSawtooth"; -export { WaveSine } from "./icons/WaveSine"; -export { WaveSquare } from "./icons/WaveSquare"; -export { WaveTriangle } from "./icons/WaveTriangle"; -export { Waveform } from "./icons/Waveform"; -export { Waves } from "./icons/Waves"; -export { Webcam } from "./icons/Webcam"; -export { WebcamSlash } from "./icons/WebcamSlash"; -export { WebhooksLogo } from "./icons/WebhooksLogo"; -export { WechatLogo } from "./icons/WechatLogo"; -export { WhatsappLogo } from "./icons/WhatsappLogo"; -export { Wheelchair } from "./icons/Wheelchair"; -export { WheelchairMotion } from "./icons/WheelchairMotion"; -export { WifiHigh } from "./icons/WifiHigh"; -export { WifiLow } from "./icons/WifiLow"; -export { WifiMedium } from "./icons/WifiMedium"; -export { WifiNone } from "./icons/WifiNone"; -export { WifiSlash } from "./icons/WifiSlash"; -export { WifiX } from "./icons/WifiX"; -export { Wind } from "./icons/Wind"; -export { WindowsLogo } from "./icons/WindowsLogo"; -export { Wine } from "./icons/Wine"; -export { Wrench } from "./icons/Wrench"; -export { X } from "./icons/X"; -export { XCircle } from "./icons/XCircle"; -export { XSquare } from "./icons/XSquare"; -export { YinYang } from "./icons/YinYang"; -export { YoutubeLogo } from "./icons/YoutubeLogo"; +} from "./csr/SealWarning"; +export { SelectionAll } from "./csr/SelectionAll"; +export { SelectionBackground } from "./csr/SelectionBackground"; +export { Selection } from "./csr/Selection"; +export { SelectionForeground } from "./csr/SelectionForeground"; +export { SelectionInverse } from "./csr/SelectionInverse"; +export { SelectionPlus } from "./csr/SelectionPlus"; +export { SelectionSlash } from "./csr/SelectionSlash"; +export { Shapes } from "./csr/Shapes"; +export { Share } from "./csr/Share"; +export { ShareFat } from "./csr/ShareFat"; +export { ShareNetwork } from "./csr/ShareNetwork"; +export { Shield } from "./csr/Shield"; +export { ShieldCheck } from "./csr/ShieldCheck"; +export { ShieldCheckered } from "./csr/ShieldCheckered"; +export { ShieldChevron } from "./csr/ShieldChevron"; +export { ShieldPlus } from "./csr/ShieldPlus"; +export { ShieldSlash } from "./csr/ShieldSlash"; +export { ShieldStar } from "./csr/ShieldStar"; +export { ShieldWarning } from "./csr/ShieldWarning"; +export { ShirtFolded } from "./csr/ShirtFolded"; +export { ShootingStar } from "./csr/ShootingStar"; +export { ShoppingBag } from "./csr/ShoppingBag"; +export { ShoppingBagOpen } from "./csr/ShoppingBagOpen"; +export { ShoppingCart } from "./csr/ShoppingCart"; +export { ShoppingCartSimple } from "./csr/ShoppingCartSimple"; +export { Shower } from "./csr/Shower"; +export { Shrimp } from "./csr/Shrimp"; +export { ShuffleAngular } from "./csr/ShuffleAngular"; +export { Shuffle } from "./csr/Shuffle"; +export { ShuffleSimple } from "./csr/ShuffleSimple"; +export { Sidebar } from "./csr/Sidebar"; +export { SidebarSimple } from "./csr/SidebarSimple"; +export { Sigma } from "./csr/Sigma"; +export { SignIn } from "./csr/SignIn"; +export { SignOut } from "./csr/SignOut"; +export { Signature } from "./csr/Signature"; +export { Signpost } from "./csr/Signpost"; +export { SimCard } from "./csr/SimCard"; +export { Siren } from "./csr/Siren"; +export { SketchLogo } from "./csr/SketchLogo"; +export { SkipBack } from "./csr/SkipBack"; +export { SkipBackCircle } from "./csr/SkipBackCircle"; +export { SkipForward } from "./csr/SkipForward"; +export { SkipForwardCircle } from "./csr/SkipForwardCircle"; +export { Skull } from "./csr/Skull"; +export { SlackLogo } from "./csr/SlackLogo"; +export { Sliders } from "./csr/Sliders"; +export { SlidersHorizontal } from "./csr/SlidersHorizontal"; +export { Slideshow } from "./csr/Slideshow"; +export { SmileyAngry } from "./csr/SmileyAngry"; +export { SmileyBlank } from "./csr/SmileyBlank"; +export { Smiley } from "./csr/Smiley"; +export { SmileyMeh } from "./csr/SmileyMeh"; +export { SmileyNervous } from "./csr/SmileyNervous"; +export { SmileySad } from "./csr/SmileySad"; +export { SmileySticker } from "./csr/SmileySticker"; +export { SmileyWink } from "./csr/SmileyWink"; +export { SmileyXEyes } from "./csr/SmileyXEyes"; +export { SnapchatLogo } from "./csr/SnapchatLogo"; +export { Sneaker } from "./csr/Sneaker"; +export { SneakerMove } from "./csr/SneakerMove"; +export { Snowflake } from "./csr/Snowflake"; +export { SoccerBall } from "./csr/SoccerBall"; +export { SortAscending } from "./csr/SortAscending"; +export { SortDescending } from "./csr/SortDescending"; +export { SoundcloudLogo } from "./csr/SoundcloudLogo"; +export { Spade } from "./csr/Spade"; +export { Sparkle } from "./csr/Sparkle"; +export { SpeakerHifi } from "./csr/SpeakerHifi"; +export { SpeakerHigh } from "./csr/SpeakerHigh"; +export { SpeakerLow } from "./csr/SpeakerLow"; +export { SpeakerNone } from "./csr/SpeakerNone"; +export { SpeakerSimpleHigh } from "./csr/SpeakerSimpleHigh"; +export { SpeakerSimpleLow } from "./csr/SpeakerSimpleLow"; +export { SpeakerSimpleNone } from "./csr/SpeakerSimpleNone"; +export { SpeakerSimpleSlash } from "./csr/SpeakerSimpleSlash"; +export { SpeakerSimpleX } from "./csr/SpeakerSimpleX"; +export { SpeakerSlash } from "./csr/SpeakerSlash"; +export { SpeakerX } from "./csr/SpeakerX"; +export { Spinner } from "./csr/Spinner"; +export { SpinnerGap } from "./csr/SpinnerGap"; +export { Spiral } from "./csr/Spiral"; +export { SplitHorizontal } from "./csr/SplitHorizontal"; +export { SplitVertical } from "./csr/SplitVertical"; +export { SpotifyLogo } from "./csr/SpotifyLogo"; +export { Square } from "./csr/Square"; +export { SquareHalf } from "./csr/SquareHalf"; +export { SquareHalfBottom } from "./csr/SquareHalfBottom"; +export { SquareLogo } from "./csr/SquareLogo"; +export { SquareSplitHorizontal } from "./csr/SquareSplitHorizontal"; +export { SquareSplitVertical } from "./csr/SquareSplitVertical"; +export { SquaresFour } from "./csr/SquaresFour"; +export { Stack } from "./csr/Stack"; +export { StackOverflowLogo } from "./csr/StackOverflowLogo"; +export { StackSimple } from "./csr/StackSimple"; +export { Stairs } from "./csr/Stairs"; +export { Stamp } from "./csr/Stamp"; +export { StarAndCrescent } from "./csr/StarAndCrescent"; +export { Star } from "./csr/Star"; +export { StarFour } from "./csr/StarFour"; +export { StarHalf } from "./csr/StarHalf"; +export { StarOfDavid } from "./csr/StarOfDavid"; +export { SteeringWheel } from "./csr/SteeringWheel"; +export { Steps } from "./csr/Steps"; +export { Stethoscope } from "./csr/Stethoscope"; +export { Sticker } from "./csr/Sticker"; +export { Stool } from "./csr/Stool"; +export { Stop } from "./csr/Stop"; +export { StopCircle } from "./csr/StopCircle"; +export { Storefront } from "./csr/Storefront"; +export { Strategy } from "./csr/Strategy"; +export { StripeLogo } from "./csr/StripeLogo"; +export { Student } from "./csr/Student"; +export { Subtitles } from "./csr/Subtitles"; +export { Subtract } from "./csr/Subtract"; +export { SubtractSquare } from "./csr/SubtractSquare"; +export { Suitcase } from "./csr/Suitcase"; +export { SuitcaseRolling } from "./csr/SuitcaseRolling"; +export { SuitcaseSimple } from "./csr/SuitcaseSimple"; +export { Sun } from "./csr/Sun"; +export { SunDim } from "./csr/SunDim"; +export { SunHorizon } from "./csr/SunHorizon"; +export { Sunglasses } from "./csr/Sunglasses"; +export { Swap } from "./csr/Swap"; +export { Swatches } from "./csr/Swatches"; +export { SwimmingPool } from "./csr/SwimmingPool"; +export { Sword } from "./csr/Sword"; +export { Synagogue } from "./csr/Synagogue"; +export { Syringe } from "./csr/Syringe"; +export { TShirt } from "./csr/TShirt"; +export { Table } from "./csr/Table"; +export { Tabs } from "./csr/Tabs"; +export { Tag } from "./csr/Tag"; +export { TagChevron } from "./csr/TagChevron"; +export { TagSimple } from "./csr/TagSimple"; +export { Target } from "./csr/Target"; +export { Taxi } from "./csr/Taxi"; +export { TelegramLogo } from "./csr/TelegramLogo"; +export { Television } from "./csr/Television"; +export { TelevisionSimple } from "./csr/TelevisionSimple"; +export { TennisBall } from "./csr/TennisBall"; +export { Tent } from "./csr/Tent"; +export { Terminal } from "./csr/Terminal"; +export { TerminalWindow } from "./csr/TerminalWindow"; +export { TestTube } from "./csr/TestTube"; +export { TextAUnderline } from "./csr/TextAUnderline"; +export { TextAa } from "./csr/TextAa"; +export { TextAlignCenter } from "./csr/TextAlignCenter"; +export { TextAlignJustify } from "./csr/TextAlignJustify"; +export { TextAlignLeft } from "./csr/TextAlignLeft"; +export { TextAlignRight } from "./csr/TextAlignRight"; +export { TextB, TextB as TextBolder } from "./csr/TextB"; +export { TextColumns } from "./csr/TextColumns"; +export { TextH } from "./csr/TextH"; +export { TextHFive } from "./csr/TextHFive"; +export { TextHFour } from "./csr/TextHFour"; +export { TextHOne } from "./csr/TextHOne"; +export { TextHSix } from "./csr/TextHSix"; +export { TextHThree } from "./csr/TextHThree"; +export { TextHTwo } from "./csr/TextHTwo"; +export { TextIndent } from "./csr/TextIndent"; +export { TextItalic } from "./csr/TextItalic"; +export { TextOutdent } from "./csr/TextOutdent"; +export { TextStrikethrough } from "./csr/TextStrikethrough"; +export { TextT } from "./csr/TextT"; +export { TextUnderline } from "./csr/TextUnderline"; +export { Textbox } from "./csr/Textbox"; +export { Thermometer } from "./csr/Thermometer"; +export { ThermometerCold } from "./csr/ThermometerCold"; +export { ThermometerHot } from "./csr/ThermometerHot"; +export { ThermometerSimple } from "./csr/ThermometerSimple"; +export { ThumbsDown } from "./csr/ThumbsDown"; +export { ThumbsUp } from "./csr/ThumbsUp"; +export { Ticket } from "./csr/Ticket"; +export { TidalLogo } from "./csr/TidalLogo"; +export { TiktokLogo } from "./csr/TiktokLogo"; +export { Timer } from "./csr/Timer"; +export { Tipi } from "./csr/Tipi"; +export { ToggleLeft } from "./csr/ToggleLeft"; +export { ToggleRight } from "./csr/ToggleRight"; +export { Toilet } from "./csr/Toilet"; +export { ToiletPaper } from "./csr/ToiletPaper"; +export { Toolbox } from "./csr/Toolbox"; +export { Tooth } from "./csr/Tooth"; +export { Tote } from "./csr/Tote"; +export { ToteSimple } from "./csr/ToteSimple"; +export { Trademark } from "./csr/Trademark"; +export { TrademarkRegistered } from "./csr/TrademarkRegistered"; +export { TrafficCone } from "./csr/TrafficCone"; +export { TrafficSign } from "./csr/TrafficSign"; +export { TrafficSignal } from "./csr/TrafficSignal"; +export { Train } from "./csr/Train"; +export { TrainRegional } from "./csr/TrainRegional"; +export { TrainSimple } from "./csr/TrainSimple"; +export { Tram } from "./csr/Tram"; +export { Translate } from "./csr/Translate"; +export { Trash } from "./csr/Trash"; +export { TrashSimple } from "./csr/TrashSimple"; +export { Tray } from "./csr/Tray"; +export { Tree } from "./csr/Tree"; +export { TreeEvergreen } from "./csr/TreeEvergreen"; +export { TreePalm } from "./csr/TreePalm"; +export { TreeStructure } from "./csr/TreeStructure"; +export { TrendDown } from "./csr/TrendDown"; +export { TrendUp } from "./csr/TrendUp"; +export { Triangle } from "./csr/Triangle"; +export { Trophy } from "./csr/Trophy"; +export { Truck } from "./csr/Truck"; +export { TwitchLogo } from "./csr/TwitchLogo"; +export { TwitterLogo } from "./csr/TwitterLogo"; +export { Umbrella } from "./csr/Umbrella"; +export { UmbrellaSimple } from "./csr/UmbrellaSimple"; +export { Unite } from "./csr/Unite"; +export { UniteSquare } from "./csr/UniteSquare"; +export { Upload } from "./csr/Upload"; +export { UploadSimple } from "./csr/UploadSimple"; +export { Usb } from "./csr/Usb"; +export { User } from "./csr/User"; +export { UserCircle } from "./csr/UserCircle"; +export { UserCircleGear } from "./csr/UserCircleGear"; +export { UserCircleMinus } from "./csr/UserCircleMinus"; +export { UserCirclePlus } from "./csr/UserCirclePlus"; +export { UserFocus } from "./csr/UserFocus"; +export { UserGear } from "./csr/UserGear"; +export { UserList } from "./csr/UserList"; +export { UserMinus } from "./csr/UserMinus"; +export { UserPlus } from "./csr/UserPlus"; +export { UserRectangle } from "./csr/UserRectangle"; +export { UserSquare } from "./csr/UserSquare"; +export { UserSwitch } from "./csr/UserSwitch"; +export { Users } from "./csr/Users"; +export { UsersFour } from "./csr/UsersFour"; +export { UsersThree } from "./csr/UsersThree"; +export { Van } from "./csr/Van"; +export { Vault } from "./csr/Vault"; +export { Vibrate } from "./csr/Vibrate"; +export { Video } from "./csr/Video"; +export { VideoCamera } from "./csr/VideoCamera"; +export { VideoCameraSlash } from "./csr/VideoCameraSlash"; +export { Vignette } from "./csr/Vignette"; +export { VinylRecord } from "./csr/VinylRecord"; +export { VirtualReality } from "./csr/VirtualReality"; +export { Virus } from "./csr/Virus"; +export { Voicemail } from "./csr/Voicemail"; +export { Volleyball } from "./csr/Volleyball"; +export { Wall } from "./csr/Wall"; +export { Wallet } from "./csr/Wallet"; +export { Warehouse } from "./csr/Warehouse"; +export { Warning } from "./csr/Warning"; +export { WarningCircle } from "./csr/WarningCircle"; +export { WarningDiamond } from "./csr/WarningDiamond"; +export { WarningOctagon } from "./csr/WarningOctagon"; +export { Watch } from "./csr/Watch"; +export { WaveSawtooth } from "./csr/WaveSawtooth"; +export { WaveSine } from "./csr/WaveSine"; +export { WaveSquare } from "./csr/WaveSquare"; +export { WaveTriangle } from "./csr/WaveTriangle"; +export { Waveform } from "./csr/Waveform"; +export { Waves } from "./csr/Waves"; +export { Webcam } from "./csr/Webcam"; +export { WebcamSlash } from "./csr/WebcamSlash"; +export { WebhooksLogo } from "./csr/WebhooksLogo"; +export { WechatLogo } from "./csr/WechatLogo"; +export { WhatsappLogo } from "./csr/WhatsappLogo"; +export { Wheelchair } from "./csr/Wheelchair"; +export { WheelchairMotion } from "./csr/WheelchairMotion"; +export { WifiHigh } from "./csr/WifiHigh"; +export { WifiLow } from "./csr/WifiLow"; +export { WifiMedium } from "./csr/WifiMedium"; +export { WifiNone } from "./csr/WifiNone"; +export { WifiSlash } from "./csr/WifiSlash"; +export { WifiX } from "./csr/WifiX"; +export { Wind } from "./csr/Wind"; +export { WindowsLogo } from "./csr/WindowsLogo"; +export { Wine } from "./csr/Wine"; +export { Wrench } from "./csr/Wrench"; +export { X } from "./csr/X"; +export { XCircle } from "./csr/XCircle"; +export { XSquare } from "./csr/XSquare"; +export { YinYang } from "./csr/YinYang"; +export { YoutubeLogo } from "./csr/YoutubeLogo"; diff --git a/src/lib/SSRBase.tsx b/src/lib/SSRBase.tsx new file mode 100644 index 000000000..503796db1 --- /dev/null +++ b/src/lib/SSRBase.tsx @@ -0,0 +1,40 @@ +import { forwardRef, ReactElement } from "react"; +import { IconProps, IconWeight } from "./types"; + +interface IconBaseProps extends IconProps { + weights: Map; +} + +const SSRBase = forwardRef((props, ref) => { + const { + alt, + color = "currentColor", + size, + weight = "regular", + mirrored = false, + children, + weights, + ...restProps + } = props; + + return ( + + {!!alt && {alt}} + {children} + {weights.get(weight)} + + ); +}); + +SSRBase.displayName = "SSRBase"; + +export default SSRBase; diff --git a/src/lib/index.ts b/src/lib/index.ts index 9abba5358..71b9b8373 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1,3 +1,4 @@ export { IconContext } from "./context"; export type { Icon, IconProps, IconWeight } from "./types"; export { default as IconBase } from "./IconBase"; +export { default as SSRBase } from "./SSRBase"; diff --git a/src/ssr/AddressBook.tsx b/src/ssr/AddressBook.tsx new file mode 100644 index 000000000..f3e8be616 --- /dev/null +++ b/src/ssr/AddressBook.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AddressBook"; + +export const AddressBook: Icon = forwardRef((props, ref) => ( + +)); + +AddressBook.displayName = "AddressBook"; diff --git a/src/ssr/AirTrafficControl.tsx b/src/ssr/AirTrafficControl.tsx new file mode 100644 index 000000000..c24135b7a --- /dev/null +++ b/src/ssr/AirTrafficControl.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AirTrafficControl"; + +export const AirTrafficControl: Icon = forwardRef((props, ref) => ( + +)); + +AirTrafficControl.displayName = "AirTrafficControl"; diff --git a/src/ssr/Airplane.tsx b/src/ssr/Airplane.tsx new file mode 100644 index 000000000..6a1b1bc7f --- /dev/null +++ b/src/ssr/Airplane.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Airplane"; + +export const Airplane: Icon = forwardRef((props, ref) => ( + +)); + +Airplane.displayName = "Airplane"; diff --git a/src/ssr/AirplaneInFlight.tsx b/src/ssr/AirplaneInFlight.tsx new file mode 100644 index 000000000..283ff0d38 --- /dev/null +++ b/src/ssr/AirplaneInFlight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AirplaneInFlight"; + +export const AirplaneInFlight: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneInFlight.displayName = "AirplaneInFlight"; diff --git a/src/ssr/AirplaneLanding.tsx b/src/ssr/AirplaneLanding.tsx new file mode 100644 index 000000000..92143e4e4 --- /dev/null +++ b/src/ssr/AirplaneLanding.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AirplaneLanding"; + +export const AirplaneLanding: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneLanding.displayName = "AirplaneLanding"; diff --git a/src/ssr/AirplaneTakeoff.tsx b/src/ssr/AirplaneTakeoff.tsx new file mode 100644 index 000000000..1071b2143 --- /dev/null +++ b/src/ssr/AirplaneTakeoff.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AirplaneTakeoff"; + +export const AirplaneTakeoff: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneTakeoff.displayName = "AirplaneTakeoff"; diff --git a/src/ssr/AirplaneTilt.tsx b/src/ssr/AirplaneTilt.tsx new file mode 100644 index 000000000..12f7c58ac --- /dev/null +++ b/src/ssr/AirplaneTilt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AirplaneTilt"; + +export const AirplaneTilt: Icon = forwardRef((props, ref) => ( + +)); + +AirplaneTilt.displayName = "AirplaneTilt"; diff --git a/src/ssr/Airplay.tsx b/src/ssr/Airplay.tsx new file mode 100644 index 000000000..3df73814f --- /dev/null +++ b/src/ssr/Airplay.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Airplay"; + +export const Airplay: Icon = forwardRef((props, ref) => ( + +)); + +Airplay.displayName = "Airplay"; diff --git a/src/ssr/Alarm.tsx b/src/ssr/Alarm.tsx new file mode 100644 index 000000000..697b9fd91 --- /dev/null +++ b/src/ssr/Alarm.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Alarm"; + +export const Alarm: Icon = forwardRef((props, ref) => ( + +)); + +Alarm.displayName = "Alarm"; diff --git a/src/ssr/Alien.tsx b/src/ssr/Alien.tsx new file mode 100644 index 000000000..34e26f307 --- /dev/null +++ b/src/ssr/Alien.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Alien"; + +export const Alien: Icon = forwardRef((props, ref) => ( + +)); + +Alien.displayName = "Alien"; diff --git a/src/ssr/AlignBottom.tsx b/src/ssr/AlignBottom.tsx new file mode 100644 index 000000000..f5c2c4ad8 --- /dev/null +++ b/src/ssr/AlignBottom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignBottom"; + +export const AlignBottom: Icon = forwardRef((props, ref) => ( + +)); + +AlignBottom.displayName = "AlignBottom"; diff --git a/src/ssr/AlignBottomSimple.tsx b/src/ssr/AlignBottomSimple.tsx new file mode 100644 index 000000000..94f479fa3 --- /dev/null +++ b/src/ssr/AlignBottomSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignBottomSimple"; + +export const AlignBottomSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignBottomSimple.displayName = "AlignBottomSimple"; diff --git a/src/ssr/AlignCenterHorizontal.tsx b/src/ssr/AlignCenterHorizontal.tsx new file mode 100644 index 000000000..576a42675 --- /dev/null +++ b/src/ssr/AlignCenterHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignCenterHorizontal"; + +export const AlignCenterHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterHorizontal.displayName = "AlignCenterHorizontal"; diff --git a/src/ssr/AlignCenterHorizontalSimple.tsx b/src/ssr/AlignCenterHorizontalSimple.tsx new file mode 100644 index 000000000..745efc833 --- /dev/null +++ b/src/ssr/AlignCenterHorizontalSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignCenterHorizontalSimple"; + +export const AlignCenterHorizontalSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterHorizontalSimple.displayName = "AlignCenterHorizontalSimple"; diff --git a/src/ssr/AlignCenterVertical.tsx b/src/ssr/AlignCenterVertical.tsx new file mode 100644 index 000000000..2036d57bc --- /dev/null +++ b/src/ssr/AlignCenterVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignCenterVertical"; + +export const AlignCenterVertical: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterVertical.displayName = "AlignCenterVertical"; diff --git a/src/ssr/AlignCenterVerticalSimple.tsx b/src/ssr/AlignCenterVerticalSimple.tsx new file mode 100644 index 000000000..d64fa403c --- /dev/null +++ b/src/ssr/AlignCenterVerticalSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignCenterVerticalSimple"; + +export const AlignCenterVerticalSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignCenterVerticalSimple.displayName = "AlignCenterVerticalSimple"; diff --git a/src/ssr/AlignLeft.tsx b/src/ssr/AlignLeft.tsx new file mode 100644 index 000000000..aec7a5865 --- /dev/null +++ b/src/ssr/AlignLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignLeft"; + +export const AlignLeft: Icon = forwardRef((props, ref) => ( + +)); + +AlignLeft.displayName = "AlignLeft"; diff --git a/src/ssr/AlignLeftSimple.tsx b/src/ssr/AlignLeftSimple.tsx new file mode 100644 index 000000000..c87d89c0f --- /dev/null +++ b/src/ssr/AlignLeftSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignLeftSimple"; + +export const AlignLeftSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignLeftSimple.displayName = "AlignLeftSimple"; diff --git a/src/ssr/AlignRight.tsx b/src/ssr/AlignRight.tsx new file mode 100644 index 000000000..ce1d3445e --- /dev/null +++ b/src/ssr/AlignRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignRight"; + +export const AlignRight: Icon = forwardRef((props, ref) => ( + +)); + +AlignRight.displayName = "AlignRight"; diff --git a/src/ssr/AlignRightSimple.tsx b/src/ssr/AlignRightSimple.tsx new file mode 100644 index 000000000..8b424a05c --- /dev/null +++ b/src/ssr/AlignRightSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignRightSimple"; + +export const AlignRightSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignRightSimple.displayName = "AlignRightSimple"; diff --git a/src/ssr/AlignTop.tsx b/src/ssr/AlignTop.tsx new file mode 100644 index 000000000..c18faa572 --- /dev/null +++ b/src/ssr/AlignTop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignTop"; + +export const AlignTop: Icon = forwardRef((props, ref) => ( + +)); + +AlignTop.displayName = "AlignTop"; diff --git a/src/ssr/AlignTopSimple.tsx b/src/ssr/AlignTopSimple.tsx new file mode 100644 index 000000000..883105fac --- /dev/null +++ b/src/ssr/AlignTopSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AlignTopSimple"; + +export const AlignTopSimple: Icon = forwardRef((props, ref) => ( + +)); + +AlignTopSimple.displayName = "AlignTopSimple"; diff --git a/src/ssr/AmazonLogo.tsx b/src/ssr/AmazonLogo.tsx new file mode 100644 index 000000000..783c2d44e --- /dev/null +++ b/src/ssr/AmazonLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AmazonLogo"; + +export const AmazonLogo: Icon = forwardRef((props, ref) => ( + +)); + +AmazonLogo.displayName = "AmazonLogo"; diff --git a/src/ssr/Anchor.tsx b/src/ssr/Anchor.tsx new file mode 100644 index 000000000..777776835 --- /dev/null +++ b/src/ssr/Anchor.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Anchor"; + +export const Anchor: Icon = forwardRef((props, ref) => ( + +)); + +Anchor.displayName = "Anchor"; diff --git a/src/ssr/AnchorSimple.tsx b/src/ssr/AnchorSimple.tsx new file mode 100644 index 000000000..416e87099 --- /dev/null +++ b/src/ssr/AnchorSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AnchorSimple"; + +export const AnchorSimple: Icon = forwardRef((props, ref) => ( + +)); + +AnchorSimple.displayName = "AnchorSimple"; diff --git a/src/ssr/AndroidLogo.tsx b/src/ssr/AndroidLogo.tsx new file mode 100644 index 000000000..d27dae855 --- /dev/null +++ b/src/ssr/AndroidLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AndroidLogo"; + +export const AndroidLogo: Icon = forwardRef((props, ref) => ( + +)); + +AndroidLogo.displayName = "AndroidLogo"; diff --git a/src/ssr/AngularLogo.tsx b/src/ssr/AngularLogo.tsx new file mode 100644 index 000000000..ad89e0e96 --- /dev/null +++ b/src/ssr/AngularLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AngularLogo"; + +export const AngularLogo: Icon = forwardRef((props, ref) => ( + +)); + +AngularLogo.displayName = "AngularLogo"; diff --git a/src/ssr/Aperture.tsx b/src/ssr/Aperture.tsx new file mode 100644 index 000000000..86373bd73 --- /dev/null +++ b/src/ssr/Aperture.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Aperture"; + +export const Aperture: Icon = forwardRef((props, ref) => ( + +)); + +Aperture.displayName = "Aperture"; diff --git a/src/ssr/AppStoreLogo.tsx b/src/ssr/AppStoreLogo.tsx new file mode 100644 index 000000000..2f57d2e75 --- /dev/null +++ b/src/ssr/AppStoreLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AppStoreLogo"; + +export const AppStoreLogo: Icon = forwardRef((props, ref) => ( + +)); + +AppStoreLogo.displayName = "AppStoreLogo"; diff --git a/src/ssr/AppWindow.tsx b/src/ssr/AppWindow.tsx new file mode 100644 index 000000000..084b369e8 --- /dev/null +++ b/src/ssr/AppWindow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AppWindow"; + +export const AppWindow: Icon = forwardRef((props, ref) => ( + +)); + +AppWindow.displayName = "AppWindow"; diff --git a/src/ssr/AppleLogo.tsx b/src/ssr/AppleLogo.tsx new file mode 100644 index 000000000..594b3da68 --- /dev/null +++ b/src/ssr/AppleLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AppleLogo"; + +export const AppleLogo: Icon = forwardRef((props, ref) => ( + +)); + +AppleLogo.displayName = "AppleLogo"; diff --git a/src/ssr/ApplePodcastsLogo.tsx b/src/ssr/ApplePodcastsLogo.tsx new file mode 100644 index 000000000..7fc6466cf --- /dev/null +++ b/src/ssr/ApplePodcastsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ApplePodcastsLogo"; + +export const ApplePodcastsLogo: Icon = forwardRef((props, ref) => ( + +)); + +ApplePodcastsLogo.displayName = "ApplePodcastsLogo"; diff --git a/src/ssr/Archive.tsx b/src/ssr/Archive.tsx new file mode 100644 index 000000000..221044f28 --- /dev/null +++ b/src/ssr/Archive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Archive"; + +export const Archive: Icon = forwardRef((props, ref) => ( + +)); + +Archive.displayName = "Archive"; diff --git a/src/ssr/ArchiveBox.tsx b/src/ssr/ArchiveBox.tsx new file mode 100644 index 000000000..9dba16c54 --- /dev/null +++ b/src/ssr/ArchiveBox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArchiveBox"; + +export const ArchiveBox: Icon = forwardRef((props, ref) => ( + +)); + +ArchiveBox.displayName = "ArchiveBox"; diff --git a/src/ssr/ArchiveTray.tsx b/src/ssr/ArchiveTray.tsx new file mode 100644 index 000000000..2ea804dca --- /dev/null +++ b/src/ssr/ArchiveTray.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArchiveTray"; + +export const ArchiveTray: Icon = forwardRef((props, ref) => ( + +)); + +ArchiveTray.displayName = "ArchiveTray"; diff --git a/src/ssr/Armchair.tsx b/src/ssr/Armchair.tsx new file mode 100644 index 000000000..f99f1eeb1 --- /dev/null +++ b/src/ssr/Armchair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Armchair"; + +export const Armchair: Icon = forwardRef((props, ref) => ( + +)); + +Armchair.displayName = "Armchair"; diff --git a/src/ssr/ArrowArcLeft.tsx b/src/ssr/ArrowArcLeft.tsx new file mode 100644 index 000000000..d82b01bb8 --- /dev/null +++ b/src/ssr/ArrowArcLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowArcLeft"; + +export const ArrowArcLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowArcLeft.displayName = "ArrowArcLeft"; diff --git a/src/ssr/ArrowArcRight.tsx b/src/ssr/ArrowArcRight.tsx new file mode 100644 index 000000000..91f163430 --- /dev/null +++ b/src/ssr/ArrowArcRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowArcRight"; + +export const ArrowArcRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowArcRight.displayName = "ArrowArcRight"; diff --git a/src/ssr/ArrowBendDoubleUpLeft.tsx b/src/ssr/ArrowBendDoubleUpLeft.tsx new file mode 100644 index 000000000..30ca4e47a --- /dev/null +++ b/src/ssr/ArrowBendDoubleUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendDoubleUpLeft"; + +export const ArrowBendDoubleUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDoubleUpLeft.displayName = "ArrowBendDoubleUpLeft"; diff --git a/src/ssr/ArrowBendDoubleUpRight.tsx b/src/ssr/ArrowBendDoubleUpRight.tsx new file mode 100644 index 000000000..ae2440359 --- /dev/null +++ b/src/ssr/ArrowBendDoubleUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendDoubleUpRight"; + +export const ArrowBendDoubleUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDoubleUpRight.displayName = "ArrowBendDoubleUpRight"; diff --git a/src/ssr/ArrowBendDownLeft.tsx b/src/ssr/ArrowBendDownLeft.tsx new file mode 100644 index 000000000..d4f39833d --- /dev/null +++ b/src/ssr/ArrowBendDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendDownLeft"; + +export const ArrowBendDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDownLeft.displayName = "ArrowBendDownLeft"; diff --git a/src/ssr/ArrowBendDownRight.tsx b/src/ssr/ArrowBendDownRight.tsx new file mode 100644 index 000000000..729e053e3 --- /dev/null +++ b/src/ssr/ArrowBendDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendDownRight"; + +export const ArrowBendDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendDownRight.displayName = "ArrowBendDownRight"; diff --git a/src/ssr/ArrowBendLeftDown.tsx b/src/ssr/ArrowBendLeftDown.tsx new file mode 100644 index 000000000..a896635d0 --- /dev/null +++ b/src/ssr/ArrowBendLeftDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendLeftDown"; + +export const ArrowBendLeftDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendLeftDown.displayName = "ArrowBendLeftDown"; diff --git a/src/ssr/ArrowBendLeftUp.tsx b/src/ssr/ArrowBendLeftUp.tsx new file mode 100644 index 000000000..fd33e59d7 --- /dev/null +++ b/src/ssr/ArrowBendLeftUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendLeftUp"; + +export const ArrowBendLeftUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendLeftUp.displayName = "ArrowBendLeftUp"; diff --git a/src/ssr/ArrowBendRightDown.tsx b/src/ssr/ArrowBendRightDown.tsx new file mode 100644 index 000000000..d3c0e2ed2 --- /dev/null +++ b/src/ssr/ArrowBendRightDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendRightDown"; + +export const ArrowBendRightDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendRightDown.displayName = "ArrowBendRightDown"; diff --git a/src/ssr/ArrowBendRightUp.tsx b/src/ssr/ArrowBendRightUp.tsx new file mode 100644 index 000000000..ff02932bf --- /dev/null +++ b/src/ssr/ArrowBendRightUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendRightUp"; + +export const ArrowBendRightUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendRightUp.displayName = "ArrowBendRightUp"; diff --git a/src/ssr/ArrowBendUpLeft.tsx b/src/ssr/ArrowBendUpLeft.tsx new file mode 100644 index 000000000..c35f9b7a3 --- /dev/null +++ b/src/ssr/ArrowBendUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendUpLeft"; + +export const ArrowBendUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendUpLeft.displayName = "ArrowBendUpLeft"; diff --git a/src/ssr/ArrowBendUpRight.tsx b/src/ssr/ArrowBendUpRight.tsx new file mode 100644 index 000000000..00df451bb --- /dev/null +++ b/src/ssr/ArrowBendUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowBendUpRight"; + +export const ArrowBendUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowBendUpRight.displayName = "ArrowBendUpRight"; diff --git a/src/ssr/ArrowCircleDown.tsx b/src/ssr/ArrowCircleDown.tsx new file mode 100644 index 000000000..5bb852d25 --- /dev/null +++ b/src/ssr/ArrowCircleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleDown"; + +export const ArrowCircleDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleDown.displayName = "ArrowCircleDown"; diff --git a/src/ssr/ArrowCircleDownLeft.tsx b/src/ssr/ArrowCircleDownLeft.tsx new file mode 100644 index 000000000..fa5b05d68 --- /dev/null +++ b/src/ssr/ArrowCircleDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleDownLeft"; + +export const ArrowCircleDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleDownLeft.displayName = "ArrowCircleDownLeft"; diff --git a/src/ssr/ArrowCircleDownRight.tsx b/src/ssr/ArrowCircleDownRight.tsx new file mode 100644 index 000000000..bcd05361e --- /dev/null +++ b/src/ssr/ArrowCircleDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleDownRight"; + +export const ArrowCircleDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleDownRight.displayName = "ArrowCircleDownRight"; diff --git a/src/ssr/ArrowCircleLeft.tsx b/src/ssr/ArrowCircleLeft.tsx new file mode 100644 index 000000000..cfcb98f0b --- /dev/null +++ b/src/ssr/ArrowCircleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleLeft"; + +export const ArrowCircleLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleLeft.displayName = "ArrowCircleLeft"; diff --git a/src/ssr/ArrowCircleRight.tsx b/src/ssr/ArrowCircleRight.tsx new file mode 100644 index 000000000..46f3b6a76 --- /dev/null +++ b/src/ssr/ArrowCircleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleRight"; + +export const ArrowCircleRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleRight.displayName = "ArrowCircleRight"; diff --git a/src/ssr/ArrowCircleUp.tsx b/src/ssr/ArrowCircleUp.tsx new file mode 100644 index 000000000..cda0816b8 --- /dev/null +++ b/src/ssr/ArrowCircleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleUp"; + +export const ArrowCircleUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleUp.displayName = "ArrowCircleUp"; diff --git a/src/ssr/ArrowCircleUpLeft.tsx b/src/ssr/ArrowCircleUpLeft.tsx new file mode 100644 index 000000000..9d9d0a0d9 --- /dev/null +++ b/src/ssr/ArrowCircleUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleUpLeft"; + +export const ArrowCircleUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleUpLeft.displayName = "ArrowCircleUpLeft"; diff --git a/src/ssr/ArrowCircleUpRight.tsx b/src/ssr/ArrowCircleUpRight.tsx new file mode 100644 index 000000000..7659e6fb0 --- /dev/null +++ b/src/ssr/ArrowCircleUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCircleUpRight"; + +export const ArrowCircleUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCircleUpRight.displayName = "ArrowCircleUpRight"; diff --git a/src/ssr/ArrowClockwise.tsx b/src/ssr/ArrowClockwise.tsx new file mode 100644 index 000000000..98320d3a0 --- /dev/null +++ b/src/ssr/ArrowClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowClockwise"; + +export const ArrowClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowClockwise.displayName = "ArrowClockwise"; diff --git a/src/ssr/ArrowCounterClockwise.tsx b/src/ssr/ArrowCounterClockwise.tsx new file mode 100644 index 000000000..eedaeafe0 --- /dev/null +++ b/src/ssr/ArrowCounterClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowCounterClockwise"; + +export const ArrowCounterClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowCounterClockwise.displayName = "ArrowCounterClockwise"; diff --git a/src/ssr/ArrowDown.tsx b/src/ssr/ArrowDown.tsx new file mode 100644 index 000000000..dac9503bd --- /dev/null +++ b/src/ssr/ArrowDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowDown"; + +export const ArrowDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowDown.displayName = "ArrowDown"; diff --git a/src/ssr/ArrowDownLeft.tsx b/src/ssr/ArrowDownLeft.tsx new file mode 100644 index 000000000..edeace372 --- /dev/null +++ b/src/ssr/ArrowDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowDownLeft"; + +export const ArrowDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowDownLeft.displayName = "ArrowDownLeft"; diff --git a/src/ssr/ArrowDownRight.tsx b/src/ssr/ArrowDownRight.tsx new file mode 100644 index 000000000..f2b54174e --- /dev/null +++ b/src/ssr/ArrowDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowDownRight"; + +export const ArrowDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowDownRight.displayName = "ArrowDownRight"; diff --git a/src/ssr/ArrowElbowDownLeft.tsx b/src/ssr/ArrowElbowDownLeft.tsx new file mode 100644 index 000000000..6e22cef1f --- /dev/null +++ b/src/ssr/ArrowElbowDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowDownLeft"; + +export const ArrowElbowDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowDownLeft.displayName = "ArrowElbowDownLeft"; diff --git a/src/ssr/ArrowElbowDownRight.tsx b/src/ssr/ArrowElbowDownRight.tsx new file mode 100644 index 000000000..f362d9d79 --- /dev/null +++ b/src/ssr/ArrowElbowDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowDownRight"; + +export const ArrowElbowDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowDownRight.displayName = "ArrowElbowDownRight"; diff --git a/src/ssr/ArrowElbowLeft.tsx b/src/ssr/ArrowElbowLeft.tsx new file mode 100644 index 000000000..63eff9a4b --- /dev/null +++ b/src/ssr/ArrowElbowLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowLeft"; + +export const ArrowElbowLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowLeft.displayName = "ArrowElbowLeft"; diff --git a/src/ssr/ArrowElbowLeftDown.tsx b/src/ssr/ArrowElbowLeftDown.tsx new file mode 100644 index 000000000..4de62e526 --- /dev/null +++ b/src/ssr/ArrowElbowLeftDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowLeftDown"; + +export const ArrowElbowLeftDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowLeftDown.displayName = "ArrowElbowLeftDown"; diff --git a/src/ssr/ArrowElbowLeftUp.tsx b/src/ssr/ArrowElbowLeftUp.tsx new file mode 100644 index 000000000..034fdb72e --- /dev/null +++ b/src/ssr/ArrowElbowLeftUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowLeftUp"; + +export const ArrowElbowLeftUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowLeftUp.displayName = "ArrowElbowLeftUp"; diff --git a/src/ssr/ArrowElbowRight.tsx b/src/ssr/ArrowElbowRight.tsx new file mode 100644 index 000000000..0c9488709 --- /dev/null +++ b/src/ssr/ArrowElbowRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowRight"; + +export const ArrowElbowRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowRight.displayName = "ArrowElbowRight"; diff --git a/src/ssr/ArrowElbowRightDown.tsx b/src/ssr/ArrowElbowRightDown.tsx new file mode 100644 index 000000000..5021c78c5 --- /dev/null +++ b/src/ssr/ArrowElbowRightDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowRightDown"; + +export const ArrowElbowRightDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowRightDown.displayName = "ArrowElbowRightDown"; diff --git a/src/ssr/ArrowElbowRightUp.tsx b/src/ssr/ArrowElbowRightUp.tsx new file mode 100644 index 000000000..befe14407 --- /dev/null +++ b/src/ssr/ArrowElbowRightUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowRightUp"; + +export const ArrowElbowRightUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowRightUp.displayName = "ArrowElbowRightUp"; diff --git a/src/ssr/ArrowElbowUpLeft.tsx b/src/ssr/ArrowElbowUpLeft.tsx new file mode 100644 index 000000000..ab1b25ae8 --- /dev/null +++ b/src/ssr/ArrowElbowUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowUpLeft"; + +export const ArrowElbowUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowUpLeft.displayName = "ArrowElbowUpLeft"; diff --git a/src/ssr/ArrowElbowUpRight.tsx b/src/ssr/ArrowElbowUpRight.tsx new file mode 100644 index 000000000..b4240f6e4 --- /dev/null +++ b/src/ssr/ArrowElbowUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowElbowUpRight"; + +export const ArrowElbowUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowElbowUpRight.displayName = "ArrowElbowUpRight"; diff --git a/src/ssr/ArrowFatDown.tsx b/src/ssr/ArrowFatDown.tsx new file mode 100644 index 000000000..a28f500df --- /dev/null +++ b/src/ssr/ArrowFatDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatDown"; + +export const ArrowFatDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatDown.displayName = "ArrowFatDown"; diff --git a/src/ssr/ArrowFatLeft.tsx b/src/ssr/ArrowFatLeft.tsx new file mode 100644 index 000000000..cb8b85b20 --- /dev/null +++ b/src/ssr/ArrowFatLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLeft"; + +export const ArrowFatLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLeft.displayName = "ArrowFatLeft"; diff --git a/src/ssr/ArrowFatLineDown.tsx b/src/ssr/ArrowFatLineDown.tsx new file mode 100644 index 000000000..962b9f9fb --- /dev/null +++ b/src/ssr/ArrowFatLineDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLineDown"; + +export const ArrowFatLineDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineDown.displayName = "ArrowFatLineDown"; diff --git a/src/ssr/ArrowFatLineLeft.tsx b/src/ssr/ArrowFatLineLeft.tsx new file mode 100644 index 000000000..98c3635db --- /dev/null +++ b/src/ssr/ArrowFatLineLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLineLeft"; + +export const ArrowFatLineLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineLeft.displayName = "ArrowFatLineLeft"; diff --git a/src/ssr/ArrowFatLineRight.tsx b/src/ssr/ArrowFatLineRight.tsx new file mode 100644 index 000000000..72057ffe8 --- /dev/null +++ b/src/ssr/ArrowFatLineRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLineRight"; + +export const ArrowFatLineRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineRight.displayName = "ArrowFatLineRight"; diff --git a/src/ssr/ArrowFatLineUp.tsx b/src/ssr/ArrowFatLineUp.tsx new file mode 100644 index 000000000..e8705f206 --- /dev/null +++ b/src/ssr/ArrowFatLineUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLineUp"; + +export const ArrowFatLineUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLineUp.displayName = "ArrowFatLineUp"; diff --git a/src/ssr/ArrowFatLinesDown.tsx b/src/ssr/ArrowFatLinesDown.tsx new file mode 100644 index 000000000..60efeed3a --- /dev/null +++ b/src/ssr/ArrowFatLinesDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLinesDown"; + +export const ArrowFatLinesDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesDown.displayName = "ArrowFatLinesDown"; diff --git a/src/ssr/ArrowFatLinesLeft.tsx b/src/ssr/ArrowFatLinesLeft.tsx new file mode 100644 index 000000000..b4a3dfc85 --- /dev/null +++ b/src/ssr/ArrowFatLinesLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLinesLeft"; + +export const ArrowFatLinesLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesLeft.displayName = "ArrowFatLinesLeft"; diff --git a/src/ssr/ArrowFatLinesRight.tsx b/src/ssr/ArrowFatLinesRight.tsx new file mode 100644 index 000000000..f5267cdde --- /dev/null +++ b/src/ssr/ArrowFatLinesRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLinesRight"; + +export const ArrowFatLinesRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesRight.displayName = "ArrowFatLinesRight"; diff --git a/src/ssr/ArrowFatLinesUp.tsx b/src/ssr/ArrowFatLinesUp.tsx new file mode 100644 index 000000000..1ca0ea16d --- /dev/null +++ b/src/ssr/ArrowFatLinesUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatLinesUp"; + +export const ArrowFatLinesUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatLinesUp.displayName = "ArrowFatLinesUp"; diff --git a/src/ssr/ArrowFatRight.tsx b/src/ssr/ArrowFatRight.tsx new file mode 100644 index 000000000..248ab9831 --- /dev/null +++ b/src/ssr/ArrowFatRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatRight"; + +export const ArrowFatRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatRight.displayName = "ArrowFatRight"; diff --git a/src/ssr/ArrowFatUp.tsx b/src/ssr/ArrowFatUp.tsx new file mode 100644 index 000000000..0f9ce65df --- /dev/null +++ b/src/ssr/ArrowFatUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowFatUp"; + +export const ArrowFatUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowFatUp.displayName = "ArrowFatUp"; diff --git a/src/ssr/ArrowLeft.tsx b/src/ssr/ArrowLeft.tsx new file mode 100644 index 000000000..e388d0739 --- /dev/null +++ b/src/ssr/ArrowLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLeft"; + +export const ArrowLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLeft.displayName = "ArrowLeft"; diff --git a/src/ssr/ArrowLineDown.tsx b/src/ssr/ArrowLineDown.tsx new file mode 100644 index 000000000..275465560 --- /dev/null +++ b/src/ssr/ArrowLineDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineDown"; + +export const ArrowLineDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineDown.displayName = "ArrowLineDown"; diff --git a/src/ssr/ArrowLineDownLeft.tsx b/src/ssr/ArrowLineDownLeft.tsx new file mode 100644 index 000000000..1e58f8969 --- /dev/null +++ b/src/ssr/ArrowLineDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineDownLeft"; + +export const ArrowLineDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineDownLeft.displayName = "ArrowLineDownLeft"; diff --git a/src/ssr/ArrowLineDownRight.tsx b/src/ssr/ArrowLineDownRight.tsx new file mode 100644 index 000000000..d856eb41e --- /dev/null +++ b/src/ssr/ArrowLineDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineDownRight"; + +export const ArrowLineDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineDownRight.displayName = "ArrowLineDownRight"; diff --git a/src/ssr/ArrowLineLeft.tsx b/src/ssr/ArrowLineLeft.tsx new file mode 100644 index 000000000..4d9b4ad61 --- /dev/null +++ b/src/ssr/ArrowLineLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineLeft"; + +export const ArrowLineLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineLeft.displayName = "ArrowLineLeft"; diff --git a/src/ssr/ArrowLineRight.tsx b/src/ssr/ArrowLineRight.tsx new file mode 100644 index 000000000..49bb9225b --- /dev/null +++ b/src/ssr/ArrowLineRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineRight"; + +export const ArrowLineRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineRight.displayName = "ArrowLineRight"; diff --git a/src/ssr/ArrowLineUp.tsx b/src/ssr/ArrowLineUp.tsx new file mode 100644 index 000000000..6607bef76 --- /dev/null +++ b/src/ssr/ArrowLineUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineUp"; + +export const ArrowLineUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineUp.displayName = "ArrowLineUp"; diff --git a/src/ssr/ArrowLineUpLeft.tsx b/src/ssr/ArrowLineUpLeft.tsx new file mode 100644 index 000000000..587a95347 --- /dev/null +++ b/src/ssr/ArrowLineUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineUpLeft"; + +export const ArrowLineUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineUpLeft.displayName = "ArrowLineUpLeft"; diff --git a/src/ssr/ArrowLineUpRight.tsx b/src/ssr/ArrowLineUpRight.tsx new file mode 100644 index 000000000..3061c9860 --- /dev/null +++ b/src/ssr/ArrowLineUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowLineUpRight"; + +export const ArrowLineUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowLineUpRight.displayName = "ArrowLineUpRight"; diff --git a/src/ssr/ArrowRight.tsx b/src/ssr/ArrowRight.tsx new file mode 100644 index 000000000..eeb23b205 --- /dev/null +++ b/src/ssr/ArrowRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowRight"; + +export const ArrowRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowRight.displayName = "ArrowRight"; diff --git a/src/ssr/ArrowSquareDown.tsx b/src/ssr/ArrowSquareDown.tsx new file mode 100644 index 000000000..84bc6cc68 --- /dev/null +++ b/src/ssr/ArrowSquareDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareDown"; + +export const ArrowSquareDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareDown.displayName = "ArrowSquareDown"; diff --git a/src/ssr/ArrowSquareDownLeft.tsx b/src/ssr/ArrowSquareDownLeft.tsx new file mode 100644 index 000000000..e6d322ae6 --- /dev/null +++ b/src/ssr/ArrowSquareDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareDownLeft"; + +export const ArrowSquareDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareDownLeft.displayName = "ArrowSquareDownLeft"; diff --git a/src/ssr/ArrowSquareDownRight.tsx b/src/ssr/ArrowSquareDownRight.tsx new file mode 100644 index 000000000..6ebd4eb76 --- /dev/null +++ b/src/ssr/ArrowSquareDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareDownRight"; + +export const ArrowSquareDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareDownRight.displayName = "ArrowSquareDownRight"; diff --git a/src/ssr/ArrowSquareIn.tsx b/src/ssr/ArrowSquareIn.tsx new file mode 100644 index 000000000..911ede5ca --- /dev/null +++ b/src/ssr/ArrowSquareIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareIn"; + +export const ArrowSquareIn: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareIn.displayName = "ArrowSquareIn"; diff --git a/src/ssr/ArrowSquareLeft.tsx b/src/ssr/ArrowSquareLeft.tsx new file mode 100644 index 000000000..e06c79d7e --- /dev/null +++ b/src/ssr/ArrowSquareLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareLeft"; + +export const ArrowSquareLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareLeft.displayName = "ArrowSquareLeft"; diff --git a/src/ssr/ArrowSquareOut.tsx b/src/ssr/ArrowSquareOut.tsx new file mode 100644 index 000000000..a4db55cab --- /dev/null +++ b/src/ssr/ArrowSquareOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareOut"; + +export const ArrowSquareOut: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareOut.displayName = "ArrowSquareOut"; diff --git a/src/ssr/ArrowSquareRight.tsx b/src/ssr/ArrowSquareRight.tsx new file mode 100644 index 000000000..3d48c32cf --- /dev/null +++ b/src/ssr/ArrowSquareRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareRight"; + +export const ArrowSquareRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareRight.displayName = "ArrowSquareRight"; diff --git a/src/ssr/ArrowSquareUp.tsx b/src/ssr/ArrowSquareUp.tsx new file mode 100644 index 000000000..0878cc30c --- /dev/null +++ b/src/ssr/ArrowSquareUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareUp"; + +export const ArrowSquareUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareUp.displayName = "ArrowSquareUp"; diff --git a/src/ssr/ArrowSquareUpLeft.tsx b/src/ssr/ArrowSquareUpLeft.tsx new file mode 100644 index 000000000..304943e4c --- /dev/null +++ b/src/ssr/ArrowSquareUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareUpLeft"; + +export const ArrowSquareUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareUpLeft.displayName = "ArrowSquareUpLeft"; diff --git a/src/ssr/ArrowSquareUpRight.tsx b/src/ssr/ArrowSquareUpRight.tsx new file mode 100644 index 000000000..56db4d065 --- /dev/null +++ b/src/ssr/ArrowSquareUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowSquareUpRight"; + +export const ArrowSquareUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowSquareUpRight.displayName = "ArrowSquareUpRight"; diff --git a/src/ssr/ArrowUDownLeft.tsx b/src/ssr/ArrowUDownLeft.tsx new file mode 100644 index 000000000..6361950da --- /dev/null +++ b/src/ssr/ArrowUDownLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowUDownLeft"; + +export const ArrowUDownLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUDownLeft.displayName = "ArrowUDownLeft"; diff --git a/src/ssr/ArrowUDownRight.tsx b/src/ssr/ArrowUDownRight.tsx new file mode 100644 index 000000000..39add6b30 --- /dev/null +++ b/src/ssr/ArrowUDownRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowUDownRight"; + +export const ArrowUDownRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUDownRight.displayName = "ArrowUDownRight"; diff --git a/src/ssr/ArrowULeftDown.tsx b/src/ssr/ArrowULeftDown.tsx new file mode 100644 index 000000000..f79a087e9 --- /dev/null +++ b/src/ssr/ArrowULeftDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowULeftDown"; + +export const ArrowULeftDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowULeftDown.displayName = "ArrowULeftDown"; diff --git a/src/ssr/ArrowULeftUp.tsx b/src/ssr/ArrowULeftUp.tsx new file mode 100644 index 000000000..983ff2cd1 --- /dev/null +++ b/src/ssr/ArrowULeftUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowULeftUp"; + +export const ArrowULeftUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowULeftUp.displayName = "ArrowULeftUp"; diff --git a/src/ssr/ArrowURightDown.tsx b/src/ssr/ArrowURightDown.tsx new file mode 100644 index 000000000..f6c328c18 --- /dev/null +++ b/src/ssr/ArrowURightDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowURightDown"; + +export const ArrowURightDown: Icon = forwardRef((props, ref) => ( + +)); + +ArrowURightDown.displayName = "ArrowURightDown"; diff --git a/src/ssr/ArrowURightUp.tsx b/src/ssr/ArrowURightUp.tsx new file mode 100644 index 000000000..da7284266 --- /dev/null +++ b/src/ssr/ArrowURightUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowURightUp"; + +export const ArrowURightUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowURightUp.displayName = "ArrowURightUp"; diff --git a/src/ssr/ArrowUUpLeft.tsx b/src/ssr/ArrowUUpLeft.tsx new file mode 100644 index 000000000..c8c0e538f --- /dev/null +++ b/src/ssr/ArrowUUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowUUpLeft"; + +export const ArrowUUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUUpLeft.displayName = "ArrowUUpLeft"; diff --git a/src/ssr/ArrowUUpRight.tsx b/src/ssr/ArrowUUpRight.tsx new file mode 100644 index 000000000..c7e19d0d4 --- /dev/null +++ b/src/ssr/ArrowUUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowUUpRight"; + +export const ArrowUUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUUpRight.displayName = "ArrowUUpRight"; diff --git a/src/ssr/ArrowUp.tsx b/src/ssr/ArrowUp.tsx new file mode 100644 index 000000000..87052cb26 --- /dev/null +++ b/src/ssr/ArrowUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowUp"; + +export const ArrowUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUp.displayName = "ArrowUp"; diff --git a/src/ssr/ArrowUpLeft.tsx b/src/ssr/ArrowUpLeft.tsx new file mode 100644 index 000000000..26b0f953b --- /dev/null +++ b/src/ssr/ArrowUpLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowUpLeft"; + +export const ArrowUpLeft: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUpLeft.displayName = "ArrowUpLeft"; diff --git a/src/ssr/ArrowUpRight.tsx b/src/ssr/ArrowUpRight.tsx new file mode 100644 index 000000000..bbe8ac806 --- /dev/null +++ b/src/ssr/ArrowUpRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowUpRight"; + +export const ArrowUpRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowUpRight.displayName = "ArrowUpRight"; diff --git a/src/ssr/ArrowsClockwise.tsx b/src/ssr/ArrowsClockwise.tsx new file mode 100644 index 000000000..54289cfff --- /dev/null +++ b/src/ssr/ArrowsClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsClockwise"; + +export const ArrowsClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsClockwise.displayName = "ArrowsClockwise"; diff --git a/src/ssr/ArrowsCounterClockwise.tsx b/src/ssr/ArrowsCounterClockwise.tsx new file mode 100644 index 000000000..24e156ea2 --- /dev/null +++ b/src/ssr/ArrowsCounterClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsCounterClockwise"; + +export const ArrowsCounterClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsCounterClockwise.displayName = "ArrowsCounterClockwise"; diff --git a/src/ssr/ArrowsDownUp.tsx b/src/ssr/ArrowsDownUp.tsx new file mode 100644 index 000000000..fb1057f2b --- /dev/null +++ b/src/ssr/ArrowsDownUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsDownUp"; + +export const ArrowsDownUp: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsDownUp.displayName = "ArrowsDownUp"; diff --git a/src/ssr/ArrowsHorizontal.tsx b/src/ssr/ArrowsHorizontal.tsx new file mode 100644 index 000000000..bb39cf371 --- /dev/null +++ b/src/ssr/ArrowsHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsHorizontal"; + +export const ArrowsHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsHorizontal.displayName = "ArrowsHorizontal"; diff --git a/src/ssr/ArrowsIn.tsx b/src/ssr/ArrowsIn.tsx new file mode 100644 index 000000000..331560006 --- /dev/null +++ b/src/ssr/ArrowsIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsIn"; + +export const ArrowsIn: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsIn.displayName = "ArrowsIn"; diff --git a/src/ssr/ArrowsInCardinal.tsx b/src/ssr/ArrowsInCardinal.tsx new file mode 100644 index 000000000..003c5b92a --- /dev/null +++ b/src/ssr/ArrowsInCardinal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsInCardinal"; + +export const ArrowsInCardinal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInCardinal.displayName = "ArrowsInCardinal"; diff --git a/src/ssr/ArrowsInLineHorizontal.tsx b/src/ssr/ArrowsInLineHorizontal.tsx new file mode 100644 index 000000000..041dfba3c --- /dev/null +++ b/src/ssr/ArrowsInLineHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsInLineHorizontal"; + +export const ArrowsInLineHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInLineHorizontal.displayName = "ArrowsInLineHorizontal"; diff --git a/src/ssr/ArrowsInLineVertical.tsx b/src/ssr/ArrowsInLineVertical.tsx new file mode 100644 index 000000000..1bac6ba35 --- /dev/null +++ b/src/ssr/ArrowsInLineVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsInLineVertical"; + +export const ArrowsInLineVertical: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInLineVertical.displayName = "ArrowsInLineVertical"; diff --git a/src/ssr/ArrowsInSimple.tsx b/src/ssr/ArrowsInSimple.tsx new file mode 100644 index 000000000..70286b156 --- /dev/null +++ b/src/ssr/ArrowsInSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsInSimple"; + +export const ArrowsInSimple: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsInSimple.displayName = "ArrowsInSimple"; diff --git a/src/ssr/ArrowsLeftRight.tsx b/src/ssr/ArrowsLeftRight.tsx new file mode 100644 index 000000000..79afa51ab --- /dev/null +++ b/src/ssr/ArrowsLeftRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsLeftRight"; + +export const ArrowsLeftRight: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsLeftRight.displayName = "ArrowsLeftRight"; diff --git a/src/ssr/ArrowsMerge.tsx b/src/ssr/ArrowsMerge.tsx new file mode 100644 index 000000000..ba5256c38 --- /dev/null +++ b/src/ssr/ArrowsMerge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsMerge"; + +export const ArrowsMerge: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsMerge.displayName = "ArrowsMerge"; diff --git a/src/ssr/ArrowsOut.tsx b/src/ssr/ArrowsOut.tsx new file mode 100644 index 000000000..6087de9ae --- /dev/null +++ b/src/ssr/ArrowsOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsOut"; + +export const ArrowsOut: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOut.displayName = "ArrowsOut"; diff --git a/src/ssr/ArrowsOutCardinal.tsx b/src/ssr/ArrowsOutCardinal.tsx new file mode 100644 index 000000000..0642f466b --- /dev/null +++ b/src/ssr/ArrowsOutCardinal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsOutCardinal"; + +export const ArrowsOutCardinal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutCardinal.displayName = "ArrowsOutCardinal"; diff --git a/src/ssr/ArrowsOutLineHorizontal.tsx b/src/ssr/ArrowsOutLineHorizontal.tsx new file mode 100644 index 000000000..1003fd7a2 --- /dev/null +++ b/src/ssr/ArrowsOutLineHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsOutLineHorizontal"; + +export const ArrowsOutLineHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutLineHorizontal.displayName = "ArrowsOutLineHorizontal"; diff --git a/src/ssr/ArrowsOutLineVertical.tsx b/src/ssr/ArrowsOutLineVertical.tsx new file mode 100644 index 000000000..855845dec --- /dev/null +++ b/src/ssr/ArrowsOutLineVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsOutLineVertical"; + +export const ArrowsOutLineVertical: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutLineVertical.displayName = "ArrowsOutLineVertical"; diff --git a/src/ssr/ArrowsOutSimple.tsx b/src/ssr/ArrowsOutSimple.tsx new file mode 100644 index 000000000..df8d74934 --- /dev/null +++ b/src/ssr/ArrowsOutSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsOutSimple"; + +export const ArrowsOutSimple: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsOutSimple.displayName = "ArrowsOutSimple"; diff --git a/src/ssr/ArrowsSplit.tsx b/src/ssr/ArrowsSplit.tsx new file mode 100644 index 000000000..6c5ae50aa --- /dev/null +++ b/src/ssr/ArrowsSplit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsSplit"; + +export const ArrowsSplit: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsSplit.displayName = "ArrowsSplit"; diff --git a/src/ssr/ArrowsVertical.tsx b/src/ssr/ArrowsVertical.tsx new file mode 100644 index 000000000..a8bfc3403 --- /dev/null +++ b/src/ssr/ArrowsVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArrowsVertical"; + +export const ArrowsVertical: Icon = forwardRef((props, ref) => ( + +)); + +ArrowsVertical.displayName = "ArrowsVertical"; diff --git a/src/ssr/Article.tsx b/src/ssr/Article.tsx new file mode 100644 index 000000000..a7d4d48b0 --- /dev/null +++ b/src/ssr/Article.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Article"; + +export const Article: Icon = forwardRef((props, ref) => ( + +)); + +Article.displayName = "Article"; diff --git a/src/ssr/ArticleMedium.tsx b/src/ssr/ArticleMedium.tsx new file mode 100644 index 000000000..ba52e0d6d --- /dev/null +++ b/src/ssr/ArticleMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArticleMedium"; + +export const ArticleMedium: Icon = forwardRef((props, ref) => ( + +)); + +ArticleMedium.displayName = "ArticleMedium"; diff --git a/src/ssr/ArticleNyTimes.tsx b/src/ssr/ArticleNyTimes.tsx new file mode 100644 index 000000000..7a97e80d1 --- /dev/null +++ b/src/ssr/ArticleNyTimes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ArticleNyTimes"; + +export const ArticleNyTimes: Icon = forwardRef((props, ref) => ( + +)); + +ArticleNyTimes.displayName = "ArticleNyTimes"; diff --git a/src/ssr/Asterisk.tsx b/src/ssr/Asterisk.tsx new file mode 100644 index 000000000..6a0971517 --- /dev/null +++ b/src/ssr/Asterisk.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Asterisk"; + +export const Asterisk: Icon = forwardRef((props, ref) => ( + +)); + +Asterisk.displayName = "Asterisk"; diff --git a/src/ssr/AsteriskSimple.tsx b/src/ssr/AsteriskSimple.tsx new file mode 100644 index 000000000..cc6728929 --- /dev/null +++ b/src/ssr/AsteriskSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/AsteriskSimple"; + +export const AsteriskSimple: Icon = forwardRef((props, ref) => ( + +)); + +AsteriskSimple.displayName = "AsteriskSimple"; diff --git a/src/ssr/At.tsx b/src/ssr/At.tsx new file mode 100644 index 000000000..69590c165 --- /dev/null +++ b/src/ssr/At.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/At"; + +export const At: Icon = forwardRef((props, ref) => ( + +)); + +At.displayName = "At"; diff --git a/src/ssr/Atom.tsx b/src/ssr/Atom.tsx new file mode 100644 index 000000000..29271effd --- /dev/null +++ b/src/ssr/Atom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Atom"; + +export const Atom: Icon = forwardRef((props, ref) => ( + +)); + +Atom.displayName = "Atom"; diff --git a/src/ssr/Baby.tsx b/src/ssr/Baby.tsx new file mode 100644 index 000000000..462ac94bf --- /dev/null +++ b/src/ssr/Baby.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Baby"; + +export const Baby: Icon = forwardRef((props, ref) => ( + +)); + +Baby.displayName = "Baby"; diff --git a/src/ssr/Backpack.tsx b/src/ssr/Backpack.tsx new file mode 100644 index 000000000..0636dba1d --- /dev/null +++ b/src/ssr/Backpack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Backpack"; + +export const Backpack: Icon = forwardRef((props, ref) => ( + +)); + +Backpack.displayName = "Backpack"; diff --git a/src/ssr/Backspace.tsx b/src/ssr/Backspace.tsx new file mode 100644 index 000000000..2447831a8 --- /dev/null +++ b/src/ssr/Backspace.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Backspace"; + +export const Backspace: Icon = forwardRef((props, ref) => ( + +)); + +Backspace.displayName = "Backspace"; diff --git a/src/ssr/Bag.tsx b/src/ssr/Bag.tsx new file mode 100644 index 000000000..371926a72 --- /dev/null +++ b/src/ssr/Bag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bag"; + +export const Bag: Icon = forwardRef((props, ref) => ( + +)); + +Bag.displayName = "Bag"; diff --git a/src/ssr/BagSimple.tsx b/src/ssr/BagSimple.tsx new file mode 100644 index 000000000..f985a7b21 --- /dev/null +++ b/src/ssr/BagSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BagSimple"; + +export const BagSimple: Icon = forwardRef((props, ref) => ( + +)); + +BagSimple.displayName = "BagSimple"; diff --git a/src/ssr/Balloon.tsx b/src/ssr/Balloon.tsx new file mode 100644 index 000000000..0f2e746c9 --- /dev/null +++ b/src/ssr/Balloon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Balloon"; + +export const Balloon: Icon = forwardRef((props, ref) => ( + +)); + +Balloon.displayName = "Balloon"; diff --git a/src/ssr/Bandaids.tsx b/src/ssr/Bandaids.tsx new file mode 100644 index 000000000..a06ae0002 --- /dev/null +++ b/src/ssr/Bandaids.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bandaids"; + +export const Bandaids: Icon = forwardRef((props, ref) => ( + +)); + +Bandaids.displayName = "Bandaids"; diff --git a/src/ssr/Bank.tsx b/src/ssr/Bank.tsx new file mode 100644 index 000000000..de76b2d88 --- /dev/null +++ b/src/ssr/Bank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bank"; + +export const Bank: Icon = forwardRef((props, ref) => ( + +)); + +Bank.displayName = "Bank"; diff --git a/src/ssr/Barbell.tsx b/src/ssr/Barbell.tsx new file mode 100644 index 000000000..0ef7220bd --- /dev/null +++ b/src/ssr/Barbell.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Barbell"; + +export const Barbell: Icon = forwardRef((props, ref) => ( + +)); + +Barbell.displayName = "Barbell"; diff --git a/src/ssr/Barcode.tsx b/src/ssr/Barcode.tsx new file mode 100644 index 000000000..5a219999b --- /dev/null +++ b/src/ssr/Barcode.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Barcode"; + +export const Barcode: Icon = forwardRef((props, ref) => ( + +)); + +Barcode.displayName = "Barcode"; diff --git a/src/ssr/Barricade.tsx b/src/ssr/Barricade.tsx new file mode 100644 index 000000000..6967d5ff1 --- /dev/null +++ b/src/ssr/Barricade.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Barricade"; + +export const Barricade: Icon = forwardRef((props, ref) => ( + +)); + +Barricade.displayName = "Barricade"; diff --git a/src/ssr/Baseball.tsx b/src/ssr/Baseball.tsx new file mode 100644 index 000000000..c06fe50c0 --- /dev/null +++ b/src/ssr/Baseball.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Baseball"; + +export const Baseball: Icon = forwardRef((props, ref) => ( + +)); + +Baseball.displayName = "Baseball"; diff --git a/src/ssr/BaseballCap.tsx b/src/ssr/BaseballCap.tsx new file mode 100644 index 000000000..d25a03898 --- /dev/null +++ b/src/ssr/BaseballCap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BaseballCap"; + +export const BaseballCap: Icon = forwardRef((props, ref) => ( + +)); + +BaseballCap.displayName = "BaseballCap"; diff --git a/src/ssr/Basket.tsx b/src/ssr/Basket.tsx new file mode 100644 index 000000000..de3ab0803 --- /dev/null +++ b/src/ssr/Basket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Basket"; + +export const Basket: Icon = forwardRef((props, ref) => ( + +)); + +Basket.displayName = "Basket"; diff --git a/src/ssr/Basketball.tsx b/src/ssr/Basketball.tsx new file mode 100644 index 000000000..804810118 --- /dev/null +++ b/src/ssr/Basketball.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Basketball"; + +export const Basketball: Icon = forwardRef((props, ref) => ( + +)); + +Basketball.displayName = "Basketball"; diff --git a/src/ssr/Bathtub.tsx b/src/ssr/Bathtub.tsx new file mode 100644 index 000000000..056d3e5fe --- /dev/null +++ b/src/ssr/Bathtub.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bathtub"; + +export const Bathtub: Icon = forwardRef((props, ref) => ( + +)); + +Bathtub.displayName = "Bathtub"; diff --git a/src/ssr/BatteryCharging.tsx b/src/ssr/BatteryCharging.tsx new file mode 100644 index 000000000..600aaf7d7 --- /dev/null +++ b/src/ssr/BatteryCharging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryCharging"; + +export const BatteryCharging: Icon = forwardRef((props, ref) => ( + +)); + +BatteryCharging.displayName = "BatteryCharging"; diff --git a/src/ssr/BatteryChargingVertical.tsx b/src/ssr/BatteryChargingVertical.tsx new file mode 100644 index 000000000..c009e97b0 --- /dev/null +++ b/src/ssr/BatteryChargingVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryChargingVertical"; + +export const BatteryChargingVertical: Icon = forwardRef((props, ref) => ( + +)); + +BatteryChargingVertical.displayName = "BatteryChargingVertical"; diff --git a/src/ssr/BatteryEmpty.tsx b/src/ssr/BatteryEmpty.tsx new file mode 100644 index 000000000..fae9b022a --- /dev/null +++ b/src/ssr/BatteryEmpty.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryEmpty"; + +export const BatteryEmpty: Icon = forwardRef((props, ref) => ( + +)); + +BatteryEmpty.displayName = "BatteryEmpty"; diff --git a/src/ssr/BatteryFull.tsx b/src/ssr/BatteryFull.tsx new file mode 100644 index 000000000..b25fd0af2 --- /dev/null +++ b/src/ssr/BatteryFull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryFull"; + +export const BatteryFull: Icon = forwardRef((props, ref) => ( + +)); + +BatteryFull.displayName = "BatteryFull"; diff --git a/src/ssr/BatteryHigh.tsx b/src/ssr/BatteryHigh.tsx new file mode 100644 index 000000000..311aa6fb1 --- /dev/null +++ b/src/ssr/BatteryHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryHigh"; + +export const BatteryHigh: Icon = forwardRef((props, ref) => ( + +)); + +BatteryHigh.displayName = "BatteryHigh"; diff --git a/src/ssr/BatteryLow.tsx b/src/ssr/BatteryLow.tsx new file mode 100644 index 000000000..e2a9b192f --- /dev/null +++ b/src/ssr/BatteryLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryLow"; + +export const BatteryLow: Icon = forwardRef((props, ref) => ( + +)); + +BatteryLow.displayName = "BatteryLow"; diff --git a/src/ssr/BatteryMedium.tsx b/src/ssr/BatteryMedium.tsx new file mode 100644 index 000000000..5a51462c8 --- /dev/null +++ b/src/ssr/BatteryMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryMedium"; + +export const BatteryMedium: Icon = forwardRef((props, ref) => ( + +)); + +BatteryMedium.displayName = "BatteryMedium"; diff --git a/src/ssr/BatteryPlus.tsx b/src/ssr/BatteryPlus.tsx new file mode 100644 index 000000000..5383cb2fa --- /dev/null +++ b/src/ssr/BatteryPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryPlus"; + +export const BatteryPlus: Icon = forwardRef((props, ref) => ( + +)); + +BatteryPlus.displayName = "BatteryPlus"; diff --git a/src/ssr/BatteryPlusVertical.tsx b/src/ssr/BatteryPlusVertical.tsx new file mode 100644 index 000000000..07cf67a8c --- /dev/null +++ b/src/ssr/BatteryPlusVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryPlusVertical"; + +export const BatteryPlusVertical: Icon = forwardRef((props, ref) => ( + +)); + +BatteryPlusVertical.displayName = "BatteryPlusVertical"; diff --git a/src/ssr/BatteryVerticalEmpty.tsx b/src/ssr/BatteryVerticalEmpty.tsx new file mode 100644 index 000000000..52b7097e3 --- /dev/null +++ b/src/ssr/BatteryVerticalEmpty.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryVerticalEmpty"; + +export const BatteryVerticalEmpty: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalEmpty.displayName = "BatteryVerticalEmpty"; diff --git a/src/ssr/BatteryVerticalFull.tsx b/src/ssr/BatteryVerticalFull.tsx new file mode 100644 index 000000000..7ee7789e4 --- /dev/null +++ b/src/ssr/BatteryVerticalFull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryVerticalFull"; + +export const BatteryVerticalFull: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalFull.displayName = "BatteryVerticalFull"; diff --git a/src/ssr/BatteryVerticalHigh.tsx b/src/ssr/BatteryVerticalHigh.tsx new file mode 100644 index 000000000..2963ed704 --- /dev/null +++ b/src/ssr/BatteryVerticalHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryVerticalHigh"; + +export const BatteryVerticalHigh: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalHigh.displayName = "BatteryVerticalHigh"; diff --git a/src/ssr/BatteryVerticalLow.tsx b/src/ssr/BatteryVerticalLow.tsx new file mode 100644 index 000000000..07748cfbb --- /dev/null +++ b/src/ssr/BatteryVerticalLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryVerticalLow"; + +export const BatteryVerticalLow: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalLow.displayName = "BatteryVerticalLow"; diff --git a/src/ssr/BatteryVerticalMedium.tsx b/src/ssr/BatteryVerticalMedium.tsx new file mode 100644 index 000000000..60c5d3b40 --- /dev/null +++ b/src/ssr/BatteryVerticalMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryVerticalMedium"; + +export const BatteryVerticalMedium: Icon = forwardRef((props, ref) => ( + +)); + +BatteryVerticalMedium.displayName = "BatteryVerticalMedium"; diff --git a/src/ssr/BatteryWarning.tsx b/src/ssr/BatteryWarning.tsx new file mode 100644 index 000000000..ead9ab26a --- /dev/null +++ b/src/ssr/BatteryWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryWarning"; + +export const BatteryWarning: Icon = forwardRef((props, ref) => ( + +)); + +BatteryWarning.displayName = "BatteryWarning"; diff --git a/src/ssr/BatteryWarningVertical.tsx b/src/ssr/BatteryWarningVertical.tsx new file mode 100644 index 000000000..6ea110081 --- /dev/null +++ b/src/ssr/BatteryWarningVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BatteryWarningVertical"; + +export const BatteryWarningVertical: Icon = forwardRef((props, ref) => ( + +)); + +BatteryWarningVertical.displayName = "BatteryWarningVertical"; diff --git a/src/ssr/Bed.tsx b/src/ssr/Bed.tsx new file mode 100644 index 000000000..4fed355d4 --- /dev/null +++ b/src/ssr/Bed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bed"; + +export const Bed: Icon = forwardRef((props, ref) => ( + +)); + +Bed.displayName = "Bed"; diff --git a/src/ssr/BeerBottle.tsx b/src/ssr/BeerBottle.tsx new file mode 100644 index 000000000..861785718 --- /dev/null +++ b/src/ssr/BeerBottle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BeerBottle"; + +export const BeerBottle: Icon = forwardRef((props, ref) => ( + +)); + +BeerBottle.displayName = "BeerBottle"; diff --git a/src/ssr/BeerStein.tsx b/src/ssr/BeerStein.tsx new file mode 100644 index 000000000..066c19de8 --- /dev/null +++ b/src/ssr/BeerStein.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BeerStein"; + +export const BeerStein: Icon = forwardRef((props, ref) => ( + +)); + +BeerStein.displayName = "BeerStein"; diff --git a/src/ssr/BehanceLogo.tsx b/src/ssr/BehanceLogo.tsx new file mode 100644 index 000000000..b919c0091 --- /dev/null +++ b/src/ssr/BehanceLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BehanceLogo"; + +export const BehanceLogo: Icon = forwardRef((props, ref) => ( + +)); + +BehanceLogo.displayName = "BehanceLogo"; diff --git a/src/ssr/Bell.tsx b/src/ssr/Bell.tsx new file mode 100644 index 000000000..737cb3c2a --- /dev/null +++ b/src/ssr/Bell.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bell"; + +export const Bell: Icon = forwardRef((props, ref) => ( + +)); + +Bell.displayName = "Bell"; diff --git a/src/ssr/BellRinging.tsx b/src/ssr/BellRinging.tsx new file mode 100644 index 000000000..ce295cfb7 --- /dev/null +++ b/src/ssr/BellRinging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BellRinging"; + +export const BellRinging: Icon = forwardRef((props, ref) => ( + +)); + +BellRinging.displayName = "BellRinging"; diff --git a/src/ssr/BellSimple.tsx b/src/ssr/BellSimple.tsx new file mode 100644 index 000000000..74023c5b6 --- /dev/null +++ b/src/ssr/BellSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BellSimple"; + +export const BellSimple: Icon = forwardRef((props, ref) => ( + +)); + +BellSimple.displayName = "BellSimple"; diff --git a/src/ssr/BellSimpleRinging.tsx b/src/ssr/BellSimpleRinging.tsx new file mode 100644 index 000000000..669e653ca --- /dev/null +++ b/src/ssr/BellSimpleRinging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BellSimpleRinging"; + +export const BellSimpleRinging: Icon = forwardRef((props, ref) => ( + +)); + +BellSimpleRinging.displayName = "BellSimpleRinging"; diff --git a/src/ssr/BellSimpleSlash.tsx b/src/ssr/BellSimpleSlash.tsx new file mode 100644 index 000000000..7a9bd346c --- /dev/null +++ b/src/ssr/BellSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BellSimpleSlash"; + +export const BellSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +BellSimpleSlash.displayName = "BellSimpleSlash"; diff --git a/src/ssr/BellSimpleZ.tsx b/src/ssr/BellSimpleZ.tsx new file mode 100644 index 000000000..72fa0fe40 --- /dev/null +++ b/src/ssr/BellSimpleZ.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BellSimpleZ"; + +export const BellSimpleZ: Icon = forwardRef((props, ref) => ( + +)); + +BellSimpleZ.displayName = "BellSimpleZ"; diff --git a/src/ssr/BellSlash.tsx b/src/ssr/BellSlash.tsx new file mode 100644 index 000000000..6ce2d1663 --- /dev/null +++ b/src/ssr/BellSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BellSlash"; + +export const BellSlash: Icon = forwardRef((props, ref) => ( + +)); + +BellSlash.displayName = "BellSlash"; diff --git a/src/ssr/BellZ.tsx b/src/ssr/BellZ.tsx new file mode 100644 index 000000000..9de3f931f --- /dev/null +++ b/src/ssr/BellZ.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BellZ"; + +export const BellZ: Icon = forwardRef((props, ref) => ( + +)); + +BellZ.displayName = "BellZ"; diff --git a/src/ssr/BezierCurve.tsx b/src/ssr/BezierCurve.tsx new file mode 100644 index 000000000..376315847 --- /dev/null +++ b/src/ssr/BezierCurve.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BezierCurve"; + +export const BezierCurve: Icon = forwardRef((props, ref) => ( + +)); + +BezierCurve.displayName = "BezierCurve"; diff --git a/src/ssr/Bicycle.tsx b/src/ssr/Bicycle.tsx new file mode 100644 index 000000000..d8684d1a6 --- /dev/null +++ b/src/ssr/Bicycle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bicycle"; + +export const Bicycle: Icon = forwardRef((props, ref) => ( + +)); + +Bicycle.displayName = "Bicycle"; diff --git a/src/ssr/Binoculars.tsx b/src/ssr/Binoculars.tsx new file mode 100644 index 000000000..ac9d6ee05 --- /dev/null +++ b/src/ssr/Binoculars.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Binoculars"; + +export const Binoculars: Icon = forwardRef((props, ref) => ( + +)); + +Binoculars.displayName = "Binoculars"; diff --git a/src/ssr/Bird.tsx b/src/ssr/Bird.tsx new file mode 100644 index 000000000..1d9b30731 --- /dev/null +++ b/src/ssr/Bird.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bird"; + +export const Bird: Icon = forwardRef((props, ref) => ( + +)); + +Bird.displayName = "Bird"; diff --git a/src/ssr/Bluetooth.tsx b/src/ssr/Bluetooth.tsx new file mode 100644 index 000000000..b1f8e3ae2 --- /dev/null +++ b/src/ssr/Bluetooth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bluetooth"; + +export const Bluetooth: Icon = forwardRef((props, ref) => ( + +)); + +Bluetooth.displayName = "Bluetooth"; diff --git a/src/ssr/BluetoothConnected.tsx b/src/ssr/BluetoothConnected.tsx new file mode 100644 index 000000000..1bf92d564 --- /dev/null +++ b/src/ssr/BluetoothConnected.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BluetoothConnected"; + +export const BluetoothConnected: Icon = forwardRef((props, ref) => ( + +)); + +BluetoothConnected.displayName = "BluetoothConnected"; diff --git a/src/ssr/BluetoothSlash.tsx b/src/ssr/BluetoothSlash.tsx new file mode 100644 index 000000000..aba5b7cdb --- /dev/null +++ b/src/ssr/BluetoothSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BluetoothSlash"; + +export const BluetoothSlash: Icon = forwardRef((props, ref) => ( + +)); + +BluetoothSlash.displayName = "BluetoothSlash"; diff --git a/src/ssr/BluetoothX.tsx b/src/ssr/BluetoothX.tsx new file mode 100644 index 000000000..632e75485 --- /dev/null +++ b/src/ssr/BluetoothX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BluetoothX"; + +export const BluetoothX: Icon = forwardRef((props, ref) => ( + +)); + +BluetoothX.displayName = "BluetoothX"; diff --git a/src/ssr/Boat.tsx b/src/ssr/Boat.tsx new file mode 100644 index 000000000..280fa7500 --- /dev/null +++ b/src/ssr/Boat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Boat"; + +export const Boat: Icon = forwardRef((props, ref) => ( + +)); + +Boat.displayName = "Boat"; diff --git a/src/ssr/Bone.tsx b/src/ssr/Bone.tsx new file mode 100644 index 000000000..32ee772d9 --- /dev/null +++ b/src/ssr/Bone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bone"; + +export const Bone: Icon = forwardRef((props, ref) => ( + +)); + +Bone.displayName = "Bone"; diff --git a/src/ssr/Book.tsx b/src/ssr/Book.tsx new file mode 100644 index 000000000..848fe0ab7 --- /dev/null +++ b/src/ssr/Book.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Book"; + +export const Book: Icon = forwardRef((props, ref) => ( + +)); + +Book.displayName = "Book"; diff --git a/src/ssr/BookBookmark.tsx b/src/ssr/BookBookmark.tsx new file mode 100644 index 000000000..64f168419 --- /dev/null +++ b/src/ssr/BookBookmark.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BookBookmark"; + +export const BookBookmark: Icon = forwardRef((props, ref) => ( + +)); + +BookBookmark.displayName = "BookBookmark"; diff --git a/src/ssr/BookOpen.tsx b/src/ssr/BookOpen.tsx new file mode 100644 index 000000000..104f40971 --- /dev/null +++ b/src/ssr/BookOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BookOpen"; + +export const BookOpen: Icon = forwardRef((props, ref) => ( + +)); + +BookOpen.displayName = "BookOpen"; diff --git a/src/ssr/BookOpenText.tsx b/src/ssr/BookOpenText.tsx new file mode 100644 index 000000000..eb613fb25 --- /dev/null +++ b/src/ssr/BookOpenText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BookOpenText"; + +export const BookOpenText: Icon = forwardRef((props, ref) => ( + +)); + +BookOpenText.displayName = "BookOpenText"; diff --git a/src/ssr/Bookmark.tsx b/src/ssr/Bookmark.tsx new file mode 100644 index 000000000..66726dbe3 --- /dev/null +++ b/src/ssr/Bookmark.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bookmark"; + +export const Bookmark: Icon = forwardRef((props, ref) => ( + +)); + +Bookmark.displayName = "Bookmark"; diff --git a/src/ssr/BookmarkSimple.tsx b/src/ssr/BookmarkSimple.tsx new file mode 100644 index 000000000..2cee34900 --- /dev/null +++ b/src/ssr/BookmarkSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BookmarkSimple"; + +export const BookmarkSimple: Icon = forwardRef((props, ref) => ( + +)); + +BookmarkSimple.displayName = "BookmarkSimple"; diff --git a/src/ssr/Bookmarks.tsx b/src/ssr/Bookmarks.tsx new file mode 100644 index 000000000..24d8fd2b8 --- /dev/null +++ b/src/ssr/Bookmarks.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bookmarks"; + +export const Bookmarks: Icon = forwardRef((props, ref) => ( + +)); + +Bookmarks.displayName = "Bookmarks"; diff --git a/src/ssr/BookmarksSimple.tsx b/src/ssr/BookmarksSimple.tsx new file mode 100644 index 000000000..baa3426a4 --- /dev/null +++ b/src/ssr/BookmarksSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BookmarksSimple"; + +export const BookmarksSimple: Icon = forwardRef((props, ref) => ( + +)); + +BookmarksSimple.displayName = "BookmarksSimple"; diff --git a/src/ssr/Books.tsx b/src/ssr/Books.tsx new file mode 100644 index 000000000..c2bcf8cc9 --- /dev/null +++ b/src/ssr/Books.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Books"; + +export const Books: Icon = forwardRef((props, ref) => ( + +)); + +Books.displayName = "Books"; diff --git a/src/ssr/Boot.tsx b/src/ssr/Boot.tsx new file mode 100644 index 000000000..1ef05569a --- /dev/null +++ b/src/ssr/Boot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Boot"; + +export const Boot: Icon = forwardRef((props, ref) => ( + +)); + +Boot.displayName = "Boot"; diff --git a/src/ssr/BoundingBox.tsx b/src/ssr/BoundingBox.tsx new file mode 100644 index 000000000..fc8bb9c4b --- /dev/null +++ b/src/ssr/BoundingBox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BoundingBox"; + +export const BoundingBox: Icon = forwardRef((props, ref) => ( + +)); + +BoundingBox.displayName = "BoundingBox"; diff --git a/src/ssr/BowlFood.tsx b/src/ssr/BowlFood.tsx new file mode 100644 index 000000000..e7d71a905 --- /dev/null +++ b/src/ssr/BowlFood.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BowlFood"; + +export const BowlFood: Icon = forwardRef((props, ref) => ( + +)); + +BowlFood.displayName = "BowlFood"; diff --git a/src/ssr/BracketsAngle.tsx b/src/ssr/BracketsAngle.tsx new file mode 100644 index 000000000..b65d389f6 --- /dev/null +++ b/src/ssr/BracketsAngle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BracketsAngle"; + +export const BracketsAngle: Icon = forwardRef((props, ref) => ( + +)); + +BracketsAngle.displayName = "BracketsAngle"; diff --git a/src/ssr/BracketsCurly.tsx b/src/ssr/BracketsCurly.tsx new file mode 100644 index 000000000..6bb0e2990 --- /dev/null +++ b/src/ssr/BracketsCurly.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BracketsCurly"; + +export const BracketsCurly: Icon = forwardRef((props, ref) => ( + +)); + +BracketsCurly.displayName = "BracketsCurly"; diff --git a/src/ssr/BracketsRound.tsx b/src/ssr/BracketsRound.tsx new file mode 100644 index 000000000..b1d4955d7 --- /dev/null +++ b/src/ssr/BracketsRound.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BracketsRound"; + +export const BracketsRound: Icon = forwardRef((props, ref) => ( + +)); + +BracketsRound.displayName = "BracketsRound"; diff --git a/src/ssr/BracketsSquare.tsx b/src/ssr/BracketsSquare.tsx new file mode 100644 index 000000000..b99da6baf --- /dev/null +++ b/src/ssr/BracketsSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BracketsSquare"; + +export const BracketsSquare: Icon = forwardRef((props, ref) => ( + +)); + +BracketsSquare.displayName = "BracketsSquare"; diff --git a/src/ssr/Brain.tsx b/src/ssr/Brain.tsx new file mode 100644 index 000000000..3594bc9a9 --- /dev/null +++ b/src/ssr/Brain.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Brain"; + +export const Brain: Icon = forwardRef((props, ref) => ( + +)); + +Brain.displayName = "Brain"; diff --git a/src/ssr/Brandy.tsx b/src/ssr/Brandy.tsx new file mode 100644 index 000000000..10d954548 --- /dev/null +++ b/src/ssr/Brandy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Brandy"; + +export const Brandy: Icon = forwardRef((props, ref) => ( + +)); + +Brandy.displayName = "Brandy"; diff --git a/src/ssr/Bridge.tsx b/src/ssr/Bridge.tsx new file mode 100644 index 000000000..5c7b6dc9d --- /dev/null +++ b/src/ssr/Bridge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bridge"; + +export const Bridge: Icon = forwardRef((props, ref) => ( + +)); + +Bridge.displayName = "Bridge"; diff --git a/src/ssr/Briefcase.tsx b/src/ssr/Briefcase.tsx new file mode 100644 index 000000000..17c503686 --- /dev/null +++ b/src/ssr/Briefcase.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Briefcase"; + +export const Briefcase: Icon = forwardRef((props, ref) => ( + +)); + +Briefcase.displayName = "Briefcase"; diff --git a/src/ssr/BriefcaseMetal.tsx b/src/ssr/BriefcaseMetal.tsx new file mode 100644 index 000000000..8359680be --- /dev/null +++ b/src/ssr/BriefcaseMetal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BriefcaseMetal"; + +export const BriefcaseMetal: Icon = forwardRef((props, ref) => ( + +)); + +BriefcaseMetal.displayName = "BriefcaseMetal"; diff --git a/src/ssr/Broadcast.tsx b/src/ssr/Broadcast.tsx new file mode 100644 index 000000000..eec816e7f --- /dev/null +++ b/src/ssr/Broadcast.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Broadcast"; + +export const Broadcast: Icon = forwardRef((props, ref) => ( + +)); + +Broadcast.displayName = "Broadcast"; diff --git a/src/ssr/Broom.tsx b/src/ssr/Broom.tsx new file mode 100644 index 000000000..952de1b7a --- /dev/null +++ b/src/ssr/Broom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Broom"; + +export const Broom: Icon = forwardRef((props, ref) => ( + +)); + +Broom.displayName = "Broom"; diff --git a/src/ssr/Browser.tsx b/src/ssr/Browser.tsx new file mode 100644 index 000000000..517f06c69 --- /dev/null +++ b/src/ssr/Browser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Browser"; + +export const Browser: Icon = forwardRef((props, ref) => ( + +)); + +Browser.displayName = "Browser"; diff --git a/src/ssr/Browsers.tsx b/src/ssr/Browsers.tsx new file mode 100644 index 000000000..aa4de6c41 --- /dev/null +++ b/src/ssr/Browsers.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Browsers"; + +export const Browsers: Icon = forwardRef((props, ref) => ( + +)); + +Browsers.displayName = "Browsers"; diff --git a/src/ssr/Bug.tsx b/src/ssr/Bug.tsx new file mode 100644 index 000000000..767c075a9 --- /dev/null +++ b/src/ssr/Bug.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bug"; + +export const Bug: Icon = forwardRef((props, ref) => ( + +)); + +Bug.displayName = "Bug"; diff --git a/src/ssr/BugBeetle.tsx b/src/ssr/BugBeetle.tsx new file mode 100644 index 000000000..92cd3f225 --- /dev/null +++ b/src/ssr/BugBeetle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BugBeetle"; + +export const BugBeetle: Icon = forwardRef((props, ref) => ( + +)); + +BugBeetle.displayName = "BugBeetle"; diff --git a/src/ssr/BugDroid.tsx b/src/ssr/BugDroid.tsx new file mode 100644 index 000000000..2a5ad3fba --- /dev/null +++ b/src/ssr/BugDroid.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/BugDroid"; + +export const BugDroid: Icon = forwardRef((props, ref) => ( + +)); + +BugDroid.displayName = "BugDroid"; diff --git a/src/ssr/Buildings.tsx b/src/ssr/Buildings.tsx new file mode 100644 index 000000000..6eb85386a --- /dev/null +++ b/src/ssr/Buildings.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Buildings"; + +export const Buildings: Icon = forwardRef((props, ref) => ( + +)); + +Buildings.displayName = "Buildings"; diff --git a/src/ssr/Bus.tsx b/src/ssr/Bus.tsx new file mode 100644 index 000000000..5b1923213 --- /dev/null +++ b/src/ssr/Bus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Bus"; + +export const Bus: Icon = forwardRef((props, ref) => ( + +)); + +Bus.displayName = "Bus"; diff --git a/src/ssr/Butterfly.tsx b/src/ssr/Butterfly.tsx new file mode 100644 index 000000000..bd50b5ce4 --- /dev/null +++ b/src/ssr/Butterfly.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Butterfly"; + +export const Butterfly: Icon = forwardRef((props, ref) => ( + +)); + +Butterfly.displayName = "Butterfly"; diff --git a/src/ssr/Cactus.tsx b/src/ssr/Cactus.tsx new file mode 100644 index 000000000..2b607bab8 --- /dev/null +++ b/src/ssr/Cactus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cactus"; + +export const Cactus: Icon = forwardRef((props, ref) => ( + +)); + +Cactus.displayName = "Cactus"; diff --git a/src/ssr/Cake.tsx b/src/ssr/Cake.tsx new file mode 100644 index 000000000..53920a7b1 --- /dev/null +++ b/src/ssr/Cake.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cake"; + +export const Cake: Icon = forwardRef((props, ref) => ( + +)); + +Cake.displayName = "Cake"; diff --git a/src/ssr/Calculator.tsx b/src/ssr/Calculator.tsx new file mode 100644 index 000000000..60b0759b8 --- /dev/null +++ b/src/ssr/Calculator.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Calculator"; + +export const Calculator: Icon = forwardRef((props, ref) => ( + +)); + +Calculator.displayName = "Calculator"; diff --git a/src/ssr/Calendar.tsx b/src/ssr/Calendar.tsx new file mode 100644 index 000000000..4f500c386 --- /dev/null +++ b/src/ssr/Calendar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Calendar"; + +export const Calendar: Icon = forwardRef((props, ref) => ( + +)); + +Calendar.displayName = "Calendar"; diff --git a/src/ssr/CalendarBlank.tsx b/src/ssr/CalendarBlank.tsx new file mode 100644 index 000000000..1a46ff28f --- /dev/null +++ b/src/ssr/CalendarBlank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CalendarBlank"; + +export const CalendarBlank: Icon = forwardRef((props, ref) => ( + +)); + +CalendarBlank.displayName = "CalendarBlank"; diff --git a/src/ssr/CalendarCheck.tsx b/src/ssr/CalendarCheck.tsx new file mode 100644 index 000000000..ab7333c5a --- /dev/null +++ b/src/ssr/CalendarCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CalendarCheck"; + +export const CalendarCheck: Icon = forwardRef((props, ref) => ( + +)); + +CalendarCheck.displayName = "CalendarCheck"; diff --git a/src/ssr/CalendarPlus.tsx b/src/ssr/CalendarPlus.tsx new file mode 100644 index 000000000..8494091e3 --- /dev/null +++ b/src/ssr/CalendarPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CalendarPlus"; + +export const CalendarPlus: Icon = forwardRef((props, ref) => ( + +)); + +CalendarPlus.displayName = "CalendarPlus"; diff --git a/src/ssr/CalendarX.tsx b/src/ssr/CalendarX.tsx new file mode 100644 index 000000000..560fd040f --- /dev/null +++ b/src/ssr/CalendarX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CalendarX"; + +export const CalendarX: Icon = forwardRef((props, ref) => ( + +)); + +CalendarX.displayName = "CalendarX"; diff --git a/src/ssr/CallBell.tsx b/src/ssr/CallBell.tsx new file mode 100644 index 000000000..3d78861f1 --- /dev/null +++ b/src/ssr/CallBell.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CallBell"; + +export const CallBell: Icon = forwardRef((props, ref) => ( + +)); + +CallBell.displayName = "CallBell"; diff --git a/src/ssr/Camera.tsx b/src/ssr/Camera.tsx new file mode 100644 index 000000000..2052a2b24 --- /dev/null +++ b/src/ssr/Camera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Camera"; + +export const Camera: Icon = forwardRef((props, ref) => ( + +)); + +Camera.displayName = "Camera"; diff --git a/src/ssr/CameraPlus.tsx b/src/ssr/CameraPlus.tsx new file mode 100644 index 000000000..6f8cdb158 --- /dev/null +++ b/src/ssr/CameraPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CameraPlus"; + +export const CameraPlus: Icon = forwardRef((props, ref) => ( + +)); + +CameraPlus.displayName = "CameraPlus"; diff --git a/src/ssr/CameraRotate.tsx b/src/ssr/CameraRotate.tsx new file mode 100644 index 000000000..424b67c0d --- /dev/null +++ b/src/ssr/CameraRotate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CameraRotate"; + +export const CameraRotate: Icon = forwardRef((props, ref) => ( + +)); + +CameraRotate.displayName = "CameraRotate"; diff --git a/src/ssr/CameraSlash.tsx b/src/ssr/CameraSlash.tsx new file mode 100644 index 000000000..291b925c1 --- /dev/null +++ b/src/ssr/CameraSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CameraSlash"; + +export const CameraSlash: Icon = forwardRef((props, ref) => ( + +)); + +CameraSlash.displayName = "CameraSlash"; diff --git a/src/ssr/Campfire.tsx b/src/ssr/Campfire.tsx new file mode 100644 index 000000000..eacce96ac --- /dev/null +++ b/src/ssr/Campfire.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Campfire"; + +export const Campfire: Icon = forwardRef((props, ref) => ( + +)); + +Campfire.displayName = "Campfire"; diff --git a/src/ssr/Car.tsx b/src/ssr/Car.tsx new file mode 100644 index 000000000..c3603f0a2 --- /dev/null +++ b/src/ssr/Car.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Car"; + +export const Car: Icon = forwardRef((props, ref) => ( + +)); + +Car.displayName = "Car"; diff --git a/src/ssr/CarProfile.tsx b/src/ssr/CarProfile.tsx new file mode 100644 index 000000000..43f70189e --- /dev/null +++ b/src/ssr/CarProfile.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CarProfile"; + +export const CarProfile: Icon = forwardRef((props, ref) => ( + +)); + +CarProfile.displayName = "CarProfile"; diff --git a/src/ssr/CarSimple.tsx b/src/ssr/CarSimple.tsx new file mode 100644 index 000000000..8a84ef9d9 --- /dev/null +++ b/src/ssr/CarSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CarSimple"; + +export const CarSimple: Icon = forwardRef((props, ref) => ( + +)); + +CarSimple.displayName = "CarSimple"; diff --git a/src/ssr/Cardholder.tsx b/src/ssr/Cardholder.tsx new file mode 100644 index 000000000..66e284aa3 --- /dev/null +++ b/src/ssr/Cardholder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cardholder"; + +export const Cardholder: Icon = forwardRef((props, ref) => ( + +)); + +Cardholder.displayName = "Cardholder"; diff --git a/src/ssr/Cards.tsx b/src/ssr/Cards.tsx new file mode 100644 index 000000000..27050d634 --- /dev/null +++ b/src/ssr/Cards.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cards"; + +export const Cards: Icon = forwardRef((props, ref) => ( + +)); + +Cards.displayName = "Cards"; diff --git a/src/ssr/CaretCircleDoubleDown.tsx b/src/ssr/CaretCircleDoubleDown.tsx new file mode 100644 index 000000000..811804762 --- /dev/null +++ b/src/ssr/CaretCircleDoubleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleDoubleDown"; + +export const CaretCircleDoubleDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleDown.displayName = "CaretCircleDoubleDown"; diff --git a/src/ssr/CaretCircleDoubleLeft.tsx b/src/ssr/CaretCircleDoubleLeft.tsx new file mode 100644 index 000000000..b67868e5d --- /dev/null +++ b/src/ssr/CaretCircleDoubleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleDoubleLeft"; + +export const CaretCircleDoubleLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleLeft.displayName = "CaretCircleDoubleLeft"; diff --git a/src/ssr/CaretCircleDoubleRight.tsx b/src/ssr/CaretCircleDoubleRight.tsx new file mode 100644 index 000000000..51dfdb32b --- /dev/null +++ b/src/ssr/CaretCircleDoubleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleDoubleRight"; + +export const CaretCircleDoubleRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleRight.displayName = "CaretCircleDoubleRight"; diff --git a/src/ssr/CaretCircleDoubleUp.tsx b/src/ssr/CaretCircleDoubleUp.tsx new file mode 100644 index 000000000..40d6fd2c5 --- /dev/null +++ b/src/ssr/CaretCircleDoubleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleDoubleUp"; + +export const CaretCircleDoubleUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDoubleUp.displayName = "CaretCircleDoubleUp"; diff --git a/src/ssr/CaretCircleDown.tsx b/src/ssr/CaretCircleDown.tsx new file mode 100644 index 000000000..19b91d6c9 --- /dev/null +++ b/src/ssr/CaretCircleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleDown"; + +export const CaretCircleDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleDown.displayName = "CaretCircleDown"; diff --git a/src/ssr/CaretCircleLeft.tsx b/src/ssr/CaretCircleLeft.tsx new file mode 100644 index 000000000..c9c21a202 --- /dev/null +++ b/src/ssr/CaretCircleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleLeft"; + +export const CaretCircleLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleLeft.displayName = "CaretCircleLeft"; diff --git a/src/ssr/CaretCircleRight.tsx b/src/ssr/CaretCircleRight.tsx new file mode 100644 index 000000000..bb4271ebc --- /dev/null +++ b/src/ssr/CaretCircleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleRight"; + +export const CaretCircleRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleRight.displayName = "CaretCircleRight"; diff --git a/src/ssr/CaretCircleUp.tsx b/src/ssr/CaretCircleUp.tsx new file mode 100644 index 000000000..5c5059116 --- /dev/null +++ b/src/ssr/CaretCircleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleUp"; + +export const CaretCircleUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleUp.displayName = "CaretCircleUp"; diff --git a/src/ssr/CaretCircleUpDown.tsx b/src/ssr/CaretCircleUpDown.tsx new file mode 100644 index 000000000..790a8e280 --- /dev/null +++ b/src/ssr/CaretCircleUpDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretCircleUpDown"; + +export const CaretCircleUpDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretCircleUpDown.displayName = "CaretCircleUpDown"; diff --git a/src/ssr/CaretDoubleDown.tsx b/src/ssr/CaretDoubleDown.tsx new file mode 100644 index 000000000..c2dda357d --- /dev/null +++ b/src/ssr/CaretDoubleDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretDoubleDown"; + +export const CaretDoubleDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleDown.displayName = "CaretDoubleDown"; diff --git a/src/ssr/CaretDoubleLeft.tsx b/src/ssr/CaretDoubleLeft.tsx new file mode 100644 index 000000000..87c4c88df --- /dev/null +++ b/src/ssr/CaretDoubleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretDoubleLeft"; + +export const CaretDoubleLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleLeft.displayName = "CaretDoubleLeft"; diff --git a/src/ssr/CaretDoubleRight.tsx b/src/ssr/CaretDoubleRight.tsx new file mode 100644 index 000000000..79046853f --- /dev/null +++ b/src/ssr/CaretDoubleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretDoubleRight"; + +export const CaretDoubleRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleRight.displayName = "CaretDoubleRight"; diff --git a/src/ssr/CaretDoubleUp.tsx b/src/ssr/CaretDoubleUp.tsx new file mode 100644 index 000000000..9ab22243b --- /dev/null +++ b/src/ssr/CaretDoubleUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretDoubleUp"; + +export const CaretDoubleUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretDoubleUp.displayName = "CaretDoubleUp"; diff --git a/src/ssr/CaretDown.tsx b/src/ssr/CaretDown.tsx new file mode 100644 index 000000000..010eedd77 --- /dev/null +++ b/src/ssr/CaretDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretDown"; + +export const CaretDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretDown.displayName = "CaretDown"; diff --git a/src/ssr/CaretLeft.tsx b/src/ssr/CaretLeft.tsx new file mode 100644 index 000000000..bc068654d --- /dev/null +++ b/src/ssr/CaretLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretLeft"; + +export const CaretLeft: Icon = forwardRef((props, ref) => ( + +)); + +CaretLeft.displayName = "CaretLeft"; diff --git a/src/ssr/CaretRight.tsx b/src/ssr/CaretRight.tsx new file mode 100644 index 000000000..5ea7d56e7 --- /dev/null +++ b/src/ssr/CaretRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretRight"; + +export const CaretRight: Icon = forwardRef((props, ref) => ( + +)); + +CaretRight.displayName = "CaretRight"; diff --git a/src/ssr/CaretUp.tsx b/src/ssr/CaretUp.tsx new file mode 100644 index 000000000..cbdef742f --- /dev/null +++ b/src/ssr/CaretUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretUp"; + +export const CaretUp: Icon = forwardRef((props, ref) => ( + +)); + +CaretUp.displayName = "CaretUp"; diff --git a/src/ssr/CaretUpDown.tsx b/src/ssr/CaretUpDown.tsx new file mode 100644 index 000000000..6f80227ac --- /dev/null +++ b/src/ssr/CaretUpDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CaretUpDown"; + +export const CaretUpDown: Icon = forwardRef((props, ref) => ( + +)); + +CaretUpDown.displayName = "CaretUpDown"; diff --git a/src/ssr/Carrot.tsx b/src/ssr/Carrot.tsx new file mode 100644 index 000000000..32d0cfac1 --- /dev/null +++ b/src/ssr/Carrot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Carrot"; + +export const Carrot: Icon = forwardRef((props, ref) => ( + +)); + +Carrot.displayName = "Carrot"; diff --git a/src/ssr/CassetteTape.tsx b/src/ssr/CassetteTape.tsx new file mode 100644 index 000000000..1d5025bb2 --- /dev/null +++ b/src/ssr/CassetteTape.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CassetteTape"; + +export const CassetteTape: Icon = forwardRef((props, ref) => ( + +)); + +CassetteTape.displayName = "CassetteTape"; diff --git a/src/ssr/CastleTurret.tsx b/src/ssr/CastleTurret.tsx new file mode 100644 index 000000000..fece11523 --- /dev/null +++ b/src/ssr/CastleTurret.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CastleTurret"; + +export const CastleTurret: Icon = forwardRef((props, ref) => ( + +)); + +CastleTurret.displayName = "CastleTurret"; diff --git a/src/ssr/Cat.tsx b/src/ssr/Cat.tsx new file mode 100644 index 000000000..480771ee3 --- /dev/null +++ b/src/ssr/Cat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cat"; + +export const Cat: Icon = forwardRef((props, ref) => ( + +)); + +Cat.displayName = "Cat"; diff --git a/src/ssr/CellSignalFull.tsx b/src/ssr/CellSignalFull.tsx new file mode 100644 index 000000000..dbf8d00fb --- /dev/null +++ b/src/ssr/CellSignalFull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CellSignalFull"; + +export const CellSignalFull: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalFull.displayName = "CellSignalFull"; diff --git a/src/ssr/CellSignalHigh.tsx b/src/ssr/CellSignalHigh.tsx new file mode 100644 index 000000000..f4d94113f --- /dev/null +++ b/src/ssr/CellSignalHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CellSignalHigh"; + +export const CellSignalHigh: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalHigh.displayName = "CellSignalHigh"; diff --git a/src/ssr/CellSignalLow.tsx b/src/ssr/CellSignalLow.tsx new file mode 100644 index 000000000..7fc6e4a59 --- /dev/null +++ b/src/ssr/CellSignalLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CellSignalLow"; + +export const CellSignalLow: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalLow.displayName = "CellSignalLow"; diff --git a/src/ssr/CellSignalMedium.tsx b/src/ssr/CellSignalMedium.tsx new file mode 100644 index 000000000..a01295c89 --- /dev/null +++ b/src/ssr/CellSignalMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CellSignalMedium"; + +export const CellSignalMedium: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalMedium.displayName = "CellSignalMedium"; diff --git a/src/ssr/CellSignalNone.tsx b/src/ssr/CellSignalNone.tsx new file mode 100644 index 000000000..d1251ab70 --- /dev/null +++ b/src/ssr/CellSignalNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CellSignalNone"; + +export const CellSignalNone: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalNone.displayName = "CellSignalNone"; diff --git a/src/ssr/CellSignalSlash.tsx b/src/ssr/CellSignalSlash.tsx new file mode 100644 index 000000000..7bbdb5a3f --- /dev/null +++ b/src/ssr/CellSignalSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CellSignalSlash"; + +export const CellSignalSlash: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalSlash.displayName = "CellSignalSlash"; diff --git a/src/ssr/CellSignalX.tsx b/src/ssr/CellSignalX.tsx new file mode 100644 index 000000000..220206bd2 --- /dev/null +++ b/src/ssr/CellSignalX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CellSignalX"; + +export const CellSignalX: Icon = forwardRef((props, ref) => ( + +)); + +CellSignalX.displayName = "CellSignalX"; diff --git a/src/ssr/Certificate.tsx b/src/ssr/Certificate.tsx new file mode 100644 index 000000000..d5da61f85 --- /dev/null +++ b/src/ssr/Certificate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Certificate"; + +export const Certificate: Icon = forwardRef((props, ref) => ( + +)); + +Certificate.displayName = "Certificate"; diff --git a/src/ssr/Chair.tsx b/src/ssr/Chair.tsx new file mode 100644 index 000000000..741af7cfb --- /dev/null +++ b/src/ssr/Chair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Chair"; + +export const Chair: Icon = forwardRef((props, ref) => ( + +)); + +Chair.displayName = "Chair"; diff --git a/src/ssr/Chalkboard.tsx b/src/ssr/Chalkboard.tsx new file mode 100644 index 000000000..156a506e0 --- /dev/null +++ b/src/ssr/Chalkboard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Chalkboard"; + +export const Chalkboard: Icon = forwardRef((props, ref) => ( + +)); + +Chalkboard.displayName = "Chalkboard"; diff --git a/src/ssr/ChalkboardSimple.tsx b/src/ssr/ChalkboardSimple.tsx new file mode 100644 index 000000000..f1ff89cde --- /dev/null +++ b/src/ssr/ChalkboardSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChalkboardSimple"; + +export const ChalkboardSimple: Icon = forwardRef((props, ref) => ( + +)); + +ChalkboardSimple.displayName = "ChalkboardSimple"; diff --git a/src/ssr/ChalkboardTeacher.tsx b/src/ssr/ChalkboardTeacher.tsx new file mode 100644 index 000000000..9629e541a --- /dev/null +++ b/src/ssr/ChalkboardTeacher.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChalkboardTeacher"; + +export const ChalkboardTeacher: Icon = forwardRef((props, ref) => ( + +)); + +ChalkboardTeacher.displayName = "ChalkboardTeacher"; diff --git a/src/ssr/Champagne.tsx b/src/ssr/Champagne.tsx new file mode 100644 index 000000000..65be0ad41 --- /dev/null +++ b/src/ssr/Champagne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Champagne"; + +export const Champagne: Icon = forwardRef((props, ref) => ( + +)); + +Champagne.displayName = "Champagne"; diff --git a/src/ssr/ChargingStation.tsx b/src/ssr/ChargingStation.tsx new file mode 100644 index 000000000..8960a1c1b --- /dev/null +++ b/src/ssr/ChargingStation.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChargingStation"; + +export const ChargingStation: Icon = forwardRef((props, ref) => ( + +)); + +ChargingStation.displayName = "ChargingStation"; diff --git a/src/ssr/ChartBar.tsx b/src/ssr/ChartBar.tsx new file mode 100644 index 000000000..80ba44426 --- /dev/null +++ b/src/ssr/ChartBar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartBar"; + +export const ChartBar: Icon = forwardRef((props, ref) => ( + +)); + +ChartBar.displayName = "ChartBar"; diff --git a/src/ssr/ChartBarHorizontal.tsx b/src/ssr/ChartBarHorizontal.tsx new file mode 100644 index 000000000..581bec332 --- /dev/null +++ b/src/ssr/ChartBarHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartBarHorizontal"; + +export const ChartBarHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +ChartBarHorizontal.displayName = "ChartBarHorizontal"; diff --git a/src/ssr/ChartDonut.tsx b/src/ssr/ChartDonut.tsx new file mode 100644 index 000000000..520027d42 --- /dev/null +++ b/src/ssr/ChartDonut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartDonut"; + +export const ChartDonut: Icon = forwardRef((props, ref) => ( + +)); + +ChartDonut.displayName = "ChartDonut"; diff --git a/src/ssr/ChartLine.tsx b/src/ssr/ChartLine.tsx new file mode 100644 index 000000000..de3fd9aca --- /dev/null +++ b/src/ssr/ChartLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartLine"; + +export const ChartLine: Icon = forwardRef((props, ref) => ( + +)); + +ChartLine.displayName = "ChartLine"; diff --git a/src/ssr/ChartLineDown.tsx b/src/ssr/ChartLineDown.tsx new file mode 100644 index 000000000..d1ca6c1ed --- /dev/null +++ b/src/ssr/ChartLineDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartLineDown"; + +export const ChartLineDown: Icon = forwardRef((props, ref) => ( + +)); + +ChartLineDown.displayName = "ChartLineDown"; diff --git a/src/ssr/ChartLineUp.tsx b/src/ssr/ChartLineUp.tsx new file mode 100644 index 000000000..4d982a911 --- /dev/null +++ b/src/ssr/ChartLineUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartLineUp"; + +export const ChartLineUp: Icon = forwardRef((props, ref) => ( + +)); + +ChartLineUp.displayName = "ChartLineUp"; diff --git a/src/ssr/ChartPie.tsx b/src/ssr/ChartPie.tsx new file mode 100644 index 000000000..a2a9c7cef --- /dev/null +++ b/src/ssr/ChartPie.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartPie"; + +export const ChartPie: Icon = forwardRef((props, ref) => ( + +)); + +ChartPie.displayName = "ChartPie"; diff --git a/src/ssr/ChartPieSlice.tsx b/src/ssr/ChartPieSlice.tsx new file mode 100644 index 000000000..269b2b039 --- /dev/null +++ b/src/ssr/ChartPieSlice.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartPieSlice"; + +export const ChartPieSlice: Icon = forwardRef((props, ref) => ( + +)); + +ChartPieSlice.displayName = "ChartPieSlice"; diff --git a/src/ssr/ChartPolar.tsx b/src/ssr/ChartPolar.tsx new file mode 100644 index 000000000..7b7969215 --- /dev/null +++ b/src/ssr/ChartPolar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartPolar"; + +export const ChartPolar: Icon = forwardRef((props, ref) => ( + +)); + +ChartPolar.displayName = "ChartPolar"; diff --git a/src/ssr/ChartScatter.tsx b/src/ssr/ChartScatter.tsx new file mode 100644 index 000000000..3c32ce6fc --- /dev/null +++ b/src/ssr/ChartScatter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChartScatter"; + +export const ChartScatter: Icon = forwardRef((props, ref) => ( + +)); + +ChartScatter.displayName = "ChartScatter"; diff --git a/src/ssr/Chat.tsx b/src/ssr/Chat.tsx new file mode 100644 index 000000000..59aa1146d --- /dev/null +++ b/src/ssr/Chat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Chat"; + +export const Chat: Icon = forwardRef((props, ref) => ( + +)); + +Chat.displayName = "Chat"; diff --git a/src/ssr/ChatCentered.tsx b/src/ssr/ChatCentered.tsx new file mode 100644 index 000000000..6107c56f0 --- /dev/null +++ b/src/ssr/ChatCentered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatCentered"; + +export const ChatCentered: Icon = forwardRef((props, ref) => ( + +)); + +ChatCentered.displayName = "ChatCentered"; diff --git a/src/ssr/ChatCenteredDots.tsx b/src/ssr/ChatCenteredDots.tsx new file mode 100644 index 000000000..f6bbc58cf --- /dev/null +++ b/src/ssr/ChatCenteredDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatCenteredDots"; + +export const ChatCenteredDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatCenteredDots.displayName = "ChatCenteredDots"; diff --git a/src/ssr/ChatCenteredText.tsx b/src/ssr/ChatCenteredText.tsx new file mode 100644 index 000000000..2286133e1 --- /dev/null +++ b/src/ssr/ChatCenteredText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatCenteredText"; + +export const ChatCenteredText: Icon = forwardRef((props, ref) => ( + +)); + +ChatCenteredText.displayName = "ChatCenteredText"; diff --git a/src/ssr/ChatCircle.tsx b/src/ssr/ChatCircle.tsx new file mode 100644 index 000000000..a19496c11 --- /dev/null +++ b/src/ssr/ChatCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatCircle"; + +export const ChatCircle: Icon = forwardRef((props, ref) => ( + +)); + +ChatCircle.displayName = "ChatCircle"; diff --git a/src/ssr/ChatCircleDots.tsx b/src/ssr/ChatCircleDots.tsx new file mode 100644 index 000000000..1032bbe13 --- /dev/null +++ b/src/ssr/ChatCircleDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatCircleDots"; + +export const ChatCircleDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatCircleDots.displayName = "ChatCircleDots"; diff --git a/src/ssr/ChatCircleText.tsx b/src/ssr/ChatCircleText.tsx new file mode 100644 index 000000000..a309ceb2f --- /dev/null +++ b/src/ssr/ChatCircleText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatCircleText"; + +export const ChatCircleText: Icon = forwardRef((props, ref) => ( + +)); + +ChatCircleText.displayName = "ChatCircleText"; diff --git a/src/ssr/ChatDots.tsx b/src/ssr/ChatDots.tsx new file mode 100644 index 000000000..16beee25e --- /dev/null +++ b/src/ssr/ChatDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatDots"; + +export const ChatDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatDots.displayName = "ChatDots"; diff --git a/src/ssr/ChatTeardrop.tsx b/src/ssr/ChatTeardrop.tsx new file mode 100644 index 000000000..161735397 --- /dev/null +++ b/src/ssr/ChatTeardrop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatTeardrop"; + +export const ChatTeardrop: Icon = forwardRef((props, ref) => ( + +)); + +ChatTeardrop.displayName = "ChatTeardrop"; diff --git a/src/ssr/ChatTeardropDots.tsx b/src/ssr/ChatTeardropDots.tsx new file mode 100644 index 000000000..e34ae519a --- /dev/null +++ b/src/ssr/ChatTeardropDots.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatTeardropDots"; + +export const ChatTeardropDots: Icon = forwardRef((props, ref) => ( + +)); + +ChatTeardropDots.displayName = "ChatTeardropDots"; diff --git a/src/ssr/ChatTeardropText.tsx b/src/ssr/ChatTeardropText.tsx new file mode 100644 index 000000000..127249e06 --- /dev/null +++ b/src/ssr/ChatTeardropText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatTeardropText"; + +export const ChatTeardropText: Icon = forwardRef((props, ref) => ( + +)); + +ChatTeardropText.displayName = "ChatTeardropText"; diff --git a/src/ssr/ChatText.tsx b/src/ssr/ChatText.tsx new file mode 100644 index 000000000..09190bcc2 --- /dev/null +++ b/src/ssr/ChatText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatText"; + +export const ChatText: Icon = forwardRef((props, ref) => ( + +)); + +ChatText.displayName = "ChatText"; diff --git a/src/ssr/Chats.tsx b/src/ssr/Chats.tsx new file mode 100644 index 000000000..7891fddf9 --- /dev/null +++ b/src/ssr/Chats.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Chats"; + +export const Chats: Icon = forwardRef((props, ref) => ( + +)); + +Chats.displayName = "Chats"; diff --git a/src/ssr/ChatsCircle.tsx b/src/ssr/ChatsCircle.tsx new file mode 100644 index 000000000..b49ce623c --- /dev/null +++ b/src/ssr/ChatsCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatsCircle"; + +export const ChatsCircle: Icon = forwardRef((props, ref) => ( + +)); + +ChatsCircle.displayName = "ChatsCircle"; diff --git a/src/ssr/ChatsTeardrop.tsx b/src/ssr/ChatsTeardrop.tsx new file mode 100644 index 000000000..bc0943c0a --- /dev/null +++ b/src/ssr/ChatsTeardrop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ChatsTeardrop"; + +export const ChatsTeardrop: Icon = forwardRef((props, ref) => ( + +)); + +ChatsTeardrop.displayName = "ChatsTeardrop"; diff --git a/src/ssr/Check.tsx b/src/ssr/Check.tsx new file mode 100644 index 000000000..b90204cbc --- /dev/null +++ b/src/ssr/Check.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Check"; + +export const Check: Icon = forwardRef((props, ref) => ( + +)); + +Check.displayName = "Check"; diff --git a/src/ssr/CheckCircle.tsx b/src/ssr/CheckCircle.tsx new file mode 100644 index 000000000..88219be06 --- /dev/null +++ b/src/ssr/CheckCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CheckCircle"; + +export const CheckCircle: Icon = forwardRef((props, ref) => ( + +)); + +CheckCircle.displayName = "CheckCircle"; diff --git a/src/ssr/CheckFat.tsx b/src/ssr/CheckFat.tsx new file mode 100644 index 000000000..17679624c --- /dev/null +++ b/src/ssr/CheckFat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CheckFat"; + +export const CheckFat: Icon = forwardRef((props, ref) => ( + +)); + +CheckFat.displayName = "CheckFat"; diff --git a/src/ssr/CheckSquare.tsx b/src/ssr/CheckSquare.tsx new file mode 100644 index 000000000..40a1c8fed --- /dev/null +++ b/src/ssr/CheckSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CheckSquare"; + +export const CheckSquare: Icon = forwardRef((props, ref) => ( + +)); + +CheckSquare.displayName = "CheckSquare"; diff --git a/src/ssr/CheckSquareOffset.tsx b/src/ssr/CheckSquareOffset.tsx new file mode 100644 index 000000000..097b73400 --- /dev/null +++ b/src/ssr/CheckSquareOffset.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CheckSquareOffset"; + +export const CheckSquareOffset: Icon = forwardRef((props, ref) => ( + +)); + +CheckSquareOffset.displayName = "CheckSquareOffset"; diff --git a/src/ssr/Checks.tsx b/src/ssr/Checks.tsx new file mode 100644 index 000000000..1f8427d5d --- /dev/null +++ b/src/ssr/Checks.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Checks"; + +export const Checks: Icon = forwardRef((props, ref) => ( + +)); + +Checks.displayName = "Checks"; diff --git a/src/ssr/Church.tsx b/src/ssr/Church.tsx new file mode 100644 index 000000000..c61cbd92e --- /dev/null +++ b/src/ssr/Church.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Church"; + +export const Church: Icon = forwardRef((props, ref) => ( + +)); + +Church.displayName = "Church"; diff --git a/src/ssr/Circle.tsx b/src/ssr/Circle.tsx new file mode 100644 index 000000000..760ea9f84 --- /dev/null +++ b/src/ssr/Circle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Circle"; + +export const Circle: Icon = forwardRef((props, ref) => ( + +)); + +Circle.displayName = "Circle"; diff --git a/src/ssr/CircleDashed.tsx b/src/ssr/CircleDashed.tsx new file mode 100644 index 000000000..49b86d616 --- /dev/null +++ b/src/ssr/CircleDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CircleDashed"; + +export const CircleDashed: Icon = forwardRef((props, ref) => ( + +)); + +CircleDashed.displayName = "CircleDashed"; diff --git a/src/ssr/CircleHalf.tsx b/src/ssr/CircleHalf.tsx new file mode 100644 index 000000000..a5fc1c775 --- /dev/null +++ b/src/ssr/CircleHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CircleHalf"; + +export const CircleHalf: Icon = forwardRef((props, ref) => ( + +)); + +CircleHalf.displayName = "CircleHalf"; diff --git a/src/ssr/CircleHalfTilt.tsx b/src/ssr/CircleHalfTilt.tsx new file mode 100644 index 000000000..d12ea7cc7 --- /dev/null +++ b/src/ssr/CircleHalfTilt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CircleHalfTilt"; + +export const CircleHalfTilt: Icon = forwardRef((props, ref) => ( + +)); + +CircleHalfTilt.displayName = "CircleHalfTilt"; diff --git a/src/ssr/CircleNotch.tsx b/src/ssr/CircleNotch.tsx new file mode 100644 index 000000000..ab8d1dd3d --- /dev/null +++ b/src/ssr/CircleNotch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CircleNotch"; + +export const CircleNotch: Icon = forwardRef((props, ref) => ( + +)); + +CircleNotch.displayName = "CircleNotch"; diff --git a/src/ssr/CirclesFour.tsx b/src/ssr/CirclesFour.tsx new file mode 100644 index 000000000..f79605c35 --- /dev/null +++ b/src/ssr/CirclesFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CirclesFour"; + +export const CirclesFour: Icon = forwardRef((props, ref) => ( + +)); + +CirclesFour.displayName = "CirclesFour"; diff --git a/src/ssr/CirclesThree.tsx b/src/ssr/CirclesThree.tsx new file mode 100644 index 000000000..5ba604bb3 --- /dev/null +++ b/src/ssr/CirclesThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CirclesThree"; + +export const CirclesThree: Icon = forwardRef((props, ref) => ( + +)); + +CirclesThree.displayName = "CirclesThree"; diff --git a/src/ssr/CirclesThreePlus.tsx b/src/ssr/CirclesThreePlus.tsx new file mode 100644 index 000000000..3ce49b349 --- /dev/null +++ b/src/ssr/CirclesThreePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CirclesThreePlus"; + +export const CirclesThreePlus: Icon = forwardRef((props, ref) => ( + +)); + +CirclesThreePlus.displayName = "CirclesThreePlus"; diff --git a/src/ssr/Circuitry.tsx b/src/ssr/Circuitry.tsx new file mode 100644 index 000000000..f9e762384 --- /dev/null +++ b/src/ssr/Circuitry.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Circuitry"; + +export const Circuitry: Icon = forwardRef((props, ref) => ( + +)); + +Circuitry.displayName = "Circuitry"; diff --git a/src/ssr/Clipboard.tsx b/src/ssr/Clipboard.tsx new file mode 100644 index 000000000..bb915ffa5 --- /dev/null +++ b/src/ssr/Clipboard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Clipboard"; + +export const Clipboard: Icon = forwardRef((props, ref) => ( + +)); + +Clipboard.displayName = "Clipboard"; diff --git a/src/ssr/ClipboardText.tsx b/src/ssr/ClipboardText.tsx new file mode 100644 index 000000000..5fe0bb94a --- /dev/null +++ b/src/ssr/ClipboardText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ClipboardText"; + +export const ClipboardText: Icon = forwardRef((props, ref) => ( + +)); + +ClipboardText.displayName = "ClipboardText"; diff --git a/src/ssr/Clock.tsx b/src/ssr/Clock.tsx new file mode 100644 index 000000000..c176bc860 --- /dev/null +++ b/src/ssr/Clock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Clock"; + +export const Clock: Icon = forwardRef((props, ref) => ( + +)); + +Clock.displayName = "Clock"; diff --git a/src/ssr/ClockAfternoon.tsx b/src/ssr/ClockAfternoon.tsx new file mode 100644 index 000000000..c21b28b21 --- /dev/null +++ b/src/ssr/ClockAfternoon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ClockAfternoon"; + +export const ClockAfternoon: Icon = forwardRef((props, ref) => ( + +)); + +ClockAfternoon.displayName = "ClockAfternoon"; diff --git a/src/ssr/ClockClockwise.tsx b/src/ssr/ClockClockwise.tsx new file mode 100644 index 000000000..430689f4b --- /dev/null +++ b/src/ssr/ClockClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ClockClockwise"; + +export const ClockClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ClockClockwise.displayName = "ClockClockwise"; diff --git a/src/ssr/ClockCountdown.tsx b/src/ssr/ClockCountdown.tsx new file mode 100644 index 000000000..4ef06663f --- /dev/null +++ b/src/ssr/ClockCountdown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ClockCountdown"; + +export const ClockCountdown: Icon = forwardRef((props, ref) => ( + +)); + +ClockCountdown.displayName = "ClockCountdown"; diff --git a/src/ssr/ClockCounterClockwise.tsx b/src/ssr/ClockCounterClockwise.tsx new file mode 100644 index 000000000..325907413 --- /dev/null +++ b/src/ssr/ClockCounterClockwise.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ClockCounterClockwise"; + +export const ClockCounterClockwise: Icon = forwardRef((props, ref) => ( + +)); + +ClockCounterClockwise.displayName = "ClockCounterClockwise"; diff --git a/src/ssr/ClosedCaptioning.tsx b/src/ssr/ClosedCaptioning.tsx new file mode 100644 index 000000000..867ae7d0f --- /dev/null +++ b/src/ssr/ClosedCaptioning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ClosedCaptioning"; + +export const ClosedCaptioning: Icon = forwardRef((props, ref) => ( + +)); + +ClosedCaptioning.displayName = "ClosedCaptioning"; diff --git a/src/ssr/Cloud.tsx b/src/ssr/Cloud.tsx new file mode 100644 index 000000000..4e0385841 --- /dev/null +++ b/src/ssr/Cloud.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cloud"; + +export const Cloud: Icon = forwardRef((props, ref) => ( + +)); + +Cloud.displayName = "Cloud"; diff --git a/src/ssr/CloudArrowDown.tsx b/src/ssr/CloudArrowDown.tsx new file mode 100644 index 000000000..c2ddc7c25 --- /dev/null +++ b/src/ssr/CloudArrowDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudArrowDown"; + +export const CloudArrowDown: Icon = forwardRef((props, ref) => ( + +)); + +CloudArrowDown.displayName = "CloudArrowDown"; diff --git a/src/ssr/CloudArrowUp.tsx b/src/ssr/CloudArrowUp.tsx new file mode 100644 index 000000000..d8937562f --- /dev/null +++ b/src/ssr/CloudArrowUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudArrowUp"; + +export const CloudArrowUp: Icon = forwardRef((props, ref) => ( + +)); + +CloudArrowUp.displayName = "CloudArrowUp"; diff --git a/src/ssr/CloudCheck.tsx b/src/ssr/CloudCheck.tsx new file mode 100644 index 000000000..bbbad3a83 --- /dev/null +++ b/src/ssr/CloudCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudCheck"; + +export const CloudCheck: Icon = forwardRef((props, ref) => ( + +)); + +CloudCheck.displayName = "CloudCheck"; diff --git a/src/ssr/CloudFog.tsx b/src/ssr/CloudFog.tsx new file mode 100644 index 000000000..d89012e19 --- /dev/null +++ b/src/ssr/CloudFog.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudFog"; + +export const CloudFog: Icon = forwardRef((props, ref) => ( + +)); + +CloudFog.displayName = "CloudFog"; diff --git a/src/ssr/CloudLightning.tsx b/src/ssr/CloudLightning.tsx new file mode 100644 index 000000000..978c41982 --- /dev/null +++ b/src/ssr/CloudLightning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudLightning"; + +export const CloudLightning: Icon = forwardRef((props, ref) => ( + +)); + +CloudLightning.displayName = "CloudLightning"; diff --git a/src/ssr/CloudMoon.tsx b/src/ssr/CloudMoon.tsx new file mode 100644 index 000000000..8dd801c53 --- /dev/null +++ b/src/ssr/CloudMoon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudMoon"; + +export const CloudMoon: Icon = forwardRef((props, ref) => ( + +)); + +CloudMoon.displayName = "CloudMoon"; diff --git a/src/ssr/CloudRain.tsx b/src/ssr/CloudRain.tsx new file mode 100644 index 000000000..d99d8e02d --- /dev/null +++ b/src/ssr/CloudRain.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudRain"; + +export const CloudRain: Icon = forwardRef((props, ref) => ( + +)); + +CloudRain.displayName = "CloudRain"; diff --git a/src/ssr/CloudSlash.tsx b/src/ssr/CloudSlash.tsx new file mode 100644 index 000000000..e13c65d12 --- /dev/null +++ b/src/ssr/CloudSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudSlash"; + +export const CloudSlash: Icon = forwardRef((props, ref) => ( + +)); + +CloudSlash.displayName = "CloudSlash"; diff --git a/src/ssr/CloudSnow.tsx b/src/ssr/CloudSnow.tsx new file mode 100644 index 000000000..c7f146a91 --- /dev/null +++ b/src/ssr/CloudSnow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudSnow"; + +export const CloudSnow: Icon = forwardRef((props, ref) => ( + +)); + +CloudSnow.displayName = "CloudSnow"; diff --git a/src/ssr/CloudSun.tsx b/src/ssr/CloudSun.tsx new file mode 100644 index 000000000..c6ab060d8 --- /dev/null +++ b/src/ssr/CloudSun.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudSun"; + +export const CloudSun: Icon = forwardRef((props, ref) => ( + +)); + +CloudSun.displayName = "CloudSun"; diff --git a/src/ssr/CloudWarning.tsx b/src/ssr/CloudWarning.tsx new file mode 100644 index 000000000..bcff09535 --- /dev/null +++ b/src/ssr/CloudWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudWarning"; + +export const CloudWarning: Icon = forwardRef((props, ref) => ( + +)); + +CloudWarning.displayName = "CloudWarning"; diff --git a/src/ssr/CloudX.tsx b/src/ssr/CloudX.tsx new file mode 100644 index 000000000..b5c9c70bb --- /dev/null +++ b/src/ssr/CloudX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CloudX"; + +export const CloudX: Icon = forwardRef((props, ref) => ( + +)); + +CloudX.displayName = "CloudX"; diff --git a/src/ssr/Club.tsx b/src/ssr/Club.tsx new file mode 100644 index 000000000..58bb15675 --- /dev/null +++ b/src/ssr/Club.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Club"; + +export const Club: Icon = forwardRef((props, ref) => ( + +)); + +Club.displayName = "Club"; diff --git a/src/ssr/CoatHanger.tsx b/src/ssr/CoatHanger.tsx new file mode 100644 index 000000000..0086514df --- /dev/null +++ b/src/ssr/CoatHanger.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CoatHanger"; + +export const CoatHanger: Icon = forwardRef((props, ref) => ( + +)); + +CoatHanger.displayName = "CoatHanger"; diff --git a/src/ssr/CodaLogo.tsx b/src/ssr/CodaLogo.tsx new file mode 100644 index 000000000..71771bfbb --- /dev/null +++ b/src/ssr/CodaLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CodaLogo"; + +export const CodaLogo: Icon = forwardRef((props, ref) => ( + +)); + +CodaLogo.displayName = "CodaLogo"; diff --git a/src/ssr/Code.tsx b/src/ssr/Code.tsx new file mode 100644 index 000000000..56fbb9675 --- /dev/null +++ b/src/ssr/Code.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Code"; + +export const Code: Icon = forwardRef((props, ref) => ( + +)); + +Code.displayName = "Code"; diff --git a/src/ssr/CodeBlock.tsx b/src/ssr/CodeBlock.tsx new file mode 100644 index 000000000..64e7324f3 --- /dev/null +++ b/src/ssr/CodeBlock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CodeBlock"; + +export const CodeBlock: Icon = forwardRef((props, ref) => ( + +)); + +CodeBlock.displayName = "CodeBlock"; diff --git a/src/ssr/CodeSimple.tsx b/src/ssr/CodeSimple.tsx new file mode 100644 index 000000000..7949a09c7 --- /dev/null +++ b/src/ssr/CodeSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CodeSimple"; + +export const CodeSimple: Icon = forwardRef((props, ref) => ( + +)); + +CodeSimple.displayName = "CodeSimple"; diff --git a/src/ssr/CodepenLogo.tsx b/src/ssr/CodepenLogo.tsx new file mode 100644 index 000000000..ed5bae1af --- /dev/null +++ b/src/ssr/CodepenLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CodepenLogo"; + +export const CodepenLogo: Icon = forwardRef((props, ref) => ( + +)); + +CodepenLogo.displayName = "CodepenLogo"; diff --git a/src/ssr/CodesandboxLogo.tsx b/src/ssr/CodesandboxLogo.tsx new file mode 100644 index 000000000..3fce069f4 --- /dev/null +++ b/src/ssr/CodesandboxLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CodesandboxLogo"; + +export const CodesandboxLogo: Icon = forwardRef((props, ref) => ( + +)); + +CodesandboxLogo.displayName = "CodesandboxLogo"; diff --git a/src/ssr/Coffee.tsx b/src/ssr/Coffee.tsx new file mode 100644 index 000000000..554acee5f --- /dev/null +++ b/src/ssr/Coffee.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Coffee"; + +export const Coffee: Icon = forwardRef((props, ref) => ( + +)); + +Coffee.displayName = "Coffee"; diff --git a/src/ssr/Coin.tsx b/src/ssr/Coin.tsx new file mode 100644 index 000000000..f38befcbc --- /dev/null +++ b/src/ssr/Coin.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Coin"; + +export const Coin: Icon = forwardRef((props, ref) => ( + +)); + +Coin.displayName = "Coin"; diff --git a/src/ssr/CoinVertical.tsx b/src/ssr/CoinVertical.tsx new file mode 100644 index 000000000..07db73439 --- /dev/null +++ b/src/ssr/CoinVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CoinVertical"; + +export const CoinVertical: Icon = forwardRef((props, ref) => ( + +)); + +CoinVertical.displayName = "CoinVertical"; diff --git a/src/ssr/Coins.tsx b/src/ssr/Coins.tsx new file mode 100644 index 000000000..2c9af51b7 --- /dev/null +++ b/src/ssr/Coins.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Coins"; + +export const Coins: Icon = forwardRef((props, ref) => ( + +)); + +Coins.displayName = "Coins"; diff --git a/src/ssr/Columns.tsx b/src/ssr/Columns.tsx new file mode 100644 index 000000000..a65dc6d95 --- /dev/null +++ b/src/ssr/Columns.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Columns"; + +export const Columns: Icon = forwardRef((props, ref) => ( + +)); + +Columns.displayName = "Columns"; diff --git a/src/ssr/Command.tsx b/src/ssr/Command.tsx new file mode 100644 index 000000000..fcb8b817f --- /dev/null +++ b/src/ssr/Command.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Command"; + +export const Command: Icon = forwardRef((props, ref) => ( + +)); + +Command.displayName = "Command"; diff --git a/src/ssr/Compass.tsx b/src/ssr/Compass.tsx new file mode 100644 index 000000000..c730a54a6 --- /dev/null +++ b/src/ssr/Compass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Compass"; + +export const Compass: Icon = forwardRef((props, ref) => ( + +)); + +Compass.displayName = "Compass"; diff --git a/src/ssr/CompassTool.tsx b/src/ssr/CompassTool.tsx new file mode 100644 index 000000000..75d333348 --- /dev/null +++ b/src/ssr/CompassTool.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CompassTool"; + +export const CompassTool: Icon = forwardRef((props, ref) => ( + +)); + +CompassTool.displayName = "CompassTool"; diff --git a/src/ssr/ComputerTower.tsx b/src/ssr/ComputerTower.tsx new file mode 100644 index 000000000..8d9660618 --- /dev/null +++ b/src/ssr/ComputerTower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ComputerTower"; + +export const ComputerTower: Icon = forwardRef((props, ref) => ( + +)); + +ComputerTower.displayName = "ComputerTower"; diff --git a/src/ssr/Confetti.tsx b/src/ssr/Confetti.tsx new file mode 100644 index 000000000..fb046d518 --- /dev/null +++ b/src/ssr/Confetti.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Confetti"; + +export const Confetti: Icon = forwardRef((props, ref) => ( + +)); + +Confetti.displayName = "Confetti"; diff --git a/src/ssr/ContactlessPayment.tsx b/src/ssr/ContactlessPayment.tsx new file mode 100644 index 000000000..44baae251 --- /dev/null +++ b/src/ssr/ContactlessPayment.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ContactlessPayment"; + +export const ContactlessPayment: Icon = forwardRef((props, ref) => ( + +)); + +ContactlessPayment.displayName = "ContactlessPayment"; diff --git a/src/ssr/Control.tsx b/src/ssr/Control.tsx new file mode 100644 index 000000000..345582eb9 --- /dev/null +++ b/src/ssr/Control.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Control"; + +export const Control: Icon = forwardRef((props, ref) => ( + +)); + +Control.displayName = "Control"; diff --git a/src/ssr/Cookie.tsx b/src/ssr/Cookie.tsx new file mode 100644 index 000000000..fb5b82080 --- /dev/null +++ b/src/ssr/Cookie.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cookie"; + +export const Cookie: Icon = forwardRef((props, ref) => ( + +)); + +Cookie.displayName = "Cookie"; diff --git a/src/ssr/CookingPot.tsx b/src/ssr/CookingPot.tsx new file mode 100644 index 000000000..73448b300 --- /dev/null +++ b/src/ssr/CookingPot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CookingPot"; + +export const CookingPot: Icon = forwardRef((props, ref) => ( + +)); + +CookingPot.displayName = "CookingPot"; diff --git a/src/ssr/Copy.tsx b/src/ssr/Copy.tsx new file mode 100644 index 000000000..dd8c318ab --- /dev/null +++ b/src/ssr/Copy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Copy"; + +export const Copy: Icon = forwardRef((props, ref) => ( + +)); + +Copy.displayName = "Copy"; diff --git a/src/ssr/CopySimple.tsx b/src/ssr/CopySimple.tsx new file mode 100644 index 000000000..38faa346d --- /dev/null +++ b/src/ssr/CopySimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CopySimple"; + +export const CopySimple: Icon = forwardRef((props, ref) => ( + +)); + +CopySimple.displayName = "CopySimple"; diff --git a/src/ssr/Copyleft.tsx b/src/ssr/Copyleft.tsx new file mode 100644 index 000000000..0f871d172 --- /dev/null +++ b/src/ssr/Copyleft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Copyleft"; + +export const Copyleft: Icon = forwardRef((props, ref) => ( + +)); + +Copyleft.displayName = "Copyleft"; diff --git a/src/ssr/Copyright.tsx b/src/ssr/Copyright.tsx new file mode 100644 index 000000000..ab8986356 --- /dev/null +++ b/src/ssr/Copyright.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Copyright"; + +export const Copyright: Icon = forwardRef((props, ref) => ( + +)); + +Copyright.displayName = "Copyright"; diff --git a/src/ssr/CornersIn.tsx b/src/ssr/CornersIn.tsx new file mode 100644 index 000000000..0462268f2 --- /dev/null +++ b/src/ssr/CornersIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CornersIn"; + +export const CornersIn: Icon = forwardRef((props, ref) => ( + +)); + +CornersIn.displayName = "CornersIn"; diff --git a/src/ssr/CornersOut.tsx b/src/ssr/CornersOut.tsx new file mode 100644 index 000000000..b219a2f58 --- /dev/null +++ b/src/ssr/CornersOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CornersOut"; + +export const CornersOut: Icon = forwardRef((props, ref) => ( + +)); + +CornersOut.displayName = "CornersOut"; diff --git a/src/ssr/Couch.tsx b/src/ssr/Couch.tsx new file mode 100644 index 000000000..7a1f4538b --- /dev/null +++ b/src/ssr/Couch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Couch"; + +export const Couch: Icon = forwardRef((props, ref) => ( + +)); + +Couch.displayName = "Couch"; diff --git a/src/ssr/Cpu.tsx b/src/ssr/Cpu.tsx new file mode 100644 index 000000000..4c3ac8906 --- /dev/null +++ b/src/ssr/Cpu.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cpu"; + +export const Cpu: Icon = forwardRef((props, ref) => ( + +)); + +Cpu.displayName = "Cpu"; diff --git a/src/ssr/CreditCard.tsx b/src/ssr/CreditCard.tsx new file mode 100644 index 000000000..a046e5b5f --- /dev/null +++ b/src/ssr/CreditCard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CreditCard"; + +export const CreditCard: Icon = forwardRef((props, ref) => ( + +)); + +CreditCard.displayName = "CreditCard"; diff --git a/src/ssr/Crop.tsx b/src/ssr/Crop.tsx new file mode 100644 index 000000000..2b1c964b5 --- /dev/null +++ b/src/ssr/Crop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Crop"; + +export const Crop: Icon = forwardRef((props, ref) => ( + +)); + +Crop.displayName = "Crop"; diff --git a/src/ssr/Cross.tsx b/src/ssr/Cross.tsx new file mode 100644 index 000000000..65a22a5f2 --- /dev/null +++ b/src/ssr/Cross.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cross"; + +export const Cross: Icon = forwardRef((props, ref) => ( + +)); + +Cross.displayName = "Cross"; diff --git a/src/ssr/Crosshair.tsx b/src/ssr/Crosshair.tsx new file mode 100644 index 000000000..a719aa790 --- /dev/null +++ b/src/ssr/Crosshair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Crosshair"; + +export const Crosshair: Icon = forwardRef((props, ref) => ( + +)); + +Crosshair.displayName = "Crosshair"; diff --git a/src/ssr/CrosshairSimple.tsx b/src/ssr/CrosshairSimple.tsx new file mode 100644 index 000000000..06ca549b2 --- /dev/null +++ b/src/ssr/CrosshairSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CrosshairSimple"; + +export const CrosshairSimple: Icon = forwardRef((props, ref) => ( + +)); + +CrosshairSimple.displayName = "CrosshairSimple"; diff --git a/src/ssr/Crown.tsx b/src/ssr/Crown.tsx new file mode 100644 index 000000000..56a4ca0a1 --- /dev/null +++ b/src/ssr/Crown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Crown"; + +export const Crown: Icon = forwardRef((props, ref) => ( + +)); + +Crown.displayName = "Crown"; diff --git a/src/ssr/CrownSimple.tsx b/src/ssr/CrownSimple.tsx new file mode 100644 index 000000000..10b1cb6b2 --- /dev/null +++ b/src/ssr/CrownSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CrownSimple"; + +export const CrownSimple: Icon = forwardRef((props, ref) => ( + +)); + +CrownSimple.displayName = "CrownSimple"; diff --git a/src/ssr/Cube.tsx b/src/ssr/Cube.tsx new file mode 100644 index 000000000..5bcc065e5 --- /dev/null +++ b/src/ssr/Cube.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cube"; + +export const Cube: Icon = forwardRef((props, ref) => ( + +)); + +Cube.displayName = "Cube"; diff --git a/src/ssr/CubeFocus.tsx b/src/ssr/CubeFocus.tsx new file mode 100644 index 000000000..8cd702d41 --- /dev/null +++ b/src/ssr/CubeFocus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CubeFocus"; + +export const CubeFocus: Icon = forwardRef((props, ref) => ( + +)); + +CubeFocus.displayName = "CubeFocus"; diff --git a/src/ssr/CubeTransparent.tsx b/src/ssr/CubeTransparent.tsx new file mode 100644 index 000000000..9034e3ba6 --- /dev/null +++ b/src/ssr/CubeTransparent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CubeTransparent"; + +export const CubeTransparent: Icon = forwardRef((props, ref) => ( + +)); + +CubeTransparent.displayName = "CubeTransparent"; diff --git a/src/ssr/CurrencyBtc.tsx b/src/ssr/CurrencyBtc.tsx new file mode 100644 index 000000000..d190e19ee --- /dev/null +++ b/src/ssr/CurrencyBtc.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyBtc"; + +export const CurrencyBtc: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyBtc.displayName = "CurrencyBtc"; diff --git a/src/ssr/CurrencyCircleDollar.tsx b/src/ssr/CurrencyCircleDollar.tsx new file mode 100644 index 000000000..e1ef42cc0 --- /dev/null +++ b/src/ssr/CurrencyCircleDollar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyCircleDollar"; + +export const CurrencyCircleDollar: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyCircleDollar.displayName = "CurrencyCircleDollar"; diff --git a/src/ssr/CurrencyCny.tsx b/src/ssr/CurrencyCny.tsx new file mode 100644 index 000000000..54275c3fb --- /dev/null +++ b/src/ssr/CurrencyCny.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyCny"; + +export const CurrencyCny: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyCny.displayName = "CurrencyCny"; diff --git a/src/ssr/CurrencyDollar.tsx b/src/ssr/CurrencyDollar.tsx new file mode 100644 index 000000000..0902d3f80 --- /dev/null +++ b/src/ssr/CurrencyDollar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyDollar"; + +export const CurrencyDollar: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyDollar.displayName = "CurrencyDollar"; diff --git a/src/ssr/CurrencyDollarSimple.tsx b/src/ssr/CurrencyDollarSimple.tsx new file mode 100644 index 000000000..6c64b5fb2 --- /dev/null +++ b/src/ssr/CurrencyDollarSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyDollarSimple"; + +export const CurrencyDollarSimple: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyDollarSimple.displayName = "CurrencyDollarSimple"; diff --git a/src/ssr/CurrencyEth.tsx b/src/ssr/CurrencyEth.tsx new file mode 100644 index 000000000..524677926 --- /dev/null +++ b/src/ssr/CurrencyEth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyEth"; + +export const CurrencyEth: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyEth.displayName = "CurrencyEth"; diff --git a/src/ssr/CurrencyEur.tsx b/src/ssr/CurrencyEur.tsx new file mode 100644 index 000000000..d87b6a7ca --- /dev/null +++ b/src/ssr/CurrencyEur.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyEur"; + +export const CurrencyEur: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyEur.displayName = "CurrencyEur"; diff --git a/src/ssr/CurrencyGbp.tsx b/src/ssr/CurrencyGbp.tsx new file mode 100644 index 000000000..06a60253e --- /dev/null +++ b/src/ssr/CurrencyGbp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyGbp"; + +export const CurrencyGbp: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyGbp.displayName = "CurrencyGbp"; diff --git a/src/ssr/CurrencyInr.tsx b/src/ssr/CurrencyInr.tsx new file mode 100644 index 000000000..0cfc7fb68 --- /dev/null +++ b/src/ssr/CurrencyInr.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyInr"; + +export const CurrencyInr: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyInr.displayName = "CurrencyInr"; diff --git a/src/ssr/CurrencyJpy.tsx b/src/ssr/CurrencyJpy.tsx new file mode 100644 index 000000000..5bd822f19 --- /dev/null +++ b/src/ssr/CurrencyJpy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyJpy"; + +export const CurrencyJpy: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyJpy.displayName = "CurrencyJpy"; diff --git a/src/ssr/CurrencyKrw.tsx b/src/ssr/CurrencyKrw.tsx new file mode 100644 index 000000000..a7d17e3bc --- /dev/null +++ b/src/ssr/CurrencyKrw.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyKrw"; + +export const CurrencyKrw: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyKrw.displayName = "CurrencyKrw"; diff --git a/src/ssr/CurrencyKzt.tsx b/src/ssr/CurrencyKzt.tsx new file mode 100644 index 000000000..eb6944696 --- /dev/null +++ b/src/ssr/CurrencyKzt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyKzt"; + +export const CurrencyKzt: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyKzt.displayName = "CurrencyKzt"; diff --git a/src/ssr/CurrencyNgn.tsx b/src/ssr/CurrencyNgn.tsx new file mode 100644 index 000000000..0df5c629b --- /dev/null +++ b/src/ssr/CurrencyNgn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyNgn"; + +export const CurrencyNgn: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyNgn.displayName = "CurrencyNgn"; diff --git a/src/ssr/CurrencyRub.tsx b/src/ssr/CurrencyRub.tsx new file mode 100644 index 000000000..1dd20d178 --- /dev/null +++ b/src/ssr/CurrencyRub.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CurrencyRub"; + +export const CurrencyRub: Icon = forwardRef((props, ref) => ( + +)); + +CurrencyRub.displayName = "CurrencyRub"; diff --git a/src/ssr/Cursor.tsx b/src/ssr/Cursor.tsx new file mode 100644 index 000000000..662939c57 --- /dev/null +++ b/src/ssr/Cursor.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cursor"; + +export const Cursor: Icon = forwardRef((props, ref) => ( + +)); + +Cursor.displayName = "Cursor"; diff --git a/src/ssr/CursorClick.tsx b/src/ssr/CursorClick.tsx new file mode 100644 index 000000000..c407603b7 --- /dev/null +++ b/src/ssr/CursorClick.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CursorClick"; + +export const CursorClick: Icon = forwardRef((props, ref) => ( + +)); + +CursorClick.displayName = "CursorClick"; diff --git a/src/ssr/CursorText.tsx b/src/ssr/CursorText.tsx new file mode 100644 index 000000000..6a6f85e46 --- /dev/null +++ b/src/ssr/CursorText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/CursorText"; + +export const CursorText: Icon = forwardRef((props, ref) => ( + +)); + +CursorText.displayName = "CursorText"; diff --git a/src/ssr/Cylinder.tsx b/src/ssr/Cylinder.tsx new file mode 100644 index 000000000..d65551e4d --- /dev/null +++ b/src/ssr/Cylinder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Cylinder"; + +export const Cylinder: Icon = forwardRef((props, ref) => ( + +)); + +Cylinder.displayName = "Cylinder"; diff --git a/src/ssr/Database.tsx b/src/ssr/Database.tsx new file mode 100644 index 000000000..1a9009a9c --- /dev/null +++ b/src/ssr/Database.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Database"; + +export const Database: Icon = forwardRef((props, ref) => ( + +)); + +Database.displayName = "Database"; diff --git a/src/ssr/Desktop.tsx b/src/ssr/Desktop.tsx new file mode 100644 index 000000000..35c85d3e2 --- /dev/null +++ b/src/ssr/Desktop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Desktop"; + +export const Desktop: Icon = forwardRef((props, ref) => ( + +)); + +Desktop.displayName = "Desktop"; diff --git a/src/ssr/DesktopTower.tsx b/src/ssr/DesktopTower.tsx new file mode 100644 index 000000000..8e6222eb7 --- /dev/null +++ b/src/ssr/DesktopTower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DesktopTower"; + +export const DesktopTower: Icon = forwardRef((props, ref) => ( + +)); + +DesktopTower.displayName = "DesktopTower"; diff --git a/src/ssr/Detective.tsx b/src/ssr/Detective.tsx new file mode 100644 index 000000000..d94adb181 --- /dev/null +++ b/src/ssr/Detective.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Detective"; + +export const Detective: Icon = forwardRef((props, ref) => ( + +)); + +Detective.displayName = "Detective"; diff --git a/src/ssr/DevToLogo.tsx b/src/ssr/DevToLogo.tsx new file mode 100644 index 000000000..e267d2edc --- /dev/null +++ b/src/ssr/DevToLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DevToLogo"; + +export const DevToLogo: Icon = forwardRef((props, ref) => ( + +)); + +DevToLogo.displayName = "DevToLogo"; diff --git a/src/ssr/DeviceMobile.tsx b/src/ssr/DeviceMobile.tsx new file mode 100644 index 000000000..83520c9ab --- /dev/null +++ b/src/ssr/DeviceMobile.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DeviceMobile"; + +export const DeviceMobile: Icon = forwardRef((props, ref) => ( + +)); + +DeviceMobile.displayName = "DeviceMobile"; diff --git a/src/ssr/DeviceMobileCamera.tsx b/src/ssr/DeviceMobileCamera.tsx new file mode 100644 index 000000000..304a8fa9b --- /dev/null +++ b/src/ssr/DeviceMobileCamera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DeviceMobileCamera"; + +export const DeviceMobileCamera: Icon = forwardRef((props, ref) => ( + +)); + +DeviceMobileCamera.displayName = "DeviceMobileCamera"; diff --git a/src/ssr/DeviceMobileSpeaker.tsx b/src/ssr/DeviceMobileSpeaker.tsx new file mode 100644 index 000000000..1f6f59560 --- /dev/null +++ b/src/ssr/DeviceMobileSpeaker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DeviceMobileSpeaker"; + +export const DeviceMobileSpeaker: Icon = forwardRef((props, ref) => ( + +)); + +DeviceMobileSpeaker.displayName = "DeviceMobileSpeaker"; diff --git a/src/ssr/DeviceTablet.tsx b/src/ssr/DeviceTablet.tsx new file mode 100644 index 000000000..ee0679d62 --- /dev/null +++ b/src/ssr/DeviceTablet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DeviceTablet"; + +export const DeviceTablet: Icon = forwardRef((props, ref) => ( + +)); + +DeviceTablet.displayName = "DeviceTablet"; diff --git a/src/ssr/DeviceTabletCamera.tsx b/src/ssr/DeviceTabletCamera.tsx new file mode 100644 index 000000000..31b7b359c --- /dev/null +++ b/src/ssr/DeviceTabletCamera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DeviceTabletCamera"; + +export const DeviceTabletCamera: Icon = forwardRef((props, ref) => ( + +)); + +DeviceTabletCamera.displayName = "DeviceTabletCamera"; diff --git a/src/ssr/DeviceTabletSpeaker.tsx b/src/ssr/DeviceTabletSpeaker.tsx new file mode 100644 index 000000000..60fda2b43 --- /dev/null +++ b/src/ssr/DeviceTabletSpeaker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DeviceTabletSpeaker"; + +export const DeviceTabletSpeaker: Icon = forwardRef((props, ref) => ( + +)); + +DeviceTabletSpeaker.displayName = "DeviceTabletSpeaker"; diff --git a/src/ssr/Devices.tsx b/src/ssr/Devices.tsx new file mode 100644 index 000000000..b722407c3 --- /dev/null +++ b/src/ssr/Devices.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Devices"; + +export const Devices: Icon = forwardRef((props, ref) => ( + +)); + +Devices.displayName = "Devices"; diff --git a/src/ssr/Diamond.tsx b/src/ssr/Diamond.tsx new file mode 100644 index 000000000..011110b5e --- /dev/null +++ b/src/ssr/Diamond.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Diamond"; + +export const Diamond: Icon = forwardRef((props, ref) => ( + +)); + +Diamond.displayName = "Diamond"; diff --git a/src/ssr/DiamondsFour.tsx b/src/ssr/DiamondsFour.tsx new file mode 100644 index 000000000..ade5678c7 --- /dev/null +++ b/src/ssr/DiamondsFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiamondsFour"; + +export const DiamondsFour: Icon = forwardRef((props, ref) => ( + +)); + +DiamondsFour.displayName = "DiamondsFour"; diff --git a/src/ssr/DiceFive.tsx b/src/ssr/DiceFive.tsx new file mode 100644 index 000000000..ba71bedaa --- /dev/null +++ b/src/ssr/DiceFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiceFive"; + +export const DiceFive: Icon = forwardRef((props, ref) => ( + +)); + +DiceFive.displayName = "DiceFive"; diff --git a/src/ssr/DiceFour.tsx b/src/ssr/DiceFour.tsx new file mode 100644 index 000000000..cd2b0aea1 --- /dev/null +++ b/src/ssr/DiceFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiceFour"; + +export const DiceFour: Icon = forwardRef((props, ref) => ( + +)); + +DiceFour.displayName = "DiceFour"; diff --git a/src/ssr/DiceOne.tsx b/src/ssr/DiceOne.tsx new file mode 100644 index 000000000..8743ae184 --- /dev/null +++ b/src/ssr/DiceOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiceOne"; + +export const DiceOne: Icon = forwardRef((props, ref) => ( + +)); + +DiceOne.displayName = "DiceOne"; diff --git a/src/ssr/DiceSix.tsx b/src/ssr/DiceSix.tsx new file mode 100644 index 000000000..f9e99f89d --- /dev/null +++ b/src/ssr/DiceSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiceSix"; + +export const DiceSix: Icon = forwardRef((props, ref) => ( + +)); + +DiceSix.displayName = "DiceSix"; diff --git a/src/ssr/DiceThree.tsx b/src/ssr/DiceThree.tsx new file mode 100644 index 000000000..d5d38a085 --- /dev/null +++ b/src/ssr/DiceThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiceThree"; + +export const DiceThree: Icon = forwardRef((props, ref) => ( + +)); + +DiceThree.displayName = "DiceThree"; diff --git a/src/ssr/DiceTwo.tsx b/src/ssr/DiceTwo.tsx new file mode 100644 index 000000000..8336dc116 --- /dev/null +++ b/src/ssr/DiceTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiceTwo"; + +export const DiceTwo: Icon = forwardRef((props, ref) => ( + +)); + +DiceTwo.displayName = "DiceTwo"; diff --git a/src/ssr/Disc.tsx b/src/ssr/Disc.tsx new file mode 100644 index 000000000..3183518c7 --- /dev/null +++ b/src/ssr/Disc.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Disc"; + +export const Disc: Icon = forwardRef((props, ref) => ( + +)); + +Disc.displayName = "Disc"; diff --git a/src/ssr/DiscordLogo.tsx b/src/ssr/DiscordLogo.tsx new file mode 100644 index 000000000..1549fbf9c --- /dev/null +++ b/src/ssr/DiscordLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DiscordLogo"; + +export const DiscordLogo: Icon = forwardRef((props, ref) => ( + +)); + +DiscordLogo.displayName = "DiscordLogo"; diff --git a/src/ssr/Divide.tsx b/src/ssr/Divide.tsx new file mode 100644 index 000000000..63e39b2ef --- /dev/null +++ b/src/ssr/Divide.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Divide"; + +export const Divide: Icon = forwardRef((props, ref) => ( + +)); + +Divide.displayName = "Divide"; diff --git a/src/ssr/Dna.tsx b/src/ssr/Dna.tsx new file mode 100644 index 000000000..7b8a02c61 --- /dev/null +++ b/src/ssr/Dna.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Dna"; + +export const Dna: Icon = forwardRef((props, ref) => ( + +)); + +Dna.displayName = "Dna"; diff --git a/src/ssr/Dog.tsx b/src/ssr/Dog.tsx new file mode 100644 index 000000000..1739cb4ff --- /dev/null +++ b/src/ssr/Dog.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Dog"; + +export const Dog: Icon = forwardRef((props, ref) => ( + +)); + +Dog.displayName = "Dog"; diff --git a/src/ssr/Door.tsx b/src/ssr/Door.tsx new file mode 100644 index 000000000..dbdb1fb97 --- /dev/null +++ b/src/ssr/Door.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Door"; + +export const Door: Icon = forwardRef((props, ref) => ( + +)); + +Door.displayName = "Door"; diff --git a/src/ssr/DoorOpen.tsx b/src/ssr/DoorOpen.tsx new file mode 100644 index 000000000..a5765562c --- /dev/null +++ b/src/ssr/DoorOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DoorOpen"; + +export const DoorOpen: Icon = forwardRef((props, ref) => ( + +)); + +DoorOpen.displayName = "DoorOpen"; diff --git a/src/ssr/Dot.tsx b/src/ssr/Dot.tsx new file mode 100644 index 000000000..fa2f7cdd1 --- /dev/null +++ b/src/ssr/Dot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Dot"; + +export const Dot: Icon = forwardRef((props, ref) => ( + +)); + +Dot.displayName = "Dot"; diff --git a/src/ssr/DotOutline.tsx b/src/ssr/DotOutline.tsx new file mode 100644 index 000000000..d6976c18f --- /dev/null +++ b/src/ssr/DotOutline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotOutline"; + +export const DotOutline: Icon = forwardRef((props, ref) => ( + +)); + +DotOutline.displayName = "DotOutline"; diff --git a/src/ssr/DotsNine.tsx b/src/ssr/DotsNine.tsx new file mode 100644 index 000000000..ed665a445 --- /dev/null +++ b/src/ssr/DotsNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsNine"; + +export const DotsNine: Icon = forwardRef((props, ref) => ( + +)); + +DotsNine.displayName = "DotsNine"; diff --git a/src/ssr/DotsSix.tsx b/src/ssr/DotsSix.tsx new file mode 100644 index 000000000..d5a3c0a34 --- /dev/null +++ b/src/ssr/DotsSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsSix"; + +export const DotsSix: Icon = forwardRef((props, ref) => ( + +)); + +DotsSix.displayName = "DotsSix"; diff --git a/src/ssr/DotsSixVertical.tsx b/src/ssr/DotsSixVertical.tsx new file mode 100644 index 000000000..9d50e25dd --- /dev/null +++ b/src/ssr/DotsSixVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsSixVertical"; + +export const DotsSixVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsSixVertical.displayName = "DotsSixVertical"; diff --git a/src/ssr/DotsThree.tsx b/src/ssr/DotsThree.tsx new file mode 100644 index 000000000..129023a67 --- /dev/null +++ b/src/ssr/DotsThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsThree"; + +export const DotsThree: Icon = forwardRef((props, ref) => ( + +)); + +DotsThree.displayName = "DotsThree"; diff --git a/src/ssr/DotsThreeCircle.tsx b/src/ssr/DotsThreeCircle.tsx new file mode 100644 index 000000000..b1b8c0361 --- /dev/null +++ b/src/ssr/DotsThreeCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsThreeCircle"; + +export const DotsThreeCircle: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeCircle.displayName = "DotsThreeCircle"; diff --git a/src/ssr/DotsThreeCircleVertical.tsx b/src/ssr/DotsThreeCircleVertical.tsx new file mode 100644 index 000000000..584bc1653 --- /dev/null +++ b/src/ssr/DotsThreeCircleVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsThreeCircleVertical"; + +export const DotsThreeCircleVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeCircleVertical.displayName = "DotsThreeCircleVertical"; diff --git a/src/ssr/DotsThreeOutline.tsx b/src/ssr/DotsThreeOutline.tsx new file mode 100644 index 000000000..8e7074b3d --- /dev/null +++ b/src/ssr/DotsThreeOutline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsThreeOutline"; + +export const DotsThreeOutline: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeOutline.displayName = "DotsThreeOutline"; diff --git a/src/ssr/DotsThreeOutlineVertical.tsx b/src/ssr/DotsThreeOutlineVertical.tsx new file mode 100644 index 000000000..a2869afee --- /dev/null +++ b/src/ssr/DotsThreeOutlineVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsThreeOutlineVertical"; + +export const DotsThreeOutlineVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeOutlineVertical.displayName = "DotsThreeOutlineVertical"; diff --git a/src/ssr/DotsThreeVertical.tsx b/src/ssr/DotsThreeVertical.tsx new file mode 100644 index 000000000..97bf1ce25 --- /dev/null +++ b/src/ssr/DotsThreeVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DotsThreeVertical"; + +export const DotsThreeVertical: Icon = forwardRef((props, ref) => ( + +)); + +DotsThreeVertical.displayName = "DotsThreeVertical"; diff --git a/src/ssr/Download.tsx b/src/ssr/Download.tsx new file mode 100644 index 000000000..90e236954 --- /dev/null +++ b/src/ssr/Download.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Download"; + +export const Download: Icon = forwardRef((props, ref) => ( + +)); + +Download.displayName = "Download"; diff --git a/src/ssr/DownloadSimple.tsx b/src/ssr/DownloadSimple.tsx new file mode 100644 index 000000000..b05ca87c2 --- /dev/null +++ b/src/ssr/DownloadSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DownloadSimple"; + +export const DownloadSimple: Icon = forwardRef((props, ref) => ( + +)); + +DownloadSimple.displayName = "DownloadSimple"; diff --git a/src/ssr/Dress.tsx b/src/ssr/Dress.tsx new file mode 100644 index 000000000..7e144befe --- /dev/null +++ b/src/ssr/Dress.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Dress"; + +export const Dress: Icon = forwardRef((props, ref) => ( + +)); + +Dress.displayName = "Dress"; diff --git a/src/ssr/DribbbleLogo.tsx b/src/ssr/DribbbleLogo.tsx new file mode 100644 index 000000000..a87a75ad3 --- /dev/null +++ b/src/ssr/DribbbleLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DribbbleLogo"; + +export const DribbbleLogo: Icon = forwardRef((props, ref) => ( + +)); + +DribbbleLogo.displayName = "DribbbleLogo"; diff --git a/src/ssr/Drop.tsx b/src/ssr/Drop.tsx new file mode 100644 index 000000000..9e93fc032 --- /dev/null +++ b/src/ssr/Drop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Drop"; + +export const Drop: Icon = forwardRef((props, ref) => ( + +)); + +Drop.displayName = "Drop"; diff --git a/src/ssr/DropHalf.tsx b/src/ssr/DropHalf.tsx new file mode 100644 index 000000000..e0fb98270 --- /dev/null +++ b/src/ssr/DropHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DropHalf"; + +export const DropHalf: Icon = forwardRef((props, ref) => ( + +)); + +DropHalf.displayName = "DropHalf"; diff --git a/src/ssr/DropHalfBottom.tsx b/src/ssr/DropHalfBottom.tsx new file mode 100644 index 000000000..5a11c22bb --- /dev/null +++ b/src/ssr/DropHalfBottom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DropHalfBottom"; + +export const DropHalfBottom: Icon = forwardRef((props, ref) => ( + +)); + +DropHalfBottom.displayName = "DropHalfBottom"; diff --git a/src/ssr/DropboxLogo.tsx b/src/ssr/DropboxLogo.tsx new file mode 100644 index 000000000..7ec35cd5e --- /dev/null +++ b/src/ssr/DropboxLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/DropboxLogo"; + +export const DropboxLogo: Icon = forwardRef((props, ref) => ( + +)); + +DropboxLogo.displayName = "DropboxLogo"; diff --git a/src/ssr/Ear.tsx b/src/ssr/Ear.tsx new file mode 100644 index 000000000..334641c2d --- /dev/null +++ b/src/ssr/Ear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Ear"; + +export const Ear: Icon = forwardRef((props, ref) => ( + +)); + +Ear.displayName = "Ear"; diff --git a/src/ssr/EarSlash.tsx b/src/ssr/EarSlash.tsx new file mode 100644 index 000000000..4eee1cfe6 --- /dev/null +++ b/src/ssr/EarSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EarSlash"; + +export const EarSlash: Icon = forwardRef((props, ref) => ( + +)); + +EarSlash.displayName = "EarSlash"; diff --git a/src/ssr/Egg.tsx b/src/ssr/Egg.tsx new file mode 100644 index 000000000..d08882a50 --- /dev/null +++ b/src/ssr/Egg.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Egg"; + +export const Egg: Icon = forwardRef((props, ref) => ( + +)); + +Egg.displayName = "Egg"; diff --git a/src/ssr/EggCrack.tsx b/src/ssr/EggCrack.tsx new file mode 100644 index 000000000..1b13e8d39 --- /dev/null +++ b/src/ssr/EggCrack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EggCrack"; + +export const EggCrack: Icon = forwardRef((props, ref) => ( + +)); + +EggCrack.displayName = "EggCrack"; diff --git a/src/ssr/Eject.tsx b/src/ssr/Eject.tsx new file mode 100644 index 000000000..5f7875ce4 --- /dev/null +++ b/src/ssr/Eject.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Eject"; + +export const Eject: Icon = forwardRef((props, ref) => ( + +)); + +Eject.displayName = "Eject"; diff --git a/src/ssr/EjectSimple.tsx b/src/ssr/EjectSimple.tsx new file mode 100644 index 000000000..ea76b9436 --- /dev/null +++ b/src/ssr/EjectSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EjectSimple"; + +export const EjectSimple: Icon = forwardRef((props, ref) => ( + +)); + +EjectSimple.displayName = "EjectSimple"; diff --git a/src/ssr/Elevator.tsx b/src/ssr/Elevator.tsx new file mode 100644 index 000000000..d9444eb38 --- /dev/null +++ b/src/ssr/Elevator.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Elevator"; + +export const Elevator: Icon = forwardRef((props, ref) => ( + +)); + +Elevator.displayName = "Elevator"; diff --git a/src/ssr/Engine.tsx b/src/ssr/Engine.tsx new file mode 100644 index 000000000..f1cdc9a82 --- /dev/null +++ b/src/ssr/Engine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Engine"; + +export const Engine: Icon = forwardRef((props, ref) => ( + +)); + +Engine.displayName = "Engine"; diff --git a/src/ssr/Envelope.tsx b/src/ssr/Envelope.tsx new file mode 100644 index 000000000..c0ea52cb5 --- /dev/null +++ b/src/ssr/Envelope.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Envelope"; + +export const Envelope: Icon = forwardRef((props, ref) => ( + +)); + +Envelope.displayName = "Envelope"; diff --git a/src/ssr/EnvelopeOpen.tsx b/src/ssr/EnvelopeOpen.tsx new file mode 100644 index 000000000..a466b2557 --- /dev/null +++ b/src/ssr/EnvelopeOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EnvelopeOpen"; + +export const EnvelopeOpen: Icon = forwardRef((props, ref) => ( + +)); + +EnvelopeOpen.displayName = "EnvelopeOpen"; diff --git a/src/ssr/EnvelopeSimple.tsx b/src/ssr/EnvelopeSimple.tsx new file mode 100644 index 000000000..fdee39ec4 --- /dev/null +++ b/src/ssr/EnvelopeSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EnvelopeSimple"; + +export const EnvelopeSimple: Icon = forwardRef((props, ref) => ( + +)); + +EnvelopeSimple.displayName = "EnvelopeSimple"; diff --git a/src/ssr/EnvelopeSimpleOpen.tsx b/src/ssr/EnvelopeSimpleOpen.tsx new file mode 100644 index 000000000..43ad6aa73 --- /dev/null +++ b/src/ssr/EnvelopeSimpleOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EnvelopeSimpleOpen"; + +export const EnvelopeSimpleOpen: Icon = forwardRef((props, ref) => ( + +)); + +EnvelopeSimpleOpen.displayName = "EnvelopeSimpleOpen"; diff --git a/src/ssr/Equalizer.tsx b/src/ssr/Equalizer.tsx new file mode 100644 index 000000000..ceb96b498 --- /dev/null +++ b/src/ssr/Equalizer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Equalizer"; + +export const Equalizer: Icon = forwardRef((props, ref) => ( + +)); + +Equalizer.displayName = "Equalizer"; diff --git a/src/ssr/Equals.tsx b/src/ssr/Equals.tsx new file mode 100644 index 000000000..a6c5cfa0e --- /dev/null +++ b/src/ssr/Equals.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Equals"; + +export const Equals: Icon = forwardRef((props, ref) => ( + +)); + +Equals.displayName = "Equals"; diff --git a/src/ssr/Eraser.tsx b/src/ssr/Eraser.tsx new file mode 100644 index 000000000..ef817855d --- /dev/null +++ b/src/ssr/Eraser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Eraser"; + +export const Eraser: Icon = forwardRef((props, ref) => ( + +)); + +Eraser.displayName = "Eraser"; diff --git a/src/ssr/EscalatorDown.tsx b/src/ssr/EscalatorDown.tsx new file mode 100644 index 000000000..12a880387 --- /dev/null +++ b/src/ssr/EscalatorDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EscalatorDown"; + +export const EscalatorDown: Icon = forwardRef((props, ref) => ( + +)); + +EscalatorDown.displayName = "EscalatorDown"; diff --git a/src/ssr/EscalatorUp.tsx b/src/ssr/EscalatorUp.tsx new file mode 100644 index 000000000..f2836d827 --- /dev/null +++ b/src/ssr/EscalatorUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EscalatorUp"; + +export const EscalatorUp: Icon = forwardRef((props, ref) => ( + +)); + +EscalatorUp.displayName = "EscalatorUp"; diff --git a/src/ssr/Exam.tsx b/src/ssr/Exam.tsx new file mode 100644 index 000000000..518a53b38 --- /dev/null +++ b/src/ssr/Exam.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Exam"; + +export const Exam: Icon = forwardRef((props, ref) => ( + +)); + +Exam.displayName = "Exam"; diff --git a/src/ssr/Exclude.tsx b/src/ssr/Exclude.tsx new file mode 100644 index 000000000..1f25ca5c2 --- /dev/null +++ b/src/ssr/Exclude.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Exclude"; + +export const Exclude: Icon = forwardRef((props, ref) => ( + +)); + +Exclude.displayName = "Exclude"; diff --git a/src/ssr/ExcludeSquare.tsx b/src/ssr/ExcludeSquare.tsx new file mode 100644 index 000000000..debe54f59 --- /dev/null +++ b/src/ssr/ExcludeSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ExcludeSquare"; + +export const ExcludeSquare: Icon = forwardRef((props, ref) => ( + +)); + +ExcludeSquare.displayName = "ExcludeSquare"; diff --git a/src/ssr/Export.tsx b/src/ssr/Export.tsx new file mode 100644 index 000000000..dc523d7f5 --- /dev/null +++ b/src/ssr/Export.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Export"; + +export const Export: Icon = forwardRef((props, ref) => ( + +)); + +Export.displayName = "Export"; diff --git a/src/ssr/Eye.tsx b/src/ssr/Eye.tsx new file mode 100644 index 000000000..94150692b --- /dev/null +++ b/src/ssr/Eye.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Eye"; + +export const Eye: Icon = forwardRef((props, ref) => ( + +)); + +Eye.displayName = "Eye"; diff --git a/src/ssr/EyeClosed.tsx b/src/ssr/EyeClosed.tsx new file mode 100644 index 000000000..5bf6b025e --- /dev/null +++ b/src/ssr/EyeClosed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EyeClosed"; + +export const EyeClosed: Icon = forwardRef((props, ref) => ( + +)); + +EyeClosed.displayName = "EyeClosed"; diff --git a/src/ssr/EyeSlash.tsx b/src/ssr/EyeSlash.tsx new file mode 100644 index 000000000..3e23c10ad --- /dev/null +++ b/src/ssr/EyeSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EyeSlash"; + +export const EyeSlash: Icon = forwardRef((props, ref) => ( + +)); + +EyeSlash.displayName = "EyeSlash"; diff --git a/src/ssr/Eyedropper.tsx b/src/ssr/Eyedropper.tsx new file mode 100644 index 000000000..b07b134bd --- /dev/null +++ b/src/ssr/Eyedropper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Eyedropper"; + +export const Eyedropper: Icon = forwardRef((props, ref) => ( + +)); + +Eyedropper.displayName = "Eyedropper"; diff --git a/src/ssr/EyedropperSample.tsx b/src/ssr/EyedropperSample.tsx new file mode 100644 index 000000000..67cd0cfad --- /dev/null +++ b/src/ssr/EyedropperSample.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/EyedropperSample"; + +export const EyedropperSample: Icon = forwardRef((props, ref) => ( + +)); + +EyedropperSample.displayName = "EyedropperSample"; diff --git a/src/ssr/Eyeglasses.tsx b/src/ssr/Eyeglasses.tsx new file mode 100644 index 000000000..4de56e127 --- /dev/null +++ b/src/ssr/Eyeglasses.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Eyeglasses"; + +export const Eyeglasses: Icon = forwardRef((props, ref) => ( + +)); + +Eyeglasses.displayName = "Eyeglasses"; diff --git a/src/ssr/FaceMask.tsx b/src/ssr/FaceMask.tsx new file mode 100644 index 000000000..e088a1462 --- /dev/null +++ b/src/ssr/FaceMask.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FaceMask"; + +export const FaceMask: Icon = forwardRef((props, ref) => ( + +)); + +FaceMask.displayName = "FaceMask"; diff --git a/src/ssr/FacebookLogo.tsx b/src/ssr/FacebookLogo.tsx new file mode 100644 index 000000000..9ef9c0030 --- /dev/null +++ b/src/ssr/FacebookLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FacebookLogo"; + +export const FacebookLogo: Icon = forwardRef((props, ref) => ( + +)); + +FacebookLogo.displayName = "FacebookLogo"; diff --git a/src/ssr/Factory.tsx b/src/ssr/Factory.tsx new file mode 100644 index 000000000..0f2b0d347 --- /dev/null +++ b/src/ssr/Factory.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Factory"; + +export const Factory: Icon = forwardRef((props, ref) => ( + +)); + +Factory.displayName = "Factory"; diff --git a/src/ssr/Faders.tsx b/src/ssr/Faders.tsx new file mode 100644 index 000000000..9ba49a962 --- /dev/null +++ b/src/ssr/Faders.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Faders"; + +export const Faders: Icon = forwardRef((props, ref) => ( + +)); + +Faders.displayName = "Faders"; diff --git a/src/ssr/FadersHorizontal.tsx b/src/ssr/FadersHorizontal.tsx new file mode 100644 index 000000000..1929ab7c1 --- /dev/null +++ b/src/ssr/FadersHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FadersHorizontal"; + +export const FadersHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +FadersHorizontal.displayName = "FadersHorizontal"; diff --git a/src/ssr/Fan.tsx b/src/ssr/Fan.tsx new file mode 100644 index 000000000..6b5410607 --- /dev/null +++ b/src/ssr/Fan.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Fan"; + +export const Fan: Icon = forwardRef((props, ref) => ( + +)); + +Fan.displayName = "Fan"; diff --git a/src/ssr/FastForward.tsx b/src/ssr/FastForward.tsx new file mode 100644 index 000000000..8af9a65bb --- /dev/null +++ b/src/ssr/FastForward.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FastForward"; + +export const FastForward: Icon = forwardRef((props, ref) => ( + +)); + +FastForward.displayName = "FastForward"; diff --git a/src/ssr/FastForwardCircle.tsx b/src/ssr/FastForwardCircle.tsx new file mode 100644 index 000000000..72cc8f4af --- /dev/null +++ b/src/ssr/FastForwardCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FastForwardCircle"; + +export const FastForwardCircle: Icon = forwardRef((props, ref) => ( + +)); + +FastForwardCircle.displayName = "FastForwardCircle"; diff --git a/src/ssr/Feather.tsx b/src/ssr/Feather.tsx new file mode 100644 index 000000000..745eaef3c --- /dev/null +++ b/src/ssr/Feather.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Feather"; + +export const Feather: Icon = forwardRef((props, ref) => ( + +)); + +Feather.displayName = "Feather"; diff --git a/src/ssr/FigmaLogo.tsx b/src/ssr/FigmaLogo.tsx new file mode 100644 index 000000000..7680a057e --- /dev/null +++ b/src/ssr/FigmaLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FigmaLogo"; + +export const FigmaLogo: Icon = forwardRef((props, ref) => ( + +)); + +FigmaLogo.displayName = "FigmaLogo"; diff --git a/src/ssr/File.tsx b/src/ssr/File.tsx new file mode 100644 index 000000000..082004a26 --- /dev/null +++ b/src/ssr/File.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/File"; + +export const File: Icon = forwardRef((props, ref) => ( + +)); + +File.displayName = "File"; diff --git a/src/ssr/FileArchive.tsx b/src/ssr/FileArchive.tsx new file mode 100644 index 000000000..156ad59c4 --- /dev/null +++ b/src/ssr/FileArchive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileArchive"; + +export const FileArchive: Icon = forwardRef((props, ref) => ( + +)); + +FileArchive.displayName = "FileArchive"; diff --git a/src/ssr/FileArrowDown.tsx b/src/ssr/FileArrowDown.tsx new file mode 100644 index 000000000..cdb50f05e --- /dev/null +++ b/src/ssr/FileArrowDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileArrowDown"; + +export const FileArrowDown: Icon = forwardRef((props, ref) => ( + +)); + +FileArrowDown.displayName = "FileArrowDown"; diff --git a/src/ssr/FileArrowUp.tsx b/src/ssr/FileArrowUp.tsx new file mode 100644 index 000000000..025a2c050 --- /dev/null +++ b/src/ssr/FileArrowUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileArrowUp"; + +export const FileArrowUp: Icon = forwardRef((props, ref) => ( + +)); + +FileArrowUp.displayName = "FileArrowUp"; diff --git a/src/ssr/FileAudio.tsx b/src/ssr/FileAudio.tsx new file mode 100644 index 000000000..9b78956e3 --- /dev/null +++ b/src/ssr/FileAudio.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileAudio"; + +export const FileAudio: Icon = forwardRef((props, ref) => ( + +)); + +FileAudio.displayName = "FileAudio"; diff --git a/src/ssr/FileCloud.tsx b/src/ssr/FileCloud.tsx new file mode 100644 index 000000000..37a554f59 --- /dev/null +++ b/src/ssr/FileCloud.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileCloud"; + +export const FileCloud: Icon = forwardRef((props, ref) => ( + +)); + +FileCloud.displayName = "FileCloud"; diff --git a/src/ssr/FileCode.tsx b/src/ssr/FileCode.tsx new file mode 100644 index 000000000..0486e5c4b --- /dev/null +++ b/src/ssr/FileCode.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileCode"; + +export const FileCode: Icon = forwardRef((props, ref) => ( + +)); + +FileCode.displayName = "FileCode"; diff --git a/src/ssr/FileCss.tsx b/src/ssr/FileCss.tsx new file mode 100644 index 000000000..39ff311d5 --- /dev/null +++ b/src/ssr/FileCss.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileCss"; + +export const FileCss: Icon = forwardRef((props, ref) => ( + +)); + +FileCss.displayName = "FileCss"; diff --git a/src/ssr/FileCsv.tsx b/src/ssr/FileCsv.tsx new file mode 100644 index 000000000..eba27da7a --- /dev/null +++ b/src/ssr/FileCsv.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileCsv"; + +export const FileCsv: Icon = forwardRef((props, ref) => ( + +)); + +FileCsv.displayName = "FileCsv"; diff --git a/src/ssr/FileDashed.tsx b/src/ssr/FileDashed.tsx new file mode 100644 index 000000000..4f0406e90 --- /dev/null +++ b/src/ssr/FileDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileDashed"; + +export const FileDashed: Icon = forwardRef((props, ref) => ( + +)); + +FileDashed.displayName = "FileDashed"; diff --git a/src/ssr/FileDoc.tsx b/src/ssr/FileDoc.tsx new file mode 100644 index 000000000..e63ec7bce --- /dev/null +++ b/src/ssr/FileDoc.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileDoc"; + +export const FileDoc: Icon = forwardRef((props, ref) => ( + +)); + +FileDoc.displayName = "FileDoc"; diff --git a/src/ssr/FileHtml.tsx b/src/ssr/FileHtml.tsx new file mode 100644 index 000000000..1d08678bb --- /dev/null +++ b/src/ssr/FileHtml.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileHtml"; + +export const FileHtml: Icon = forwardRef((props, ref) => ( + +)); + +FileHtml.displayName = "FileHtml"; diff --git a/src/ssr/FileImage.tsx b/src/ssr/FileImage.tsx new file mode 100644 index 000000000..4c3dad53b --- /dev/null +++ b/src/ssr/FileImage.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileImage"; + +export const FileImage: Icon = forwardRef((props, ref) => ( + +)); + +FileImage.displayName = "FileImage"; diff --git a/src/ssr/FileJpg.tsx b/src/ssr/FileJpg.tsx new file mode 100644 index 000000000..5648900b7 --- /dev/null +++ b/src/ssr/FileJpg.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileJpg"; + +export const FileJpg: Icon = forwardRef((props, ref) => ( + +)); + +FileJpg.displayName = "FileJpg"; diff --git a/src/ssr/FileJs.tsx b/src/ssr/FileJs.tsx new file mode 100644 index 000000000..67bb97498 --- /dev/null +++ b/src/ssr/FileJs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileJs"; + +export const FileJs: Icon = forwardRef((props, ref) => ( + +)); + +FileJs.displayName = "FileJs"; diff --git a/src/ssr/FileJsx.tsx b/src/ssr/FileJsx.tsx new file mode 100644 index 000000000..3747d9632 --- /dev/null +++ b/src/ssr/FileJsx.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileJsx"; + +export const FileJsx: Icon = forwardRef((props, ref) => ( + +)); + +FileJsx.displayName = "FileJsx"; diff --git a/src/ssr/FileLock.tsx b/src/ssr/FileLock.tsx new file mode 100644 index 000000000..76841a932 --- /dev/null +++ b/src/ssr/FileLock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileLock"; + +export const FileLock: Icon = forwardRef((props, ref) => ( + +)); + +FileLock.displayName = "FileLock"; diff --git a/src/ssr/FileMagnifyingGlass.tsx b/src/ssr/FileMagnifyingGlass.tsx new file mode 100644 index 000000000..a135c0a84 --- /dev/null +++ b/src/ssr/FileMagnifyingGlass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileMagnifyingGlass"; + +export const FileMagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +FileMagnifyingGlass.displayName = "FileMagnifyingGlass"; diff --git a/src/ssr/FileMinus.tsx b/src/ssr/FileMinus.tsx new file mode 100644 index 000000000..9708f367b --- /dev/null +++ b/src/ssr/FileMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileMinus"; + +export const FileMinus: Icon = forwardRef((props, ref) => ( + +)); + +FileMinus.displayName = "FileMinus"; diff --git a/src/ssr/FilePdf.tsx b/src/ssr/FilePdf.tsx new file mode 100644 index 000000000..179af6260 --- /dev/null +++ b/src/ssr/FilePdf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilePdf"; + +export const FilePdf: Icon = forwardRef((props, ref) => ( + +)); + +FilePdf.displayName = "FilePdf"; diff --git a/src/ssr/FilePlus.tsx b/src/ssr/FilePlus.tsx new file mode 100644 index 000000000..4b6859eed --- /dev/null +++ b/src/ssr/FilePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilePlus"; + +export const FilePlus: Icon = forwardRef((props, ref) => ( + +)); + +FilePlus.displayName = "FilePlus"; diff --git a/src/ssr/FilePng.tsx b/src/ssr/FilePng.tsx new file mode 100644 index 000000000..8be01ef98 --- /dev/null +++ b/src/ssr/FilePng.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilePng"; + +export const FilePng: Icon = forwardRef((props, ref) => ( + +)); + +FilePng.displayName = "FilePng"; diff --git a/src/ssr/FilePpt.tsx b/src/ssr/FilePpt.tsx new file mode 100644 index 000000000..842e5a511 --- /dev/null +++ b/src/ssr/FilePpt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilePpt"; + +export const FilePpt: Icon = forwardRef((props, ref) => ( + +)); + +FilePpt.displayName = "FilePpt"; diff --git a/src/ssr/FileRs.tsx b/src/ssr/FileRs.tsx new file mode 100644 index 000000000..a9e3466ea --- /dev/null +++ b/src/ssr/FileRs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileRs"; + +export const FileRs: Icon = forwardRef((props, ref) => ( + +)); + +FileRs.displayName = "FileRs"; diff --git a/src/ssr/FileSql.tsx b/src/ssr/FileSql.tsx new file mode 100644 index 000000000..be4463967 --- /dev/null +++ b/src/ssr/FileSql.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileSql"; + +export const FileSql: Icon = forwardRef((props, ref) => ( + +)); + +FileSql.displayName = "FileSql"; diff --git a/src/ssr/FileSvg.tsx b/src/ssr/FileSvg.tsx new file mode 100644 index 000000000..fe7e1010b --- /dev/null +++ b/src/ssr/FileSvg.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileSvg"; + +export const FileSvg: Icon = forwardRef((props, ref) => ( + +)); + +FileSvg.displayName = "FileSvg"; diff --git a/src/ssr/FileText.tsx b/src/ssr/FileText.tsx new file mode 100644 index 000000000..8b6005909 --- /dev/null +++ b/src/ssr/FileText.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileText"; + +export const FileText: Icon = forwardRef((props, ref) => ( + +)); + +FileText.displayName = "FileText"; diff --git a/src/ssr/FileTs.tsx b/src/ssr/FileTs.tsx new file mode 100644 index 000000000..b5a41bcee --- /dev/null +++ b/src/ssr/FileTs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileTs"; + +export const FileTs: Icon = forwardRef((props, ref) => ( + +)); + +FileTs.displayName = "FileTs"; diff --git a/src/ssr/FileTsx.tsx b/src/ssr/FileTsx.tsx new file mode 100644 index 000000000..97583ae9d --- /dev/null +++ b/src/ssr/FileTsx.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileTsx"; + +export const FileTsx: Icon = forwardRef((props, ref) => ( + +)); + +FileTsx.displayName = "FileTsx"; diff --git a/src/ssr/FileVideo.tsx b/src/ssr/FileVideo.tsx new file mode 100644 index 000000000..7c948b449 --- /dev/null +++ b/src/ssr/FileVideo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileVideo"; + +export const FileVideo: Icon = forwardRef((props, ref) => ( + +)); + +FileVideo.displayName = "FileVideo"; diff --git a/src/ssr/FileVue.tsx b/src/ssr/FileVue.tsx new file mode 100644 index 000000000..f8ce7ba91 --- /dev/null +++ b/src/ssr/FileVue.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileVue"; + +export const FileVue: Icon = forwardRef((props, ref) => ( + +)); + +FileVue.displayName = "FileVue"; diff --git a/src/ssr/FileX.tsx b/src/ssr/FileX.tsx new file mode 100644 index 000000000..af8dbe9ed --- /dev/null +++ b/src/ssr/FileX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileX"; + +export const FileX: Icon = forwardRef((props, ref) => ( + +)); + +FileX.displayName = "FileX"; diff --git a/src/ssr/FileXls.tsx b/src/ssr/FileXls.tsx new file mode 100644 index 000000000..2bad2d0be --- /dev/null +++ b/src/ssr/FileXls.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileXls"; + +export const FileXls: Icon = forwardRef((props, ref) => ( + +)); + +FileXls.displayName = "FileXls"; diff --git a/src/ssr/FileZip.tsx b/src/ssr/FileZip.tsx new file mode 100644 index 000000000..668cc5e23 --- /dev/null +++ b/src/ssr/FileZip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FileZip"; + +export const FileZip: Icon = forwardRef((props, ref) => ( + +)); + +FileZip.displayName = "FileZip"; diff --git a/src/ssr/Files.tsx b/src/ssr/Files.tsx new file mode 100644 index 000000000..6eaa16f6c --- /dev/null +++ b/src/ssr/Files.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Files"; + +export const Files: Icon = forwardRef((props, ref) => ( + +)); + +Files.displayName = "Files"; diff --git a/src/ssr/FilmReel.tsx b/src/ssr/FilmReel.tsx new file mode 100644 index 000000000..f4e6ea5a7 --- /dev/null +++ b/src/ssr/FilmReel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilmReel"; + +export const FilmReel: Icon = forwardRef((props, ref) => ( + +)); + +FilmReel.displayName = "FilmReel"; diff --git a/src/ssr/FilmScript.tsx b/src/ssr/FilmScript.tsx new file mode 100644 index 000000000..3e1080829 --- /dev/null +++ b/src/ssr/FilmScript.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilmScript"; + +export const FilmScript: Icon = forwardRef((props, ref) => ( + +)); + +FilmScript.displayName = "FilmScript"; diff --git a/src/ssr/FilmSlate.tsx b/src/ssr/FilmSlate.tsx new file mode 100644 index 000000000..98eaa1377 --- /dev/null +++ b/src/ssr/FilmSlate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilmSlate"; + +export const FilmSlate: Icon = forwardRef((props, ref) => ( + +)); + +FilmSlate.displayName = "FilmSlate"; diff --git a/src/ssr/FilmStrip.tsx b/src/ssr/FilmStrip.tsx new file mode 100644 index 000000000..2a059ac67 --- /dev/null +++ b/src/ssr/FilmStrip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FilmStrip"; + +export const FilmStrip: Icon = forwardRef((props, ref) => ( + +)); + +FilmStrip.displayName = "FilmStrip"; diff --git a/src/ssr/Fingerprint.tsx b/src/ssr/Fingerprint.tsx new file mode 100644 index 000000000..286100ca1 --- /dev/null +++ b/src/ssr/Fingerprint.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Fingerprint"; + +export const Fingerprint: Icon = forwardRef((props, ref) => ( + +)); + +Fingerprint.displayName = "Fingerprint"; diff --git a/src/ssr/FingerprintSimple.tsx b/src/ssr/FingerprintSimple.tsx new file mode 100644 index 000000000..d2ecd57f1 --- /dev/null +++ b/src/ssr/FingerprintSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FingerprintSimple"; + +export const FingerprintSimple: Icon = forwardRef((props, ref) => ( + +)); + +FingerprintSimple.displayName = "FingerprintSimple"; diff --git a/src/ssr/FinnTheHuman.tsx b/src/ssr/FinnTheHuman.tsx new file mode 100644 index 000000000..468c5281c --- /dev/null +++ b/src/ssr/FinnTheHuman.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FinnTheHuman"; + +export const FinnTheHuman: Icon = forwardRef((props, ref) => ( + +)); + +FinnTheHuman.displayName = "FinnTheHuman"; diff --git a/src/ssr/Fire.tsx b/src/ssr/Fire.tsx new file mode 100644 index 000000000..f53fa4843 --- /dev/null +++ b/src/ssr/Fire.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Fire"; + +export const Fire: Icon = forwardRef((props, ref) => ( + +)); + +Fire.displayName = "Fire"; diff --git a/src/ssr/FireExtinguisher.tsx b/src/ssr/FireExtinguisher.tsx new file mode 100644 index 000000000..295ce3b4d --- /dev/null +++ b/src/ssr/FireExtinguisher.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FireExtinguisher"; + +export const FireExtinguisher: Icon = forwardRef((props, ref) => ( + +)); + +FireExtinguisher.displayName = "FireExtinguisher"; diff --git a/src/ssr/FireSimple.tsx b/src/ssr/FireSimple.tsx new file mode 100644 index 000000000..f5134e8a6 --- /dev/null +++ b/src/ssr/FireSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FireSimple"; + +export const FireSimple: Icon = forwardRef((props, ref) => ( + +)); + +FireSimple.displayName = "FireSimple"; diff --git a/src/ssr/FirstAid.tsx b/src/ssr/FirstAid.tsx new file mode 100644 index 000000000..6ab21f1d0 --- /dev/null +++ b/src/ssr/FirstAid.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FirstAid"; + +export const FirstAid: Icon = forwardRef((props, ref) => ( + +)); + +FirstAid.displayName = "FirstAid"; diff --git a/src/ssr/FirstAidKit.tsx b/src/ssr/FirstAidKit.tsx new file mode 100644 index 000000000..c2fe00f9a --- /dev/null +++ b/src/ssr/FirstAidKit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FirstAidKit"; + +export const FirstAidKit: Icon = forwardRef((props, ref) => ( + +)); + +FirstAidKit.displayName = "FirstAidKit"; diff --git a/src/ssr/Fish.tsx b/src/ssr/Fish.tsx new file mode 100644 index 000000000..6389c9e5b --- /dev/null +++ b/src/ssr/Fish.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Fish"; + +export const Fish: Icon = forwardRef((props, ref) => ( + +)); + +Fish.displayName = "Fish"; diff --git a/src/ssr/FishSimple.tsx b/src/ssr/FishSimple.tsx new file mode 100644 index 000000000..64780fa19 --- /dev/null +++ b/src/ssr/FishSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FishSimple"; + +export const FishSimple: Icon = forwardRef((props, ref) => ( + +)); + +FishSimple.displayName = "FishSimple"; diff --git a/src/ssr/Flag.tsx b/src/ssr/Flag.tsx new file mode 100644 index 000000000..d8666e802 --- /dev/null +++ b/src/ssr/Flag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Flag"; + +export const Flag: Icon = forwardRef((props, ref) => ( + +)); + +Flag.displayName = "Flag"; diff --git a/src/ssr/FlagBanner.tsx b/src/ssr/FlagBanner.tsx new file mode 100644 index 000000000..9472a231f --- /dev/null +++ b/src/ssr/FlagBanner.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FlagBanner"; + +export const FlagBanner: Icon = forwardRef((props, ref) => ( + +)); + +FlagBanner.displayName = "FlagBanner"; diff --git a/src/ssr/FlagCheckered.tsx b/src/ssr/FlagCheckered.tsx new file mode 100644 index 000000000..77d2106a9 --- /dev/null +++ b/src/ssr/FlagCheckered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FlagCheckered"; + +export const FlagCheckered: Icon = forwardRef((props, ref) => ( + +)); + +FlagCheckered.displayName = "FlagCheckered"; diff --git a/src/ssr/FlagPennant.tsx b/src/ssr/FlagPennant.tsx new file mode 100644 index 000000000..c05488c29 --- /dev/null +++ b/src/ssr/FlagPennant.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FlagPennant"; + +export const FlagPennant: Icon = forwardRef((props, ref) => ( + +)); + +FlagPennant.displayName = "FlagPennant"; diff --git a/src/ssr/Flame.tsx b/src/ssr/Flame.tsx new file mode 100644 index 000000000..4d06082ab --- /dev/null +++ b/src/ssr/Flame.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Flame"; + +export const Flame: Icon = forwardRef((props, ref) => ( + +)); + +Flame.displayName = "Flame"; diff --git a/src/ssr/Flashlight.tsx b/src/ssr/Flashlight.tsx new file mode 100644 index 000000000..86f9d0e1c --- /dev/null +++ b/src/ssr/Flashlight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Flashlight"; + +export const Flashlight: Icon = forwardRef((props, ref) => ( + +)); + +Flashlight.displayName = "Flashlight"; diff --git a/src/ssr/Flask.tsx b/src/ssr/Flask.tsx new file mode 100644 index 000000000..e26c3ae3b --- /dev/null +++ b/src/ssr/Flask.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Flask"; + +export const Flask: Icon = forwardRef((props, ref) => ( + +)); + +Flask.displayName = "Flask"; diff --git a/src/ssr/FloppyDisk.tsx b/src/ssr/FloppyDisk.tsx new file mode 100644 index 000000000..76e09f5ff --- /dev/null +++ b/src/ssr/FloppyDisk.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FloppyDisk"; + +export const FloppyDisk: Icon = forwardRef((props, ref) => ( + +)); + +FloppyDisk.displayName = "FloppyDisk"; diff --git a/src/ssr/FloppyDiskBack.tsx b/src/ssr/FloppyDiskBack.tsx new file mode 100644 index 000000000..accd82927 --- /dev/null +++ b/src/ssr/FloppyDiskBack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FloppyDiskBack"; + +export const FloppyDiskBack: Icon = forwardRef((props, ref) => ( + +)); + +FloppyDiskBack.displayName = "FloppyDiskBack"; diff --git a/src/ssr/FlowArrow.tsx b/src/ssr/FlowArrow.tsx new file mode 100644 index 000000000..0a24a799a --- /dev/null +++ b/src/ssr/FlowArrow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FlowArrow"; + +export const FlowArrow: Icon = forwardRef((props, ref) => ( + +)); + +FlowArrow.displayName = "FlowArrow"; diff --git a/src/ssr/Flower.tsx b/src/ssr/Flower.tsx new file mode 100644 index 000000000..8a8a30a69 --- /dev/null +++ b/src/ssr/Flower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Flower"; + +export const Flower: Icon = forwardRef((props, ref) => ( + +)); + +Flower.displayName = "Flower"; diff --git a/src/ssr/FlowerLotus.tsx b/src/ssr/FlowerLotus.tsx new file mode 100644 index 000000000..e17c9c36d --- /dev/null +++ b/src/ssr/FlowerLotus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FlowerLotus"; + +export const FlowerLotus: Icon = forwardRef((props, ref) => ( + +)); + +FlowerLotus.displayName = "FlowerLotus"; diff --git a/src/ssr/FlowerTulip.tsx b/src/ssr/FlowerTulip.tsx new file mode 100644 index 000000000..2c83a5b46 --- /dev/null +++ b/src/ssr/FlowerTulip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FlowerTulip"; + +export const FlowerTulip: Icon = forwardRef((props, ref) => ( + +)); + +FlowerTulip.displayName = "FlowerTulip"; diff --git a/src/ssr/FlyingSaucer.tsx b/src/ssr/FlyingSaucer.tsx new file mode 100644 index 000000000..816463bca --- /dev/null +++ b/src/ssr/FlyingSaucer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FlyingSaucer"; + +export const FlyingSaucer: Icon = forwardRef((props, ref) => ( + +)); + +FlyingSaucer.displayName = "FlyingSaucer"; diff --git a/src/ssr/Folder.tsx b/src/ssr/Folder.tsx new file mode 100644 index 000000000..02160cd51 --- /dev/null +++ b/src/ssr/Folder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Folder"; + +export const Folder: Icon = forwardRef((props, ref) => ( + +)); + +Folder.displayName = "Folder"; diff --git a/src/ssr/FolderDashed.tsx b/src/ssr/FolderDashed.tsx new file mode 100644 index 000000000..179223624 --- /dev/null +++ b/src/ssr/FolderDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderDashed"; + +export const FolderDashed: Icon = forwardRef((props, ref) => ( + +)); + +FolderDashed.displayName = "FolderDashed"; diff --git a/src/ssr/FolderLock.tsx b/src/ssr/FolderLock.tsx new file mode 100644 index 000000000..be6b4c885 --- /dev/null +++ b/src/ssr/FolderLock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderLock"; + +export const FolderLock: Icon = forwardRef((props, ref) => ( + +)); + +FolderLock.displayName = "FolderLock"; diff --git a/src/ssr/FolderMinus.tsx b/src/ssr/FolderMinus.tsx new file mode 100644 index 000000000..94de40a53 --- /dev/null +++ b/src/ssr/FolderMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderMinus"; + +export const FolderMinus: Icon = forwardRef((props, ref) => ( + +)); + +FolderMinus.displayName = "FolderMinus"; diff --git a/src/ssr/FolderNotch.tsx b/src/ssr/FolderNotch.tsx new file mode 100644 index 000000000..4f3ec6240 --- /dev/null +++ b/src/ssr/FolderNotch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderNotch"; + +export const FolderNotch: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotch.displayName = "FolderNotch"; diff --git a/src/ssr/FolderNotchMinus.tsx b/src/ssr/FolderNotchMinus.tsx new file mode 100644 index 000000000..004967cd6 --- /dev/null +++ b/src/ssr/FolderNotchMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderNotchMinus"; + +export const FolderNotchMinus: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotchMinus.displayName = "FolderNotchMinus"; diff --git a/src/ssr/FolderNotchOpen.tsx b/src/ssr/FolderNotchOpen.tsx new file mode 100644 index 000000000..a225e2df2 --- /dev/null +++ b/src/ssr/FolderNotchOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderNotchOpen"; + +export const FolderNotchOpen: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotchOpen.displayName = "FolderNotchOpen"; diff --git a/src/ssr/FolderNotchPlus.tsx b/src/ssr/FolderNotchPlus.tsx new file mode 100644 index 000000000..5bef4bdbd --- /dev/null +++ b/src/ssr/FolderNotchPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderNotchPlus"; + +export const FolderNotchPlus: Icon = forwardRef((props, ref) => ( + +)); + +FolderNotchPlus.displayName = "FolderNotchPlus"; diff --git a/src/ssr/FolderOpen.tsx b/src/ssr/FolderOpen.tsx new file mode 100644 index 000000000..aa03b136d --- /dev/null +++ b/src/ssr/FolderOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderOpen"; + +export const FolderOpen: Icon = forwardRef((props, ref) => ( + +)); + +FolderOpen.displayName = "FolderOpen"; diff --git a/src/ssr/FolderPlus.tsx b/src/ssr/FolderPlus.tsx new file mode 100644 index 000000000..24c86d565 --- /dev/null +++ b/src/ssr/FolderPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderPlus"; + +export const FolderPlus: Icon = forwardRef((props, ref) => ( + +)); + +FolderPlus.displayName = "FolderPlus"; diff --git a/src/ssr/FolderSimple.tsx b/src/ssr/FolderSimple.tsx new file mode 100644 index 000000000..678cf9dad --- /dev/null +++ b/src/ssr/FolderSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderSimple"; + +export const FolderSimple: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimple.displayName = "FolderSimple"; diff --git a/src/ssr/FolderSimpleDashed.tsx b/src/ssr/FolderSimpleDashed.tsx new file mode 100644 index 000000000..8784a8f3f --- /dev/null +++ b/src/ssr/FolderSimpleDashed.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderSimpleDashed"; + +export const FolderSimpleDashed: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleDashed.displayName = "FolderSimpleDashed"; diff --git a/src/ssr/FolderSimpleLock.tsx b/src/ssr/FolderSimpleLock.tsx new file mode 100644 index 000000000..674a6bd57 --- /dev/null +++ b/src/ssr/FolderSimpleLock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderSimpleLock"; + +export const FolderSimpleLock: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleLock.displayName = "FolderSimpleLock"; diff --git a/src/ssr/FolderSimpleMinus.tsx b/src/ssr/FolderSimpleMinus.tsx new file mode 100644 index 000000000..89194582e --- /dev/null +++ b/src/ssr/FolderSimpleMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderSimpleMinus"; + +export const FolderSimpleMinus: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleMinus.displayName = "FolderSimpleMinus"; diff --git a/src/ssr/FolderSimplePlus.tsx b/src/ssr/FolderSimplePlus.tsx new file mode 100644 index 000000000..e9e2b00dc --- /dev/null +++ b/src/ssr/FolderSimplePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderSimplePlus"; + +export const FolderSimplePlus: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimplePlus.displayName = "FolderSimplePlus"; diff --git a/src/ssr/FolderSimpleStar.tsx b/src/ssr/FolderSimpleStar.tsx new file mode 100644 index 000000000..117d017f3 --- /dev/null +++ b/src/ssr/FolderSimpleStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderSimpleStar"; + +export const FolderSimpleStar: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleStar.displayName = "FolderSimpleStar"; diff --git a/src/ssr/FolderSimpleUser.tsx b/src/ssr/FolderSimpleUser.tsx new file mode 100644 index 000000000..aea0dc5c1 --- /dev/null +++ b/src/ssr/FolderSimpleUser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderSimpleUser"; + +export const FolderSimpleUser: Icon = forwardRef((props, ref) => ( + +)); + +FolderSimpleUser.displayName = "FolderSimpleUser"; diff --git a/src/ssr/FolderStar.tsx b/src/ssr/FolderStar.tsx new file mode 100644 index 000000000..10c1c7fce --- /dev/null +++ b/src/ssr/FolderStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderStar"; + +export const FolderStar: Icon = forwardRef((props, ref) => ( + +)); + +FolderStar.displayName = "FolderStar"; diff --git a/src/ssr/FolderUser.tsx b/src/ssr/FolderUser.tsx new file mode 100644 index 000000000..d6c169bf7 --- /dev/null +++ b/src/ssr/FolderUser.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FolderUser"; + +export const FolderUser: Icon = forwardRef((props, ref) => ( + +)); + +FolderUser.displayName = "FolderUser"; diff --git a/src/ssr/Folders.tsx b/src/ssr/Folders.tsx new file mode 100644 index 000000000..33bf55291 --- /dev/null +++ b/src/ssr/Folders.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Folders"; + +export const Folders: Icon = forwardRef((props, ref) => ( + +)); + +Folders.displayName = "Folders"; diff --git a/src/ssr/Football.tsx b/src/ssr/Football.tsx new file mode 100644 index 000000000..82c533492 --- /dev/null +++ b/src/ssr/Football.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Football"; + +export const Football: Icon = forwardRef((props, ref) => ( + +)); + +Football.displayName = "Football"; diff --git a/src/ssr/Footprints.tsx b/src/ssr/Footprints.tsx new file mode 100644 index 000000000..8efbe0245 --- /dev/null +++ b/src/ssr/Footprints.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Footprints"; + +export const Footprints: Icon = forwardRef((props, ref) => ( + +)); + +Footprints.displayName = "Footprints"; diff --git a/src/ssr/ForkKnife.tsx b/src/ssr/ForkKnife.tsx new file mode 100644 index 000000000..8b9a237e7 --- /dev/null +++ b/src/ssr/ForkKnife.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ForkKnife"; + +export const ForkKnife: Icon = forwardRef((props, ref) => ( + +)); + +ForkKnife.displayName = "ForkKnife"; diff --git a/src/ssr/FrameCorners.tsx b/src/ssr/FrameCorners.tsx new file mode 100644 index 000000000..b9ead5448 --- /dev/null +++ b/src/ssr/FrameCorners.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FrameCorners"; + +export const FrameCorners: Icon = forwardRef((props, ref) => ( + +)); + +FrameCorners.displayName = "FrameCorners"; diff --git a/src/ssr/FramerLogo.tsx b/src/ssr/FramerLogo.tsx new file mode 100644 index 000000000..1b2ddc015 --- /dev/null +++ b/src/ssr/FramerLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FramerLogo"; + +export const FramerLogo: Icon = forwardRef((props, ref) => ( + +)); + +FramerLogo.displayName = "FramerLogo"; diff --git a/src/ssr/Function.tsx b/src/ssr/Function.tsx new file mode 100644 index 000000000..eacda4bb7 --- /dev/null +++ b/src/ssr/Function.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Function"; + +export const Function: Icon = forwardRef((props, ref) => ( + +)); + +Function.displayName = "Function"; diff --git a/src/ssr/Funnel.tsx b/src/ssr/Funnel.tsx new file mode 100644 index 000000000..1fdef2b9f --- /dev/null +++ b/src/ssr/Funnel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Funnel"; + +export const Funnel: Icon = forwardRef((props, ref) => ( + +)); + +Funnel.displayName = "Funnel"; diff --git a/src/ssr/FunnelSimple.tsx b/src/ssr/FunnelSimple.tsx new file mode 100644 index 000000000..499e5d2ac --- /dev/null +++ b/src/ssr/FunnelSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/FunnelSimple"; + +export const FunnelSimple: Icon = forwardRef((props, ref) => ( + +)); + +FunnelSimple.displayName = "FunnelSimple"; diff --git a/src/ssr/GameController.tsx b/src/ssr/GameController.tsx new file mode 100644 index 000000000..344916593 --- /dev/null +++ b/src/ssr/GameController.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GameController"; + +export const GameController: Icon = forwardRef((props, ref) => ( + +)); + +GameController.displayName = "GameController"; diff --git a/src/ssr/Garage.tsx b/src/ssr/Garage.tsx new file mode 100644 index 000000000..673d4f2af --- /dev/null +++ b/src/ssr/Garage.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Garage"; + +export const Garage: Icon = forwardRef((props, ref) => ( + +)); + +Garage.displayName = "Garage"; diff --git a/src/ssr/GasCan.tsx b/src/ssr/GasCan.tsx new file mode 100644 index 000000000..e878c4780 --- /dev/null +++ b/src/ssr/GasCan.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GasCan"; + +export const GasCan: Icon = forwardRef((props, ref) => ( + +)); + +GasCan.displayName = "GasCan"; diff --git a/src/ssr/GasPump.tsx b/src/ssr/GasPump.tsx new file mode 100644 index 000000000..bd562206b --- /dev/null +++ b/src/ssr/GasPump.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GasPump"; + +export const GasPump: Icon = forwardRef((props, ref) => ( + +)); + +GasPump.displayName = "GasPump"; diff --git a/src/ssr/Gauge.tsx b/src/ssr/Gauge.tsx new file mode 100644 index 000000000..60665d150 --- /dev/null +++ b/src/ssr/Gauge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Gauge"; + +export const Gauge: Icon = forwardRef((props, ref) => ( + +)); + +Gauge.displayName = "Gauge"; diff --git a/src/ssr/Gavel.tsx b/src/ssr/Gavel.tsx new file mode 100644 index 000000000..0f1b51620 --- /dev/null +++ b/src/ssr/Gavel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Gavel"; + +export const Gavel: Icon = forwardRef((props, ref) => ( + +)); + +Gavel.displayName = "Gavel"; diff --git a/src/ssr/Gear.tsx b/src/ssr/Gear.tsx new file mode 100644 index 000000000..9de89d581 --- /dev/null +++ b/src/ssr/Gear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Gear"; + +export const Gear: Icon = forwardRef((props, ref) => ( + +)); + +Gear.displayName = "Gear"; diff --git a/src/ssr/GearFine.tsx b/src/ssr/GearFine.tsx new file mode 100644 index 000000000..b2314289a --- /dev/null +++ b/src/ssr/GearFine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GearFine"; + +export const GearFine: Icon = forwardRef((props, ref) => ( + +)); + +GearFine.displayName = "GearFine"; diff --git a/src/ssr/GearSix.tsx b/src/ssr/GearSix.tsx new file mode 100644 index 000000000..2c80d74a0 --- /dev/null +++ b/src/ssr/GearSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GearSix"; + +export const GearSix: Icon = forwardRef((props, ref) => ( + +)); + +GearSix.displayName = "GearSix"; diff --git a/src/ssr/GenderFemale.tsx b/src/ssr/GenderFemale.tsx new file mode 100644 index 000000000..f3499b781 --- /dev/null +++ b/src/ssr/GenderFemale.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GenderFemale"; + +export const GenderFemale: Icon = forwardRef((props, ref) => ( + +)); + +GenderFemale.displayName = "GenderFemale"; diff --git a/src/ssr/GenderIntersex.tsx b/src/ssr/GenderIntersex.tsx new file mode 100644 index 000000000..a15337dc5 --- /dev/null +++ b/src/ssr/GenderIntersex.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GenderIntersex"; + +export const GenderIntersex: Icon = forwardRef((props, ref) => ( + +)); + +GenderIntersex.displayName = "GenderIntersex"; diff --git a/src/ssr/GenderMale.tsx b/src/ssr/GenderMale.tsx new file mode 100644 index 000000000..b0ee33489 --- /dev/null +++ b/src/ssr/GenderMale.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GenderMale"; + +export const GenderMale: Icon = forwardRef((props, ref) => ( + +)); + +GenderMale.displayName = "GenderMale"; diff --git a/src/ssr/GenderNeuter.tsx b/src/ssr/GenderNeuter.tsx new file mode 100644 index 000000000..6ca2b1068 --- /dev/null +++ b/src/ssr/GenderNeuter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GenderNeuter"; + +export const GenderNeuter: Icon = forwardRef((props, ref) => ( + +)); + +GenderNeuter.displayName = "GenderNeuter"; diff --git a/src/ssr/GenderNonbinary.tsx b/src/ssr/GenderNonbinary.tsx new file mode 100644 index 000000000..b2daa38a0 --- /dev/null +++ b/src/ssr/GenderNonbinary.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GenderNonbinary"; + +export const GenderNonbinary: Icon = forwardRef((props, ref) => ( + +)); + +GenderNonbinary.displayName = "GenderNonbinary"; diff --git a/src/ssr/GenderTransgender.tsx b/src/ssr/GenderTransgender.tsx new file mode 100644 index 000000000..989d7c9c2 --- /dev/null +++ b/src/ssr/GenderTransgender.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GenderTransgender"; + +export const GenderTransgender: Icon = forwardRef((props, ref) => ( + +)); + +GenderTransgender.displayName = "GenderTransgender"; diff --git a/src/ssr/Ghost.tsx b/src/ssr/Ghost.tsx new file mode 100644 index 000000000..8d281bd54 --- /dev/null +++ b/src/ssr/Ghost.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Ghost"; + +export const Ghost: Icon = forwardRef((props, ref) => ( + +)); + +Ghost.displayName = "Ghost"; diff --git a/src/ssr/Gif.tsx b/src/ssr/Gif.tsx new file mode 100644 index 000000000..db4160998 --- /dev/null +++ b/src/ssr/Gif.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Gif"; + +export const Gif: Icon = forwardRef((props, ref) => ( + +)); + +Gif.displayName = "Gif"; diff --git a/src/ssr/Gift.tsx b/src/ssr/Gift.tsx new file mode 100644 index 000000000..58a66b310 --- /dev/null +++ b/src/ssr/Gift.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Gift"; + +export const Gift: Icon = forwardRef((props, ref) => ( + +)); + +Gift.displayName = "Gift"; diff --git a/src/ssr/GitBranch.tsx b/src/ssr/GitBranch.tsx new file mode 100644 index 000000000..577a9d6cd --- /dev/null +++ b/src/ssr/GitBranch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitBranch"; + +export const GitBranch: Icon = forwardRef((props, ref) => ( + +)); + +GitBranch.displayName = "GitBranch"; diff --git a/src/ssr/GitCommit.tsx b/src/ssr/GitCommit.tsx new file mode 100644 index 000000000..068624222 --- /dev/null +++ b/src/ssr/GitCommit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitCommit"; + +export const GitCommit: Icon = forwardRef((props, ref) => ( + +)); + +GitCommit.displayName = "GitCommit"; diff --git a/src/ssr/GitDiff.tsx b/src/ssr/GitDiff.tsx new file mode 100644 index 000000000..f499189b3 --- /dev/null +++ b/src/ssr/GitDiff.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitDiff"; + +export const GitDiff: Icon = forwardRef((props, ref) => ( + +)); + +GitDiff.displayName = "GitDiff"; diff --git a/src/ssr/GitFork.tsx b/src/ssr/GitFork.tsx new file mode 100644 index 000000000..3234914db --- /dev/null +++ b/src/ssr/GitFork.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitFork"; + +export const GitFork: Icon = forwardRef((props, ref) => ( + +)); + +GitFork.displayName = "GitFork"; diff --git a/src/ssr/GitMerge.tsx b/src/ssr/GitMerge.tsx new file mode 100644 index 000000000..e87646e7e --- /dev/null +++ b/src/ssr/GitMerge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitMerge"; + +export const GitMerge: Icon = forwardRef((props, ref) => ( + +)); + +GitMerge.displayName = "GitMerge"; diff --git a/src/ssr/GitPullRequest.tsx b/src/ssr/GitPullRequest.tsx new file mode 100644 index 000000000..265bab137 --- /dev/null +++ b/src/ssr/GitPullRequest.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitPullRequest"; + +export const GitPullRequest: Icon = forwardRef((props, ref) => ( + +)); + +GitPullRequest.displayName = "GitPullRequest"; diff --git a/src/ssr/GithubLogo.tsx b/src/ssr/GithubLogo.tsx new file mode 100644 index 000000000..bb54cf987 --- /dev/null +++ b/src/ssr/GithubLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GithubLogo"; + +export const GithubLogo: Icon = forwardRef((props, ref) => ( + +)); + +GithubLogo.displayName = "GithubLogo"; diff --git a/src/ssr/GitlabLogo.tsx b/src/ssr/GitlabLogo.tsx new file mode 100644 index 000000000..052090eea --- /dev/null +++ b/src/ssr/GitlabLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitlabLogo"; + +export const GitlabLogo: Icon = forwardRef((props, ref) => ( + +)); + +GitlabLogo.displayName = "GitlabLogo"; diff --git a/src/ssr/GitlabLogoSimple.tsx b/src/ssr/GitlabLogoSimple.tsx new file mode 100644 index 000000000..54b28c89c --- /dev/null +++ b/src/ssr/GitlabLogoSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GitlabLogoSimple"; + +export const GitlabLogoSimple: Icon = forwardRef((props, ref) => ( + +)); + +GitlabLogoSimple.displayName = "GitlabLogoSimple"; diff --git a/src/ssr/Globe.tsx b/src/ssr/Globe.tsx new file mode 100644 index 000000000..752ed65b5 --- /dev/null +++ b/src/ssr/Globe.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Globe"; + +export const Globe: Icon = forwardRef((props, ref) => ( + +)); + +Globe.displayName = "Globe"; diff --git a/src/ssr/GlobeHemisphereEast.tsx b/src/ssr/GlobeHemisphereEast.tsx new file mode 100644 index 000000000..0d6330161 --- /dev/null +++ b/src/ssr/GlobeHemisphereEast.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GlobeHemisphereEast"; + +export const GlobeHemisphereEast: Icon = forwardRef((props, ref) => ( + +)); + +GlobeHemisphereEast.displayName = "GlobeHemisphereEast"; diff --git a/src/ssr/GlobeHemisphereWest.tsx b/src/ssr/GlobeHemisphereWest.tsx new file mode 100644 index 000000000..38419b24d --- /dev/null +++ b/src/ssr/GlobeHemisphereWest.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GlobeHemisphereWest"; + +export const GlobeHemisphereWest: Icon = forwardRef((props, ref) => ( + +)); + +GlobeHemisphereWest.displayName = "GlobeHemisphereWest"; diff --git a/src/ssr/GlobeSimple.tsx b/src/ssr/GlobeSimple.tsx new file mode 100644 index 000000000..9d0594e06 --- /dev/null +++ b/src/ssr/GlobeSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GlobeSimple"; + +export const GlobeSimple: Icon = forwardRef((props, ref) => ( + +)); + +GlobeSimple.displayName = "GlobeSimple"; diff --git a/src/ssr/GlobeStand.tsx b/src/ssr/GlobeStand.tsx new file mode 100644 index 000000000..050b2860c --- /dev/null +++ b/src/ssr/GlobeStand.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GlobeStand"; + +export const GlobeStand: Icon = forwardRef((props, ref) => ( + +)); + +GlobeStand.displayName = "GlobeStand"; diff --git a/src/ssr/Goggles.tsx b/src/ssr/Goggles.tsx new file mode 100644 index 000000000..615e18b15 --- /dev/null +++ b/src/ssr/Goggles.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Goggles"; + +export const Goggles: Icon = forwardRef((props, ref) => ( + +)); + +Goggles.displayName = "Goggles"; diff --git a/src/ssr/GoodreadsLogo.tsx b/src/ssr/GoodreadsLogo.tsx new file mode 100644 index 000000000..03018f78f --- /dev/null +++ b/src/ssr/GoodreadsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GoodreadsLogo"; + +export const GoodreadsLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoodreadsLogo.displayName = "GoodreadsLogo"; diff --git a/src/ssr/GoogleCardboardLogo.tsx b/src/ssr/GoogleCardboardLogo.tsx new file mode 100644 index 000000000..cd6886cfd --- /dev/null +++ b/src/ssr/GoogleCardboardLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GoogleCardboardLogo"; + +export const GoogleCardboardLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleCardboardLogo.displayName = "GoogleCardboardLogo"; diff --git a/src/ssr/GoogleChromeLogo.tsx b/src/ssr/GoogleChromeLogo.tsx new file mode 100644 index 000000000..4fe113158 --- /dev/null +++ b/src/ssr/GoogleChromeLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GoogleChromeLogo"; + +export const GoogleChromeLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleChromeLogo.displayName = "GoogleChromeLogo"; diff --git a/src/ssr/GoogleDriveLogo.tsx b/src/ssr/GoogleDriveLogo.tsx new file mode 100644 index 000000000..528e1adab --- /dev/null +++ b/src/ssr/GoogleDriveLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GoogleDriveLogo"; + +export const GoogleDriveLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleDriveLogo.displayName = "GoogleDriveLogo"; diff --git a/src/ssr/GoogleLogo.tsx b/src/ssr/GoogleLogo.tsx new file mode 100644 index 000000000..525656438 --- /dev/null +++ b/src/ssr/GoogleLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GoogleLogo"; + +export const GoogleLogo: Icon = forwardRef((props, ref) => ( + +)); + +GoogleLogo.displayName = "GoogleLogo"; diff --git a/src/ssr/GooglePhotosLogo.tsx b/src/ssr/GooglePhotosLogo.tsx new file mode 100644 index 000000000..7634cd63d --- /dev/null +++ b/src/ssr/GooglePhotosLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GooglePhotosLogo"; + +export const GooglePhotosLogo: Icon = forwardRef((props, ref) => ( + +)); + +GooglePhotosLogo.displayName = "GooglePhotosLogo"; diff --git a/src/ssr/GooglePlayLogo.tsx b/src/ssr/GooglePlayLogo.tsx new file mode 100644 index 000000000..3e6539876 --- /dev/null +++ b/src/ssr/GooglePlayLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GooglePlayLogo"; + +export const GooglePlayLogo: Icon = forwardRef((props, ref) => ( + +)); + +GooglePlayLogo.displayName = "GooglePlayLogo"; diff --git a/src/ssr/GooglePodcastsLogo.tsx b/src/ssr/GooglePodcastsLogo.tsx new file mode 100644 index 000000000..f059d06f7 --- /dev/null +++ b/src/ssr/GooglePodcastsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GooglePodcastsLogo"; + +export const GooglePodcastsLogo: Icon = forwardRef((props, ref) => ( + +)); + +GooglePodcastsLogo.displayName = "GooglePodcastsLogo"; diff --git a/src/ssr/Gradient.tsx b/src/ssr/Gradient.tsx new file mode 100644 index 000000000..8d03f180c --- /dev/null +++ b/src/ssr/Gradient.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Gradient"; + +export const Gradient: Icon = forwardRef((props, ref) => ( + +)); + +Gradient.displayName = "Gradient"; diff --git a/src/ssr/GraduationCap.tsx b/src/ssr/GraduationCap.tsx new file mode 100644 index 000000000..12d161ba4 --- /dev/null +++ b/src/ssr/GraduationCap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GraduationCap"; + +export const GraduationCap: Icon = forwardRef((props, ref) => ( + +)); + +GraduationCap.displayName = "GraduationCap"; diff --git a/src/ssr/Grains.tsx b/src/ssr/Grains.tsx new file mode 100644 index 000000000..0fe8666d8 --- /dev/null +++ b/src/ssr/Grains.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Grains"; + +export const Grains: Icon = forwardRef((props, ref) => ( + +)); + +Grains.displayName = "Grains"; diff --git a/src/ssr/GrainsSlash.tsx b/src/ssr/GrainsSlash.tsx new file mode 100644 index 000000000..77e97f07d --- /dev/null +++ b/src/ssr/GrainsSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GrainsSlash"; + +export const GrainsSlash: Icon = forwardRef((props, ref) => ( + +)); + +GrainsSlash.displayName = "GrainsSlash"; diff --git a/src/ssr/Graph.tsx b/src/ssr/Graph.tsx new file mode 100644 index 000000000..05f5eef4e --- /dev/null +++ b/src/ssr/Graph.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Graph"; + +export const Graph: Icon = forwardRef((props, ref) => ( + +)); + +Graph.displayName = "Graph"; diff --git a/src/ssr/GridFour.tsx b/src/ssr/GridFour.tsx new file mode 100644 index 000000000..04d62be51 --- /dev/null +++ b/src/ssr/GridFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GridFour"; + +export const GridFour: Icon = forwardRef((props, ref) => ( + +)); + +GridFour.displayName = "GridFour"; diff --git a/src/ssr/GridNine.tsx b/src/ssr/GridNine.tsx new file mode 100644 index 000000000..594ff5b35 --- /dev/null +++ b/src/ssr/GridNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/GridNine"; + +export const GridNine: Icon = forwardRef((props, ref) => ( + +)); + +GridNine.displayName = "GridNine"; diff --git a/src/ssr/Guitar.tsx b/src/ssr/Guitar.tsx new file mode 100644 index 000000000..bb6018838 --- /dev/null +++ b/src/ssr/Guitar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Guitar"; + +export const Guitar: Icon = forwardRef((props, ref) => ( + +)); + +Guitar.displayName = "Guitar"; diff --git a/src/ssr/Hamburger.tsx b/src/ssr/Hamburger.tsx new file mode 100644 index 000000000..e5f2211f7 --- /dev/null +++ b/src/ssr/Hamburger.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Hamburger"; + +export const Hamburger: Icon = forwardRef((props, ref) => ( + +)); + +Hamburger.displayName = "Hamburger"; diff --git a/src/ssr/Hammer.tsx b/src/ssr/Hammer.tsx new file mode 100644 index 000000000..ab6a0b92f --- /dev/null +++ b/src/ssr/Hammer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Hammer"; + +export const Hammer: Icon = forwardRef((props, ref) => ( + +)); + +Hammer.displayName = "Hammer"; diff --git a/src/ssr/Hand.tsx b/src/ssr/Hand.tsx new file mode 100644 index 000000000..e9a641bc5 --- /dev/null +++ b/src/ssr/Hand.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Hand"; + +export const Hand: Icon = forwardRef((props, ref) => ( + +)); + +Hand.displayName = "Hand"; diff --git a/src/ssr/HandCoins.tsx b/src/ssr/HandCoins.tsx new file mode 100644 index 000000000..f00f69bf1 --- /dev/null +++ b/src/ssr/HandCoins.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandCoins"; + +export const HandCoins: Icon = forwardRef((props, ref) => ( + +)); + +HandCoins.displayName = "HandCoins"; diff --git a/src/ssr/HandEye.tsx b/src/ssr/HandEye.tsx new file mode 100644 index 000000000..e7eeeeb1f --- /dev/null +++ b/src/ssr/HandEye.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandEye"; + +export const HandEye: Icon = forwardRef((props, ref) => ( + +)); + +HandEye.displayName = "HandEye"; diff --git a/src/ssr/HandFist.tsx b/src/ssr/HandFist.tsx new file mode 100644 index 000000000..59ac54b47 --- /dev/null +++ b/src/ssr/HandFist.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandFist"; + +export const HandFist: Icon = forwardRef((props, ref) => ( + +)); + +HandFist.displayName = "HandFist"; diff --git a/src/ssr/HandGrabbing.tsx b/src/ssr/HandGrabbing.tsx new file mode 100644 index 000000000..31c5b78ec --- /dev/null +++ b/src/ssr/HandGrabbing.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandGrabbing"; + +export const HandGrabbing: Icon = forwardRef((props, ref) => ( + +)); + +HandGrabbing.displayName = "HandGrabbing"; diff --git a/src/ssr/HandHeart.tsx b/src/ssr/HandHeart.tsx new file mode 100644 index 000000000..f91afc3f5 --- /dev/null +++ b/src/ssr/HandHeart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandHeart"; + +export const HandHeart: Icon = forwardRef((props, ref) => ( + +)); + +HandHeart.displayName = "HandHeart"; diff --git a/src/ssr/HandPalm.tsx b/src/ssr/HandPalm.tsx new file mode 100644 index 000000000..2db154f40 --- /dev/null +++ b/src/ssr/HandPalm.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandPalm"; + +export const HandPalm: Icon = forwardRef((props, ref) => ( + +)); + +HandPalm.displayName = "HandPalm"; diff --git a/src/ssr/HandPointing.tsx b/src/ssr/HandPointing.tsx new file mode 100644 index 000000000..cdacd682e --- /dev/null +++ b/src/ssr/HandPointing.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandPointing"; + +export const HandPointing: Icon = forwardRef((props, ref) => ( + +)); + +HandPointing.displayName = "HandPointing"; diff --git a/src/ssr/HandSoap.tsx b/src/ssr/HandSoap.tsx new file mode 100644 index 000000000..57ded67ea --- /dev/null +++ b/src/ssr/HandSoap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandSoap"; + +export const HandSoap: Icon = forwardRef((props, ref) => ( + +)); + +HandSoap.displayName = "HandSoap"; diff --git a/src/ssr/HandSwipeLeft.tsx b/src/ssr/HandSwipeLeft.tsx new file mode 100644 index 000000000..32010485f --- /dev/null +++ b/src/ssr/HandSwipeLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandSwipeLeft"; + +export const HandSwipeLeft: Icon = forwardRef((props, ref) => ( + +)); + +HandSwipeLeft.displayName = "HandSwipeLeft"; diff --git a/src/ssr/HandSwipeRight.tsx b/src/ssr/HandSwipeRight.tsx new file mode 100644 index 000000000..19c5d9296 --- /dev/null +++ b/src/ssr/HandSwipeRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandSwipeRight"; + +export const HandSwipeRight: Icon = forwardRef((props, ref) => ( + +)); + +HandSwipeRight.displayName = "HandSwipeRight"; diff --git a/src/ssr/HandTap.tsx b/src/ssr/HandTap.tsx new file mode 100644 index 000000000..281ef6f75 --- /dev/null +++ b/src/ssr/HandTap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandTap"; + +export const HandTap: Icon = forwardRef((props, ref) => ( + +)); + +HandTap.displayName = "HandTap"; diff --git a/src/ssr/HandWaving.tsx b/src/ssr/HandWaving.tsx new file mode 100644 index 000000000..6ea1a1a2c --- /dev/null +++ b/src/ssr/HandWaving.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandWaving"; + +export const HandWaving: Icon = forwardRef((props, ref) => ( + +)); + +HandWaving.displayName = "HandWaving"; diff --git a/src/ssr/Handbag.tsx b/src/ssr/Handbag.tsx new file mode 100644 index 000000000..b0b9e43cb --- /dev/null +++ b/src/ssr/Handbag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Handbag"; + +export const Handbag: Icon = forwardRef((props, ref) => ( + +)); + +Handbag.displayName = "Handbag"; diff --git a/src/ssr/HandbagSimple.tsx b/src/ssr/HandbagSimple.tsx new file mode 100644 index 000000000..0e8e1fd96 --- /dev/null +++ b/src/ssr/HandbagSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandbagSimple"; + +export const HandbagSimple: Icon = forwardRef((props, ref) => ( + +)); + +HandbagSimple.displayName = "HandbagSimple"; diff --git a/src/ssr/HandsClapping.tsx b/src/ssr/HandsClapping.tsx new file mode 100644 index 000000000..e20202280 --- /dev/null +++ b/src/ssr/HandsClapping.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandsClapping"; + +export const HandsClapping: Icon = forwardRef((props, ref) => ( + +)); + +HandsClapping.displayName = "HandsClapping"; diff --git a/src/ssr/HandsPraying.tsx b/src/ssr/HandsPraying.tsx new file mode 100644 index 000000000..a93922983 --- /dev/null +++ b/src/ssr/HandsPraying.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HandsPraying"; + +export const HandsPraying: Icon = forwardRef((props, ref) => ( + +)); + +HandsPraying.displayName = "HandsPraying"; diff --git a/src/ssr/Handshake.tsx b/src/ssr/Handshake.tsx new file mode 100644 index 000000000..f5ba64e60 --- /dev/null +++ b/src/ssr/Handshake.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Handshake"; + +export const Handshake: Icon = forwardRef((props, ref) => ( + +)); + +Handshake.displayName = "Handshake"; diff --git a/src/ssr/HardDrive.tsx b/src/ssr/HardDrive.tsx new file mode 100644 index 000000000..8e4b96231 --- /dev/null +++ b/src/ssr/HardDrive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HardDrive"; + +export const HardDrive: Icon = forwardRef((props, ref) => ( + +)); + +HardDrive.displayName = "HardDrive"; diff --git a/src/ssr/HardDrives.tsx b/src/ssr/HardDrives.tsx new file mode 100644 index 000000000..e116030a9 --- /dev/null +++ b/src/ssr/HardDrives.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HardDrives"; + +export const HardDrives: Icon = forwardRef((props, ref) => ( + +)); + +HardDrives.displayName = "HardDrives"; diff --git a/src/ssr/Hash.tsx b/src/ssr/Hash.tsx new file mode 100644 index 000000000..2f9b97dd2 --- /dev/null +++ b/src/ssr/Hash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Hash"; + +export const Hash: Icon = forwardRef((props, ref) => ( + +)); + +Hash.displayName = "Hash"; diff --git a/src/ssr/HashStraight.tsx b/src/ssr/HashStraight.tsx new file mode 100644 index 000000000..3fc148988 --- /dev/null +++ b/src/ssr/HashStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HashStraight"; + +export const HashStraight: Icon = forwardRef((props, ref) => ( + +)); + +HashStraight.displayName = "HashStraight"; diff --git a/src/ssr/Headlights.tsx b/src/ssr/Headlights.tsx new file mode 100644 index 000000000..abf782fcd --- /dev/null +++ b/src/ssr/Headlights.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Headlights"; + +export const Headlights: Icon = forwardRef((props, ref) => ( + +)); + +Headlights.displayName = "Headlights"; diff --git a/src/ssr/Headphones.tsx b/src/ssr/Headphones.tsx new file mode 100644 index 000000000..7529d84f1 --- /dev/null +++ b/src/ssr/Headphones.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Headphones"; + +export const Headphones: Icon = forwardRef((props, ref) => ( + +)); + +Headphones.displayName = "Headphones"; diff --git a/src/ssr/Headset.tsx b/src/ssr/Headset.tsx new file mode 100644 index 000000000..7ef365e4a --- /dev/null +++ b/src/ssr/Headset.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Headset"; + +export const Headset: Icon = forwardRef((props, ref) => ( + +)); + +Headset.displayName = "Headset"; diff --git a/src/ssr/Heart.tsx b/src/ssr/Heart.tsx new file mode 100644 index 000000000..04d50a761 --- /dev/null +++ b/src/ssr/Heart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Heart"; + +export const Heart: Icon = forwardRef((props, ref) => ( + +)); + +Heart.displayName = "Heart"; diff --git a/src/ssr/HeartBreak.tsx b/src/ssr/HeartBreak.tsx new file mode 100644 index 000000000..9702ec5a8 --- /dev/null +++ b/src/ssr/HeartBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HeartBreak"; + +export const HeartBreak: Icon = forwardRef((props, ref) => ( + +)); + +HeartBreak.displayName = "HeartBreak"; diff --git a/src/ssr/HeartHalf.tsx b/src/ssr/HeartHalf.tsx new file mode 100644 index 000000000..117ff5009 --- /dev/null +++ b/src/ssr/HeartHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HeartHalf"; + +export const HeartHalf: Icon = forwardRef((props, ref) => ( + +)); + +HeartHalf.displayName = "HeartHalf"; diff --git a/src/ssr/HeartStraight.tsx b/src/ssr/HeartStraight.tsx new file mode 100644 index 000000000..c8aec1417 --- /dev/null +++ b/src/ssr/HeartStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HeartStraight"; + +export const HeartStraight: Icon = forwardRef((props, ref) => ( + +)); + +HeartStraight.displayName = "HeartStraight"; diff --git a/src/ssr/HeartStraightBreak.tsx b/src/ssr/HeartStraightBreak.tsx new file mode 100644 index 000000000..31111fb18 --- /dev/null +++ b/src/ssr/HeartStraightBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HeartStraightBreak"; + +export const HeartStraightBreak: Icon = forwardRef((props, ref) => ( + +)); + +HeartStraightBreak.displayName = "HeartStraightBreak"; diff --git a/src/ssr/Heartbeat.tsx b/src/ssr/Heartbeat.tsx new file mode 100644 index 000000000..143f8ae29 --- /dev/null +++ b/src/ssr/Heartbeat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Heartbeat"; + +export const Heartbeat: Icon = forwardRef((props, ref) => ( + +)); + +Heartbeat.displayName = "Heartbeat"; diff --git a/src/ssr/Hexagon.tsx b/src/ssr/Hexagon.tsx new file mode 100644 index 000000000..df3cc0b41 --- /dev/null +++ b/src/ssr/Hexagon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Hexagon"; + +export const Hexagon: Icon = forwardRef((props, ref) => ( + +)); + +Hexagon.displayName = "Hexagon"; diff --git a/src/ssr/HighHeel.tsx b/src/ssr/HighHeel.tsx new file mode 100644 index 000000000..d0c4e7d07 --- /dev/null +++ b/src/ssr/HighHeel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HighHeel"; + +export const HighHeel: Icon = forwardRef((props, ref) => ( + +)); + +HighHeel.displayName = "HighHeel"; diff --git a/src/ssr/HighlighterCircle.tsx b/src/ssr/HighlighterCircle.tsx new file mode 100644 index 000000000..278ac9c40 --- /dev/null +++ b/src/ssr/HighlighterCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HighlighterCircle"; + +export const HighlighterCircle: Icon = forwardRef((props, ref) => ( + +)); + +HighlighterCircle.displayName = "HighlighterCircle"; diff --git a/src/ssr/Hoodie.tsx b/src/ssr/Hoodie.tsx new file mode 100644 index 000000000..e150c596e --- /dev/null +++ b/src/ssr/Hoodie.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Hoodie"; + +export const Hoodie: Icon = forwardRef((props, ref) => ( + +)); + +Hoodie.displayName = "Hoodie"; diff --git a/src/ssr/Horse.tsx b/src/ssr/Horse.tsx new file mode 100644 index 000000000..5877ad3e2 --- /dev/null +++ b/src/ssr/Horse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Horse"; + +export const Horse: Icon = forwardRef((props, ref) => ( + +)); + +Horse.displayName = "Horse"; diff --git a/src/ssr/Hourglass.tsx b/src/ssr/Hourglass.tsx new file mode 100644 index 000000000..486e35704 --- /dev/null +++ b/src/ssr/Hourglass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Hourglass"; + +export const Hourglass: Icon = forwardRef((props, ref) => ( + +)); + +Hourglass.displayName = "Hourglass"; diff --git a/src/ssr/HourglassHigh.tsx b/src/ssr/HourglassHigh.tsx new file mode 100644 index 000000000..b5b901ac8 --- /dev/null +++ b/src/ssr/HourglassHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HourglassHigh"; + +export const HourglassHigh: Icon = forwardRef((props, ref) => ( + +)); + +HourglassHigh.displayName = "HourglassHigh"; diff --git a/src/ssr/HourglassLow.tsx b/src/ssr/HourglassLow.tsx new file mode 100644 index 000000000..a87a50282 --- /dev/null +++ b/src/ssr/HourglassLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HourglassLow"; + +export const HourglassLow: Icon = forwardRef((props, ref) => ( + +)); + +HourglassLow.displayName = "HourglassLow"; diff --git a/src/ssr/HourglassMedium.tsx b/src/ssr/HourglassMedium.tsx new file mode 100644 index 000000000..8a858175c --- /dev/null +++ b/src/ssr/HourglassMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HourglassMedium"; + +export const HourglassMedium: Icon = forwardRef((props, ref) => ( + +)); + +HourglassMedium.displayName = "HourglassMedium"; diff --git a/src/ssr/HourglassSimple.tsx b/src/ssr/HourglassSimple.tsx new file mode 100644 index 000000000..0e938c3b8 --- /dev/null +++ b/src/ssr/HourglassSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HourglassSimple"; + +export const HourglassSimple: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimple.displayName = "HourglassSimple"; diff --git a/src/ssr/HourglassSimpleHigh.tsx b/src/ssr/HourglassSimpleHigh.tsx new file mode 100644 index 000000000..f8443396f --- /dev/null +++ b/src/ssr/HourglassSimpleHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HourglassSimpleHigh"; + +export const HourglassSimpleHigh: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimpleHigh.displayName = "HourglassSimpleHigh"; diff --git a/src/ssr/HourglassSimpleLow.tsx b/src/ssr/HourglassSimpleLow.tsx new file mode 100644 index 000000000..2b7ad44e8 --- /dev/null +++ b/src/ssr/HourglassSimpleLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HourglassSimpleLow"; + +export const HourglassSimpleLow: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimpleLow.displayName = "HourglassSimpleLow"; diff --git a/src/ssr/HourglassSimpleMedium.tsx b/src/ssr/HourglassSimpleMedium.tsx new file mode 100644 index 000000000..14e9bd2ad --- /dev/null +++ b/src/ssr/HourglassSimpleMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HourglassSimpleMedium"; + +export const HourglassSimpleMedium: Icon = forwardRef((props, ref) => ( + +)); + +HourglassSimpleMedium.displayName = "HourglassSimpleMedium"; diff --git a/src/ssr/House.tsx b/src/ssr/House.tsx new file mode 100644 index 000000000..7b103ef69 --- /dev/null +++ b/src/ssr/House.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/House"; + +export const House: Icon = forwardRef((props, ref) => ( + +)); + +House.displayName = "House"; diff --git a/src/ssr/HouseLine.tsx b/src/ssr/HouseLine.tsx new file mode 100644 index 000000000..fbcd244e1 --- /dev/null +++ b/src/ssr/HouseLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HouseLine"; + +export const HouseLine: Icon = forwardRef((props, ref) => ( + +)); + +HouseLine.displayName = "HouseLine"; diff --git a/src/ssr/HouseSimple.tsx b/src/ssr/HouseSimple.tsx new file mode 100644 index 000000000..dbaab2b6c --- /dev/null +++ b/src/ssr/HouseSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/HouseSimple"; + +export const HouseSimple: Icon = forwardRef((props, ref) => ( + +)); + +HouseSimple.displayName = "HouseSimple"; diff --git a/src/ssr/IceCream.tsx b/src/ssr/IceCream.tsx new file mode 100644 index 000000000..5702d70f7 --- /dev/null +++ b/src/ssr/IceCream.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/IceCream"; + +export const IceCream: Icon = forwardRef((props, ref) => ( + +)); + +IceCream.displayName = "IceCream"; diff --git a/src/ssr/IdentificationBadge.tsx b/src/ssr/IdentificationBadge.tsx new file mode 100644 index 000000000..518bd9ade --- /dev/null +++ b/src/ssr/IdentificationBadge.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/IdentificationBadge"; + +export const IdentificationBadge: Icon = forwardRef((props, ref) => ( + +)); + +IdentificationBadge.displayName = "IdentificationBadge"; diff --git a/src/ssr/IdentificationCard.tsx b/src/ssr/IdentificationCard.tsx new file mode 100644 index 000000000..b252e855e --- /dev/null +++ b/src/ssr/IdentificationCard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/IdentificationCard"; + +export const IdentificationCard: Icon = forwardRef((props, ref) => ( + +)); + +IdentificationCard.displayName = "IdentificationCard"; diff --git a/src/ssr/Image.tsx b/src/ssr/Image.tsx new file mode 100644 index 000000000..518f694d5 --- /dev/null +++ b/src/ssr/Image.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Image"; + +export const Image: Icon = forwardRef((props, ref) => ( + +)); + +Image.displayName = "Image"; diff --git a/src/ssr/ImageSquare.tsx b/src/ssr/ImageSquare.tsx new file mode 100644 index 000000000..b04f0c877 --- /dev/null +++ b/src/ssr/ImageSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ImageSquare"; + +export const ImageSquare: Icon = forwardRef((props, ref) => ( + +)); + +ImageSquare.displayName = "ImageSquare"; diff --git a/src/ssr/Images.tsx b/src/ssr/Images.tsx new file mode 100644 index 000000000..bc2d83e63 --- /dev/null +++ b/src/ssr/Images.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Images"; + +export const Images: Icon = forwardRef((props, ref) => ( + +)); + +Images.displayName = "Images"; diff --git a/src/ssr/ImagesSquare.tsx b/src/ssr/ImagesSquare.tsx new file mode 100644 index 000000000..42cec5e52 --- /dev/null +++ b/src/ssr/ImagesSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ImagesSquare"; + +export const ImagesSquare: Icon = forwardRef((props, ref) => ( + +)); + +ImagesSquare.displayName = "ImagesSquare"; diff --git a/src/ssr/Infinity.tsx b/src/ssr/Infinity.tsx new file mode 100644 index 000000000..e09d4f743 --- /dev/null +++ b/src/ssr/Infinity.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Infinity"; + +export const Infinity: Icon = forwardRef((props, ref) => ( + +)); + +Infinity.displayName = "Infinity"; diff --git a/src/ssr/Info.tsx b/src/ssr/Info.tsx new file mode 100644 index 000000000..4754e6f2a --- /dev/null +++ b/src/ssr/Info.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Info"; + +export const Info: Icon = forwardRef((props, ref) => ( + +)); + +Info.displayName = "Info"; diff --git a/src/ssr/InstagramLogo.tsx b/src/ssr/InstagramLogo.tsx new file mode 100644 index 000000000..3da99086a --- /dev/null +++ b/src/ssr/InstagramLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/InstagramLogo"; + +export const InstagramLogo: Icon = forwardRef((props, ref) => ( + +)); + +InstagramLogo.displayName = "InstagramLogo"; diff --git a/src/ssr/Intersect.tsx b/src/ssr/Intersect.tsx new file mode 100644 index 000000000..b9debc7d9 --- /dev/null +++ b/src/ssr/Intersect.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Intersect"; + +export const Intersect: Icon = forwardRef((props, ref) => ( + +)); + +Intersect.displayName = "Intersect"; diff --git a/src/ssr/IntersectSquare.tsx b/src/ssr/IntersectSquare.tsx new file mode 100644 index 000000000..b18de92aa --- /dev/null +++ b/src/ssr/IntersectSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/IntersectSquare"; + +export const IntersectSquare: Icon = forwardRef((props, ref) => ( + +)); + +IntersectSquare.displayName = "IntersectSquare"; diff --git a/src/ssr/IntersectThree.tsx b/src/ssr/IntersectThree.tsx new file mode 100644 index 000000000..7032b422a --- /dev/null +++ b/src/ssr/IntersectThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/IntersectThree"; + +export const IntersectThree: Icon = forwardRef((props, ref) => ( + +)); + +IntersectThree.displayName = "IntersectThree"; diff --git a/src/ssr/Jeep.tsx b/src/ssr/Jeep.tsx new file mode 100644 index 000000000..efb4af8e1 --- /dev/null +++ b/src/ssr/Jeep.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Jeep"; + +export const Jeep: Icon = forwardRef((props, ref) => ( + +)); + +Jeep.displayName = "Jeep"; diff --git a/src/ssr/Kanban.tsx b/src/ssr/Kanban.tsx new file mode 100644 index 000000000..e9f62367e --- /dev/null +++ b/src/ssr/Kanban.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Kanban"; + +export const Kanban: Icon = forwardRef((props, ref) => ( + +)); + +Kanban.displayName = "Kanban"; diff --git a/src/ssr/Key.tsx b/src/ssr/Key.tsx new file mode 100644 index 000000000..83ec4ed1e --- /dev/null +++ b/src/ssr/Key.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Key"; + +export const Key: Icon = forwardRef((props, ref) => ( + +)); + +Key.displayName = "Key"; diff --git a/src/ssr/KeyReturn.tsx b/src/ssr/KeyReturn.tsx new file mode 100644 index 000000000..e1ed5b3aa --- /dev/null +++ b/src/ssr/KeyReturn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/KeyReturn"; + +export const KeyReturn: Icon = forwardRef((props, ref) => ( + +)); + +KeyReturn.displayName = "KeyReturn"; diff --git a/src/ssr/Keyboard.tsx b/src/ssr/Keyboard.tsx new file mode 100644 index 000000000..eab778406 --- /dev/null +++ b/src/ssr/Keyboard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Keyboard"; + +export const Keyboard: Icon = forwardRef((props, ref) => ( + +)); + +Keyboard.displayName = "Keyboard"; diff --git a/src/ssr/Keyhole.tsx b/src/ssr/Keyhole.tsx new file mode 100644 index 000000000..e1ad53663 --- /dev/null +++ b/src/ssr/Keyhole.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Keyhole"; + +export const Keyhole: Icon = forwardRef((props, ref) => ( + +)); + +Keyhole.displayName = "Keyhole"; diff --git a/src/ssr/Knife.tsx b/src/ssr/Knife.tsx new file mode 100644 index 000000000..4a911c97a --- /dev/null +++ b/src/ssr/Knife.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Knife"; + +export const Knife: Icon = forwardRef((props, ref) => ( + +)); + +Knife.displayName = "Knife"; diff --git a/src/ssr/Ladder.tsx b/src/ssr/Ladder.tsx new file mode 100644 index 000000000..d4be1e59d --- /dev/null +++ b/src/ssr/Ladder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Ladder"; + +export const Ladder: Icon = forwardRef((props, ref) => ( + +)); + +Ladder.displayName = "Ladder"; diff --git a/src/ssr/LadderSimple.tsx b/src/ssr/LadderSimple.tsx new file mode 100644 index 000000000..6c6d3ce34 --- /dev/null +++ b/src/ssr/LadderSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LadderSimple"; + +export const LadderSimple: Icon = forwardRef((props, ref) => ( + +)); + +LadderSimple.displayName = "LadderSimple"; diff --git a/src/ssr/Lamp.tsx b/src/ssr/Lamp.tsx new file mode 100644 index 000000000..01fa335ca --- /dev/null +++ b/src/ssr/Lamp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Lamp"; + +export const Lamp: Icon = forwardRef((props, ref) => ( + +)); + +Lamp.displayName = "Lamp"; diff --git a/src/ssr/Laptop.tsx b/src/ssr/Laptop.tsx new file mode 100644 index 000000000..0490b8cb9 --- /dev/null +++ b/src/ssr/Laptop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Laptop"; + +export const Laptop: Icon = forwardRef((props, ref) => ( + +)); + +Laptop.displayName = "Laptop"; diff --git a/src/ssr/Layout.tsx b/src/ssr/Layout.tsx new file mode 100644 index 000000000..133738075 --- /dev/null +++ b/src/ssr/Layout.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Layout"; + +export const Layout: Icon = forwardRef((props, ref) => ( + +)); + +Layout.displayName = "Layout"; diff --git a/src/ssr/Leaf.tsx b/src/ssr/Leaf.tsx new file mode 100644 index 000000000..35c991735 --- /dev/null +++ b/src/ssr/Leaf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Leaf"; + +export const Leaf: Icon = forwardRef((props, ref) => ( + +)); + +Leaf.displayName = "Leaf"; diff --git a/src/ssr/Lifebuoy.tsx b/src/ssr/Lifebuoy.tsx new file mode 100644 index 000000000..c2d1d73f0 --- /dev/null +++ b/src/ssr/Lifebuoy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Lifebuoy"; + +export const Lifebuoy: Icon = forwardRef((props, ref) => ( + +)); + +Lifebuoy.displayName = "Lifebuoy"; diff --git a/src/ssr/Lightbulb.tsx b/src/ssr/Lightbulb.tsx new file mode 100644 index 000000000..c89b9c0cd --- /dev/null +++ b/src/ssr/Lightbulb.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Lightbulb"; + +export const Lightbulb: Icon = forwardRef((props, ref) => ( + +)); + +Lightbulb.displayName = "Lightbulb"; diff --git a/src/ssr/LightbulbFilament.tsx b/src/ssr/LightbulbFilament.tsx new file mode 100644 index 000000000..71134026c --- /dev/null +++ b/src/ssr/LightbulbFilament.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LightbulbFilament"; + +export const LightbulbFilament: Icon = forwardRef((props, ref) => ( + +)); + +LightbulbFilament.displayName = "LightbulbFilament"; diff --git a/src/ssr/Lighthouse.tsx b/src/ssr/Lighthouse.tsx new file mode 100644 index 000000000..8b15355c0 --- /dev/null +++ b/src/ssr/Lighthouse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Lighthouse"; + +export const Lighthouse: Icon = forwardRef((props, ref) => ( + +)); + +Lighthouse.displayName = "Lighthouse"; diff --git a/src/ssr/Lightning.tsx b/src/ssr/Lightning.tsx new file mode 100644 index 000000000..201f480d0 --- /dev/null +++ b/src/ssr/Lightning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Lightning"; + +export const Lightning: Icon = forwardRef((props, ref) => ( + +)); + +Lightning.displayName = "Lightning"; diff --git a/src/ssr/LightningA.tsx b/src/ssr/LightningA.tsx new file mode 100644 index 000000000..bb3ecb794 --- /dev/null +++ b/src/ssr/LightningA.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LightningA"; + +export const LightningA: Icon = forwardRef((props, ref) => ( + +)); + +LightningA.displayName = "LightningA"; diff --git a/src/ssr/LightningSlash.tsx b/src/ssr/LightningSlash.tsx new file mode 100644 index 000000000..d9d20efcd --- /dev/null +++ b/src/ssr/LightningSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LightningSlash"; + +export const LightningSlash: Icon = forwardRef((props, ref) => ( + +)); + +LightningSlash.displayName = "LightningSlash"; diff --git a/src/ssr/LineSegment.tsx b/src/ssr/LineSegment.tsx new file mode 100644 index 000000000..fb88dc075 --- /dev/null +++ b/src/ssr/LineSegment.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LineSegment"; + +export const LineSegment: Icon = forwardRef((props, ref) => ( + +)); + +LineSegment.displayName = "LineSegment"; diff --git a/src/ssr/LineSegments.tsx b/src/ssr/LineSegments.tsx new file mode 100644 index 000000000..84438012b --- /dev/null +++ b/src/ssr/LineSegments.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LineSegments"; + +export const LineSegments: Icon = forwardRef((props, ref) => ( + +)); + +LineSegments.displayName = "LineSegments"; diff --git a/src/ssr/Link.tsx b/src/ssr/Link.tsx new file mode 100644 index 000000000..6f29e6de7 --- /dev/null +++ b/src/ssr/Link.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Link"; + +export const Link: Icon = forwardRef((props, ref) => ( + +)); + +Link.displayName = "Link"; diff --git a/src/ssr/LinkBreak.tsx b/src/ssr/LinkBreak.tsx new file mode 100644 index 000000000..91646bfd2 --- /dev/null +++ b/src/ssr/LinkBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LinkBreak"; + +export const LinkBreak: Icon = forwardRef((props, ref) => ( + +)); + +LinkBreak.displayName = "LinkBreak"; diff --git a/src/ssr/LinkSimple.tsx b/src/ssr/LinkSimple.tsx new file mode 100644 index 000000000..6eb23fb76 --- /dev/null +++ b/src/ssr/LinkSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LinkSimple"; + +export const LinkSimple: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimple.displayName = "LinkSimple"; diff --git a/src/ssr/LinkSimpleBreak.tsx b/src/ssr/LinkSimpleBreak.tsx new file mode 100644 index 000000000..7af455442 --- /dev/null +++ b/src/ssr/LinkSimpleBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LinkSimpleBreak"; + +export const LinkSimpleBreak: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimpleBreak.displayName = "LinkSimpleBreak"; diff --git a/src/ssr/LinkSimpleHorizontal.tsx b/src/ssr/LinkSimpleHorizontal.tsx new file mode 100644 index 000000000..d01287758 --- /dev/null +++ b/src/ssr/LinkSimpleHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LinkSimpleHorizontal"; + +export const LinkSimpleHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimpleHorizontal.displayName = "LinkSimpleHorizontal"; diff --git a/src/ssr/LinkSimpleHorizontalBreak.tsx b/src/ssr/LinkSimpleHorizontalBreak.tsx new file mode 100644 index 000000000..ab53f0898 --- /dev/null +++ b/src/ssr/LinkSimpleHorizontalBreak.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LinkSimpleHorizontalBreak"; + +export const LinkSimpleHorizontalBreak: Icon = forwardRef((props, ref) => ( + +)); + +LinkSimpleHorizontalBreak.displayName = "LinkSimpleHorizontalBreak"; diff --git a/src/ssr/LinkedinLogo.tsx b/src/ssr/LinkedinLogo.tsx new file mode 100644 index 000000000..dc221cbcd --- /dev/null +++ b/src/ssr/LinkedinLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LinkedinLogo"; + +export const LinkedinLogo: Icon = forwardRef((props, ref) => ( + +)); + +LinkedinLogo.displayName = "LinkedinLogo"; diff --git a/src/ssr/LinuxLogo.tsx b/src/ssr/LinuxLogo.tsx new file mode 100644 index 000000000..f90fd94aa --- /dev/null +++ b/src/ssr/LinuxLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LinuxLogo"; + +export const LinuxLogo: Icon = forwardRef((props, ref) => ( + +)); + +LinuxLogo.displayName = "LinuxLogo"; diff --git a/src/ssr/List.tsx b/src/ssr/List.tsx new file mode 100644 index 000000000..fbe65d25e --- /dev/null +++ b/src/ssr/List.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/List"; + +export const List: Icon = forwardRef((props, ref) => ( + +)); + +List.displayName = "List"; diff --git a/src/ssr/ListBullets.tsx b/src/ssr/ListBullets.tsx new file mode 100644 index 000000000..37c81cce2 --- /dev/null +++ b/src/ssr/ListBullets.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ListBullets"; + +export const ListBullets: Icon = forwardRef((props, ref) => ( + +)); + +ListBullets.displayName = "ListBullets"; diff --git a/src/ssr/ListChecks.tsx b/src/ssr/ListChecks.tsx new file mode 100644 index 000000000..730d49557 --- /dev/null +++ b/src/ssr/ListChecks.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ListChecks"; + +export const ListChecks: Icon = forwardRef((props, ref) => ( + +)); + +ListChecks.displayName = "ListChecks"; diff --git a/src/ssr/ListDashes.tsx b/src/ssr/ListDashes.tsx new file mode 100644 index 000000000..f70369f6a --- /dev/null +++ b/src/ssr/ListDashes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ListDashes"; + +export const ListDashes: Icon = forwardRef((props, ref) => ( + +)); + +ListDashes.displayName = "ListDashes"; diff --git a/src/ssr/ListMagnifyingGlass.tsx b/src/ssr/ListMagnifyingGlass.tsx new file mode 100644 index 000000000..322b8fece --- /dev/null +++ b/src/ssr/ListMagnifyingGlass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ListMagnifyingGlass"; + +export const ListMagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +ListMagnifyingGlass.displayName = "ListMagnifyingGlass"; diff --git a/src/ssr/ListNumbers.tsx b/src/ssr/ListNumbers.tsx new file mode 100644 index 000000000..8ea34c1e5 --- /dev/null +++ b/src/ssr/ListNumbers.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ListNumbers"; + +export const ListNumbers: Icon = forwardRef((props, ref) => ( + +)); + +ListNumbers.displayName = "ListNumbers"; diff --git a/src/ssr/ListPlus.tsx b/src/ssr/ListPlus.tsx new file mode 100644 index 000000000..b242722f6 --- /dev/null +++ b/src/ssr/ListPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ListPlus"; + +export const ListPlus: Icon = forwardRef((props, ref) => ( + +)); + +ListPlus.displayName = "ListPlus"; diff --git a/src/ssr/Lock.tsx b/src/ssr/Lock.tsx new file mode 100644 index 000000000..755dca7f3 --- /dev/null +++ b/src/ssr/Lock.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Lock"; + +export const Lock: Icon = forwardRef((props, ref) => ( + +)); + +Lock.displayName = "Lock"; diff --git a/src/ssr/LockKey.tsx b/src/ssr/LockKey.tsx new file mode 100644 index 000000000..a909af691 --- /dev/null +++ b/src/ssr/LockKey.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LockKey"; + +export const LockKey: Icon = forwardRef((props, ref) => ( + +)); + +LockKey.displayName = "LockKey"; diff --git a/src/ssr/LockKeyOpen.tsx b/src/ssr/LockKeyOpen.tsx new file mode 100644 index 000000000..0deabd07a --- /dev/null +++ b/src/ssr/LockKeyOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LockKeyOpen"; + +export const LockKeyOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockKeyOpen.displayName = "LockKeyOpen"; diff --git a/src/ssr/LockLaminated.tsx b/src/ssr/LockLaminated.tsx new file mode 100644 index 000000000..24a6c6cc4 --- /dev/null +++ b/src/ssr/LockLaminated.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LockLaminated"; + +export const LockLaminated: Icon = forwardRef((props, ref) => ( + +)); + +LockLaminated.displayName = "LockLaminated"; diff --git a/src/ssr/LockLaminatedOpen.tsx b/src/ssr/LockLaminatedOpen.tsx new file mode 100644 index 000000000..d903bad2d --- /dev/null +++ b/src/ssr/LockLaminatedOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LockLaminatedOpen"; + +export const LockLaminatedOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockLaminatedOpen.displayName = "LockLaminatedOpen"; diff --git a/src/ssr/LockOpen.tsx b/src/ssr/LockOpen.tsx new file mode 100644 index 000000000..1e26f6970 --- /dev/null +++ b/src/ssr/LockOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LockOpen"; + +export const LockOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockOpen.displayName = "LockOpen"; diff --git a/src/ssr/LockSimple.tsx b/src/ssr/LockSimple.tsx new file mode 100644 index 000000000..53730b44a --- /dev/null +++ b/src/ssr/LockSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LockSimple"; + +export const LockSimple: Icon = forwardRef((props, ref) => ( + +)); + +LockSimple.displayName = "LockSimple"; diff --git a/src/ssr/LockSimpleOpen.tsx b/src/ssr/LockSimpleOpen.tsx new file mode 100644 index 000000000..bc3e24f60 --- /dev/null +++ b/src/ssr/LockSimpleOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/LockSimpleOpen"; + +export const LockSimpleOpen: Icon = forwardRef((props, ref) => ( + +)); + +LockSimpleOpen.displayName = "LockSimpleOpen"; diff --git a/src/ssr/Lockers.tsx b/src/ssr/Lockers.tsx new file mode 100644 index 000000000..eb1326813 --- /dev/null +++ b/src/ssr/Lockers.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Lockers"; + +export const Lockers: Icon = forwardRef((props, ref) => ( + +)); + +Lockers.displayName = "Lockers"; diff --git a/src/ssr/MagicWand.tsx b/src/ssr/MagicWand.tsx new file mode 100644 index 000000000..9aeeb8593 --- /dev/null +++ b/src/ssr/MagicWand.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MagicWand"; + +export const MagicWand: Icon = forwardRef((props, ref) => ( + +)); + +MagicWand.displayName = "MagicWand"; diff --git a/src/ssr/Magnet.tsx b/src/ssr/Magnet.tsx new file mode 100644 index 000000000..ffc444c1a --- /dev/null +++ b/src/ssr/Magnet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Magnet"; + +export const Magnet: Icon = forwardRef((props, ref) => ( + +)); + +Magnet.displayName = "Magnet"; diff --git a/src/ssr/MagnetStraight.tsx b/src/ssr/MagnetStraight.tsx new file mode 100644 index 000000000..8c99ad0b8 --- /dev/null +++ b/src/ssr/MagnetStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MagnetStraight"; + +export const MagnetStraight: Icon = forwardRef((props, ref) => ( + +)); + +MagnetStraight.displayName = "MagnetStraight"; diff --git a/src/ssr/MagnifyingGlass.tsx b/src/ssr/MagnifyingGlass.tsx new file mode 100644 index 000000000..b72105fcc --- /dev/null +++ b/src/ssr/MagnifyingGlass.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MagnifyingGlass"; + +export const MagnifyingGlass: Icon = forwardRef((props, ref) => ( + +)); + +MagnifyingGlass.displayName = "MagnifyingGlass"; diff --git a/src/ssr/MagnifyingGlassMinus.tsx b/src/ssr/MagnifyingGlassMinus.tsx new file mode 100644 index 000000000..f690c106b --- /dev/null +++ b/src/ssr/MagnifyingGlassMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MagnifyingGlassMinus"; + +export const MagnifyingGlassMinus: Icon = forwardRef((props, ref) => ( + +)); + +MagnifyingGlassMinus.displayName = "MagnifyingGlassMinus"; diff --git a/src/ssr/MagnifyingGlassPlus.tsx b/src/ssr/MagnifyingGlassPlus.tsx new file mode 100644 index 000000000..65c9dc812 --- /dev/null +++ b/src/ssr/MagnifyingGlassPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MagnifyingGlassPlus"; + +export const MagnifyingGlassPlus: Icon = forwardRef((props, ref) => ( + +)); + +MagnifyingGlassPlus.displayName = "MagnifyingGlassPlus"; diff --git a/src/ssr/MapPin.tsx b/src/ssr/MapPin.tsx new file mode 100644 index 000000000..47bc8a748 --- /dev/null +++ b/src/ssr/MapPin.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MapPin"; + +export const MapPin: Icon = forwardRef((props, ref) => ( + +)); + +MapPin.displayName = "MapPin"; diff --git a/src/ssr/MapPinLine.tsx b/src/ssr/MapPinLine.tsx new file mode 100644 index 000000000..654eb7abc --- /dev/null +++ b/src/ssr/MapPinLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MapPinLine"; + +export const MapPinLine: Icon = forwardRef((props, ref) => ( + +)); + +MapPinLine.displayName = "MapPinLine"; diff --git a/src/ssr/MapTrifold.tsx b/src/ssr/MapTrifold.tsx new file mode 100644 index 000000000..32bb79fff --- /dev/null +++ b/src/ssr/MapTrifold.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MapTrifold"; + +export const MapTrifold: Icon = forwardRef((props, ref) => ( + +)); + +MapTrifold.displayName = "MapTrifold"; diff --git a/src/ssr/MarkerCircle.tsx b/src/ssr/MarkerCircle.tsx new file mode 100644 index 000000000..c1df0843c --- /dev/null +++ b/src/ssr/MarkerCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MarkerCircle"; + +export const MarkerCircle: Icon = forwardRef((props, ref) => ( + +)); + +MarkerCircle.displayName = "MarkerCircle"; diff --git a/src/ssr/Martini.tsx b/src/ssr/Martini.tsx new file mode 100644 index 000000000..ce6a20b29 --- /dev/null +++ b/src/ssr/Martini.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Martini"; + +export const Martini: Icon = forwardRef((props, ref) => ( + +)); + +Martini.displayName = "Martini"; diff --git a/src/ssr/MaskHappy.tsx b/src/ssr/MaskHappy.tsx new file mode 100644 index 000000000..4b90db011 --- /dev/null +++ b/src/ssr/MaskHappy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MaskHappy"; + +export const MaskHappy: Icon = forwardRef((props, ref) => ( + +)); + +MaskHappy.displayName = "MaskHappy"; diff --git a/src/ssr/MaskSad.tsx b/src/ssr/MaskSad.tsx new file mode 100644 index 000000000..d50004a91 --- /dev/null +++ b/src/ssr/MaskSad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MaskSad"; + +export const MaskSad: Icon = forwardRef((props, ref) => ( + +)); + +MaskSad.displayName = "MaskSad"; diff --git a/src/ssr/MathOperations.tsx b/src/ssr/MathOperations.tsx new file mode 100644 index 000000000..4e8dba210 --- /dev/null +++ b/src/ssr/MathOperations.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MathOperations"; + +export const MathOperations: Icon = forwardRef((props, ref) => ( + +)); + +MathOperations.displayName = "MathOperations"; diff --git a/src/ssr/Medal.tsx b/src/ssr/Medal.tsx new file mode 100644 index 000000000..450e4b210 --- /dev/null +++ b/src/ssr/Medal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Medal"; + +export const Medal: Icon = forwardRef((props, ref) => ( + +)); + +Medal.displayName = "Medal"; diff --git a/src/ssr/MedalMilitary.tsx b/src/ssr/MedalMilitary.tsx new file mode 100644 index 000000000..0b772abbe --- /dev/null +++ b/src/ssr/MedalMilitary.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MedalMilitary"; + +export const MedalMilitary: Icon = forwardRef((props, ref) => ( + +)); + +MedalMilitary.displayName = "MedalMilitary"; diff --git a/src/ssr/MediumLogo.tsx b/src/ssr/MediumLogo.tsx new file mode 100644 index 000000000..824738971 --- /dev/null +++ b/src/ssr/MediumLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MediumLogo"; + +export const MediumLogo: Icon = forwardRef((props, ref) => ( + +)); + +MediumLogo.displayName = "MediumLogo"; diff --git a/src/ssr/Megaphone.tsx b/src/ssr/Megaphone.tsx new file mode 100644 index 000000000..31d028594 --- /dev/null +++ b/src/ssr/Megaphone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Megaphone"; + +export const Megaphone: Icon = forwardRef((props, ref) => ( + +)); + +Megaphone.displayName = "Megaphone"; diff --git a/src/ssr/MegaphoneSimple.tsx b/src/ssr/MegaphoneSimple.tsx new file mode 100644 index 000000000..173727c44 --- /dev/null +++ b/src/ssr/MegaphoneSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MegaphoneSimple"; + +export const MegaphoneSimple: Icon = forwardRef((props, ref) => ( + +)); + +MegaphoneSimple.displayName = "MegaphoneSimple"; diff --git a/src/ssr/MessengerLogo.tsx b/src/ssr/MessengerLogo.tsx new file mode 100644 index 000000000..8d02dace7 --- /dev/null +++ b/src/ssr/MessengerLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MessengerLogo"; + +export const MessengerLogo: Icon = forwardRef((props, ref) => ( + +)); + +MessengerLogo.displayName = "MessengerLogo"; diff --git a/src/ssr/MetaLogo.tsx b/src/ssr/MetaLogo.tsx new file mode 100644 index 000000000..ea22af19c --- /dev/null +++ b/src/ssr/MetaLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MetaLogo"; + +export const MetaLogo: Icon = forwardRef((props, ref) => ( + +)); + +MetaLogo.displayName = "MetaLogo"; diff --git a/src/ssr/Metronome.tsx b/src/ssr/Metronome.tsx new file mode 100644 index 000000000..0b6a069b5 --- /dev/null +++ b/src/ssr/Metronome.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Metronome"; + +export const Metronome: Icon = forwardRef((props, ref) => ( + +)); + +Metronome.displayName = "Metronome"; diff --git a/src/ssr/Microphone.tsx b/src/ssr/Microphone.tsx new file mode 100644 index 000000000..029595e2c --- /dev/null +++ b/src/ssr/Microphone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Microphone"; + +export const Microphone: Icon = forwardRef((props, ref) => ( + +)); + +Microphone.displayName = "Microphone"; diff --git a/src/ssr/MicrophoneSlash.tsx b/src/ssr/MicrophoneSlash.tsx new file mode 100644 index 000000000..49ecab6b5 --- /dev/null +++ b/src/ssr/MicrophoneSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MicrophoneSlash"; + +export const MicrophoneSlash: Icon = forwardRef((props, ref) => ( + +)); + +MicrophoneSlash.displayName = "MicrophoneSlash"; diff --git a/src/ssr/MicrophoneStage.tsx b/src/ssr/MicrophoneStage.tsx new file mode 100644 index 000000000..8f01436e3 --- /dev/null +++ b/src/ssr/MicrophoneStage.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MicrophoneStage"; + +export const MicrophoneStage: Icon = forwardRef((props, ref) => ( + +)); + +MicrophoneStage.displayName = "MicrophoneStage"; diff --git a/src/ssr/MicrosoftExcelLogo.tsx b/src/ssr/MicrosoftExcelLogo.tsx new file mode 100644 index 000000000..3c80eca53 --- /dev/null +++ b/src/ssr/MicrosoftExcelLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MicrosoftExcelLogo"; + +export const MicrosoftExcelLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftExcelLogo.displayName = "MicrosoftExcelLogo"; diff --git a/src/ssr/MicrosoftOutlookLogo.tsx b/src/ssr/MicrosoftOutlookLogo.tsx new file mode 100644 index 000000000..fbea484de --- /dev/null +++ b/src/ssr/MicrosoftOutlookLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MicrosoftOutlookLogo"; + +export const MicrosoftOutlookLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftOutlookLogo.displayName = "MicrosoftOutlookLogo"; diff --git a/src/ssr/MicrosoftPowerpointLogo.tsx b/src/ssr/MicrosoftPowerpointLogo.tsx new file mode 100644 index 000000000..b0d92629f --- /dev/null +++ b/src/ssr/MicrosoftPowerpointLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MicrosoftPowerpointLogo"; + +export const MicrosoftPowerpointLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftPowerpointLogo.displayName = "MicrosoftPowerpointLogo"; diff --git a/src/ssr/MicrosoftTeamsLogo.tsx b/src/ssr/MicrosoftTeamsLogo.tsx new file mode 100644 index 000000000..c18bcdcc6 --- /dev/null +++ b/src/ssr/MicrosoftTeamsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MicrosoftTeamsLogo"; + +export const MicrosoftTeamsLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftTeamsLogo.displayName = "MicrosoftTeamsLogo"; diff --git a/src/ssr/MicrosoftWordLogo.tsx b/src/ssr/MicrosoftWordLogo.tsx new file mode 100644 index 000000000..5b85de2fe --- /dev/null +++ b/src/ssr/MicrosoftWordLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MicrosoftWordLogo"; + +export const MicrosoftWordLogo: Icon = forwardRef((props, ref) => ( + +)); + +MicrosoftWordLogo.displayName = "MicrosoftWordLogo"; diff --git a/src/ssr/Minus.tsx b/src/ssr/Minus.tsx new file mode 100644 index 000000000..61b645ffd --- /dev/null +++ b/src/ssr/Minus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Minus"; + +export const Minus: Icon = forwardRef((props, ref) => ( + +)); + +Minus.displayName = "Minus"; diff --git a/src/ssr/MinusCircle.tsx b/src/ssr/MinusCircle.tsx new file mode 100644 index 000000000..1a6a815b5 --- /dev/null +++ b/src/ssr/MinusCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MinusCircle"; + +export const MinusCircle: Icon = forwardRef((props, ref) => ( + +)); + +MinusCircle.displayName = "MinusCircle"; diff --git a/src/ssr/MinusSquare.tsx b/src/ssr/MinusSquare.tsx new file mode 100644 index 000000000..c120aa710 --- /dev/null +++ b/src/ssr/MinusSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MinusSquare"; + +export const MinusSquare: Icon = forwardRef((props, ref) => ( + +)); + +MinusSquare.displayName = "MinusSquare"; diff --git a/src/ssr/Money.tsx b/src/ssr/Money.tsx new file mode 100644 index 000000000..4665fac11 --- /dev/null +++ b/src/ssr/Money.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Money"; + +export const Money: Icon = forwardRef((props, ref) => ( + +)); + +Money.displayName = "Money"; diff --git a/src/ssr/Monitor.tsx b/src/ssr/Monitor.tsx new file mode 100644 index 000000000..e51932298 --- /dev/null +++ b/src/ssr/Monitor.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Monitor"; + +export const Monitor: Icon = forwardRef((props, ref) => ( + +)); + +Monitor.displayName = "Monitor"; diff --git a/src/ssr/MonitorPlay.tsx b/src/ssr/MonitorPlay.tsx new file mode 100644 index 000000000..5933f9372 --- /dev/null +++ b/src/ssr/MonitorPlay.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MonitorPlay"; + +export const MonitorPlay: Icon = forwardRef((props, ref) => ( + +)); + +MonitorPlay.displayName = "MonitorPlay"; diff --git a/src/ssr/Moon.tsx b/src/ssr/Moon.tsx new file mode 100644 index 000000000..3e450740a --- /dev/null +++ b/src/ssr/Moon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Moon"; + +export const Moon: Icon = forwardRef((props, ref) => ( + +)); + +Moon.displayName = "Moon"; diff --git a/src/ssr/MoonStars.tsx b/src/ssr/MoonStars.tsx new file mode 100644 index 000000000..c0eaceb83 --- /dev/null +++ b/src/ssr/MoonStars.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MoonStars"; + +export const MoonStars: Icon = forwardRef((props, ref) => ( + +)); + +MoonStars.displayName = "MoonStars"; diff --git a/src/ssr/Moped.tsx b/src/ssr/Moped.tsx new file mode 100644 index 000000000..a7f40fe96 --- /dev/null +++ b/src/ssr/Moped.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Moped"; + +export const Moped: Icon = forwardRef((props, ref) => ( + +)); + +Moped.displayName = "Moped"; diff --git a/src/ssr/MopedFront.tsx b/src/ssr/MopedFront.tsx new file mode 100644 index 000000000..b6cd0594e --- /dev/null +++ b/src/ssr/MopedFront.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MopedFront"; + +export const MopedFront: Icon = forwardRef((props, ref) => ( + +)); + +MopedFront.displayName = "MopedFront"; diff --git a/src/ssr/Mosque.tsx b/src/ssr/Mosque.tsx new file mode 100644 index 000000000..bbad76f84 --- /dev/null +++ b/src/ssr/Mosque.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Mosque"; + +export const Mosque: Icon = forwardRef((props, ref) => ( + +)); + +Mosque.displayName = "Mosque"; diff --git a/src/ssr/Motorcycle.tsx b/src/ssr/Motorcycle.tsx new file mode 100644 index 000000000..9424530f4 --- /dev/null +++ b/src/ssr/Motorcycle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Motorcycle"; + +export const Motorcycle: Icon = forwardRef((props, ref) => ( + +)); + +Motorcycle.displayName = "Motorcycle"; diff --git a/src/ssr/Mountains.tsx b/src/ssr/Mountains.tsx new file mode 100644 index 000000000..81d4dc004 --- /dev/null +++ b/src/ssr/Mountains.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Mountains"; + +export const Mountains: Icon = forwardRef((props, ref) => ( + +)); + +Mountains.displayName = "Mountains"; diff --git a/src/ssr/Mouse.tsx b/src/ssr/Mouse.tsx new file mode 100644 index 000000000..dbf57ec97 --- /dev/null +++ b/src/ssr/Mouse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Mouse"; + +export const Mouse: Icon = forwardRef((props, ref) => ( + +)); + +Mouse.displayName = "Mouse"; diff --git a/src/ssr/MouseSimple.tsx b/src/ssr/MouseSimple.tsx new file mode 100644 index 000000000..c1e9489e8 --- /dev/null +++ b/src/ssr/MouseSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MouseSimple"; + +export const MouseSimple: Icon = forwardRef((props, ref) => ( + +)); + +MouseSimple.displayName = "MouseSimple"; diff --git a/src/ssr/MusicNote.tsx b/src/ssr/MusicNote.tsx new file mode 100644 index 000000000..cac4fb7c9 --- /dev/null +++ b/src/ssr/MusicNote.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MusicNote"; + +export const MusicNote: Icon = forwardRef((props, ref) => ( + +)); + +MusicNote.displayName = "MusicNote"; diff --git a/src/ssr/MusicNoteSimple.tsx b/src/ssr/MusicNoteSimple.tsx new file mode 100644 index 000000000..6162c233a --- /dev/null +++ b/src/ssr/MusicNoteSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MusicNoteSimple"; + +export const MusicNoteSimple: Icon = forwardRef((props, ref) => ( + +)); + +MusicNoteSimple.displayName = "MusicNoteSimple"; diff --git a/src/ssr/MusicNotes.tsx b/src/ssr/MusicNotes.tsx new file mode 100644 index 000000000..11564e062 --- /dev/null +++ b/src/ssr/MusicNotes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MusicNotes"; + +export const MusicNotes: Icon = forwardRef((props, ref) => ( + +)); + +MusicNotes.displayName = "MusicNotes"; diff --git a/src/ssr/MusicNotesPlus.tsx b/src/ssr/MusicNotesPlus.tsx new file mode 100644 index 000000000..ee1894ebc --- /dev/null +++ b/src/ssr/MusicNotesPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MusicNotesPlus"; + +export const MusicNotesPlus: Icon = forwardRef((props, ref) => ( + +)); + +MusicNotesPlus.displayName = "MusicNotesPlus"; diff --git a/src/ssr/MusicNotesSimple.tsx b/src/ssr/MusicNotesSimple.tsx new file mode 100644 index 000000000..d55525840 --- /dev/null +++ b/src/ssr/MusicNotesSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/MusicNotesSimple"; + +export const MusicNotesSimple: Icon = forwardRef((props, ref) => ( + +)); + +MusicNotesSimple.displayName = "MusicNotesSimple"; diff --git a/src/ssr/NavigationArrow.tsx b/src/ssr/NavigationArrow.tsx new file mode 100644 index 000000000..c025ee5fe --- /dev/null +++ b/src/ssr/NavigationArrow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NavigationArrow"; + +export const NavigationArrow: Icon = forwardRef((props, ref) => ( + +)); + +NavigationArrow.displayName = "NavigationArrow"; diff --git a/src/ssr/Needle.tsx b/src/ssr/Needle.tsx new file mode 100644 index 000000000..3628af781 --- /dev/null +++ b/src/ssr/Needle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Needle"; + +export const Needle: Icon = forwardRef((props, ref) => ( + +)); + +Needle.displayName = "Needle"; diff --git a/src/ssr/Newspaper.tsx b/src/ssr/Newspaper.tsx new file mode 100644 index 000000000..ef892cfc2 --- /dev/null +++ b/src/ssr/Newspaper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Newspaper"; + +export const Newspaper: Icon = forwardRef((props, ref) => ( + +)); + +Newspaper.displayName = "Newspaper"; diff --git a/src/ssr/NewspaperClipping.tsx b/src/ssr/NewspaperClipping.tsx new file mode 100644 index 000000000..4179a2df1 --- /dev/null +++ b/src/ssr/NewspaperClipping.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NewspaperClipping"; + +export const NewspaperClipping: Icon = forwardRef((props, ref) => ( + +)); + +NewspaperClipping.displayName = "NewspaperClipping"; diff --git a/src/ssr/Notches.tsx b/src/ssr/Notches.tsx new file mode 100644 index 000000000..9b98a1c94 --- /dev/null +++ b/src/ssr/Notches.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Notches"; + +export const Notches: Icon = forwardRef((props, ref) => ( + +)); + +Notches.displayName = "Notches"; diff --git a/src/ssr/Note.tsx b/src/ssr/Note.tsx new file mode 100644 index 000000000..a3769b178 --- /dev/null +++ b/src/ssr/Note.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Note"; + +export const Note: Icon = forwardRef((props, ref) => ( + +)); + +Note.displayName = "Note"; diff --git a/src/ssr/NoteBlank.tsx b/src/ssr/NoteBlank.tsx new file mode 100644 index 000000000..5cfae24d2 --- /dev/null +++ b/src/ssr/NoteBlank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NoteBlank"; + +export const NoteBlank: Icon = forwardRef((props, ref) => ( + +)); + +NoteBlank.displayName = "NoteBlank"; diff --git a/src/ssr/NotePencil.tsx b/src/ssr/NotePencil.tsx new file mode 100644 index 000000000..5c816a62f --- /dev/null +++ b/src/ssr/NotePencil.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NotePencil"; + +export const NotePencil: Icon = forwardRef((props, ref) => ( + +)); + +NotePencil.displayName = "NotePencil"; diff --git a/src/ssr/Notebook.tsx b/src/ssr/Notebook.tsx new file mode 100644 index 000000000..c2671d493 --- /dev/null +++ b/src/ssr/Notebook.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Notebook"; + +export const Notebook: Icon = forwardRef((props, ref) => ( + +)); + +Notebook.displayName = "Notebook"; diff --git a/src/ssr/Notepad.tsx b/src/ssr/Notepad.tsx new file mode 100644 index 000000000..610a75ad4 --- /dev/null +++ b/src/ssr/Notepad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Notepad"; + +export const Notepad: Icon = forwardRef((props, ref) => ( + +)); + +Notepad.displayName = "Notepad"; diff --git a/src/ssr/Notification.tsx b/src/ssr/Notification.tsx new file mode 100644 index 000000000..032683cbc --- /dev/null +++ b/src/ssr/Notification.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Notification"; + +export const Notification: Icon = forwardRef((props, ref) => ( + +)); + +Notification.displayName = "Notification"; diff --git a/src/ssr/NotionLogo.tsx b/src/ssr/NotionLogo.tsx new file mode 100644 index 000000000..3c8273d62 --- /dev/null +++ b/src/ssr/NotionLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NotionLogo"; + +export const NotionLogo: Icon = forwardRef((props, ref) => ( + +)); + +NotionLogo.displayName = "NotionLogo"; diff --git a/src/ssr/NumberCircleEight.tsx b/src/ssr/NumberCircleEight.tsx new file mode 100644 index 000000000..29d5038e4 --- /dev/null +++ b/src/ssr/NumberCircleEight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleEight"; + +export const NumberCircleEight: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleEight.displayName = "NumberCircleEight"; diff --git a/src/ssr/NumberCircleFive.tsx b/src/ssr/NumberCircleFive.tsx new file mode 100644 index 000000000..281913c0e --- /dev/null +++ b/src/ssr/NumberCircleFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleFive"; + +export const NumberCircleFive: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleFive.displayName = "NumberCircleFive"; diff --git a/src/ssr/NumberCircleFour.tsx b/src/ssr/NumberCircleFour.tsx new file mode 100644 index 000000000..987684c60 --- /dev/null +++ b/src/ssr/NumberCircleFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleFour"; + +export const NumberCircleFour: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleFour.displayName = "NumberCircleFour"; diff --git a/src/ssr/NumberCircleNine.tsx b/src/ssr/NumberCircleNine.tsx new file mode 100644 index 000000000..b0c3487b9 --- /dev/null +++ b/src/ssr/NumberCircleNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleNine"; + +export const NumberCircleNine: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleNine.displayName = "NumberCircleNine"; diff --git a/src/ssr/NumberCircleOne.tsx b/src/ssr/NumberCircleOne.tsx new file mode 100644 index 000000000..7235374a8 --- /dev/null +++ b/src/ssr/NumberCircleOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleOne"; + +export const NumberCircleOne: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleOne.displayName = "NumberCircleOne"; diff --git a/src/ssr/NumberCircleSeven.tsx b/src/ssr/NumberCircleSeven.tsx new file mode 100644 index 000000000..33eb03c31 --- /dev/null +++ b/src/ssr/NumberCircleSeven.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleSeven"; + +export const NumberCircleSeven: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleSeven.displayName = "NumberCircleSeven"; diff --git a/src/ssr/NumberCircleSix.tsx b/src/ssr/NumberCircleSix.tsx new file mode 100644 index 000000000..c369caa3e --- /dev/null +++ b/src/ssr/NumberCircleSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleSix"; + +export const NumberCircleSix: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleSix.displayName = "NumberCircleSix"; diff --git a/src/ssr/NumberCircleThree.tsx b/src/ssr/NumberCircleThree.tsx new file mode 100644 index 000000000..05aeadd8e --- /dev/null +++ b/src/ssr/NumberCircleThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleThree"; + +export const NumberCircleThree: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleThree.displayName = "NumberCircleThree"; diff --git a/src/ssr/NumberCircleTwo.tsx b/src/ssr/NumberCircleTwo.tsx new file mode 100644 index 000000000..b82729422 --- /dev/null +++ b/src/ssr/NumberCircleTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleTwo"; + +export const NumberCircleTwo: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleTwo.displayName = "NumberCircleTwo"; diff --git a/src/ssr/NumberCircleZero.tsx b/src/ssr/NumberCircleZero.tsx new file mode 100644 index 000000000..d50e90e52 --- /dev/null +++ b/src/ssr/NumberCircleZero.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberCircleZero"; + +export const NumberCircleZero: Icon = forwardRef((props, ref) => ( + +)); + +NumberCircleZero.displayName = "NumberCircleZero"; diff --git a/src/ssr/NumberEight.tsx b/src/ssr/NumberEight.tsx new file mode 100644 index 000000000..f00e8056a --- /dev/null +++ b/src/ssr/NumberEight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberEight"; + +export const NumberEight: Icon = forwardRef((props, ref) => ( + +)); + +NumberEight.displayName = "NumberEight"; diff --git a/src/ssr/NumberFive.tsx b/src/ssr/NumberFive.tsx new file mode 100644 index 000000000..cf5317944 --- /dev/null +++ b/src/ssr/NumberFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberFive"; + +export const NumberFive: Icon = forwardRef((props, ref) => ( + +)); + +NumberFive.displayName = "NumberFive"; diff --git a/src/ssr/NumberFour.tsx b/src/ssr/NumberFour.tsx new file mode 100644 index 000000000..dea62bb86 --- /dev/null +++ b/src/ssr/NumberFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberFour"; + +export const NumberFour: Icon = forwardRef((props, ref) => ( + +)); + +NumberFour.displayName = "NumberFour"; diff --git a/src/ssr/NumberNine.tsx b/src/ssr/NumberNine.tsx new file mode 100644 index 000000000..52fb16cde --- /dev/null +++ b/src/ssr/NumberNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberNine"; + +export const NumberNine: Icon = forwardRef((props, ref) => ( + +)); + +NumberNine.displayName = "NumberNine"; diff --git a/src/ssr/NumberOne.tsx b/src/ssr/NumberOne.tsx new file mode 100644 index 000000000..6e277a23f --- /dev/null +++ b/src/ssr/NumberOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberOne"; + +export const NumberOne: Icon = forwardRef((props, ref) => ( + +)); + +NumberOne.displayName = "NumberOne"; diff --git a/src/ssr/NumberSeven.tsx b/src/ssr/NumberSeven.tsx new file mode 100644 index 000000000..7771795d6 --- /dev/null +++ b/src/ssr/NumberSeven.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSeven"; + +export const NumberSeven: Icon = forwardRef((props, ref) => ( + +)); + +NumberSeven.displayName = "NumberSeven"; diff --git a/src/ssr/NumberSix.tsx b/src/ssr/NumberSix.tsx new file mode 100644 index 000000000..32c2aa50d --- /dev/null +++ b/src/ssr/NumberSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSix"; + +export const NumberSix: Icon = forwardRef((props, ref) => ( + +)); + +NumberSix.displayName = "NumberSix"; diff --git a/src/ssr/NumberSquareEight.tsx b/src/ssr/NumberSquareEight.tsx new file mode 100644 index 000000000..81ec4c462 --- /dev/null +++ b/src/ssr/NumberSquareEight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareEight"; + +export const NumberSquareEight: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareEight.displayName = "NumberSquareEight"; diff --git a/src/ssr/NumberSquareFive.tsx b/src/ssr/NumberSquareFive.tsx new file mode 100644 index 000000000..c91454fe8 --- /dev/null +++ b/src/ssr/NumberSquareFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareFive"; + +export const NumberSquareFive: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareFive.displayName = "NumberSquareFive"; diff --git a/src/ssr/NumberSquareFour.tsx b/src/ssr/NumberSquareFour.tsx new file mode 100644 index 000000000..7053c2bef --- /dev/null +++ b/src/ssr/NumberSquareFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareFour"; + +export const NumberSquareFour: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareFour.displayName = "NumberSquareFour"; diff --git a/src/ssr/NumberSquareNine.tsx b/src/ssr/NumberSquareNine.tsx new file mode 100644 index 000000000..cd05300eb --- /dev/null +++ b/src/ssr/NumberSquareNine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareNine"; + +export const NumberSquareNine: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareNine.displayName = "NumberSquareNine"; diff --git a/src/ssr/NumberSquareOne.tsx b/src/ssr/NumberSquareOne.tsx new file mode 100644 index 000000000..2ef60900f --- /dev/null +++ b/src/ssr/NumberSquareOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareOne"; + +export const NumberSquareOne: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareOne.displayName = "NumberSquareOne"; diff --git a/src/ssr/NumberSquareSeven.tsx b/src/ssr/NumberSquareSeven.tsx new file mode 100644 index 000000000..f7f7aa61a --- /dev/null +++ b/src/ssr/NumberSquareSeven.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareSeven"; + +export const NumberSquareSeven: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareSeven.displayName = "NumberSquareSeven"; diff --git a/src/ssr/NumberSquareSix.tsx b/src/ssr/NumberSquareSix.tsx new file mode 100644 index 000000000..f4ffb6a27 --- /dev/null +++ b/src/ssr/NumberSquareSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareSix"; + +export const NumberSquareSix: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareSix.displayName = "NumberSquareSix"; diff --git a/src/ssr/NumberSquareThree.tsx b/src/ssr/NumberSquareThree.tsx new file mode 100644 index 000000000..5342414ca --- /dev/null +++ b/src/ssr/NumberSquareThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareThree"; + +export const NumberSquareThree: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareThree.displayName = "NumberSquareThree"; diff --git a/src/ssr/NumberSquareTwo.tsx b/src/ssr/NumberSquareTwo.tsx new file mode 100644 index 000000000..fa4c10fb0 --- /dev/null +++ b/src/ssr/NumberSquareTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareTwo"; + +export const NumberSquareTwo: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareTwo.displayName = "NumberSquareTwo"; diff --git a/src/ssr/NumberSquareZero.tsx b/src/ssr/NumberSquareZero.tsx new file mode 100644 index 000000000..30cb56bd0 --- /dev/null +++ b/src/ssr/NumberSquareZero.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberSquareZero"; + +export const NumberSquareZero: Icon = forwardRef((props, ref) => ( + +)); + +NumberSquareZero.displayName = "NumberSquareZero"; diff --git a/src/ssr/NumberThree.tsx b/src/ssr/NumberThree.tsx new file mode 100644 index 000000000..097357958 --- /dev/null +++ b/src/ssr/NumberThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberThree"; + +export const NumberThree: Icon = forwardRef((props, ref) => ( + +)); + +NumberThree.displayName = "NumberThree"; diff --git a/src/ssr/NumberTwo.tsx b/src/ssr/NumberTwo.tsx new file mode 100644 index 000000000..7556381bf --- /dev/null +++ b/src/ssr/NumberTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberTwo"; + +export const NumberTwo: Icon = forwardRef((props, ref) => ( + +)); + +NumberTwo.displayName = "NumberTwo"; diff --git a/src/ssr/NumberZero.tsx b/src/ssr/NumberZero.tsx new file mode 100644 index 000000000..a8276e30b --- /dev/null +++ b/src/ssr/NumberZero.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NumberZero"; + +export const NumberZero: Icon = forwardRef((props, ref) => ( + +)); + +NumberZero.displayName = "NumberZero"; diff --git a/src/ssr/Nut.tsx b/src/ssr/Nut.tsx new file mode 100644 index 000000000..5bc04cdf9 --- /dev/null +++ b/src/ssr/Nut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Nut"; + +export const Nut: Icon = forwardRef((props, ref) => ( + +)); + +Nut.displayName = "Nut"; diff --git a/src/ssr/NyTimesLogo.tsx b/src/ssr/NyTimesLogo.tsx new file mode 100644 index 000000000..05f607ab2 --- /dev/null +++ b/src/ssr/NyTimesLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/NyTimesLogo"; + +export const NyTimesLogo: Icon = forwardRef((props, ref) => ( + +)); + +NyTimesLogo.displayName = "NyTimesLogo"; diff --git a/src/ssr/Octagon.tsx b/src/ssr/Octagon.tsx new file mode 100644 index 000000000..f0b6c61c8 --- /dev/null +++ b/src/ssr/Octagon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Octagon"; + +export const Octagon: Icon = forwardRef((props, ref) => ( + +)); + +Octagon.displayName = "Octagon"; diff --git a/src/ssr/OfficeChair.tsx b/src/ssr/OfficeChair.tsx new file mode 100644 index 000000000..a702c0798 --- /dev/null +++ b/src/ssr/OfficeChair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/OfficeChair"; + +export const OfficeChair: Icon = forwardRef((props, ref) => ( + +)); + +OfficeChair.displayName = "OfficeChair"; diff --git a/src/ssr/Option.tsx b/src/ssr/Option.tsx new file mode 100644 index 000000000..cf5ee232a --- /dev/null +++ b/src/ssr/Option.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Option"; + +export const Option: Icon = forwardRef((props, ref) => ( + +)); + +Option.displayName = "Option"; diff --git a/src/ssr/OrangeSlice.tsx b/src/ssr/OrangeSlice.tsx new file mode 100644 index 000000000..4ec03c633 --- /dev/null +++ b/src/ssr/OrangeSlice.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/OrangeSlice"; + +export const OrangeSlice: Icon = forwardRef((props, ref) => ( + +)); + +OrangeSlice.displayName = "OrangeSlice"; diff --git a/src/ssr/Package.tsx b/src/ssr/Package.tsx new file mode 100644 index 000000000..f7506cd56 --- /dev/null +++ b/src/ssr/Package.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Package"; + +export const Package: Icon = forwardRef((props, ref) => ( + +)); + +Package.displayName = "Package"; diff --git a/src/ssr/PaintBrush.tsx b/src/ssr/PaintBrush.tsx new file mode 100644 index 000000000..199bf55c1 --- /dev/null +++ b/src/ssr/PaintBrush.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaintBrush"; + +export const PaintBrush: Icon = forwardRef((props, ref) => ( + +)); + +PaintBrush.displayName = "PaintBrush"; diff --git a/src/ssr/PaintBrushBroad.tsx b/src/ssr/PaintBrushBroad.tsx new file mode 100644 index 000000000..5eb480c0d --- /dev/null +++ b/src/ssr/PaintBrushBroad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaintBrushBroad"; + +export const PaintBrushBroad: Icon = forwardRef((props, ref) => ( + +)); + +PaintBrushBroad.displayName = "PaintBrushBroad"; diff --git a/src/ssr/PaintBrushHousehold.tsx b/src/ssr/PaintBrushHousehold.tsx new file mode 100644 index 000000000..335f54d93 --- /dev/null +++ b/src/ssr/PaintBrushHousehold.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaintBrushHousehold"; + +export const PaintBrushHousehold: Icon = forwardRef((props, ref) => ( + +)); + +PaintBrushHousehold.displayName = "PaintBrushHousehold"; diff --git a/src/ssr/PaintBucket.tsx b/src/ssr/PaintBucket.tsx new file mode 100644 index 000000000..8438e5164 --- /dev/null +++ b/src/ssr/PaintBucket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaintBucket"; + +export const PaintBucket: Icon = forwardRef((props, ref) => ( + +)); + +PaintBucket.displayName = "PaintBucket"; diff --git a/src/ssr/PaintRoller.tsx b/src/ssr/PaintRoller.tsx new file mode 100644 index 000000000..2999e1e9b --- /dev/null +++ b/src/ssr/PaintRoller.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaintRoller"; + +export const PaintRoller: Icon = forwardRef((props, ref) => ( + +)); + +PaintRoller.displayName = "PaintRoller"; diff --git a/src/ssr/Palette.tsx b/src/ssr/Palette.tsx new file mode 100644 index 000000000..f67f847ac --- /dev/null +++ b/src/ssr/Palette.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Palette"; + +export const Palette: Icon = forwardRef((props, ref) => ( + +)); + +Palette.displayName = "Palette"; diff --git a/src/ssr/Pants.tsx b/src/ssr/Pants.tsx new file mode 100644 index 000000000..47f3500cd --- /dev/null +++ b/src/ssr/Pants.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pants"; + +export const Pants: Icon = forwardRef((props, ref) => ( + +)); + +Pants.displayName = "Pants"; diff --git a/src/ssr/PaperPlane.tsx b/src/ssr/PaperPlane.tsx new file mode 100644 index 000000000..2c8f61d0f --- /dev/null +++ b/src/ssr/PaperPlane.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaperPlane"; + +export const PaperPlane: Icon = forwardRef((props, ref) => ( + +)); + +PaperPlane.displayName = "PaperPlane"; diff --git a/src/ssr/PaperPlaneRight.tsx b/src/ssr/PaperPlaneRight.tsx new file mode 100644 index 000000000..ac125beb5 --- /dev/null +++ b/src/ssr/PaperPlaneRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaperPlaneRight"; + +export const PaperPlaneRight: Icon = forwardRef((props, ref) => ( + +)); + +PaperPlaneRight.displayName = "PaperPlaneRight"; diff --git a/src/ssr/PaperPlaneTilt.tsx b/src/ssr/PaperPlaneTilt.tsx new file mode 100644 index 000000000..9a9660a7e --- /dev/null +++ b/src/ssr/PaperPlaneTilt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaperPlaneTilt"; + +export const PaperPlaneTilt: Icon = forwardRef((props, ref) => ( + +)); + +PaperPlaneTilt.displayName = "PaperPlaneTilt"; diff --git a/src/ssr/Paperclip.tsx b/src/ssr/Paperclip.tsx new file mode 100644 index 000000000..c678f1b72 --- /dev/null +++ b/src/ssr/Paperclip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Paperclip"; + +export const Paperclip: Icon = forwardRef((props, ref) => ( + +)); + +Paperclip.displayName = "Paperclip"; diff --git a/src/ssr/PaperclipHorizontal.tsx b/src/ssr/PaperclipHorizontal.tsx new file mode 100644 index 000000000..b1adc60e6 --- /dev/null +++ b/src/ssr/PaperclipHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaperclipHorizontal"; + +export const PaperclipHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +PaperclipHorizontal.displayName = "PaperclipHorizontal"; diff --git a/src/ssr/Parachute.tsx b/src/ssr/Parachute.tsx new file mode 100644 index 000000000..b3a572af2 --- /dev/null +++ b/src/ssr/Parachute.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Parachute"; + +export const Parachute: Icon = forwardRef((props, ref) => ( + +)); + +Parachute.displayName = "Parachute"; diff --git a/src/ssr/Paragraph.tsx b/src/ssr/Paragraph.tsx new file mode 100644 index 000000000..1e702cdbe --- /dev/null +++ b/src/ssr/Paragraph.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Paragraph"; + +export const Paragraph: Icon = forwardRef((props, ref) => ( + +)); + +Paragraph.displayName = "Paragraph"; diff --git a/src/ssr/Parallelogram.tsx b/src/ssr/Parallelogram.tsx new file mode 100644 index 000000000..fa6e81dda --- /dev/null +++ b/src/ssr/Parallelogram.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Parallelogram"; + +export const Parallelogram: Icon = forwardRef((props, ref) => ( + +)); + +Parallelogram.displayName = "Parallelogram"; diff --git a/src/ssr/Park.tsx b/src/ssr/Park.tsx new file mode 100644 index 000000000..0d63a5e5d --- /dev/null +++ b/src/ssr/Park.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Park"; + +export const Park: Icon = forwardRef((props, ref) => ( + +)); + +Park.displayName = "Park"; diff --git a/src/ssr/Password.tsx b/src/ssr/Password.tsx new file mode 100644 index 000000000..e5179daea --- /dev/null +++ b/src/ssr/Password.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Password"; + +export const Password: Icon = forwardRef((props, ref) => ( + +)); + +Password.displayName = "Password"; diff --git a/src/ssr/Path.tsx b/src/ssr/Path.tsx new file mode 100644 index 000000000..363148f71 --- /dev/null +++ b/src/ssr/Path.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Path"; + +export const Path: Icon = forwardRef((props, ref) => ( + +)); + +Path.displayName = "Path"; diff --git a/src/ssr/PatreonLogo.tsx b/src/ssr/PatreonLogo.tsx new file mode 100644 index 000000000..da6ebeca7 --- /dev/null +++ b/src/ssr/PatreonLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PatreonLogo"; + +export const PatreonLogo: Icon = forwardRef((props, ref) => ( + +)); + +PatreonLogo.displayName = "PatreonLogo"; diff --git a/src/ssr/Pause.tsx b/src/ssr/Pause.tsx new file mode 100644 index 000000000..396b8eed5 --- /dev/null +++ b/src/ssr/Pause.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pause"; + +export const Pause: Icon = forwardRef((props, ref) => ( + +)); + +Pause.displayName = "Pause"; diff --git a/src/ssr/PauseCircle.tsx b/src/ssr/PauseCircle.tsx new file mode 100644 index 000000000..850c4ed8b --- /dev/null +++ b/src/ssr/PauseCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PauseCircle"; + +export const PauseCircle: Icon = forwardRef((props, ref) => ( + +)); + +PauseCircle.displayName = "PauseCircle"; diff --git a/src/ssr/PawPrint.tsx b/src/ssr/PawPrint.tsx new file mode 100644 index 000000000..47b9dcb71 --- /dev/null +++ b/src/ssr/PawPrint.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PawPrint"; + +export const PawPrint: Icon = forwardRef((props, ref) => ( + +)); + +PawPrint.displayName = "PawPrint"; diff --git a/src/ssr/PaypalLogo.tsx b/src/ssr/PaypalLogo.tsx new file mode 100644 index 000000000..b39ce89e1 --- /dev/null +++ b/src/ssr/PaypalLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PaypalLogo"; + +export const PaypalLogo: Icon = forwardRef((props, ref) => ( + +)); + +PaypalLogo.displayName = "PaypalLogo"; diff --git a/src/ssr/Peace.tsx b/src/ssr/Peace.tsx new file mode 100644 index 000000000..3ad0fa369 --- /dev/null +++ b/src/ssr/Peace.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Peace"; + +export const Peace: Icon = forwardRef((props, ref) => ( + +)); + +Peace.displayName = "Peace"; diff --git a/src/ssr/Pen.tsx b/src/ssr/Pen.tsx new file mode 100644 index 000000000..ad3761847 --- /dev/null +++ b/src/ssr/Pen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pen"; + +export const Pen: Icon = forwardRef((props, ref) => ( + +)); + +Pen.displayName = "Pen"; diff --git a/src/ssr/PenNib.tsx b/src/ssr/PenNib.tsx new file mode 100644 index 000000000..5d67b436c --- /dev/null +++ b/src/ssr/PenNib.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PenNib"; + +export const PenNib: Icon = forwardRef((props, ref) => ( + +)); + +PenNib.displayName = "PenNib"; diff --git a/src/ssr/PenNibStraight.tsx b/src/ssr/PenNibStraight.tsx new file mode 100644 index 000000000..ac7ee5b40 --- /dev/null +++ b/src/ssr/PenNibStraight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PenNibStraight"; + +export const PenNibStraight: Icon = forwardRef((props, ref) => ( + +)); + +PenNibStraight.displayName = "PenNibStraight"; diff --git a/src/ssr/Pencil.tsx b/src/ssr/Pencil.tsx new file mode 100644 index 000000000..b2f89d5a4 --- /dev/null +++ b/src/ssr/Pencil.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pencil"; + +export const Pencil: Icon = forwardRef((props, ref) => ( + +)); + +Pencil.displayName = "Pencil"; diff --git a/src/ssr/PencilCircle.tsx b/src/ssr/PencilCircle.tsx new file mode 100644 index 000000000..6eaeeef65 --- /dev/null +++ b/src/ssr/PencilCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PencilCircle"; + +export const PencilCircle: Icon = forwardRef((props, ref) => ( + +)); + +PencilCircle.displayName = "PencilCircle"; diff --git a/src/ssr/PencilLine.tsx b/src/ssr/PencilLine.tsx new file mode 100644 index 000000000..a19dede78 --- /dev/null +++ b/src/ssr/PencilLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PencilLine"; + +export const PencilLine: Icon = forwardRef((props, ref) => ( + +)); + +PencilLine.displayName = "PencilLine"; diff --git a/src/ssr/PencilSimple.tsx b/src/ssr/PencilSimple.tsx new file mode 100644 index 000000000..27c16f610 --- /dev/null +++ b/src/ssr/PencilSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PencilSimple"; + +export const PencilSimple: Icon = forwardRef((props, ref) => ( + +)); + +PencilSimple.displayName = "PencilSimple"; diff --git a/src/ssr/PencilSimpleLine.tsx b/src/ssr/PencilSimpleLine.tsx new file mode 100644 index 000000000..b227e29f3 --- /dev/null +++ b/src/ssr/PencilSimpleLine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PencilSimpleLine"; + +export const PencilSimpleLine: Icon = forwardRef((props, ref) => ( + +)); + +PencilSimpleLine.displayName = "PencilSimpleLine"; diff --git a/src/ssr/PencilSimpleSlash.tsx b/src/ssr/PencilSimpleSlash.tsx new file mode 100644 index 000000000..bf7f0d8a7 --- /dev/null +++ b/src/ssr/PencilSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PencilSimpleSlash"; + +export const PencilSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +PencilSimpleSlash.displayName = "PencilSimpleSlash"; diff --git a/src/ssr/PencilSlash.tsx b/src/ssr/PencilSlash.tsx new file mode 100644 index 000000000..18e432d1d --- /dev/null +++ b/src/ssr/PencilSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PencilSlash"; + +export const PencilSlash: Icon = forwardRef((props, ref) => ( + +)); + +PencilSlash.displayName = "PencilSlash"; diff --git a/src/ssr/Pentagram.tsx b/src/ssr/Pentagram.tsx new file mode 100644 index 000000000..81b761d9a --- /dev/null +++ b/src/ssr/Pentagram.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pentagram"; + +export const Pentagram: Icon = forwardRef((props, ref) => ( + +)); + +Pentagram.displayName = "Pentagram"; diff --git a/src/ssr/Pepper.tsx b/src/ssr/Pepper.tsx new file mode 100644 index 000000000..a6790078e --- /dev/null +++ b/src/ssr/Pepper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pepper"; + +export const Pepper: Icon = forwardRef((props, ref) => ( + +)); + +Pepper.displayName = "Pepper"; diff --git a/src/ssr/Percent.tsx b/src/ssr/Percent.tsx new file mode 100644 index 000000000..927577830 --- /dev/null +++ b/src/ssr/Percent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Percent"; + +export const Percent: Icon = forwardRef((props, ref) => ( + +)); + +Percent.displayName = "Percent"; diff --git a/src/ssr/Person.tsx b/src/ssr/Person.tsx new file mode 100644 index 000000000..8d188dd2a --- /dev/null +++ b/src/ssr/Person.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Person"; + +export const Person: Icon = forwardRef((props, ref) => ( + +)); + +Person.displayName = "Person"; diff --git a/src/ssr/PersonArmsSpread.tsx b/src/ssr/PersonArmsSpread.tsx new file mode 100644 index 000000000..debd44448 --- /dev/null +++ b/src/ssr/PersonArmsSpread.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PersonArmsSpread"; + +export const PersonArmsSpread: Icon = forwardRef((props, ref) => ( + +)); + +PersonArmsSpread.displayName = "PersonArmsSpread"; diff --git a/src/ssr/PersonSimple.tsx b/src/ssr/PersonSimple.tsx new file mode 100644 index 000000000..593284bc7 --- /dev/null +++ b/src/ssr/PersonSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PersonSimple"; + +export const PersonSimple: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimple.displayName = "PersonSimple"; diff --git a/src/ssr/PersonSimpleBike.tsx b/src/ssr/PersonSimpleBike.tsx new file mode 100644 index 000000000..d09174eb2 --- /dev/null +++ b/src/ssr/PersonSimpleBike.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PersonSimpleBike"; + +export const PersonSimpleBike: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleBike.displayName = "PersonSimpleBike"; diff --git a/src/ssr/PersonSimpleRun.tsx b/src/ssr/PersonSimpleRun.tsx new file mode 100644 index 000000000..f0db3d7ad --- /dev/null +++ b/src/ssr/PersonSimpleRun.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PersonSimpleRun"; + +export const PersonSimpleRun: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleRun.displayName = "PersonSimpleRun"; diff --git a/src/ssr/PersonSimpleThrow.tsx b/src/ssr/PersonSimpleThrow.tsx new file mode 100644 index 000000000..16960091a --- /dev/null +++ b/src/ssr/PersonSimpleThrow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PersonSimpleThrow"; + +export const PersonSimpleThrow: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleThrow.displayName = "PersonSimpleThrow"; diff --git a/src/ssr/PersonSimpleWalk.tsx b/src/ssr/PersonSimpleWalk.tsx new file mode 100644 index 000000000..f7dc13dcb --- /dev/null +++ b/src/ssr/PersonSimpleWalk.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PersonSimpleWalk"; + +export const PersonSimpleWalk: Icon = forwardRef((props, ref) => ( + +)); + +PersonSimpleWalk.displayName = "PersonSimpleWalk"; diff --git a/src/ssr/Perspective.tsx b/src/ssr/Perspective.tsx new file mode 100644 index 000000000..285831594 --- /dev/null +++ b/src/ssr/Perspective.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Perspective"; + +export const Perspective: Icon = forwardRef((props, ref) => ( + +)); + +Perspective.displayName = "Perspective"; diff --git a/src/ssr/Phone.tsx b/src/ssr/Phone.tsx new file mode 100644 index 000000000..3d1e5a426 --- /dev/null +++ b/src/ssr/Phone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Phone"; + +export const Phone: Icon = forwardRef((props, ref) => ( + +)); + +Phone.displayName = "Phone"; diff --git a/src/ssr/PhoneCall.tsx b/src/ssr/PhoneCall.tsx new file mode 100644 index 000000000..659ed38e7 --- /dev/null +++ b/src/ssr/PhoneCall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhoneCall"; + +export const PhoneCall: Icon = forwardRef((props, ref) => ( + +)); + +PhoneCall.displayName = "PhoneCall"; diff --git a/src/ssr/PhoneDisconnect.tsx b/src/ssr/PhoneDisconnect.tsx new file mode 100644 index 000000000..71e365e91 --- /dev/null +++ b/src/ssr/PhoneDisconnect.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhoneDisconnect"; + +export const PhoneDisconnect: Icon = forwardRef((props, ref) => ( + +)); + +PhoneDisconnect.displayName = "PhoneDisconnect"; diff --git a/src/ssr/PhoneIncoming.tsx b/src/ssr/PhoneIncoming.tsx new file mode 100644 index 000000000..bfc4f5519 --- /dev/null +++ b/src/ssr/PhoneIncoming.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhoneIncoming"; + +export const PhoneIncoming: Icon = forwardRef((props, ref) => ( + +)); + +PhoneIncoming.displayName = "PhoneIncoming"; diff --git a/src/ssr/PhoneOutgoing.tsx b/src/ssr/PhoneOutgoing.tsx new file mode 100644 index 000000000..6b9501c48 --- /dev/null +++ b/src/ssr/PhoneOutgoing.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhoneOutgoing"; + +export const PhoneOutgoing: Icon = forwardRef((props, ref) => ( + +)); + +PhoneOutgoing.displayName = "PhoneOutgoing"; diff --git a/src/ssr/PhonePlus.tsx b/src/ssr/PhonePlus.tsx new file mode 100644 index 000000000..4c40a3de3 --- /dev/null +++ b/src/ssr/PhonePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhonePlus"; + +export const PhonePlus: Icon = forwardRef((props, ref) => ( + +)); + +PhonePlus.displayName = "PhonePlus"; diff --git a/src/ssr/PhoneSlash.tsx b/src/ssr/PhoneSlash.tsx new file mode 100644 index 000000000..30c00366f --- /dev/null +++ b/src/ssr/PhoneSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhoneSlash"; + +export const PhoneSlash: Icon = forwardRef((props, ref) => ( + +)); + +PhoneSlash.displayName = "PhoneSlash"; diff --git a/src/ssr/PhoneX.tsx b/src/ssr/PhoneX.tsx new file mode 100644 index 000000000..07796becf --- /dev/null +++ b/src/ssr/PhoneX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhoneX"; + +export const PhoneX: Icon = forwardRef((props, ref) => ( + +)); + +PhoneX.displayName = "PhoneX"; diff --git a/src/ssr/PhosphorLogo.tsx b/src/ssr/PhosphorLogo.tsx new file mode 100644 index 000000000..ed432948c --- /dev/null +++ b/src/ssr/PhosphorLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PhosphorLogo"; + +export const PhosphorLogo: Icon = forwardRef((props, ref) => ( + +)); + +PhosphorLogo.displayName = "PhosphorLogo"; diff --git a/src/ssr/Pi.tsx b/src/ssr/Pi.tsx new file mode 100644 index 000000000..31b304fb1 --- /dev/null +++ b/src/ssr/Pi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pi"; + +export const Pi: Icon = forwardRef((props, ref) => ( + +)); + +Pi.displayName = "Pi"; diff --git a/src/ssr/PianoKeys.tsx b/src/ssr/PianoKeys.tsx new file mode 100644 index 000000000..2569b639f --- /dev/null +++ b/src/ssr/PianoKeys.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PianoKeys"; + +export const PianoKeys: Icon = forwardRef((props, ref) => ( + +)); + +PianoKeys.displayName = "PianoKeys"; diff --git a/src/ssr/PictureInPicture.tsx b/src/ssr/PictureInPicture.tsx new file mode 100644 index 000000000..5eeec7dc8 --- /dev/null +++ b/src/ssr/PictureInPicture.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PictureInPicture"; + +export const PictureInPicture: Icon = forwardRef((props, ref) => ( + +)); + +PictureInPicture.displayName = "PictureInPicture"; diff --git a/src/ssr/PiggyBank.tsx b/src/ssr/PiggyBank.tsx new file mode 100644 index 000000000..ffba2e9fd --- /dev/null +++ b/src/ssr/PiggyBank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PiggyBank"; + +export const PiggyBank: Icon = forwardRef((props, ref) => ( + +)); + +PiggyBank.displayName = "PiggyBank"; diff --git a/src/ssr/Pill.tsx b/src/ssr/Pill.tsx new file mode 100644 index 000000000..3316c9713 --- /dev/null +++ b/src/ssr/Pill.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pill"; + +export const Pill: Icon = forwardRef((props, ref) => ( + +)); + +Pill.displayName = "Pill"; diff --git a/src/ssr/PinterestLogo.tsx b/src/ssr/PinterestLogo.tsx new file mode 100644 index 000000000..13a2f5a36 --- /dev/null +++ b/src/ssr/PinterestLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PinterestLogo"; + +export const PinterestLogo: Icon = forwardRef((props, ref) => ( + +)); + +PinterestLogo.displayName = "PinterestLogo"; diff --git a/src/ssr/Pinwheel.tsx b/src/ssr/Pinwheel.tsx new file mode 100644 index 000000000..d5562b5c1 --- /dev/null +++ b/src/ssr/Pinwheel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pinwheel"; + +export const Pinwheel: Icon = forwardRef((props, ref) => ( + +)); + +Pinwheel.displayName = "Pinwheel"; diff --git a/src/ssr/Pizza.tsx b/src/ssr/Pizza.tsx new file mode 100644 index 000000000..0392cfe28 --- /dev/null +++ b/src/ssr/Pizza.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pizza"; + +export const Pizza: Icon = forwardRef((props, ref) => ( + +)); + +Pizza.displayName = "Pizza"; diff --git a/src/ssr/Placeholder.tsx b/src/ssr/Placeholder.tsx new file mode 100644 index 000000000..7db667498 --- /dev/null +++ b/src/ssr/Placeholder.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Placeholder"; + +export const Placeholder: Icon = forwardRef((props, ref) => ( + +)); + +Placeholder.displayName = "Placeholder"; diff --git a/src/ssr/Planet.tsx b/src/ssr/Planet.tsx new file mode 100644 index 000000000..6427d0fb5 --- /dev/null +++ b/src/ssr/Planet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Planet"; + +export const Planet: Icon = forwardRef((props, ref) => ( + +)); + +Planet.displayName = "Planet"; diff --git a/src/ssr/Plant.tsx b/src/ssr/Plant.tsx new file mode 100644 index 000000000..d57920af2 --- /dev/null +++ b/src/ssr/Plant.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Plant"; + +export const Plant: Icon = forwardRef((props, ref) => ( + +)); + +Plant.displayName = "Plant"; diff --git a/src/ssr/Play.tsx b/src/ssr/Play.tsx new file mode 100644 index 000000000..386302bae --- /dev/null +++ b/src/ssr/Play.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Play"; + +export const Play: Icon = forwardRef((props, ref) => ( + +)); + +Play.displayName = "Play"; diff --git a/src/ssr/PlayCircle.tsx b/src/ssr/PlayCircle.tsx new file mode 100644 index 000000000..bb4ed9c2c --- /dev/null +++ b/src/ssr/PlayCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PlayCircle"; + +export const PlayCircle: Icon = forwardRef((props, ref) => ( + +)); + +PlayCircle.displayName = "PlayCircle"; diff --git a/src/ssr/PlayPause.tsx b/src/ssr/PlayPause.tsx new file mode 100644 index 000000000..e32cac982 --- /dev/null +++ b/src/ssr/PlayPause.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PlayPause"; + +export const PlayPause: Icon = forwardRef((props, ref) => ( + +)); + +PlayPause.displayName = "PlayPause"; diff --git a/src/ssr/Playlist.tsx b/src/ssr/Playlist.tsx new file mode 100644 index 000000000..a2cfbf036 --- /dev/null +++ b/src/ssr/Playlist.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Playlist"; + +export const Playlist: Icon = forwardRef((props, ref) => ( + +)); + +Playlist.displayName = "Playlist"; diff --git a/src/ssr/Plug.tsx b/src/ssr/Plug.tsx new file mode 100644 index 000000000..4c6f37907 --- /dev/null +++ b/src/ssr/Plug.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Plug"; + +export const Plug: Icon = forwardRef((props, ref) => ( + +)); + +Plug.displayName = "Plug"; diff --git a/src/ssr/PlugCharging.tsx b/src/ssr/PlugCharging.tsx new file mode 100644 index 000000000..117131fed --- /dev/null +++ b/src/ssr/PlugCharging.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PlugCharging"; + +export const PlugCharging: Icon = forwardRef((props, ref) => ( + +)); + +PlugCharging.displayName = "PlugCharging"; diff --git a/src/ssr/Plugs.tsx b/src/ssr/Plugs.tsx new file mode 100644 index 000000000..9ccbea1f4 --- /dev/null +++ b/src/ssr/Plugs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Plugs"; + +export const Plugs: Icon = forwardRef((props, ref) => ( + +)); + +Plugs.displayName = "Plugs"; diff --git a/src/ssr/PlugsConnected.tsx b/src/ssr/PlugsConnected.tsx new file mode 100644 index 000000000..7e195e970 --- /dev/null +++ b/src/ssr/PlugsConnected.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PlugsConnected"; + +export const PlugsConnected: Icon = forwardRef((props, ref) => ( + +)); + +PlugsConnected.displayName = "PlugsConnected"; diff --git a/src/ssr/Plus.tsx b/src/ssr/Plus.tsx new file mode 100644 index 000000000..3f7857e17 --- /dev/null +++ b/src/ssr/Plus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Plus"; + +export const Plus: Icon = forwardRef((props, ref) => ( + +)); + +Plus.displayName = "Plus"; diff --git a/src/ssr/PlusCircle.tsx b/src/ssr/PlusCircle.tsx new file mode 100644 index 000000000..97174aac2 --- /dev/null +++ b/src/ssr/PlusCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PlusCircle"; + +export const PlusCircle: Icon = forwardRef((props, ref) => ( + +)); + +PlusCircle.displayName = "PlusCircle"; diff --git a/src/ssr/PlusMinus.tsx b/src/ssr/PlusMinus.tsx new file mode 100644 index 000000000..7a4e5e69f --- /dev/null +++ b/src/ssr/PlusMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PlusMinus"; + +export const PlusMinus: Icon = forwardRef((props, ref) => ( + +)); + +PlusMinus.displayName = "PlusMinus"; diff --git a/src/ssr/PlusSquare.tsx b/src/ssr/PlusSquare.tsx new file mode 100644 index 000000000..3b7b70fc2 --- /dev/null +++ b/src/ssr/PlusSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PlusSquare"; + +export const PlusSquare: Icon = forwardRef((props, ref) => ( + +)); + +PlusSquare.displayName = "PlusSquare"; diff --git a/src/ssr/PokerChip.tsx b/src/ssr/PokerChip.tsx new file mode 100644 index 000000000..390fdfa90 --- /dev/null +++ b/src/ssr/PokerChip.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PokerChip"; + +export const PokerChip: Icon = forwardRef((props, ref) => ( + +)); + +PokerChip.displayName = "PokerChip"; diff --git a/src/ssr/PoliceCar.tsx b/src/ssr/PoliceCar.tsx new file mode 100644 index 000000000..003663dde --- /dev/null +++ b/src/ssr/PoliceCar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PoliceCar"; + +export const PoliceCar: Icon = forwardRef((props, ref) => ( + +)); + +PoliceCar.displayName = "PoliceCar"; diff --git a/src/ssr/Polygon.tsx b/src/ssr/Polygon.tsx new file mode 100644 index 000000000..0393a88dc --- /dev/null +++ b/src/ssr/Polygon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Polygon"; + +export const Polygon: Icon = forwardRef((props, ref) => ( + +)); + +Polygon.displayName = "Polygon"; diff --git a/src/ssr/Popcorn.tsx b/src/ssr/Popcorn.tsx new file mode 100644 index 000000000..8a0831e46 --- /dev/null +++ b/src/ssr/Popcorn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Popcorn"; + +export const Popcorn: Icon = forwardRef((props, ref) => ( + +)); + +Popcorn.displayName = "Popcorn"; diff --git a/src/ssr/PottedPlant.tsx b/src/ssr/PottedPlant.tsx new file mode 100644 index 000000000..983195373 --- /dev/null +++ b/src/ssr/PottedPlant.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PottedPlant"; + +export const PottedPlant: Icon = forwardRef((props, ref) => ( + +)); + +PottedPlant.displayName = "PottedPlant"; diff --git a/src/ssr/Power.tsx b/src/ssr/Power.tsx new file mode 100644 index 000000000..12b0f6582 --- /dev/null +++ b/src/ssr/Power.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Power"; + +export const Power: Icon = forwardRef((props, ref) => ( + +)); + +Power.displayName = "Power"; diff --git a/src/ssr/Prescription.tsx b/src/ssr/Prescription.tsx new file mode 100644 index 000000000..a6bd02be6 --- /dev/null +++ b/src/ssr/Prescription.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Prescription"; + +export const Prescription: Icon = forwardRef((props, ref) => ( + +)); + +Prescription.displayName = "Prescription"; diff --git a/src/ssr/Presentation.tsx b/src/ssr/Presentation.tsx new file mode 100644 index 000000000..6cc363bb0 --- /dev/null +++ b/src/ssr/Presentation.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Presentation"; + +export const Presentation: Icon = forwardRef((props, ref) => ( + +)); + +Presentation.displayName = "Presentation"; diff --git a/src/ssr/PresentationChart.tsx b/src/ssr/PresentationChart.tsx new file mode 100644 index 000000000..f9b6d67e7 --- /dev/null +++ b/src/ssr/PresentationChart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PresentationChart"; + +export const PresentationChart: Icon = forwardRef((props, ref) => ( + +)); + +PresentationChart.displayName = "PresentationChart"; diff --git a/src/ssr/Printer.tsx b/src/ssr/Printer.tsx new file mode 100644 index 000000000..7a8079edb --- /dev/null +++ b/src/ssr/Printer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Printer"; + +export const Printer: Icon = forwardRef((props, ref) => ( + +)); + +Printer.displayName = "Printer"; diff --git a/src/ssr/Prohibit.tsx b/src/ssr/Prohibit.tsx new file mode 100644 index 000000000..965c9795d --- /dev/null +++ b/src/ssr/Prohibit.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Prohibit"; + +export const Prohibit: Icon = forwardRef((props, ref) => ( + +)); + +Prohibit.displayName = "Prohibit"; diff --git a/src/ssr/ProhibitInset.tsx b/src/ssr/ProhibitInset.tsx new file mode 100644 index 000000000..3ba407c6c --- /dev/null +++ b/src/ssr/ProhibitInset.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ProhibitInset"; + +export const ProhibitInset: Icon = forwardRef((props, ref) => ( + +)); + +ProhibitInset.displayName = "ProhibitInset"; diff --git a/src/ssr/ProjectorScreen.tsx b/src/ssr/ProjectorScreen.tsx new file mode 100644 index 000000000..71aba7d4b --- /dev/null +++ b/src/ssr/ProjectorScreen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ProjectorScreen"; + +export const ProjectorScreen: Icon = forwardRef((props, ref) => ( + +)); + +ProjectorScreen.displayName = "ProjectorScreen"; diff --git a/src/ssr/ProjectorScreenChart.tsx b/src/ssr/ProjectorScreenChart.tsx new file mode 100644 index 000000000..e93b1ad1f --- /dev/null +++ b/src/ssr/ProjectorScreenChart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ProjectorScreenChart"; + +export const ProjectorScreenChart: Icon = forwardRef((props, ref) => ( + +)); + +ProjectorScreenChart.displayName = "ProjectorScreenChart"; diff --git a/src/ssr/Pulse.tsx b/src/ssr/Pulse.tsx new file mode 100644 index 000000000..02d8df75e --- /dev/null +++ b/src/ssr/Pulse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Pulse"; + +export const Pulse: Icon = forwardRef((props, ref) => ( + +)); + +Pulse.displayName = "Pulse"; diff --git a/src/ssr/PushPin.tsx b/src/ssr/PushPin.tsx new file mode 100644 index 000000000..5821345ae --- /dev/null +++ b/src/ssr/PushPin.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PushPin"; + +export const PushPin: Icon = forwardRef((props, ref) => ( + +)); + +PushPin.displayName = "PushPin"; diff --git a/src/ssr/PushPinSimple.tsx b/src/ssr/PushPinSimple.tsx new file mode 100644 index 000000000..1b90c9996 --- /dev/null +++ b/src/ssr/PushPinSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PushPinSimple"; + +export const PushPinSimple: Icon = forwardRef((props, ref) => ( + +)); + +PushPinSimple.displayName = "PushPinSimple"; diff --git a/src/ssr/PushPinSimpleSlash.tsx b/src/ssr/PushPinSimpleSlash.tsx new file mode 100644 index 000000000..07a4ed7d0 --- /dev/null +++ b/src/ssr/PushPinSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PushPinSimpleSlash"; + +export const PushPinSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +PushPinSimpleSlash.displayName = "PushPinSimpleSlash"; diff --git a/src/ssr/PushPinSlash.tsx b/src/ssr/PushPinSlash.tsx new file mode 100644 index 000000000..a3ddfc4a8 --- /dev/null +++ b/src/ssr/PushPinSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PushPinSlash"; + +export const PushPinSlash: Icon = forwardRef((props, ref) => ( + +)); + +PushPinSlash.displayName = "PushPinSlash"; diff --git a/src/ssr/PuzzlePiece.tsx b/src/ssr/PuzzlePiece.tsx new file mode 100644 index 000000000..f33e95fd3 --- /dev/null +++ b/src/ssr/PuzzlePiece.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/PuzzlePiece"; + +export const PuzzlePiece: Icon = forwardRef((props, ref) => ( + +)); + +PuzzlePiece.displayName = "PuzzlePiece"; diff --git a/src/ssr/QrCode.tsx b/src/ssr/QrCode.tsx new file mode 100644 index 000000000..7b3e81011 --- /dev/null +++ b/src/ssr/QrCode.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/QrCode"; + +export const QrCode: Icon = forwardRef((props, ref) => ( + +)); + +QrCode.displayName = "QrCode"; diff --git a/src/ssr/Question.tsx b/src/ssr/Question.tsx new file mode 100644 index 000000000..8a31eb5a9 --- /dev/null +++ b/src/ssr/Question.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Question"; + +export const Question: Icon = forwardRef((props, ref) => ( + +)); + +Question.displayName = "Question"; diff --git a/src/ssr/Queue.tsx b/src/ssr/Queue.tsx new file mode 100644 index 000000000..d8cbea599 --- /dev/null +++ b/src/ssr/Queue.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Queue"; + +export const Queue: Icon = forwardRef((props, ref) => ( + +)); + +Queue.displayName = "Queue"; diff --git a/src/ssr/Quotes.tsx b/src/ssr/Quotes.tsx new file mode 100644 index 000000000..13b196f17 --- /dev/null +++ b/src/ssr/Quotes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Quotes"; + +export const Quotes: Icon = forwardRef((props, ref) => ( + +)); + +Quotes.displayName = "Quotes"; diff --git a/src/ssr/Radical.tsx b/src/ssr/Radical.tsx new file mode 100644 index 000000000..a1d5052b4 --- /dev/null +++ b/src/ssr/Radical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Radical"; + +export const Radical: Icon = forwardRef((props, ref) => ( + +)); + +Radical.displayName = "Radical"; diff --git a/src/ssr/Radio.tsx b/src/ssr/Radio.tsx new file mode 100644 index 000000000..4475b7c52 --- /dev/null +++ b/src/ssr/Radio.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Radio"; + +export const Radio: Icon = forwardRef((props, ref) => ( + +)); + +Radio.displayName = "Radio"; diff --git a/src/ssr/RadioButton.tsx b/src/ssr/RadioButton.tsx new file mode 100644 index 000000000..974c8cf82 --- /dev/null +++ b/src/ssr/RadioButton.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RadioButton"; + +export const RadioButton: Icon = forwardRef((props, ref) => ( + +)); + +RadioButton.displayName = "RadioButton"; diff --git a/src/ssr/Radioactive.tsx b/src/ssr/Radioactive.tsx new file mode 100644 index 000000000..b8ea652af --- /dev/null +++ b/src/ssr/Radioactive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Radioactive"; + +export const Radioactive: Icon = forwardRef((props, ref) => ( + +)); + +Radioactive.displayName = "Radioactive"; diff --git a/src/ssr/Rainbow.tsx b/src/ssr/Rainbow.tsx new file mode 100644 index 000000000..a073921ce --- /dev/null +++ b/src/ssr/Rainbow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Rainbow"; + +export const Rainbow: Icon = forwardRef((props, ref) => ( + +)); + +Rainbow.displayName = "Rainbow"; diff --git a/src/ssr/RainbowCloud.tsx b/src/ssr/RainbowCloud.tsx new file mode 100644 index 000000000..77821a341 --- /dev/null +++ b/src/ssr/RainbowCloud.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RainbowCloud"; + +export const RainbowCloud: Icon = forwardRef((props, ref) => ( + +)); + +RainbowCloud.displayName = "RainbowCloud"; diff --git a/src/ssr/ReadCvLogo.tsx b/src/ssr/ReadCvLogo.tsx new file mode 100644 index 000000000..57a53f2bd --- /dev/null +++ b/src/ssr/ReadCvLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ReadCvLogo"; + +export const ReadCvLogo: Icon = forwardRef((props, ref) => ( + +)); + +ReadCvLogo.displayName = "ReadCvLogo"; diff --git a/src/ssr/Receipt.tsx b/src/ssr/Receipt.tsx new file mode 100644 index 000000000..68eadcc22 --- /dev/null +++ b/src/ssr/Receipt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Receipt"; + +export const Receipt: Icon = forwardRef((props, ref) => ( + +)); + +Receipt.displayName = "Receipt"; diff --git a/src/ssr/ReceiptX.tsx b/src/ssr/ReceiptX.tsx new file mode 100644 index 000000000..1df074760 --- /dev/null +++ b/src/ssr/ReceiptX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ReceiptX"; + +export const ReceiptX: Icon = forwardRef((props, ref) => ( + +)); + +ReceiptX.displayName = "ReceiptX"; diff --git a/src/ssr/Record.tsx b/src/ssr/Record.tsx new file mode 100644 index 000000000..7ab5567e6 --- /dev/null +++ b/src/ssr/Record.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Record"; + +export const Record: Icon = forwardRef((props, ref) => ( + +)); + +Record.displayName = "Record"; diff --git a/src/ssr/Rectangle.tsx b/src/ssr/Rectangle.tsx new file mode 100644 index 000000000..4912cdcf9 --- /dev/null +++ b/src/ssr/Rectangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Rectangle"; + +export const Rectangle: Icon = forwardRef((props, ref) => ( + +)); + +Rectangle.displayName = "Rectangle"; diff --git a/src/ssr/Recycle.tsx b/src/ssr/Recycle.tsx new file mode 100644 index 000000000..9424772a5 --- /dev/null +++ b/src/ssr/Recycle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Recycle"; + +export const Recycle: Icon = forwardRef((props, ref) => ( + +)); + +Recycle.displayName = "Recycle"; diff --git a/src/ssr/RedditLogo.tsx b/src/ssr/RedditLogo.tsx new file mode 100644 index 000000000..cb2026762 --- /dev/null +++ b/src/ssr/RedditLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RedditLogo"; + +export const RedditLogo: Icon = forwardRef((props, ref) => ( + +)); + +RedditLogo.displayName = "RedditLogo"; diff --git a/src/ssr/Repeat.tsx b/src/ssr/Repeat.tsx new file mode 100644 index 000000000..129d5d689 --- /dev/null +++ b/src/ssr/Repeat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Repeat"; + +export const Repeat: Icon = forwardRef((props, ref) => ( + +)); + +Repeat.displayName = "Repeat"; diff --git a/src/ssr/RepeatOnce.tsx b/src/ssr/RepeatOnce.tsx new file mode 100644 index 000000000..ec78f2290 --- /dev/null +++ b/src/ssr/RepeatOnce.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RepeatOnce"; + +export const RepeatOnce: Icon = forwardRef((props, ref) => ( + +)); + +RepeatOnce.displayName = "RepeatOnce"; diff --git a/src/ssr/Rewind.tsx b/src/ssr/Rewind.tsx new file mode 100644 index 000000000..91396dc7e --- /dev/null +++ b/src/ssr/Rewind.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Rewind"; + +export const Rewind: Icon = forwardRef((props, ref) => ( + +)); + +Rewind.displayName = "Rewind"; diff --git a/src/ssr/RewindCircle.tsx b/src/ssr/RewindCircle.tsx new file mode 100644 index 000000000..256d0f72d --- /dev/null +++ b/src/ssr/RewindCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RewindCircle"; + +export const RewindCircle: Icon = forwardRef((props, ref) => ( + +)); + +RewindCircle.displayName = "RewindCircle"; diff --git a/src/ssr/RoadHorizon.tsx b/src/ssr/RoadHorizon.tsx new file mode 100644 index 000000000..5f0a28920 --- /dev/null +++ b/src/ssr/RoadHorizon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RoadHorizon"; + +export const RoadHorizon: Icon = forwardRef((props, ref) => ( + +)); + +RoadHorizon.displayName = "RoadHorizon"; diff --git a/src/ssr/Robot.tsx b/src/ssr/Robot.tsx new file mode 100644 index 000000000..93d6dda2f --- /dev/null +++ b/src/ssr/Robot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Robot"; + +export const Robot: Icon = forwardRef((props, ref) => ( + +)); + +Robot.displayName = "Robot"; diff --git a/src/ssr/Rocket.tsx b/src/ssr/Rocket.tsx new file mode 100644 index 000000000..238577c49 --- /dev/null +++ b/src/ssr/Rocket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Rocket"; + +export const Rocket: Icon = forwardRef((props, ref) => ( + +)); + +Rocket.displayName = "Rocket"; diff --git a/src/ssr/RocketLaunch.tsx b/src/ssr/RocketLaunch.tsx new file mode 100644 index 000000000..5962ca701 --- /dev/null +++ b/src/ssr/RocketLaunch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RocketLaunch"; + +export const RocketLaunch: Icon = forwardRef((props, ref) => ( + +)); + +RocketLaunch.displayName = "RocketLaunch"; diff --git a/src/ssr/Rows.tsx b/src/ssr/Rows.tsx new file mode 100644 index 000000000..5e3b54f1c --- /dev/null +++ b/src/ssr/Rows.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Rows"; + +export const Rows: Icon = forwardRef((props, ref) => ( + +)); + +Rows.displayName = "Rows"; diff --git a/src/ssr/Rss.tsx b/src/ssr/Rss.tsx new file mode 100644 index 000000000..5b66370f7 --- /dev/null +++ b/src/ssr/Rss.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Rss"; + +export const Rss: Icon = forwardRef((props, ref) => ( + +)); + +Rss.displayName = "Rss"; diff --git a/src/ssr/RssSimple.tsx b/src/ssr/RssSimple.tsx new file mode 100644 index 000000000..4d60ec85f --- /dev/null +++ b/src/ssr/RssSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/RssSimple"; + +export const RssSimple: Icon = forwardRef((props, ref) => ( + +)); + +RssSimple.displayName = "RssSimple"; diff --git a/src/ssr/Rug.tsx b/src/ssr/Rug.tsx new file mode 100644 index 000000000..861d3db40 --- /dev/null +++ b/src/ssr/Rug.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Rug"; + +export const Rug: Icon = forwardRef((props, ref) => ( + +)); + +Rug.displayName = "Rug"; diff --git a/src/ssr/Ruler.tsx b/src/ssr/Ruler.tsx new file mode 100644 index 000000000..d8833ebb8 --- /dev/null +++ b/src/ssr/Ruler.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Ruler"; + +export const Ruler: Icon = forwardRef((props, ref) => ( + +)); + +Ruler.displayName = "Ruler"; diff --git a/src/ssr/Scales.tsx b/src/ssr/Scales.tsx new file mode 100644 index 000000000..f4b0f1d42 --- /dev/null +++ b/src/ssr/Scales.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Scales"; + +export const Scales: Icon = forwardRef((props, ref) => ( + +)); + +Scales.displayName = "Scales"; diff --git a/src/ssr/Scan.tsx b/src/ssr/Scan.tsx new file mode 100644 index 000000000..a45eea2c9 --- /dev/null +++ b/src/ssr/Scan.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Scan"; + +export const Scan: Icon = forwardRef((props, ref) => ( + +)); + +Scan.displayName = "Scan"; diff --git a/src/ssr/Scissors.tsx b/src/ssr/Scissors.tsx new file mode 100644 index 000000000..47476e97a --- /dev/null +++ b/src/ssr/Scissors.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Scissors"; + +export const Scissors: Icon = forwardRef((props, ref) => ( + +)); + +Scissors.displayName = "Scissors"; diff --git a/src/ssr/Scooter.tsx b/src/ssr/Scooter.tsx new file mode 100644 index 000000000..63282ed4b --- /dev/null +++ b/src/ssr/Scooter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Scooter"; + +export const Scooter: Icon = forwardRef((props, ref) => ( + +)); + +Scooter.displayName = "Scooter"; diff --git a/src/ssr/Screencast.tsx b/src/ssr/Screencast.tsx new file mode 100644 index 000000000..bb3a6b522 --- /dev/null +++ b/src/ssr/Screencast.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Screencast"; + +export const Screencast: Icon = forwardRef((props, ref) => ( + +)); + +Screencast.displayName = "Screencast"; diff --git a/src/ssr/ScribbleLoop.tsx b/src/ssr/ScribbleLoop.tsx new file mode 100644 index 000000000..b6580d6d4 --- /dev/null +++ b/src/ssr/ScribbleLoop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ScribbleLoop"; + +export const ScribbleLoop: Icon = forwardRef((props, ref) => ( + +)); + +ScribbleLoop.displayName = "ScribbleLoop"; diff --git a/src/ssr/Scroll.tsx b/src/ssr/Scroll.tsx new file mode 100644 index 000000000..9cd54c0d8 --- /dev/null +++ b/src/ssr/Scroll.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Scroll"; + +export const Scroll: Icon = forwardRef((props, ref) => ( + +)); + +Scroll.displayName = "Scroll"; diff --git a/src/ssr/Seal.tsx b/src/ssr/Seal.tsx new file mode 100644 index 000000000..1739c007e --- /dev/null +++ b/src/ssr/Seal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Seal"; + +export const Seal: Icon = forwardRef((props, ref) => ( + +)); + +Seal.displayName = "Seal"; diff --git a/src/ssr/SealCheck.tsx b/src/ssr/SealCheck.tsx new file mode 100644 index 000000000..0b27f0505 --- /dev/null +++ b/src/ssr/SealCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SealCheck"; + +export const SealCheck: Icon = forwardRef((props, ref) => ( + +)); + +SealCheck.displayName = "SealCheck"; diff --git a/src/ssr/SealQuestion.tsx b/src/ssr/SealQuestion.tsx new file mode 100644 index 000000000..64d66bdf4 --- /dev/null +++ b/src/ssr/SealQuestion.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SealQuestion"; + +export const SealQuestion: Icon = forwardRef((props, ref) => ( + +)); + +SealQuestion.displayName = "SealQuestion"; diff --git a/src/ssr/SealWarning.tsx b/src/ssr/SealWarning.tsx new file mode 100644 index 000000000..44f6235d6 --- /dev/null +++ b/src/ssr/SealWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SealWarning"; + +export const SealWarning: Icon = forwardRef((props, ref) => ( + +)); + +SealWarning.displayName = "SealWarning"; diff --git a/src/ssr/Selection.tsx b/src/ssr/Selection.tsx new file mode 100644 index 000000000..11acf0556 --- /dev/null +++ b/src/ssr/Selection.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Selection"; + +export const Selection: Icon = forwardRef((props, ref) => ( + +)); + +Selection.displayName = "Selection"; diff --git a/src/ssr/SelectionAll.tsx b/src/ssr/SelectionAll.tsx new file mode 100644 index 000000000..94e914ea9 --- /dev/null +++ b/src/ssr/SelectionAll.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SelectionAll"; + +export const SelectionAll: Icon = forwardRef((props, ref) => ( + +)); + +SelectionAll.displayName = "SelectionAll"; diff --git a/src/ssr/SelectionBackground.tsx b/src/ssr/SelectionBackground.tsx new file mode 100644 index 000000000..23ce4237c --- /dev/null +++ b/src/ssr/SelectionBackground.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SelectionBackground"; + +export const SelectionBackground: Icon = forwardRef((props, ref) => ( + +)); + +SelectionBackground.displayName = "SelectionBackground"; diff --git a/src/ssr/SelectionForeground.tsx b/src/ssr/SelectionForeground.tsx new file mode 100644 index 000000000..60e479990 --- /dev/null +++ b/src/ssr/SelectionForeground.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SelectionForeground"; + +export const SelectionForeground: Icon = forwardRef((props, ref) => ( + +)); + +SelectionForeground.displayName = "SelectionForeground"; diff --git a/src/ssr/SelectionInverse.tsx b/src/ssr/SelectionInverse.tsx new file mode 100644 index 000000000..610869b31 --- /dev/null +++ b/src/ssr/SelectionInverse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SelectionInverse"; + +export const SelectionInverse: Icon = forwardRef((props, ref) => ( + +)); + +SelectionInverse.displayName = "SelectionInverse"; diff --git a/src/ssr/SelectionPlus.tsx b/src/ssr/SelectionPlus.tsx new file mode 100644 index 000000000..3a6320d97 --- /dev/null +++ b/src/ssr/SelectionPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SelectionPlus"; + +export const SelectionPlus: Icon = forwardRef((props, ref) => ( + +)); + +SelectionPlus.displayName = "SelectionPlus"; diff --git a/src/ssr/SelectionSlash.tsx b/src/ssr/SelectionSlash.tsx new file mode 100644 index 000000000..310fee29d --- /dev/null +++ b/src/ssr/SelectionSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SelectionSlash"; + +export const SelectionSlash: Icon = forwardRef((props, ref) => ( + +)); + +SelectionSlash.displayName = "SelectionSlash"; diff --git a/src/ssr/Shapes.tsx b/src/ssr/Shapes.tsx new file mode 100644 index 000000000..50f8d68be --- /dev/null +++ b/src/ssr/Shapes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Shapes"; + +export const Shapes: Icon = forwardRef((props, ref) => ( + +)); + +Shapes.displayName = "Shapes"; diff --git a/src/ssr/Share.tsx b/src/ssr/Share.tsx new file mode 100644 index 000000000..d23d5285f --- /dev/null +++ b/src/ssr/Share.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Share"; + +export const Share: Icon = forwardRef((props, ref) => ( + +)); + +Share.displayName = "Share"; diff --git a/src/ssr/ShareFat.tsx b/src/ssr/ShareFat.tsx new file mode 100644 index 000000000..9872825a1 --- /dev/null +++ b/src/ssr/ShareFat.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShareFat"; + +export const ShareFat: Icon = forwardRef((props, ref) => ( + +)); + +ShareFat.displayName = "ShareFat"; diff --git a/src/ssr/ShareNetwork.tsx b/src/ssr/ShareNetwork.tsx new file mode 100644 index 000000000..be71c23a9 --- /dev/null +++ b/src/ssr/ShareNetwork.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShareNetwork"; + +export const ShareNetwork: Icon = forwardRef((props, ref) => ( + +)); + +ShareNetwork.displayName = "ShareNetwork"; diff --git a/src/ssr/Shield.tsx b/src/ssr/Shield.tsx new file mode 100644 index 000000000..c68f86f07 --- /dev/null +++ b/src/ssr/Shield.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Shield"; + +export const Shield: Icon = forwardRef((props, ref) => ( + +)); + +Shield.displayName = "Shield"; diff --git a/src/ssr/ShieldCheck.tsx b/src/ssr/ShieldCheck.tsx new file mode 100644 index 000000000..9bf6453a6 --- /dev/null +++ b/src/ssr/ShieldCheck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShieldCheck"; + +export const ShieldCheck: Icon = forwardRef((props, ref) => ( + +)); + +ShieldCheck.displayName = "ShieldCheck"; diff --git a/src/ssr/ShieldCheckered.tsx b/src/ssr/ShieldCheckered.tsx new file mode 100644 index 000000000..930e168a0 --- /dev/null +++ b/src/ssr/ShieldCheckered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShieldCheckered"; + +export const ShieldCheckered: Icon = forwardRef((props, ref) => ( + +)); + +ShieldCheckered.displayName = "ShieldCheckered"; diff --git a/src/ssr/ShieldChevron.tsx b/src/ssr/ShieldChevron.tsx new file mode 100644 index 000000000..1650eac32 --- /dev/null +++ b/src/ssr/ShieldChevron.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShieldChevron"; + +export const ShieldChevron: Icon = forwardRef((props, ref) => ( + +)); + +ShieldChevron.displayName = "ShieldChevron"; diff --git a/src/ssr/ShieldPlus.tsx b/src/ssr/ShieldPlus.tsx new file mode 100644 index 000000000..b810c47ae --- /dev/null +++ b/src/ssr/ShieldPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShieldPlus"; + +export const ShieldPlus: Icon = forwardRef((props, ref) => ( + +)); + +ShieldPlus.displayName = "ShieldPlus"; diff --git a/src/ssr/ShieldSlash.tsx b/src/ssr/ShieldSlash.tsx new file mode 100644 index 000000000..d3de3da9c --- /dev/null +++ b/src/ssr/ShieldSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShieldSlash"; + +export const ShieldSlash: Icon = forwardRef((props, ref) => ( + +)); + +ShieldSlash.displayName = "ShieldSlash"; diff --git a/src/ssr/ShieldStar.tsx b/src/ssr/ShieldStar.tsx new file mode 100644 index 000000000..cd83f99c0 --- /dev/null +++ b/src/ssr/ShieldStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShieldStar"; + +export const ShieldStar: Icon = forwardRef((props, ref) => ( + +)); + +ShieldStar.displayName = "ShieldStar"; diff --git a/src/ssr/ShieldWarning.tsx b/src/ssr/ShieldWarning.tsx new file mode 100644 index 000000000..b6c0123e9 --- /dev/null +++ b/src/ssr/ShieldWarning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShieldWarning"; + +export const ShieldWarning: Icon = forwardRef((props, ref) => ( + +)); + +ShieldWarning.displayName = "ShieldWarning"; diff --git a/src/ssr/ShirtFolded.tsx b/src/ssr/ShirtFolded.tsx new file mode 100644 index 000000000..83d920c9b --- /dev/null +++ b/src/ssr/ShirtFolded.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShirtFolded"; + +export const ShirtFolded: Icon = forwardRef((props, ref) => ( + +)); + +ShirtFolded.displayName = "ShirtFolded"; diff --git a/src/ssr/ShootingStar.tsx b/src/ssr/ShootingStar.tsx new file mode 100644 index 000000000..8b9e10957 --- /dev/null +++ b/src/ssr/ShootingStar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShootingStar"; + +export const ShootingStar: Icon = forwardRef((props, ref) => ( + +)); + +ShootingStar.displayName = "ShootingStar"; diff --git a/src/ssr/ShoppingBag.tsx b/src/ssr/ShoppingBag.tsx new file mode 100644 index 000000000..79350235a --- /dev/null +++ b/src/ssr/ShoppingBag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShoppingBag"; + +export const ShoppingBag: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingBag.displayName = "ShoppingBag"; diff --git a/src/ssr/ShoppingBagOpen.tsx b/src/ssr/ShoppingBagOpen.tsx new file mode 100644 index 000000000..4ce34cf2e --- /dev/null +++ b/src/ssr/ShoppingBagOpen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShoppingBagOpen"; + +export const ShoppingBagOpen: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingBagOpen.displayName = "ShoppingBagOpen"; diff --git a/src/ssr/ShoppingCart.tsx b/src/ssr/ShoppingCart.tsx new file mode 100644 index 000000000..770a7756b --- /dev/null +++ b/src/ssr/ShoppingCart.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShoppingCart"; + +export const ShoppingCart: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingCart.displayName = "ShoppingCart"; diff --git a/src/ssr/ShoppingCartSimple.tsx b/src/ssr/ShoppingCartSimple.tsx new file mode 100644 index 000000000..5054350e0 --- /dev/null +++ b/src/ssr/ShoppingCartSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShoppingCartSimple"; + +export const ShoppingCartSimple: Icon = forwardRef((props, ref) => ( + +)); + +ShoppingCartSimple.displayName = "ShoppingCartSimple"; diff --git a/src/ssr/Shower.tsx b/src/ssr/Shower.tsx new file mode 100644 index 000000000..df6a15576 --- /dev/null +++ b/src/ssr/Shower.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Shower"; + +export const Shower: Icon = forwardRef((props, ref) => ( + +)); + +Shower.displayName = "Shower"; diff --git a/src/ssr/Shrimp.tsx b/src/ssr/Shrimp.tsx new file mode 100644 index 000000000..a43256455 --- /dev/null +++ b/src/ssr/Shrimp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Shrimp"; + +export const Shrimp: Icon = forwardRef((props, ref) => ( + +)); + +Shrimp.displayName = "Shrimp"; diff --git a/src/ssr/Shuffle.tsx b/src/ssr/Shuffle.tsx new file mode 100644 index 000000000..09e64d8f7 --- /dev/null +++ b/src/ssr/Shuffle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Shuffle"; + +export const Shuffle: Icon = forwardRef((props, ref) => ( + +)); + +Shuffle.displayName = "Shuffle"; diff --git a/src/ssr/ShuffleAngular.tsx b/src/ssr/ShuffleAngular.tsx new file mode 100644 index 000000000..a867d1d4b --- /dev/null +++ b/src/ssr/ShuffleAngular.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShuffleAngular"; + +export const ShuffleAngular: Icon = forwardRef((props, ref) => ( + +)); + +ShuffleAngular.displayName = "ShuffleAngular"; diff --git a/src/ssr/ShuffleSimple.tsx b/src/ssr/ShuffleSimple.tsx new file mode 100644 index 000000000..521488d66 --- /dev/null +++ b/src/ssr/ShuffleSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ShuffleSimple"; + +export const ShuffleSimple: Icon = forwardRef((props, ref) => ( + +)); + +ShuffleSimple.displayName = "ShuffleSimple"; diff --git a/src/ssr/Sidebar.tsx b/src/ssr/Sidebar.tsx new file mode 100644 index 000000000..2fb75c160 --- /dev/null +++ b/src/ssr/Sidebar.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sidebar"; + +export const Sidebar: Icon = forwardRef((props, ref) => ( + +)); + +Sidebar.displayName = "Sidebar"; diff --git a/src/ssr/SidebarSimple.tsx b/src/ssr/SidebarSimple.tsx new file mode 100644 index 000000000..f02952b6f --- /dev/null +++ b/src/ssr/SidebarSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SidebarSimple"; + +export const SidebarSimple: Icon = forwardRef((props, ref) => ( + +)); + +SidebarSimple.displayName = "SidebarSimple"; diff --git a/src/ssr/Sigma.tsx b/src/ssr/Sigma.tsx new file mode 100644 index 000000000..1c68d5a25 --- /dev/null +++ b/src/ssr/Sigma.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sigma"; + +export const Sigma: Icon = forwardRef((props, ref) => ( + +)); + +Sigma.displayName = "Sigma"; diff --git a/src/ssr/SignIn.tsx b/src/ssr/SignIn.tsx new file mode 100644 index 000000000..cd0366bb7 --- /dev/null +++ b/src/ssr/SignIn.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SignIn"; + +export const SignIn: Icon = forwardRef((props, ref) => ( + +)); + +SignIn.displayName = "SignIn"; diff --git a/src/ssr/SignOut.tsx b/src/ssr/SignOut.tsx new file mode 100644 index 000000000..5eb16543a --- /dev/null +++ b/src/ssr/SignOut.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SignOut"; + +export const SignOut: Icon = forwardRef((props, ref) => ( + +)); + +SignOut.displayName = "SignOut"; diff --git a/src/ssr/Signature.tsx b/src/ssr/Signature.tsx new file mode 100644 index 000000000..cd59c6f0a --- /dev/null +++ b/src/ssr/Signature.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Signature"; + +export const Signature: Icon = forwardRef((props, ref) => ( + +)); + +Signature.displayName = "Signature"; diff --git a/src/ssr/Signpost.tsx b/src/ssr/Signpost.tsx new file mode 100644 index 000000000..2c6cc3595 --- /dev/null +++ b/src/ssr/Signpost.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Signpost"; + +export const Signpost: Icon = forwardRef((props, ref) => ( + +)); + +Signpost.displayName = "Signpost"; diff --git a/src/ssr/SimCard.tsx b/src/ssr/SimCard.tsx new file mode 100644 index 000000000..095129223 --- /dev/null +++ b/src/ssr/SimCard.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SimCard"; + +export const SimCard: Icon = forwardRef((props, ref) => ( + +)); + +SimCard.displayName = "SimCard"; diff --git a/src/ssr/Siren.tsx b/src/ssr/Siren.tsx new file mode 100644 index 000000000..3433c553a --- /dev/null +++ b/src/ssr/Siren.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Siren"; + +export const Siren: Icon = forwardRef((props, ref) => ( + +)); + +Siren.displayName = "Siren"; diff --git a/src/ssr/SketchLogo.tsx b/src/ssr/SketchLogo.tsx new file mode 100644 index 000000000..e7dc2340f --- /dev/null +++ b/src/ssr/SketchLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SketchLogo"; + +export const SketchLogo: Icon = forwardRef((props, ref) => ( + +)); + +SketchLogo.displayName = "SketchLogo"; diff --git a/src/ssr/SkipBack.tsx b/src/ssr/SkipBack.tsx new file mode 100644 index 000000000..f28a4e86e --- /dev/null +++ b/src/ssr/SkipBack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SkipBack"; + +export const SkipBack: Icon = forwardRef((props, ref) => ( + +)); + +SkipBack.displayName = "SkipBack"; diff --git a/src/ssr/SkipBackCircle.tsx b/src/ssr/SkipBackCircle.tsx new file mode 100644 index 000000000..2babd99ff --- /dev/null +++ b/src/ssr/SkipBackCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SkipBackCircle"; + +export const SkipBackCircle: Icon = forwardRef((props, ref) => ( + +)); + +SkipBackCircle.displayName = "SkipBackCircle"; diff --git a/src/ssr/SkipForward.tsx b/src/ssr/SkipForward.tsx new file mode 100644 index 000000000..ba2ac6fe4 --- /dev/null +++ b/src/ssr/SkipForward.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SkipForward"; + +export const SkipForward: Icon = forwardRef((props, ref) => ( + +)); + +SkipForward.displayName = "SkipForward"; diff --git a/src/ssr/SkipForwardCircle.tsx b/src/ssr/SkipForwardCircle.tsx new file mode 100644 index 000000000..d6b9cadc3 --- /dev/null +++ b/src/ssr/SkipForwardCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SkipForwardCircle"; + +export const SkipForwardCircle: Icon = forwardRef((props, ref) => ( + +)); + +SkipForwardCircle.displayName = "SkipForwardCircle"; diff --git a/src/ssr/Skull.tsx b/src/ssr/Skull.tsx new file mode 100644 index 000000000..b09b8acbc --- /dev/null +++ b/src/ssr/Skull.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Skull"; + +export const Skull: Icon = forwardRef((props, ref) => ( + +)); + +Skull.displayName = "Skull"; diff --git a/src/ssr/SlackLogo.tsx b/src/ssr/SlackLogo.tsx new file mode 100644 index 000000000..8dd81a57b --- /dev/null +++ b/src/ssr/SlackLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SlackLogo"; + +export const SlackLogo: Icon = forwardRef((props, ref) => ( + +)); + +SlackLogo.displayName = "SlackLogo"; diff --git a/src/ssr/Sliders.tsx b/src/ssr/Sliders.tsx new file mode 100644 index 000000000..7ef618526 --- /dev/null +++ b/src/ssr/Sliders.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sliders"; + +export const Sliders: Icon = forwardRef((props, ref) => ( + +)); + +Sliders.displayName = "Sliders"; diff --git a/src/ssr/SlidersHorizontal.tsx b/src/ssr/SlidersHorizontal.tsx new file mode 100644 index 000000000..7fc1cfb1c --- /dev/null +++ b/src/ssr/SlidersHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SlidersHorizontal"; + +export const SlidersHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SlidersHorizontal.displayName = "SlidersHorizontal"; diff --git a/src/ssr/Slideshow.tsx b/src/ssr/Slideshow.tsx new file mode 100644 index 000000000..d031750bf --- /dev/null +++ b/src/ssr/Slideshow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Slideshow"; + +export const Slideshow: Icon = forwardRef((props, ref) => ( + +)); + +Slideshow.displayName = "Slideshow"; diff --git a/src/ssr/Smiley.tsx b/src/ssr/Smiley.tsx new file mode 100644 index 000000000..9b01b6421 --- /dev/null +++ b/src/ssr/Smiley.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Smiley"; + +export const Smiley: Icon = forwardRef((props, ref) => ( + +)); + +Smiley.displayName = "Smiley"; diff --git a/src/ssr/SmileyAngry.tsx b/src/ssr/SmileyAngry.tsx new file mode 100644 index 000000000..398d4542b --- /dev/null +++ b/src/ssr/SmileyAngry.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileyAngry"; + +export const SmileyAngry: Icon = forwardRef((props, ref) => ( + +)); + +SmileyAngry.displayName = "SmileyAngry"; diff --git a/src/ssr/SmileyBlank.tsx b/src/ssr/SmileyBlank.tsx new file mode 100644 index 000000000..c7b6626b5 --- /dev/null +++ b/src/ssr/SmileyBlank.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileyBlank"; + +export const SmileyBlank: Icon = forwardRef((props, ref) => ( + +)); + +SmileyBlank.displayName = "SmileyBlank"; diff --git a/src/ssr/SmileyMeh.tsx b/src/ssr/SmileyMeh.tsx new file mode 100644 index 000000000..07aae3db7 --- /dev/null +++ b/src/ssr/SmileyMeh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileyMeh"; + +export const SmileyMeh: Icon = forwardRef((props, ref) => ( + +)); + +SmileyMeh.displayName = "SmileyMeh"; diff --git a/src/ssr/SmileyNervous.tsx b/src/ssr/SmileyNervous.tsx new file mode 100644 index 000000000..78557f605 --- /dev/null +++ b/src/ssr/SmileyNervous.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileyNervous"; + +export const SmileyNervous: Icon = forwardRef((props, ref) => ( + +)); + +SmileyNervous.displayName = "SmileyNervous"; diff --git a/src/ssr/SmileySad.tsx b/src/ssr/SmileySad.tsx new file mode 100644 index 000000000..b9a7d047f --- /dev/null +++ b/src/ssr/SmileySad.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileySad"; + +export const SmileySad: Icon = forwardRef((props, ref) => ( + +)); + +SmileySad.displayName = "SmileySad"; diff --git a/src/ssr/SmileySticker.tsx b/src/ssr/SmileySticker.tsx new file mode 100644 index 000000000..82fcf43a3 --- /dev/null +++ b/src/ssr/SmileySticker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileySticker"; + +export const SmileySticker: Icon = forwardRef((props, ref) => ( + +)); + +SmileySticker.displayName = "SmileySticker"; diff --git a/src/ssr/SmileyWink.tsx b/src/ssr/SmileyWink.tsx new file mode 100644 index 000000000..116233fa3 --- /dev/null +++ b/src/ssr/SmileyWink.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileyWink"; + +export const SmileyWink: Icon = forwardRef((props, ref) => ( + +)); + +SmileyWink.displayName = "SmileyWink"; diff --git a/src/ssr/SmileyXEyes.tsx b/src/ssr/SmileyXEyes.tsx new file mode 100644 index 000000000..dbdaca70d --- /dev/null +++ b/src/ssr/SmileyXEyes.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SmileyXEyes"; + +export const SmileyXEyes: Icon = forwardRef((props, ref) => ( + +)); + +SmileyXEyes.displayName = "SmileyXEyes"; diff --git a/src/ssr/SnapchatLogo.tsx b/src/ssr/SnapchatLogo.tsx new file mode 100644 index 000000000..cd161b313 --- /dev/null +++ b/src/ssr/SnapchatLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SnapchatLogo"; + +export const SnapchatLogo: Icon = forwardRef((props, ref) => ( + +)); + +SnapchatLogo.displayName = "SnapchatLogo"; diff --git a/src/ssr/Sneaker.tsx b/src/ssr/Sneaker.tsx new file mode 100644 index 000000000..6debd3d21 --- /dev/null +++ b/src/ssr/Sneaker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sneaker"; + +export const Sneaker: Icon = forwardRef((props, ref) => ( + +)); + +Sneaker.displayName = "Sneaker"; diff --git a/src/ssr/SneakerMove.tsx b/src/ssr/SneakerMove.tsx new file mode 100644 index 000000000..467cf2365 --- /dev/null +++ b/src/ssr/SneakerMove.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SneakerMove"; + +export const SneakerMove: Icon = forwardRef((props, ref) => ( + +)); + +SneakerMove.displayName = "SneakerMove"; diff --git a/src/ssr/Snowflake.tsx b/src/ssr/Snowflake.tsx new file mode 100644 index 000000000..fd742ee14 --- /dev/null +++ b/src/ssr/Snowflake.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Snowflake"; + +export const Snowflake: Icon = forwardRef((props, ref) => ( + +)); + +Snowflake.displayName = "Snowflake"; diff --git a/src/ssr/SoccerBall.tsx b/src/ssr/SoccerBall.tsx new file mode 100644 index 000000000..5f33339dc --- /dev/null +++ b/src/ssr/SoccerBall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SoccerBall"; + +export const SoccerBall: Icon = forwardRef((props, ref) => ( + +)); + +SoccerBall.displayName = "SoccerBall"; diff --git a/src/ssr/SortAscending.tsx b/src/ssr/SortAscending.tsx new file mode 100644 index 000000000..f1f0394de --- /dev/null +++ b/src/ssr/SortAscending.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SortAscending"; + +export const SortAscending: Icon = forwardRef((props, ref) => ( + +)); + +SortAscending.displayName = "SortAscending"; diff --git a/src/ssr/SortDescending.tsx b/src/ssr/SortDescending.tsx new file mode 100644 index 000000000..cec8563bf --- /dev/null +++ b/src/ssr/SortDescending.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SortDescending"; + +export const SortDescending: Icon = forwardRef((props, ref) => ( + +)); + +SortDescending.displayName = "SortDescending"; diff --git a/src/ssr/SoundcloudLogo.tsx b/src/ssr/SoundcloudLogo.tsx new file mode 100644 index 000000000..508f6d3ac --- /dev/null +++ b/src/ssr/SoundcloudLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SoundcloudLogo"; + +export const SoundcloudLogo: Icon = forwardRef((props, ref) => ( + +)); + +SoundcloudLogo.displayName = "SoundcloudLogo"; diff --git a/src/ssr/Spade.tsx b/src/ssr/Spade.tsx new file mode 100644 index 000000000..1210a51f6 --- /dev/null +++ b/src/ssr/Spade.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Spade"; + +export const Spade: Icon = forwardRef((props, ref) => ( + +)); + +Spade.displayName = "Spade"; diff --git a/src/ssr/Sparkle.tsx b/src/ssr/Sparkle.tsx new file mode 100644 index 000000000..5606c891b --- /dev/null +++ b/src/ssr/Sparkle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sparkle"; + +export const Sparkle: Icon = forwardRef((props, ref) => ( + +)); + +Sparkle.displayName = "Sparkle"; diff --git a/src/ssr/SpeakerHifi.tsx b/src/ssr/SpeakerHifi.tsx new file mode 100644 index 000000000..ff2e238d0 --- /dev/null +++ b/src/ssr/SpeakerHifi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerHifi"; + +export const SpeakerHifi: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerHifi.displayName = "SpeakerHifi"; diff --git a/src/ssr/SpeakerHigh.tsx b/src/ssr/SpeakerHigh.tsx new file mode 100644 index 000000000..a39020947 --- /dev/null +++ b/src/ssr/SpeakerHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerHigh"; + +export const SpeakerHigh: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerHigh.displayName = "SpeakerHigh"; diff --git a/src/ssr/SpeakerLow.tsx b/src/ssr/SpeakerLow.tsx new file mode 100644 index 000000000..5879eb41f --- /dev/null +++ b/src/ssr/SpeakerLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerLow"; + +export const SpeakerLow: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerLow.displayName = "SpeakerLow"; diff --git a/src/ssr/SpeakerNone.tsx b/src/ssr/SpeakerNone.tsx new file mode 100644 index 000000000..0ce02e96d --- /dev/null +++ b/src/ssr/SpeakerNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerNone"; + +export const SpeakerNone: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerNone.displayName = "SpeakerNone"; diff --git a/src/ssr/SpeakerSimpleHigh.tsx b/src/ssr/SpeakerSimpleHigh.tsx new file mode 100644 index 000000000..bd32b4617 --- /dev/null +++ b/src/ssr/SpeakerSimpleHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerSimpleHigh"; + +export const SpeakerSimpleHigh: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleHigh.displayName = "SpeakerSimpleHigh"; diff --git a/src/ssr/SpeakerSimpleLow.tsx b/src/ssr/SpeakerSimpleLow.tsx new file mode 100644 index 000000000..068c9fc0f --- /dev/null +++ b/src/ssr/SpeakerSimpleLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerSimpleLow"; + +export const SpeakerSimpleLow: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleLow.displayName = "SpeakerSimpleLow"; diff --git a/src/ssr/SpeakerSimpleNone.tsx b/src/ssr/SpeakerSimpleNone.tsx new file mode 100644 index 000000000..aea5432ab --- /dev/null +++ b/src/ssr/SpeakerSimpleNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerSimpleNone"; + +export const SpeakerSimpleNone: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleNone.displayName = "SpeakerSimpleNone"; diff --git a/src/ssr/SpeakerSimpleSlash.tsx b/src/ssr/SpeakerSimpleSlash.tsx new file mode 100644 index 000000000..6bbe3ebbf --- /dev/null +++ b/src/ssr/SpeakerSimpleSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerSimpleSlash"; + +export const SpeakerSimpleSlash: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleSlash.displayName = "SpeakerSimpleSlash"; diff --git a/src/ssr/SpeakerSimpleX.tsx b/src/ssr/SpeakerSimpleX.tsx new file mode 100644 index 000000000..15c874295 --- /dev/null +++ b/src/ssr/SpeakerSimpleX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerSimpleX"; + +export const SpeakerSimpleX: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSimpleX.displayName = "SpeakerSimpleX"; diff --git a/src/ssr/SpeakerSlash.tsx b/src/ssr/SpeakerSlash.tsx new file mode 100644 index 000000000..30a12584d --- /dev/null +++ b/src/ssr/SpeakerSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerSlash"; + +export const SpeakerSlash: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerSlash.displayName = "SpeakerSlash"; diff --git a/src/ssr/SpeakerX.tsx b/src/ssr/SpeakerX.tsx new file mode 100644 index 000000000..89321f86d --- /dev/null +++ b/src/ssr/SpeakerX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpeakerX"; + +export const SpeakerX: Icon = forwardRef((props, ref) => ( + +)); + +SpeakerX.displayName = "SpeakerX"; diff --git a/src/ssr/Spinner.tsx b/src/ssr/Spinner.tsx new file mode 100644 index 000000000..51749dfd2 --- /dev/null +++ b/src/ssr/Spinner.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Spinner"; + +export const Spinner: Icon = forwardRef((props, ref) => ( + +)); + +Spinner.displayName = "Spinner"; diff --git a/src/ssr/SpinnerGap.tsx b/src/ssr/SpinnerGap.tsx new file mode 100644 index 000000000..ed86c958c --- /dev/null +++ b/src/ssr/SpinnerGap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpinnerGap"; + +export const SpinnerGap: Icon = forwardRef((props, ref) => ( + +)); + +SpinnerGap.displayName = "SpinnerGap"; diff --git a/src/ssr/Spiral.tsx b/src/ssr/Spiral.tsx new file mode 100644 index 000000000..9312c1635 --- /dev/null +++ b/src/ssr/Spiral.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Spiral"; + +export const Spiral: Icon = forwardRef((props, ref) => ( + +)); + +Spiral.displayName = "Spiral"; diff --git a/src/ssr/SplitHorizontal.tsx b/src/ssr/SplitHorizontal.tsx new file mode 100644 index 000000000..2e28062c1 --- /dev/null +++ b/src/ssr/SplitHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SplitHorizontal"; + +export const SplitHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SplitHorizontal.displayName = "SplitHorizontal"; diff --git a/src/ssr/SplitVertical.tsx b/src/ssr/SplitVertical.tsx new file mode 100644 index 000000000..7f7a54923 --- /dev/null +++ b/src/ssr/SplitVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SplitVertical"; + +export const SplitVertical: Icon = forwardRef((props, ref) => ( + +)); + +SplitVertical.displayName = "SplitVertical"; diff --git a/src/ssr/SpotifyLogo.tsx b/src/ssr/SpotifyLogo.tsx new file mode 100644 index 000000000..c3eff111d --- /dev/null +++ b/src/ssr/SpotifyLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SpotifyLogo"; + +export const SpotifyLogo: Icon = forwardRef((props, ref) => ( + +)); + +SpotifyLogo.displayName = "SpotifyLogo"; diff --git a/src/ssr/Square.tsx b/src/ssr/Square.tsx new file mode 100644 index 000000000..b984b52ea --- /dev/null +++ b/src/ssr/Square.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Square"; + +export const Square: Icon = forwardRef((props, ref) => ( + +)); + +Square.displayName = "Square"; diff --git a/src/ssr/SquareHalf.tsx b/src/ssr/SquareHalf.tsx new file mode 100644 index 000000000..1fdf8fe24 --- /dev/null +++ b/src/ssr/SquareHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SquareHalf"; + +export const SquareHalf: Icon = forwardRef((props, ref) => ( + +)); + +SquareHalf.displayName = "SquareHalf"; diff --git a/src/ssr/SquareHalfBottom.tsx b/src/ssr/SquareHalfBottom.tsx new file mode 100644 index 000000000..e8ca0bc03 --- /dev/null +++ b/src/ssr/SquareHalfBottom.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SquareHalfBottom"; + +export const SquareHalfBottom: Icon = forwardRef((props, ref) => ( + +)); + +SquareHalfBottom.displayName = "SquareHalfBottom"; diff --git a/src/ssr/SquareLogo.tsx b/src/ssr/SquareLogo.tsx new file mode 100644 index 000000000..56fa820db --- /dev/null +++ b/src/ssr/SquareLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SquareLogo"; + +export const SquareLogo: Icon = forwardRef((props, ref) => ( + +)); + +SquareLogo.displayName = "SquareLogo"; diff --git a/src/ssr/SquareSplitHorizontal.tsx b/src/ssr/SquareSplitHorizontal.tsx new file mode 100644 index 000000000..eddbea56e --- /dev/null +++ b/src/ssr/SquareSplitHorizontal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SquareSplitHorizontal"; + +export const SquareSplitHorizontal: Icon = forwardRef((props, ref) => ( + +)); + +SquareSplitHorizontal.displayName = "SquareSplitHorizontal"; diff --git a/src/ssr/SquareSplitVertical.tsx b/src/ssr/SquareSplitVertical.tsx new file mode 100644 index 000000000..8b87d316f --- /dev/null +++ b/src/ssr/SquareSplitVertical.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SquareSplitVertical"; + +export const SquareSplitVertical: Icon = forwardRef((props, ref) => ( + +)); + +SquareSplitVertical.displayName = "SquareSplitVertical"; diff --git a/src/ssr/SquaresFour.tsx b/src/ssr/SquaresFour.tsx new file mode 100644 index 000000000..04e46b224 --- /dev/null +++ b/src/ssr/SquaresFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SquaresFour"; + +export const SquaresFour: Icon = forwardRef((props, ref) => ( + +)); + +SquaresFour.displayName = "SquaresFour"; diff --git a/src/ssr/Stack.tsx b/src/ssr/Stack.tsx new file mode 100644 index 000000000..d9aa492e0 --- /dev/null +++ b/src/ssr/Stack.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Stack"; + +export const Stack: Icon = forwardRef((props, ref) => ( + +)); + +Stack.displayName = "Stack"; diff --git a/src/ssr/StackOverflowLogo.tsx b/src/ssr/StackOverflowLogo.tsx new file mode 100644 index 000000000..42b6316f5 --- /dev/null +++ b/src/ssr/StackOverflowLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StackOverflowLogo"; + +export const StackOverflowLogo: Icon = forwardRef((props, ref) => ( + +)); + +StackOverflowLogo.displayName = "StackOverflowLogo"; diff --git a/src/ssr/StackSimple.tsx b/src/ssr/StackSimple.tsx new file mode 100644 index 000000000..2beacac3a --- /dev/null +++ b/src/ssr/StackSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StackSimple"; + +export const StackSimple: Icon = forwardRef((props, ref) => ( + +)); + +StackSimple.displayName = "StackSimple"; diff --git a/src/ssr/Stairs.tsx b/src/ssr/Stairs.tsx new file mode 100644 index 000000000..87fe76a5b --- /dev/null +++ b/src/ssr/Stairs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Stairs"; + +export const Stairs: Icon = forwardRef((props, ref) => ( + +)); + +Stairs.displayName = "Stairs"; diff --git a/src/ssr/Stamp.tsx b/src/ssr/Stamp.tsx new file mode 100644 index 000000000..e6b9e81e1 --- /dev/null +++ b/src/ssr/Stamp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Stamp"; + +export const Stamp: Icon = forwardRef((props, ref) => ( + +)); + +Stamp.displayName = "Stamp"; diff --git a/src/ssr/Star.tsx b/src/ssr/Star.tsx new file mode 100644 index 000000000..3df97eba9 --- /dev/null +++ b/src/ssr/Star.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Star"; + +export const Star: Icon = forwardRef((props, ref) => ( + +)); + +Star.displayName = "Star"; diff --git a/src/ssr/StarAndCrescent.tsx b/src/ssr/StarAndCrescent.tsx new file mode 100644 index 000000000..651e7d23e --- /dev/null +++ b/src/ssr/StarAndCrescent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StarAndCrescent"; + +export const StarAndCrescent: Icon = forwardRef((props, ref) => ( + +)); + +StarAndCrescent.displayName = "StarAndCrescent"; diff --git a/src/ssr/StarFour.tsx b/src/ssr/StarFour.tsx new file mode 100644 index 000000000..86947934a --- /dev/null +++ b/src/ssr/StarFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StarFour"; + +export const StarFour: Icon = forwardRef((props, ref) => ( + +)); + +StarFour.displayName = "StarFour"; diff --git a/src/ssr/StarHalf.tsx b/src/ssr/StarHalf.tsx new file mode 100644 index 000000000..101850284 --- /dev/null +++ b/src/ssr/StarHalf.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StarHalf"; + +export const StarHalf: Icon = forwardRef((props, ref) => ( + +)); + +StarHalf.displayName = "StarHalf"; diff --git a/src/ssr/StarOfDavid.tsx b/src/ssr/StarOfDavid.tsx new file mode 100644 index 000000000..148adf865 --- /dev/null +++ b/src/ssr/StarOfDavid.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StarOfDavid"; + +export const StarOfDavid: Icon = forwardRef((props, ref) => ( + +)); + +StarOfDavid.displayName = "StarOfDavid"; diff --git a/src/ssr/SteeringWheel.tsx b/src/ssr/SteeringWheel.tsx new file mode 100644 index 000000000..f89ccf4a3 --- /dev/null +++ b/src/ssr/SteeringWheel.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SteeringWheel"; + +export const SteeringWheel: Icon = forwardRef((props, ref) => ( + +)); + +SteeringWheel.displayName = "SteeringWheel"; diff --git a/src/ssr/Steps.tsx b/src/ssr/Steps.tsx new file mode 100644 index 000000000..9ee01fe44 --- /dev/null +++ b/src/ssr/Steps.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Steps"; + +export const Steps: Icon = forwardRef((props, ref) => ( + +)); + +Steps.displayName = "Steps"; diff --git a/src/ssr/Stethoscope.tsx b/src/ssr/Stethoscope.tsx new file mode 100644 index 000000000..02d58ce82 --- /dev/null +++ b/src/ssr/Stethoscope.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Stethoscope"; + +export const Stethoscope: Icon = forwardRef((props, ref) => ( + +)); + +Stethoscope.displayName = "Stethoscope"; diff --git a/src/ssr/Sticker.tsx b/src/ssr/Sticker.tsx new file mode 100644 index 000000000..2bcb1bdfe --- /dev/null +++ b/src/ssr/Sticker.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sticker"; + +export const Sticker: Icon = forwardRef((props, ref) => ( + +)); + +Sticker.displayName = "Sticker"; diff --git a/src/ssr/Stool.tsx b/src/ssr/Stool.tsx new file mode 100644 index 000000000..63b7ae9d3 --- /dev/null +++ b/src/ssr/Stool.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Stool"; + +export const Stool: Icon = forwardRef((props, ref) => ( + +)); + +Stool.displayName = "Stool"; diff --git a/src/ssr/Stop.tsx b/src/ssr/Stop.tsx new file mode 100644 index 000000000..27e9581df --- /dev/null +++ b/src/ssr/Stop.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Stop"; + +export const Stop: Icon = forwardRef((props, ref) => ( + +)); + +Stop.displayName = "Stop"; diff --git a/src/ssr/StopCircle.tsx b/src/ssr/StopCircle.tsx new file mode 100644 index 000000000..69b9bb5f5 --- /dev/null +++ b/src/ssr/StopCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StopCircle"; + +export const StopCircle: Icon = forwardRef((props, ref) => ( + +)); + +StopCircle.displayName = "StopCircle"; diff --git a/src/ssr/Storefront.tsx b/src/ssr/Storefront.tsx new file mode 100644 index 000000000..187d8de2e --- /dev/null +++ b/src/ssr/Storefront.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Storefront"; + +export const Storefront: Icon = forwardRef((props, ref) => ( + +)); + +Storefront.displayName = "Storefront"; diff --git a/src/ssr/Strategy.tsx b/src/ssr/Strategy.tsx new file mode 100644 index 000000000..2fa7962d9 --- /dev/null +++ b/src/ssr/Strategy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Strategy"; + +export const Strategy: Icon = forwardRef((props, ref) => ( + +)); + +Strategy.displayName = "Strategy"; diff --git a/src/ssr/StripeLogo.tsx b/src/ssr/StripeLogo.tsx new file mode 100644 index 000000000..8b6d7ecb6 --- /dev/null +++ b/src/ssr/StripeLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/StripeLogo"; + +export const StripeLogo: Icon = forwardRef((props, ref) => ( + +)); + +StripeLogo.displayName = "StripeLogo"; diff --git a/src/ssr/Student.tsx b/src/ssr/Student.tsx new file mode 100644 index 000000000..967fa9999 --- /dev/null +++ b/src/ssr/Student.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Student"; + +export const Student: Icon = forwardRef((props, ref) => ( + +)); + +Student.displayName = "Student"; diff --git a/src/ssr/Subtitles.tsx b/src/ssr/Subtitles.tsx new file mode 100644 index 000000000..f9bad9a55 --- /dev/null +++ b/src/ssr/Subtitles.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Subtitles"; + +export const Subtitles: Icon = forwardRef((props, ref) => ( + +)); + +Subtitles.displayName = "Subtitles"; diff --git a/src/ssr/Subtract.tsx b/src/ssr/Subtract.tsx new file mode 100644 index 000000000..e1f8b981e --- /dev/null +++ b/src/ssr/Subtract.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Subtract"; + +export const Subtract: Icon = forwardRef((props, ref) => ( + +)); + +Subtract.displayName = "Subtract"; diff --git a/src/ssr/SubtractSquare.tsx b/src/ssr/SubtractSquare.tsx new file mode 100644 index 000000000..cec1657c6 --- /dev/null +++ b/src/ssr/SubtractSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SubtractSquare"; + +export const SubtractSquare: Icon = forwardRef((props, ref) => ( + +)); + +SubtractSquare.displayName = "SubtractSquare"; diff --git a/src/ssr/Suitcase.tsx b/src/ssr/Suitcase.tsx new file mode 100644 index 000000000..a445f9708 --- /dev/null +++ b/src/ssr/Suitcase.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Suitcase"; + +export const Suitcase: Icon = forwardRef((props, ref) => ( + +)); + +Suitcase.displayName = "Suitcase"; diff --git a/src/ssr/SuitcaseRolling.tsx b/src/ssr/SuitcaseRolling.tsx new file mode 100644 index 000000000..c9e95360f --- /dev/null +++ b/src/ssr/SuitcaseRolling.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SuitcaseRolling"; + +export const SuitcaseRolling: Icon = forwardRef((props, ref) => ( + +)); + +SuitcaseRolling.displayName = "SuitcaseRolling"; diff --git a/src/ssr/SuitcaseSimple.tsx b/src/ssr/SuitcaseSimple.tsx new file mode 100644 index 000000000..ed099a613 --- /dev/null +++ b/src/ssr/SuitcaseSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SuitcaseSimple"; + +export const SuitcaseSimple: Icon = forwardRef((props, ref) => ( + +)); + +SuitcaseSimple.displayName = "SuitcaseSimple"; diff --git a/src/ssr/Sun.tsx b/src/ssr/Sun.tsx new file mode 100644 index 000000000..b3ee0f897 --- /dev/null +++ b/src/ssr/Sun.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sun"; + +export const Sun: Icon = forwardRef((props, ref) => ( + +)); + +Sun.displayName = "Sun"; diff --git a/src/ssr/SunDim.tsx b/src/ssr/SunDim.tsx new file mode 100644 index 000000000..d2710773c --- /dev/null +++ b/src/ssr/SunDim.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SunDim"; + +export const SunDim: Icon = forwardRef((props, ref) => ( + +)); + +SunDim.displayName = "SunDim"; diff --git a/src/ssr/SunHorizon.tsx b/src/ssr/SunHorizon.tsx new file mode 100644 index 000000000..5cd16c9fb --- /dev/null +++ b/src/ssr/SunHorizon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SunHorizon"; + +export const SunHorizon: Icon = forwardRef((props, ref) => ( + +)); + +SunHorizon.displayName = "SunHorizon"; diff --git a/src/ssr/Sunglasses.tsx b/src/ssr/Sunglasses.tsx new file mode 100644 index 000000000..1cf8bfbae --- /dev/null +++ b/src/ssr/Sunglasses.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sunglasses"; + +export const Sunglasses: Icon = forwardRef((props, ref) => ( + +)); + +Sunglasses.displayName = "Sunglasses"; diff --git a/src/ssr/Swap.tsx b/src/ssr/Swap.tsx new file mode 100644 index 000000000..1bff5da32 --- /dev/null +++ b/src/ssr/Swap.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Swap"; + +export const Swap: Icon = forwardRef((props, ref) => ( + +)); + +Swap.displayName = "Swap"; diff --git a/src/ssr/Swatches.tsx b/src/ssr/Swatches.tsx new file mode 100644 index 000000000..860e04880 --- /dev/null +++ b/src/ssr/Swatches.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Swatches"; + +export const Swatches: Icon = forwardRef((props, ref) => ( + +)); + +Swatches.displayName = "Swatches"; diff --git a/src/ssr/SwimmingPool.tsx b/src/ssr/SwimmingPool.tsx new file mode 100644 index 000000000..af2932380 --- /dev/null +++ b/src/ssr/SwimmingPool.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/SwimmingPool"; + +export const SwimmingPool: Icon = forwardRef((props, ref) => ( + +)); + +SwimmingPool.displayName = "SwimmingPool"; diff --git a/src/ssr/Sword.tsx b/src/ssr/Sword.tsx new file mode 100644 index 000000000..866a7b77c --- /dev/null +++ b/src/ssr/Sword.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Sword"; + +export const Sword: Icon = forwardRef((props, ref) => ( + +)); + +Sword.displayName = "Sword"; diff --git a/src/ssr/Synagogue.tsx b/src/ssr/Synagogue.tsx new file mode 100644 index 000000000..1976c7c48 --- /dev/null +++ b/src/ssr/Synagogue.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Synagogue"; + +export const Synagogue: Icon = forwardRef((props, ref) => ( + +)); + +Synagogue.displayName = "Synagogue"; diff --git a/src/ssr/Syringe.tsx b/src/ssr/Syringe.tsx new file mode 100644 index 000000000..f0f0f56bd --- /dev/null +++ b/src/ssr/Syringe.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Syringe"; + +export const Syringe: Icon = forwardRef((props, ref) => ( + +)); + +Syringe.displayName = "Syringe"; diff --git a/src/ssr/TShirt.tsx b/src/ssr/TShirt.tsx new file mode 100644 index 000000000..6d2551fe6 --- /dev/null +++ b/src/ssr/TShirt.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TShirt"; + +export const TShirt: Icon = forwardRef((props, ref) => ( + +)); + +TShirt.displayName = "TShirt"; diff --git a/src/ssr/Table.tsx b/src/ssr/Table.tsx new file mode 100644 index 000000000..f481f72f3 --- /dev/null +++ b/src/ssr/Table.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Table"; + +export const Table: Icon = forwardRef((props, ref) => ( + +)); + +Table.displayName = "Table"; diff --git a/src/ssr/Tabs.tsx b/src/ssr/Tabs.tsx new file mode 100644 index 000000000..8d606d777 --- /dev/null +++ b/src/ssr/Tabs.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tabs"; + +export const Tabs: Icon = forwardRef((props, ref) => ( + +)); + +Tabs.displayName = "Tabs"; diff --git a/src/ssr/Tag.tsx b/src/ssr/Tag.tsx new file mode 100644 index 000000000..fa8cfecb9 --- /dev/null +++ b/src/ssr/Tag.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tag"; + +export const Tag: Icon = forwardRef((props, ref) => ( + +)); + +Tag.displayName = "Tag"; diff --git a/src/ssr/TagChevron.tsx b/src/ssr/TagChevron.tsx new file mode 100644 index 000000000..191c544de --- /dev/null +++ b/src/ssr/TagChevron.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TagChevron"; + +export const TagChevron: Icon = forwardRef((props, ref) => ( + +)); + +TagChevron.displayName = "TagChevron"; diff --git a/src/ssr/TagSimple.tsx b/src/ssr/TagSimple.tsx new file mode 100644 index 000000000..5f2c3bbe3 --- /dev/null +++ b/src/ssr/TagSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TagSimple"; + +export const TagSimple: Icon = forwardRef((props, ref) => ( + +)); + +TagSimple.displayName = "TagSimple"; diff --git a/src/ssr/Target.tsx b/src/ssr/Target.tsx new file mode 100644 index 000000000..900a86671 --- /dev/null +++ b/src/ssr/Target.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Target"; + +export const Target: Icon = forwardRef((props, ref) => ( + +)); + +Target.displayName = "Target"; diff --git a/src/ssr/Taxi.tsx b/src/ssr/Taxi.tsx new file mode 100644 index 000000000..8c0445b7b --- /dev/null +++ b/src/ssr/Taxi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Taxi"; + +export const Taxi: Icon = forwardRef((props, ref) => ( + +)); + +Taxi.displayName = "Taxi"; diff --git a/src/ssr/TelegramLogo.tsx b/src/ssr/TelegramLogo.tsx new file mode 100644 index 000000000..fb75e00e1 --- /dev/null +++ b/src/ssr/TelegramLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TelegramLogo"; + +export const TelegramLogo: Icon = forwardRef((props, ref) => ( + +)); + +TelegramLogo.displayName = "TelegramLogo"; diff --git a/src/ssr/Television.tsx b/src/ssr/Television.tsx new file mode 100644 index 000000000..66cc2ec53 --- /dev/null +++ b/src/ssr/Television.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Television"; + +export const Television: Icon = forwardRef((props, ref) => ( + +)); + +Television.displayName = "Television"; diff --git a/src/ssr/TelevisionSimple.tsx b/src/ssr/TelevisionSimple.tsx new file mode 100644 index 000000000..3fa19e274 --- /dev/null +++ b/src/ssr/TelevisionSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TelevisionSimple"; + +export const TelevisionSimple: Icon = forwardRef((props, ref) => ( + +)); + +TelevisionSimple.displayName = "TelevisionSimple"; diff --git a/src/ssr/TennisBall.tsx b/src/ssr/TennisBall.tsx new file mode 100644 index 000000000..9c23c7a34 --- /dev/null +++ b/src/ssr/TennisBall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TennisBall"; + +export const TennisBall: Icon = forwardRef((props, ref) => ( + +)); + +TennisBall.displayName = "TennisBall"; diff --git a/src/ssr/Tent.tsx b/src/ssr/Tent.tsx new file mode 100644 index 000000000..34bbf3214 --- /dev/null +++ b/src/ssr/Tent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tent"; + +export const Tent: Icon = forwardRef((props, ref) => ( + +)); + +Tent.displayName = "Tent"; diff --git a/src/ssr/Terminal.tsx b/src/ssr/Terminal.tsx new file mode 100644 index 000000000..28a8f847d --- /dev/null +++ b/src/ssr/Terminal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Terminal"; + +export const Terminal: Icon = forwardRef((props, ref) => ( + +)); + +Terminal.displayName = "Terminal"; diff --git a/src/ssr/TerminalWindow.tsx b/src/ssr/TerminalWindow.tsx new file mode 100644 index 000000000..f97c95832 --- /dev/null +++ b/src/ssr/TerminalWindow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TerminalWindow"; + +export const TerminalWindow: Icon = forwardRef((props, ref) => ( + +)); + +TerminalWindow.displayName = "TerminalWindow"; diff --git a/src/ssr/TestTube.tsx b/src/ssr/TestTube.tsx new file mode 100644 index 000000000..5528e19c9 --- /dev/null +++ b/src/ssr/TestTube.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TestTube"; + +export const TestTube: Icon = forwardRef((props, ref) => ( + +)); + +TestTube.displayName = "TestTube"; diff --git a/src/ssr/TextAUnderline.tsx b/src/ssr/TextAUnderline.tsx new file mode 100644 index 000000000..223198a3c --- /dev/null +++ b/src/ssr/TextAUnderline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextAUnderline"; + +export const TextAUnderline: Icon = forwardRef((props, ref) => ( + +)); + +TextAUnderline.displayName = "TextAUnderline"; diff --git a/src/ssr/TextAa.tsx b/src/ssr/TextAa.tsx new file mode 100644 index 000000000..2f5cd94fc --- /dev/null +++ b/src/ssr/TextAa.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextAa"; + +export const TextAa: Icon = forwardRef((props, ref) => ( + +)); + +TextAa.displayName = "TextAa"; diff --git a/src/ssr/TextAlignCenter.tsx b/src/ssr/TextAlignCenter.tsx new file mode 100644 index 000000000..23add84a4 --- /dev/null +++ b/src/ssr/TextAlignCenter.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextAlignCenter"; + +export const TextAlignCenter: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignCenter.displayName = "TextAlignCenter"; diff --git a/src/ssr/TextAlignJustify.tsx b/src/ssr/TextAlignJustify.tsx new file mode 100644 index 000000000..45d35e0c8 --- /dev/null +++ b/src/ssr/TextAlignJustify.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextAlignJustify"; + +export const TextAlignJustify: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignJustify.displayName = "TextAlignJustify"; diff --git a/src/ssr/TextAlignLeft.tsx b/src/ssr/TextAlignLeft.tsx new file mode 100644 index 000000000..782b4076c --- /dev/null +++ b/src/ssr/TextAlignLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextAlignLeft"; + +export const TextAlignLeft: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignLeft.displayName = "TextAlignLeft"; diff --git a/src/ssr/TextAlignRight.tsx b/src/ssr/TextAlignRight.tsx new file mode 100644 index 000000000..f91670160 --- /dev/null +++ b/src/ssr/TextAlignRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextAlignRight"; + +export const TextAlignRight: Icon = forwardRef((props, ref) => ( + +)); + +TextAlignRight.displayName = "TextAlignRight"; diff --git a/src/ssr/TextB.tsx b/src/ssr/TextB.tsx new file mode 100644 index 000000000..1e8f5a7e5 --- /dev/null +++ b/src/ssr/TextB.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextB"; + +export const TextB: Icon = forwardRef((props, ref) => ( + +)); + +TextB.displayName = "TextB"; diff --git a/src/ssr/TextColumns.tsx b/src/ssr/TextColumns.tsx new file mode 100644 index 000000000..3de8838d8 --- /dev/null +++ b/src/ssr/TextColumns.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextColumns"; + +export const TextColumns: Icon = forwardRef((props, ref) => ( + +)); + +TextColumns.displayName = "TextColumns"; diff --git a/src/ssr/TextH.tsx b/src/ssr/TextH.tsx new file mode 100644 index 000000000..1ff6f726e --- /dev/null +++ b/src/ssr/TextH.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextH"; + +export const TextH: Icon = forwardRef((props, ref) => ( + +)); + +TextH.displayName = "TextH"; diff --git a/src/ssr/TextHFive.tsx b/src/ssr/TextHFive.tsx new file mode 100644 index 000000000..c1941a5a3 --- /dev/null +++ b/src/ssr/TextHFive.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextHFive"; + +export const TextHFive: Icon = forwardRef((props, ref) => ( + +)); + +TextHFive.displayName = "TextHFive"; diff --git a/src/ssr/TextHFour.tsx b/src/ssr/TextHFour.tsx new file mode 100644 index 000000000..4cf6f19e6 --- /dev/null +++ b/src/ssr/TextHFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextHFour"; + +export const TextHFour: Icon = forwardRef((props, ref) => ( + +)); + +TextHFour.displayName = "TextHFour"; diff --git a/src/ssr/TextHOne.tsx b/src/ssr/TextHOne.tsx new file mode 100644 index 000000000..b8cb420f4 --- /dev/null +++ b/src/ssr/TextHOne.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextHOne"; + +export const TextHOne: Icon = forwardRef((props, ref) => ( + +)); + +TextHOne.displayName = "TextHOne"; diff --git a/src/ssr/TextHSix.tsx b/src/ssr/TextHSix.tsx new file mode 100644 index 000000000..07f23c98f --- /dev/null +++ b/src/ssr/TextHSix.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextHSix"; + +export const TextHSix: Icon = forwardRef((props, ref) => ( + +)); + +TextHSix.displayName = "TextHSix"; diff --git a/src/ssr/TextHThree.tsx b/src/ssr/TextHThree.tsx new file mode 100644 index 000000000..6b63b49e7 --- /dev/null +++ b/src/ssr/TextHThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextHThree"; + +export const TextHThree: Icon = forwardRef((props, ref) => ( + +)); + +TextHThree.displayName = "TextHThree"; diff --git a/src/ssr/TextHTwo.tsx b/src/ssr/TextHTwo.tsx new file mode 100644 index 000000000..e913324a9 --- /dev/null +++ b/src/ssr/TextHTwo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextHTwo"; + +export const TextHTwo: Icon = forwardRef((props, ref) => ( + +)); + +TextHTwo.displayName = "TextHTwo"; diff --git a/src/ssr/TextIndent.tsx b/src/ssr/TextIndent.tsx new file mode 100644 index 000000000..a749b26cc --- /dev/null +++ b/src/ssr/TextIndent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextIndent"; + +export const TextIndent: Icon = forwardRef((props, ref) => ( + +)); + +TextIndent.displayName = "TextIndent"; diff --git a/src/ssr/TextItalic.tsx b/src/ssr/TextItalic.tsx new file mode 100644 index 000000000..a903bb2a3 --- /dev/null +++ b/src/ssr/TextItalic.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextItalic"; + +export const TextItalic: Icon = forwardRef((props, ref) => ( + +)); + +TextItalic.displayName = "TextItalic"; diff --git a/src/ssr/TextOutdent.tsx b/src/ssr/TextOutdent.tsx new file mode 100644 index 000000000..898fab071 --- /dev/null +++ b/src/ssr/TextOutdent.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextOutdent"; + +export const TextOutdent: Icon = forwardRef((props, ref) => ( + +)); + +TextOutdent.displayName = "TextOutdent"; diff --git a/src/ssr/TextStrikethrough.tsx b/src/ssr/TextStrikethrough.tsx new file mode 100644 index 000000000..ab5b5f35d --- /dev/null +++ b/src/ssr/TextStrikethrough.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextStrikethrough"; + +export const TextStrikethrough: Icon = forwardRef((props, ref) => ( + +)); + +TextStrikethrough.displayName = "TextStrikethrough"; diff --git a/src/ssr/TextT.tsx b/src/ssr/TextT.tsx new file mode 100644 index 000000000..a5d580f54 --- /dev/null +++ b/src/ssr/TextT.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextT"; + +export const TextT: Icon = forwardRef((props, ref) => ( + +)); + +TextT.displayName = "TextT"; diff --git a/src/ssr/TextUnderline.tsx b/src/ssr/TextUnderline.tsx new file mode 100644 index 000000000..6e7bf5e49 --- /dev/null +++ b/src/ssr/TextUnderline.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TextUnderline"; + +export const TextUnderline: Icon = forwardRef((props, ref) => ( + +)); + +TextUnderline.displayName = "TextUnderline"; diff --git a/src/ssr/Textbox.tsx b/src/ssr/Textbox.tsx new file mode 100644 index 000000000..8d00d10ee --- /dev/null +++ b/src/ssr/Textbox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Textbox"; + +export const Textbox: Icon = forwardRef((props, ref) => ( + +)); + +Textbox.displayName = "Textbox"; diff --git a/src/ssr/Thermometer.tsx b/src/ssr/Thermometer.tsx new file mode 100644 index 000000000..54ae3782f --- /dev/null +++ b/src/ssr/Thermometer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Thermometer"; + +export const Thermometer: Icon = forwardRef((props, ref) => ( + +)); + +Thermometer.displayName = "Thermometer"; diff --git a/src/ssr/ThermometerCold.tsx b/src/ssr/ThermometerCold.tsx new file mode 100644 index 000000000..205142bde --- /dev/null +++ b/src/ssr/ThermometerCold.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ThermometerCold"; + +export const ThermometerCold: Icon = forwardRef((props, ref) => ( + +)); + +ThermometerCold.displayName = "ThermometerCold"; diff --git a/src/ssr/ThermometerHot.tsx b/src/ssr/ThermometerHot.tsx new file mode 100644 index 000000000..e36bd5696 --- /dev/null +++ b/src/ssr/ThermometerHot.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ThermometerHot"; + +export const ThermometerHot: Icon = forwardRef((props, ref) => ( + +)); + +ThermometerHot.displayName = "ThermometerHot"; diff --git a/src/ssr/ThermometerSimple.tsx b/src/ssr/ThermometerSimple.tsx new file mode 100644 index 000000000..87d66d79d --- /dev/null +++ b/src/ssr/ThermometerSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ThermometerSimple"; + +export const ThermometerSimple: Icon = forwardRef((props, ref) => ( + +)); + +ThermometerSimple.displayName = "ThermometerSimple"; diff --git a/src/ssr/ThumbsDown.tsx b/src/ssr/ThumbsDown.tsx new file mode 100644 index 000000000..65a947939 --- /dev/null +++ b/src/ssr/ThumbsDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ThumbsDown"; + +export const ThumbsDown: Icon = forwardRef((props, ref) => ( + +)); + +ThumbsDown.displayName = "ThumbsDown"; diff --git a/src/ssr/ThumbsUp.tsx b/src/ssr/ThumbsUp.tsx new file mode 100644 index 000000000..372515729 --- /dev/null +++ b/src/ssr/ThumbsUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ThumbsUp"; + +export const ThumbsUp: Icon = forwardRef((props, ref) => ( + +)); + +ThumbsUp.displayName = "ThumbsUp"; diff --git a/src/ssr/Ticket.tsx b/src/ssr/Ticket.tsx new file mode 100644 index 000000000..d5970277f --- /dev/null +++ b/src/ssr/Ticket.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Ticket"; + +export const Ticket: Icon = forwardRef((props, ref) => ( + +)); + +Ticket.displayName = "Ticket"; diff --git a/src/ssr/TidalLogo.tsx b/src/ssr/TidalLogo.tsx new file mode 100644 index 000000000..42af7da95 --- /dev/null +++ b/src/ssr/TidalLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TidalLogo"; + +export const TidalLogo: Icon = forwardRef((props, ref) => ( + +)); + +TidalLogo.displayName = "TidalLogo"; diff --git a/src/ssr/TiktokLogo.tsx b/src/ssr/TiktokLogo.tsx new file mode 100644 index 000000000..926a2da60 --- /dev/null +++ b/src/ssr/TiktokLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TiktokLogo"; + +export const TiktokLogo: Icon = forwardRef((props, ref) => ( + +)); + +TiktokLogo.displayName = "TiktokLogo"; diff --git a/src/ssr/Timer.tsx b/src/ssr/Timer.tsx new file mode 100644 index 000000000..da38e8c7c --- /dev/null +++ b/src/ssr/Timer.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Timer"; + +export const Timer: Icon = forwardRef((props, ref) => ( + +)); + +Timer.displayName = "Timer"; diff --git a/src/ssr/Tipi.tsx b/src/ssr/Tipi.tsx new file mode 100644 index 000000000..8efac3c51 --- /dev/null +++ b/src/ssr/Tipi.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tipi"; + +export const Tipi: Icon = forwardRef((props, ref) => ( + +)); + +Tipi.displayName = "Tipi"; diff --git a/src/ssr/ToggleLeft.tsx b/src/ssr/ToggleLeft.tsx new file mode 100644 index 000000000..05e4c6087 --- /dev/null +++ b/src/ssr/ToggleLeft.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ToggleLeft"; + +export const ToggleLeft: Icon = forwardRef((props, ref) => ( + +)); + +ToggleLeft.displayName = "ToggleLeft"; diff --git a/src/ssr/ToggleRight.tsx b/src/ssr/ToggleRight.tsx new file mode 100644 index 000000000..6a2b30d37 --- /dev/null +++ b/src/ssr/ToggleRight.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ToggleRight"; + +export const ToggleRight: Icon = forwardRef((props, ref) => ( + +)); + +ToggleRight.displayName = "ToggleRight"; diff --git a/src/ssr/Toilet.tsx b/src/ssr/Toilet.tsx new file mode 100644 index 000000000..820e006ff --- /dev/null +++ b/src/ssr/Toilet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Toilet"; + +export const Toilet: Icon = forwardRef((props, ref) => ( + +)); + +Toilet.displayName = "Toilet"; diff --git a/src/ssr/ToiletPaper.tsx b/src/ssr/ToiletPaper.tsx new file mode 100644 index 000000000..d0479aab0 --- /dev/null +++ b/src/ssr/ToiletPaper.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ToiletPaper"; + +export const ToiletPaper: Icon = forwardRef((props, ref) => ( + +)); + +ToiletPaper.displayName = "ToiletPaper"; diff --git a/src/ssr/Toolbox.tsx b/src/ssr/Toolbox.tsx new file mode 100644 index 000000000..8dbc7af68 --- /dev/null +++ b/src/ssr/Toolbox.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Toolbox"; + +export const Toolbox: Icon = forwardRef((props, ref) => ( + +)); + +Toolbox.displayName = "Toolbox"; diff --git a/src/ssr/Tooth.tsx b/src/ssr/Tooth.tsx new file mode 100644 index 000000000..340ec0cee --- /dev/null +++ b/src/ssr/Tooth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tooth"; + +export const Tooth: Icon = forwardRef((props, ref) => ( + +)); + +Tooth.displayName = "Tooth"; diff --git a/src/ssr/Tote.tsx b/src/ssr/Tote.tsx new file mode 100644 index 000000000..a58786d18 --- /dev/null +++ b/src/ssr/Tote.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tote"; + +export const Tote: Icon = forwardRef((props, ref) => ( + +)); + +Tote.displayName = "Tote"; diff --git a/src/ssr/ToteSimple.tsx b/src/ssr/ToteSimple.tsx new file mode 100644 index 000000000..c99992ea9 --- /dev/null +++ b/src/ssr/ToteSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/ToteSimple"; + +export const ToteSimple: Icon = forwardRef((props, ref) => ( + +)); + +ToteSimple.displayName = "ToteSimple"; diff --git a/src/ssr/Trademark.tsx b/src/ssr/Trademark.tsx new file mode 100644 index 000000000..919b9519b --- /dev/null +++ b/src/ssr/Trademark.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Trademark"; + +export const Trademark: Icon = forwardRef((props, ref) => ( + +)); + +Trademark.displayName = "Trademark"; diff --git a/src/ssr/TrademarkRegistered.tsx b/src/ssr/TrademarkRegistered.tsx new file mode 100644 index 000000000..0dd336a19 --- /dev/null +++ b/src/ssr/TrademarkRegistered.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrademarkRegistered"; + +export const TrademarkRegistered: Icon = forwardRef((props, ref) => ( + +)); + +TrademarkRegistered.displayName = "TrademarkRegistered"; diff --git a/src/ssr/TrafficCone.tsx b/src/ssr/TrafficCone.tsx new file mode 100644 index 000000000..25b493eb1 --- /dev/null +++ b/src/ssr/TrafficCone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrafficCone"; + +export const TrafficCone: Icon = forwardRef((props, ref) => ( + +)); + +TrafficCone.displayName = "TrafficCone"; diff --git a/src/ssr/TrafficSign.tsx b/src/ssr/TrafficSign.tsx new file mode 100644 index 000000000..454054d9f --- /dev/null +++ b/src/ssr/TrafficSign.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrafficSign"; + +export const TrafficSign: Icon = forwardRef((props, ref) => ( + +)); + +TrafficSign.displayName = "TrafficSign"; diff --git a/src/ssr/TrafficSignal.tsx b/src/ssr/TrafficSignal.tsx new file mode 100644 index 000000000..2a56eb81e --- /dev/null +++ b/src/ssr/TrafficSignal.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrafficSignal"; + +export const TrafficSignal: Icon = forwardRef((props, ref) => ( + +)); + +TrafficSignal.displayName = "TrafficSignal"; diff --git a/src/ssr/Train.tsx b/src/ssr/Train.tsx new file mode 100644 index 000000000..e74e3cc35 --- /dev/null +++ b/src/ssr/Train.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Train"; + +export const Train: Icon = forwardRef((props, ref) => ( + +)); + +Train.displayName = "Train"; diff --git a/src/ssr/TrainRegional.tsx b/src/ssr/TrainRegional.tsx new file mode 100644 index 000000000..74c0066ae --- /dev/null +++ b/src/ssr/TrainRegional.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrainRegional"; + +export const TrainRegional: Icon = forwardRef((props, ref) => ( + +)); + +TrainRegional.displayName = "TrainRegional"; diff --git a/src/ssr/TrainSimple.tsx b/src/ssr/TrainSimple.tsx new file mode 100644 index 000000000..338d61422 --- /dev/null +++ b/src/ssr/TrainSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrainSimple"; + +export const TrainSimple: Icon = forwardRef((props, ref) => ( + +)); + +TrainSimple.displayName = "TrainSimple"; diff --git a/src/ssr/Tram.tsx b/src/ssr/Tram.tsx new file mode 100644 index 000000000..2783825ae --- /dev/null +++ b/src/ssr/Tram.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tram"; + +export const Tram: Icon = forwardRef((props, ref) => ( + +)); + +Tram.displayName = "Tram"; diff --git a/src/ssr/Translate.tsx b/src/ssr/Translate.tsx new file mode 100644 index 000000000..c4b2dde55 --- /dev/null +++ b/src/ssr/Translate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Translate"; + +export const Translate: Icon = forwardRef((props, ref) => ( + +)); + +Translate.displayName = "Translate"; diff --git a/src/ssr/Trash.tsx b/src/ssr/Trash.tsx new file mode 100644 index 000000000..53ea203c4 --- /dev/null +++ b/src/ssr/Trash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Trash"; + +export const Trash: Icon = forwardRef((props, ref) => ( + +)); + +Trash.displayName = "Trash"; diff --git a/src/ssr/TrashSimple.tsx b/src/ssr/TrashSimple.tsx new file mode 100644 index 000000000..6122ec15a --- /dev/null +++ b/src/ssr/TrashSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrashSimple"; + +export const TrashSimple: Icon = forwardRef((props, ref) => ( + +)); + +TrashSimple.displayName = "TrashSimple"; diff --git a/src/ssr/Tray.tsx b/src/ssr/Tray.tsx new file mode 100644 index 000000000..8efe3b0c7 --- /dev/null +++ b/src/ssr/Tray.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tray"; + +export const Tray: Icon = forwardRef((props, ref) => ( + +)); + +Tray.displayName = "Tray"; diff --git a/src/ssr/Tree.tsx b/src/ssr/Tree.tsx new file mode 100644 index 000000000..45c892177 --- /dev/null +++ b/src/ssr/Tree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Tree"; + +export const Tree: Icon = forwardRef((props, ref) => ( + +)); + +Tree.displayName = "Tree"; diff --git a/src/ssr/TreeEvergreen.tsx b/src/ssr/TreeEvergreen.tsx new file mode 100644 index 000000000..348ac1ce1 --- /dev/null +++ b/src/ssr/TreeEvergreen.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TreeEvergreen"; + +export const TreeEvergreen: Icon = forwardRef((props, ref) => ( + +)); + +TreeEvergreen.displayName = "TreeEvergreen"; diff --git a/src/ssr/TreePalm.tsx b/src/ssr/TreePalm.tsx new file mode 100644 index 000000000..090fbed07 --- /dev/null +++ b/src/ssr/TreePalm.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TreePalm"; + +export const TreePalm: Icon = forwardRef((props, ref) => ( + +)); + +TreePalm.displayName = "TreePalm"; diff --git a/src/ssr/TreeStructure.tsx b/src/ssr/TreeStructure.tsx new file mode 100644 index 000000000..7be839ad4 --- /dev/null +++ b/src/ssr/TreeStructure.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TreeStructure"; + +export const TreeStructure: Icon = forwardRef((props, ref) => ( + +)); + +TreeStructure.displayName = "TreeStructure"; diff --git a/src/ssr/TrendDown.tsx b/src/ssr/TrendDown.tsx new file mode 100644 index 000000000..4b4d7fc49 --- /dev/null +++ b/src/ssr/TrendDown.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrendDown"; + +export const TrendDown: Icon = forwardRef((props, ref) => ( + +)); + +TrendDown.displayName = "TrendDown"; diff --git a/src/ssr/TrendUp.tsx b/src/ssr/TrendUp.tsx new file mode 100644 index 000000000..85bf26845 --- /dev/null +++ b/src/ssr/TrendUp.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TrendUp"; + +export const TrendUp: Icon = forwardRef((props, ref) => ( + +)); + +TrendUp.displayName = "TrendUp"; diff --git a/src/ssr/Triangle.tsx b/src/ssr/Triangle.tsx new file mode 100644 index 000000000..f53b09829 --- /dev/null +++ b/src/ssr/Triangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Triangle"; + +export const Triangle: Icon = forwardRef((props, ref) => ( + +)); + +Triangle.displayName = "Triangle"; diff --git a/src/ssr/Trophy.tsx b/src/ssr/Trophy.tsx new file mode 100644 index 000000000..4aeba2df8 --- /dev/null +++ b/src/ssr/Trophy.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Trophy"; + +export const Trophy: Icon = forwardRef((props, ref) => ( + +)); + +Trophy.displayName = "Trophy"; diff --git a/src/ssr/Truck.tsx b/src/ssr/Truck.tsx new file mode 100644 index 000000000..6478d02c0 --- /dev/null +++ b/src/ssr/Truck.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Truck"; + +export const Truck: Icon = forwardRef((props, ref) => ( + +)); + +Truck.displayName = "Truck"; diff --git a/src/ssr/TwitchLogo.tsx b/src/ssr/TwitchLogo.tsx new file mode 100644 index 000000000..0bc90bf90 --- /dev/null +++ b/src/ssr/TwitchLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TwitchLogo"; + +export const TwitchLogo: Icon = forwardRef((props, ref) => ( + +)); + +TwitchLogo.displayName = "TwitchLogo"; diff --git a/src/ssr/TwitterLogo.tsx b/src/ssr/TwitterLogo.tsx new file mode 100644 index 000000000..329763b36 --- /dev/null +++ b/src/ssr/TwitterLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/TwitterLogo"; + +export const TwitterLogo: Icon = forwardRef((props, ref) => ( + +)); + +TwitterLogo.displayName = "TwitterLogo"; diff --git a/src/ssr/Umbrella.tsx b/src/ssr/Umbrella.tsx new file mode 100644 index 000000000..c4ca51587 --- /dev/null +++ b/src/ssr/Umbrella.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Umbrella"; + +export const Umbrella: Icon = forwardRef((props, ref) => ( + +)); + +Umbrella.displayName = "Umbrella"; diff --git a/src/ssr/UmbrellaSimple.tsx b/src/ssr/UmbrellaSimple.tsx new file mode 100644 index 000000000..984104055 --- /dev/null +++ b/src/ssr/UmbrellaSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UmbrellaSimple"; + +export const UmbrellaSimple: Icon = forwardRef((props, ref) => ( + +)); + +UmbrellaSimple.displayName = "UmbrellaSimple"; diff --git a/src/ssr/Unite.tsx b/src/ssr/Unite.tsx new file mode 100644 index 000000000..3cfc75ff0 --- /dev/null +++ b/src/ssr/Unite.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Unite"; + +export const Unite: Icon = forwardRef((props, ref) => ( + +)); + +Unite.displayName = "Unite"; diff --git a/src/ssr/UniteSquare.tsx b/src/ssr/UniteSquare.tsx new file mode 100644 index 000000000..226e3ca26 --- /dev/null +++ b/src/ssr/UniteSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UniteSquare"; + +export const UniteSquare: Icon = forwardRef((props, ref) => ( + +)); + +UniteSquare.displayName = "UniteSquare"; diff --git a/src/ssr/Upload.tsx b/src/ssr/Upload.tsx new file mode 100644 index 000000000..f446ba990 --- /dev/null +++ b/src/ssr/Upload.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Upload"; + +export const Upload: Icon = forwardRef((props, ref) => ( + +)); + +Upload.displayName = "Upload"; diff --git a/src/ssr/UploadSimple.tsx b/src/ssr/UploadSimple.tsx new file mode 100644 index 000000000..7403821ce --- /dev/null +++ b/src/ssr/UploadSimple.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UploadSimple"; + +export const UploadSimple: Icon = forwardRef((props, ref) => ( + +)); + +UploadSimple.displayName = "UploadSimple"; diff --git a/src/ssr/Usb.tsx b/src/ssr/Usb.tsx new file mode 100644 index 000000000..8a0573dc9 --- /dev/null +++ b/src/ssr/Usb.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Usb"; + +export const Usb: Icon = forwardRef((props, ref) => ( + +)); + +Usb.displayName = "Usb"; diff --git a/src/ssr/User.tsx b/src/ssr/User.tsx new file mode 100644 index 000000000..d4e57561c --- /dev/null +++ b/src/ssr/User.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/User"; + +export const User: Icon = forwardRef((props, ref) => ( + +)); + +User.displayName = "User"; diff --git a/src/ssr/UserCircle.tsx b/src/ssr/UserCircle.tsx new file mode 100644 index 000000000..4558538fe --- /dev/null +++ b/src/ssr/UserCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserCircle"; + +export const UserCircle: Icon = forwardRef((props, ref) => ( + +)); + +UserCircle.displayName = "UserCircle"; diff --git a/src/ssr/UserCircleGear.tsx b/src/ssr/UserCircleGear.tsx new file mode 100644 index 000000000..91d8ad650 --- /dev/null +++ b/src/ssr/UserCircleGear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserCircleGear"; + +export const UserCircleGear: Icon = forwardRef((props, ref) => ( + +)); + +UserCircleGear.displayName = "UserCircleGear"; diff --git a/src/ssr/UserCircleMinus.tsx b/src/ssr/UserCircleMinus.tsx new file mode 100644 index 000000000..e257aaa5a --- /dev/null +++ b/src/ssr/UserCircleMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserCircleMinus"; + +export const UserCircleMinus: Icon = forwardRef((props, ref) => ( + +)); + +UserCircleMinus.displayName = "UserCircleMinus"; diff --git a/src/ssr/UserCirclePlus.tsx b/src/ssr/UserCirclePlus.tsx new file mode 100644 index 000000000..bb54ea296 --- /dev/null +++ b/src/ssr/UserCirclePlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserCirclePlus"; + +export const UserCirclePlus: Icon = forwardRef((props, ref) => ( + +)); + +UserCirclePlus.displayName = "UserCirclePlus"; diff --git a/src/ssr/UserFocus.tsx b/src/ssr/UserFocus.tsx new file mode 100644 index 000000000..0b6bc3b5b --- /dev/null +++ b/src/ssr/UserFocus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserFocus"; + +export const UserFocus: Icon = forwardRef((props, ref) => ( + +)); + +UserFocus.displayName = "UserFocus"; diff --git a/src/ssr/UserGear.tsx b/src/ssr/UserGear.tsx new file mode 100644 index 000000000..ab428645e --- /dev/null +++ b/src/ssr/UserGear.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserGear"; + +export const UserGear: Icon = forwardRef((props, ref) => ( + +)); + +UserGear.displayName = "UserGear"; diff --git a/src/ssr/UserList.tsx b/src/ssr/UserList.tsx new file mode 100644 index 000000000..028bd1fc2 --- /dev/null +++ b/src/ssr/UserList.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserList"; + +export const UserList: Icon = forwardRef((props, ref) => ( + +)); + +UserList.displayName = "UserList"; diff --git a/src/ssr/UserMinus.tsx b/src/ssr/UserMinus.tsx new file mode 100644 index 000000000..e6251771d --- /dev/null +++ b/src/ssr/UserMinus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserMinus"; + +export const UserMinus: Icon = forwardRef((props, ref) => ( + +)); + +UserMinus.displayName = "UserMinus"; diff --git a/src/ssr/UserPlus.tsx b/src/ssr/UserPlus.tsx new file mode 100644 index 000000000..fd3925e94 --- /dev/null +++ b/src/ssr/UserPlus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserPlus"; + +export const UserPlus: Icon = forwardRef((props, ref) => ( + +)); + +UserPlus.displayName = "UserPlus"; diff --git a/src/ssr/UserRectangle.tsx b/src/ssr/UserRectangle.tsx new file mode 100644 index 000000000..9dec4b0c4 --- /dev/null +++ b/src/ssr/UserRectangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserRectangle"; + +export const UserRectangle: Icon = forwardRef((props, ref) => ( + +)); + +UserRectangle.displayName = "UserRectangle"; diff --git a/src/ssr/UserSquare.tsx b/src/ssr/UserSquare.tsx new file mode 100644 index 000000000..e1f3fda50 --- /dev/null +++ b/src/ssr/UserSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserSquare"; + +export const UserSquare: Icon = forwardRef((props, ref) => ( + +)); + +UserSquare.displayName = "UserSquare"; diff --git a/src/ssr/UserSwitch.tsx b/src/ssr/UserSwitch.tsx new file mode 100644 index 000000000..c97cbc92a --- /dev/null +++ b/src/ssr/UserSwitch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UserSwitch"; + +export const UserSwitch: Icon = forwardRef((props, ref) => ( + +)); + +UserSwitch.displayName = "UserSwitch"; diff --git a/src/ssr/Users.tsx b/src/ssr/Users.tsx new file mode 100644 index 000000000..0d3a80b81 --- /dev/null +++ b/src/ssr/Users.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Users"; + +export const Users: Icon = forwardRef((props, ref) => ( + +)); + +Users.displayName = "Users"; diff --git a/src/ssr/UsersFour.tsx b/src/ssr/UsersFour.tsx new file mode 100644 index 000000000..0593b2e44 --- /dev/null +++ b/src/ssr/UsersFour.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UsersFour"; + +export const UsersFour: Icon = forwardRef((props, ref) => ( + +)); + +UsersFour.displayName = "UsersFour"; diff --git a/src/ssr/UsersThree.tsx b/src/ssr/UsersThree.tsx new file mode 100644 index 000000000..eca0c0a2b --- /dev/null +++ b/src/ssr/UsersThree.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/UsersThree"; + +export const UsersThree: Icon = forwardRef((props, ref) => ( + +)); + +UsersThree.displayName = "UsersThree"; diff --git a/src/ssr/Van.tsx b/src/ssr/Van.tsx new file mode 100644 index 000000000..460bd0aaa --- /dev/null +++ b/src/ssr/Van.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Van"; + +export const Van: Icon = forwardRef((props, ref) => ( + +)); + +Van.displayName = "Van"; diff --git a/src/ssr/Vault.tsx b/src/ssr/Vault.tsx new file mode 100644 index 000000000..4df92e462 --- /dev/null +++ b/src/ssr/Vault.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Vault"; + +export const Vault: Icon = forwardRef((props, ref) => ( + +)); + +Vault.displayName = "Vault"; diff --git a/src/ssr/Vibrate.tsx b/src/ssr/Vibrate.tsx new file mode 100644 index 000000000..a6f391329 --- /dev/null +++ b/src/ssr/Vibrate.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Vibrate"; + +export const Vibrate: Icon = forwardRef((props, ref) => ( + +)); + +Vibrate.displayName = "Vibrate"; diff --git a/src/ssr/Video.tsx b/src/ssr/Video.tsx new file mode 100644 index 000000000..a5bc282af --- /dev/null +++ b/src/ssr/Video.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Video"; + +export const Video: Icon = forwardRef((props, ref) => ( + +)); + +Video.displayName = "Video"; diff --git a/src/ssr/VideoCamera.tsx b/src/ssr/VideoCamera.tsx new file mode 100644 index 000000000..04d4d6a64 --- /dev/null +++ b/src/ssr/VideoCamera.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/VideoCamera"; + +export const VideoCamera: Icon = forwardRef((props, ref) => ( + +)); + +VideoCamera.displayName = "VideoCamera"; diff --git a/src/ssr/VideoCameraSlash.tsx b/src/ssr/VideoCameraSlash.tsx new file mode 100644 index 000000000..69a56338e --- /dev/null +++ b/src/ssr/VideoCameraSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/VideoCameraSlash"; + +export const VideoCameraSlash: Icon = forwardRef((props, ref) => ( + +)); + +VideoCameraSlash.displayName = "VideoCameraSlash"; diff --git a/src/ssr/Vignette.tsx b/src/ssr/Vignette.tsx new file mode 100644 index 000000000..feb6b55f0 --- /dev/null +++ b/src/ssr/Vignette.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Vignette"; + +export const Vignette: Icon = forwardRef((props, ref) => ( + +)); + +Vignette.displayName = "Vignette"; diff --git a/src/ssr/VinylRecord.tsx b/src/ssr/VinylRecord.tsx new file mode 100644 index 000000000..2ba27b306 --- /dev/null +++ b/src/ssr/VinylRecord.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/VinylRecord"; + +export const VinylRecord: Icon = forwardRef((props, ref) => ( + +)); + +VinylRecord.displayName = "VinylRecord"; diff --git a/src/ssr/VirtualReality.tsx b/src/ssr/VirtualReality.tsx new file mode 100644 index 000000000..ab9789e04 --- /dev/null +++ b/src/ssr/VirtualReality.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/VirtualReality"; + +export const VirtualReality: Icon = forwardRef((props, ref) => ( + +)); + +VirtualReality.displayName = "VirtualReality"; diff --git a/src/ssr/Virus.tsx b/src/ssr/Virus.tsx new file mode 100644 index 000000000..c9d6ed566 --- /dev/null +++ b/src/ssr/Virus.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Virus"; + +export const Virus: Icon = forwardRef((props, ref) => ( + +)); + +Virus.displayName = "Virus"; diff --git a/src/ssr/Voicemail.tsx b/src/ssr/Voicemail.tsx new file mode 100644 index 000000000..d2f9ef192 --- /dev/null +++ b/src/ssr/Voicemail.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Voicemail"; + +export const Voicemail: Icon = forwardRef((props, ref) => ( + +)); + +Voicemail.displayName = "Voicemail"; diff --git a/src/ssr/Volleyball.tsx b/src/ssr/Volleyball.tsx new file mode 100644 index 000000000..1e2b9efa6 --- /dev/null +++ b/src/ssr/Volleyball.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Volleyball"; + +export const Volleyball: Icon = forwardRef((props, ref) => ( + +)); + +Volleyball.displayName = "Volleyball"; diff --git a/src/ssr/Wall.tsx b/src/ssr/Wall.tsx new file mode 100644 index 000000000..9fcc3e79a --- /dev/null +++ b/src/ssr/Wall.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Wall"; + +export const Wall: Icon = forwardRef((props, ref) => ( + +)); + +Wall.displayName = "Wall"; diff --git a/src/ssr/Wallet.tsx b/src/ssr/Wallet.tsx new file mode 100644 index 000000000..1efd11a10 --- /dev/null +++ b/src/ssr/Wallet.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Wallet"; + +export const Wallet: Icon = forwardRef((props, ref) => ( + +)); + +Wallet.displayName = "Wallet"; diff --git a/src/ssr/Warehouse.tsx b/src/ssr/Warehouse.tsx new file mode 100644 index 000000000..5e504fde7 --- /dev/null +++ b/src/ssr/Warehouse.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Warehouse"; + +export const Warehouse: Icon = forwardRef((props, ref) => ( + +)); + +Warehouse.displayName = "Warehouse"; diff --git a/src/ssr/Warning.tsx b/src/ssr/Warning.tsx new file mode 100644 index 000000000..caebd2029 --- /dev/null +++ b/src/ssr/Warning.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Warning"; + +export const Warning: Icon = forwardRef((props, ref) => ( + +)); + +Warning.displayName = "Warning"; diff --git a/src/ssr/WarningCircle.tsx b/src/ssr/WarningCircle.tsx new file mode 100644 index 000000000..763ba2b51 --- /dev/null +++ b/src/ssr/WarningCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WarningCircle"; + +export const WarningCircle: Icon = forwardRef((props, ref) => ( + +)); + +WarningCircle.displayName = "WarningCircle"; diff --git a/src/ssr/WarningDiamond.tsx b/src/ssr/WarningDiamond.tsx new file mode 100644 index 000000000..785e2cdfd --- /dev/null +++ b/src/ssr/WarningDiamond.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WarningDiamond"; + +export const WarningDiamond: Icon = forwardRef((props, ref) => ( + +)); + +WarningDiamond.displayName = "WarningDiamond"; diff --git a/src/ssr/WarningOctagon.tsx b/src/ssr/WarningOctagon.tsx new file mode 100644 index 000000000..29db87f90 --- /dev/null +++ b/src/ssr/WarningOctagon.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WarningOctagon"; + +export const WarningOctagon: Icon = forwardRef((props, ref) => ( + +)); + +WarningOctagon.displayName = "WarningOctagon"; diff --git a/src/ssr/Watch.tsx b/src/ssr/Watch.tsx new file mode 100644 index 000000000..8a60f5ddb --- /dev/null +++ b/src/ssr/Watch.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Watch"; + +export const Watch: Icon = forwardRef((props, ref) => ( + +)); + +Watch.displayName = "Watch"; diff --git a/src/ssr/WaveSawtooth.tsx b/src/ssr/WaveSawtooth.tsx new file mode 100644 index 000000000..b5a92257c --- /dev/null +++ b/src/ssr/WaveSawtooth.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WaveSawtooth"; + +export const WaveSawtooth: Icon = forwardRef((props, ref) => ( + +)); + +WaveSawtooth.displayName = "WaveSawtooth"; diff --git a/src/ssr/WaveSine.tsx b/src/ssr/WaveSine.tsx new file mode 100644 index 000000000..577436023 --- /dev/null +++ b/src/ssr/WaveSine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WaveSine"; + +export const WaveSine: Icon = forwardRef((props, ref) => ( + +)); + +WaveSine.displayName = "WaveSine"; diff --git a/src/ssr/WaveSquare.tsx b/src/ssr/WaveSquare.tsx new file mode 100644 index 000000000..ad1bd0eee --- /dev/null +++ b/src/ssr/WaveSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WaveSquare"; + +export const WaveSquare: Icon = forwardRef((props, ref) => ( + +)); + +WaveSquare.displayName = "WaveSquare"; diff --git a/src/ssr/WaveTriangle.tsx b/src/ssr/WaveTriangle.tsx new file mode 100644 index 000000000..4b3b20779 --- /dev/null +++ b/src/ssr/WaveTriangle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WaveTriangle"; + +export const WaveTriangle: Icon = forwardRef((props, ref) => ( + +)); + +WaveTriangle.displayName = "WaveTriangle"; diff --git a/src/ssr/Waveform.tsx b/src/ssr/Waveform.tsx new file mode 100644 index 000000000..6fd289670 --- /dev/null +++ b/src/ssr/Waveform.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Waveform"; + +export const Waveform: Icon = forwardRef((props, ref) => ( + +)); + +Waveform.displayName = "Waveform"; diff --git a/src/ssr/Waves.tsx b/src/ssr/Waves.tsx new file mode 100644 index 000000000..150f84a1c --- /dev/null +++ b/src/ssr/Waves.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Waves"; + +export const Waves: Icon = forwardRef((props, ref) => ( + +)); + +Waves.displayName = "Waves"; diff --git a/src/ssr/Webcam.tsx b/src/ssr/Webcam.tsx new file mode 100644 index 000000000..11acbe687 --- /dev/null +++ b/src/ssr/Webcam.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Webcam"; + +export const Webcam: Icon = forwardRef((props, ref) => ( + +)); + +Webcam.displayName = "Webcam"; diff --git a/src/ssr/WebcamSlash.tsx b/src/ssr/WebcamSlash.tsx new file mode 100644 index 000000000..7e5ccb70d --- /dev/null +++ b/src/ssr/WebcamSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WebcamSlash"; + +export const WebcamSlash: Icon = forwardRef((props, ref) => ( + +)); + +WebcamSlash.displayName = "WebcamSlash"; diff --git a/src/ssr/WebhooksLogo.tsx b/src/ssr/WebhooksLogo.tsx new file mode 100644 index 000000000..089dd8875 --- /dev/null +++ b/src/ssr/WebhooksLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WebhooksLogo"; + +export const WebhooksLogo: Icon = forwardRef((props, ref) => ( + +)); + +WebhooksLogo.displayName = "WebhooksLogo"; diff --git a/src/ssr/WechatLogo.tsx b/src/ssr/WechatLogo.tsx new file mode 100644 index 000000000..880b3a81f --- /dev/null +++ b/src/ssr/WechatLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WechatLogo"; + +export const WechatLogo: Icon = forwardRef((props, ref) => ( + +)); + +WechatLogo.displayName = "WechatLogo"; diff --git a/src/ssr/WhatsappLogo.tsx b/src/ssr/WhatsappLogo.tsx new file mode 100644 index 000000000..9d55667c3 --- /dev/null +++ b/src/ssr/WhatsappLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WhatsappLogo"; + +export const WhatsappLogo: Icon = forwardRef((props, ref) => ( + +)); + +WhatsappLogo.displayName = "WhatsappLogo"; diff --git a/src/ssr/Wheelchair.tsx b/src/ssr/Wheelchair.tsx new file mode 100644 index 000000000..4f0d9265d --- /dev/null +++ b/src/ssr/Wheelchair.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Wheelchair"; + +export const Wheelchair: Icon = forwardRef((props, ref) => ( + +)); + +Wheelchair.displayName = "Wheelchair"; diff --git a/src/ssr/WheelchairMotion.tsx b/src/ssr/WheelchairMotion.tsx new file mode 100644 index 000000000..c18b4af51 --- /dev/null +++ b/src/ssr/WheelchairMotion.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WheelchairMotion"; + +export const WheelchairMotion: Icon = forwardRef((props, ref) => ( + +)); + +WheelchairMotion.displayName = "WheelchairMotion"; diff --git a/src/ssr/WifiHigh.tsx b/src/ssr/WifiHigh.tsx new file mode 100644 index 000000000..00497c8f6 --- /dev/null +++ b/src/ssr/WifiHigh.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WifiHigh"; + +export const WifiHigh: Icon = forwardRef((props, ref) => ( + +)); + +WifiHigh.displayName = "WifiHigh"; diff --git a/src/ssr/WifiLow.tsx b/src/ssr/WifiLow.tsx new file mode 100644 index 000000000..af31cc28f --- /dev/null +++ b/src/ssr/WifiLow.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WifiLow"; + +export const WifiLow: Icon = forwardRef((props, ref) => ( + +)); + +WifiLow.displayName = "WifiLow"; diff --git a/src/ssr/WifiMedium.tsx b/src/ssr/WifiMedium.tsx new file mode 100644 index 000000000..f6cb7e522 --- /dev/null +++ b/src/ssr/WifiMedium.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WifiMedium"; + +export const WifiMedium: Icon = forwardRef((props, ref) => ( + +)); + +WifiMedium.displayName = "WifiMedium"; diff --git a/src/ssr/WifiNone.tsx b/src/ssr/WifiNone.tsx new file mode 100644 index 000000000..0ce5d6152 --- /dev/null +++ b/src/ssr/WifiNone.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WifiNone"; + +export const WifiNone: Icon = forwardRef((props, ref) => ( + +)); + +WifiNone.displayName = "WifiNone"; diff --git a/src/ssr/WifiSlash.tsx b/src/ssr/WifiSlash.tsx new file mode 100644 index 000000000..f0c5b07fb --- /dev/null +++ b/src/ssr/WifiSlash.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WifiSlash"; + +export const WifiSlash: Icon = forwardRef((props, ref) => ( + +)); + +WifiSlash.displayName = "WifiSlash"; diff --git a/src/ssr/WifiX.tsx b/src/ssr/WifiX.tsx new file mode 100644 index 000000000..cd6dd8ebd --- /dev/null +++ b/src/ssr/WifiX.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WifiX"; + +export const WifiX: Icon = forwardRef((props, ref) => ( + +)); + +WifiX.displayName = "WifiX"; diff --git a/src/ssr/Wind.tsx b/src/ssr/Wind.tsx new file mode 100644 index 000000000..9e17850fd --- /dev/null +++ b/src/ssr/Wind.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Wind"; + +export const Wind: Icon = forwardRef((props, ref) => ( + +)); + +Wind.displayName = "Wind"; diff --git a/src/ssr/WindowsLogo.tsx b/src/ssr/WindowsLogo.tsx new file mode 100644 index 000000000..e2e59a89f --- /dev/null +++ b/src/ssr/WindowsLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/WindowsLogo"; + +export const WindowsLogo: Icon = forwardRef((props, ref) => ( + +)); + +WindowsLogo.displayName = "WindowsLogo"; diff --git a/src/ssr/Wine.tsx b/src/ssr/Wine.tsx new file mode 100644 index 000000000..825a9906b --- /dev/null +++ b/src/ssr/Wine.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Wine"; + +export const Wine: Icon = forwardRef((props, ref) => ( + +)); + +Wine.displayName = "Wine"; diff --git a/src/ssr/Wrench.tsx b/src/ssr/Wrench.tsx new file mode 100644 index 000000000..d47e57291 --- /dev/null +++ b/src/ssr/Wrench.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/Wrench"; + +export const Wrench: Icon = forwardRef((props, ref) => ( + +)); + +Wrench.displayName = "Wrench"; diff --git a/src/ssr/X.tsx b/src/ssr/X.tsx new file mode 100644 index 000000000..5dd43dc37 --- /dev/null +++ b/src/ssr/X.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/X"; + +export const X: Icon = forwardRef((props, ref) => ( + +)); + +X.displayName = "X"; diff --git a/src/ssr/XCircle.tsx b/src/ssr/XCircle.tsx new file mode 100644 index 000000000..bcc337ab3 --- /dev/null +++ b/src/ssr/XCircle.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/XCircle"; + +export const XCircle: Icon = forwardRef((props, ref) => ( + +)); + +XCircle.displayName = "XCircle"; diff --git a/src/ssr/XSquare.tsx b/src/ssr/XSquare.tsx new file mode 100644 index 000000000..bcff88132 --- /dev/null +++ b/src/ssr/XSquare.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/XSquare"; + +export const XSquare: Icon = forwardRef((props, ref) => ( + +)); + +XSquare.displayName = "XSquare"; diff --git a/src/ssr/YinYang.tsx b/src/ssr/YinYang.tsx new file mode 100644 index 000000000..cf68dc47b --- /dev/null +++ b/src/ssr/YinYang.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/YinYang"; + +export const YinYang: Icon = forwardRef((props, ref) => ( + +)); + +YinYang.displayName = "YinYang"; diff --git a/src/ssr/YoutubeLogo.tsx b/src/ssr/YoutubeLogo.tsx new file mode 100644 index 000000000..ab13dc73e --- /dev/null +++ b/src/ssr/YoutubeLogo.tsx @@ -0,0 +1,11 @@ +/* GENERATED FILE */ +import { forwardRef } from "react"; +import type { Icon } from "../lib/types"; +import SSRBase from "../lib/SSRBase"; +import weights from "../defs/YoutubeLogo"; + +export const YoutubeLogo: Icon = forwardRef((props, ref) => ( + +)); + +YoutubeLogo.displayName = "YoutubeLogo"; diff --git a/src/ssr/index.ts b/src/ssr/index.ts new file mode 100644 index 000000000..06d8260f4 --- /dev/null +++ b/src/ssr/index.ts @@ -0,0 +1,1258 @@ +/* GENERATED FILE */ +export { AddressBook } from "./AddressBook"; +export { AirTrafficControl } from "./AirTrafficControl"; +export { Airplane } from "./Airplane"; +export { AirplaneInFlight } from "./AirplaneInFlight"; +export { AirplaneLanding } from "./AirplaneLanding"; +export { AirplaneTakeoff } from "./AirplaneTakeoff"; +export { AirplaneTilt } from "./AirplaneTilt"; +export { Airplay } from "./Airplay"; +export { Alarm } from "./Alarm"; +export { Alien } from "./Alien"; +export { AlignBottom } from "./AlignBottom"; +export { AlignBottomSimple } from "./AlignBottomSimple"; +export { AlignCenterHorizontal } from "./AlignCenterHorizontal"; +export { AlignCenterHorizontalSimple } from "./AlignCenterHorizontalSimple"; +export { AlignCenterVertical } from "./AlignCenterVertical"; +export { AlignCenterVerticalSimple } from "./AlignCenterVerticalSimple"; +export { AlignLeft } from "./AlignLeft"; +export { AlignLeftSimple } from "./AlignLeftSimple"; +export { AlignRight } from "./AlignRight"; +export { AlignRightSimple } from "./AlignRightSimple"; +export { AlignTop } from "./AlignTop"; +export { AlignTopSimple } from "./AlignTopSimple"; +export { AmazonLogo } from "./AmazonLogo"; +export { Anchor } from "./Anchor"; +export { AnchorSimple } from "./AnchorSimple"; +export { AndroidLogo } from "./AndroidLogo"; +export { AngularLogo } from "./AngularLogo"; +export { Aperture } from "./Aperture"; +export { AppStoreLogo } from "./AppStoreLogo"; +export { AppWindow } from "./AppWindow"; +export { AppleLogo } from "./AppleLogo"; +export { ApplePodcastsLogo } from "./ApplePodcastsLogo"; +export { Archive } from "./Archive"; +export { ArchiveBox } from "./ArchiveBox"; +export { ArchiveTray } from "./ArchiveTray"; +export { Armchair } from "./Armchair"; +export { ArrowArcLeft } from "./ArrowArcLeft"; +export { ArrowArcRight } from "./ArrowArcRight"; +export { ArrowBendDoubleUpLeft } from "./ArrowBendDoubleUpLeft"; +export { ArrowBendDoubleUpRight } from "./ArrowBendDoubleUpRight"; +export { ArrowBendDownLeft } from "./ArrowBendDownLeft"; +export { ArrowBendDownRight } from "./ArrowBendDownRight"; +export { ArrowBendLeftDown } from "./ArrowBendLeftDown"; +export { ArrowBendLeftUp } from "./ArrowBendLeftUp"; +export { ArrowBendRightDown } from "./ArrowBendRightDown"; +export { ArrowBendRightUp } from "./ArrowBendRightUp"; +export { ArrowBendUpLeft } from "./ArrowBendUpLeft"; +export { ArrowBendUpRight } from "./ArrowBendUpRight"; +export { ArrowCircleDown } from "./ArrowCircleDown"; +export { ArrowCircleDownLeft } from "./ArrowCircleDownLeft"; +export { ArrowCircleDownRight } from "./ArrowCircleDownRight"; +export { ArrowCircleLeft } from "./ArrowCircleLeft"; +export { ArrowCircleRight } from "./ArrowCircleRight"; +export { ArrowCircleUp } from "./ArrowCircleUp"; +export { ArrowCircleUpLeft } from "./ArrowCircleUpLeft"; +export { ArrowCircleUpRight } from "./ArrowCircleUpRight"; +export { ArrowClockwise } from "./ArrowClockwise"; +export { ArrowCounterClockwise } from "./ArrowCounterClockwise"; +export { ArrowDown } from "./ArrowDown"; +export { ArrowDownLeft } from "./ArrowDownLeft"; +export { ArrowDownRight } from "./ArrowDownRight"; +export { ArrowElbowDownLeft } from "./ArrowElbowDownLeft"; +export { ArrowElbowDownRight } from "./ArrowElbowDownRight"; +export { ArrowElbowLeft } from "./ArrowElbowLeft"; +export { ArrowElbowLeftDown } from "./ArrowElbowLeftDown"; +export { ArrowElbowLeftUp } from "./ArrowElbowLeftUp"; +export { ArrowElbowRight } from "./ArrowElbowRight"; +export { ArrowElbowRightDown } from "./ArrowElbowRightDown"; +export { ArrowElbowRightUp } from "./ArrowElbowRightUp"; +export { ArrowElbowUpLeft } from "./ArrowElbowUpLeft"; +export { ArrowElbowUpRight } from "./ArrowElbowUpRight"; +export { ArrowFatDown } from "./ArrowFatDown"; +export { ArrowFatLeft } from "./ArrowFatLeft"; +export { ArrowFatLineDown } from "./ArrowFatLineDown"; +export { ArrowFatLineLeft } from "./ArrowFatLineLeft"; +export { ArrowFatLineRight } from "./ArrowFatLineRight"; +export { ArrowFatLineUp } from "./ArrowFatLineUp"; +export { ArrowFatLinesDown } from "./ArrowFatLinesDown"; +export { ArrowFatLinesLeft } from "./ArrowFatLinesLeft"; +export { ArrowFatLinesRight } from "./ArrowFatLinesRight"; +export { ArrowFatLinesUp } from "./ArrowFatLinesUp"; +export { ArrowFatRight } from "./ArrowFatRight"; +export { ArrowFatUp } from "./ArrowFatUp"; +export { ArrowLeft } from "./ArrowLeft"; +export { ArrowLineDown } from "./ArrowLineDown"; +export { ArrowLineDownLeft } from "./ArrowLineDownLeft"; +export { ArrowLineDownRight } from "./ArrowLineDownRight"; +export { ArrowLineLeft } from "./ArrowLineLeft"; +export { ArrowLineRight } from "./ArrowLineRight"; +export { ArrowLineUp } from "./ArrowLineUp"; +export { ArrowLineUpLeft } from "./ArrowLineUpLeft"; +export { ArrowLineUpRight } from "./ArrowLineUpRight"; +export { ArrowRight } from "./ArrowRight"; +export { ArrowSquareDown } from "./ArrowSquareDown"; +export { ArrowSquareDownLeft } from "./ArrowSquareDownLeft"; +export { ArrowSquareDownRight } from "./ArrowSquareDownRight"; +export { ArrowSquareIn } from "./ArrowSquareIn"; +export { ArrowSquareLeft } from "./ArrowSquareLeft"; +export { ArrowSquareOut } from "./ArrowSquareOut"; +export { ArrowSquareRight } from "./ArrowSquareRight"; +export { ArrowSquareUp } from "./ArrowSquareUp"; +export { ArrowSquareUpLeft } from "./ArrowSquareUpLeft"; +export { ArrowSquareUpRight } from "./ArrowSquareUpRight"; +export { ArrowUDownLeft } from "./ArrowUDownLeft"; +export { ArrowUDownRight } from "./ArrowUDownRight"; +export { ArrowULeftDown } from "./ArrowULeftDown"; +export { ArrowULeftUp } from "./ArrowULeftUp"; +export { ArrowURightDown } from "./ArrowURightDown"; +export { ArrowURightUp } from "./ArrowURightUp"; +export { ArrowUUpLeft } from "./ArrowUUpLeft"; +export { ArrowUUpRight } from "./ArrowUUpRight"; +export { ArrowUp } from "./ArrowUp"; +export { ArrowUpLeft } from "./ArrowUpLeft"; +export { ArrowUpRight } from "./ArrowUpRight"; +export { ArrowsClockwise } from "./ArrowsClockwise"; +export { ArrowsCounterClockwise } from "./ArrowsCounterClockwise"; +export { ArrowsDownUp } from "./ArrowsDownUp"; +export { ArrowsHorizontal } from "./ArrowsHorizontal"; +export { ArrowsIn } from "./ArrowsIn"; +export { ArrowsInCardinal } from "./ArrowsInCardinal"; +export { ArrowsInLineHorizontal } from "./ArrowsInLineHorizontal"; +export { ArrowsInLineVertical } from "./ArrowsInLineVertical"; +export { ArrowsInSimple } from "./ArrowsInSimple"; +export { ArrowsLeftRight } from "./ArrowsLeftRight"; +export { ArrowsMerge } from "./ArrowsMerge"; +export { ArrowsOut } from "./ArrowsOut"; +export { ArrowsOutCardinal } from "./ArrowsOutCardinal"; +export { ArrowsOutLineHorizontal } from "./ArrowsOutLineHorizontal"; +export { ArrowsOutLineVertical } from "./ArrowsOutLineVertical"; +export { ArrowsOutSimple } from "./ArrowsOutSimple"; +export { ArrowsSplit } from "./ArrowsSplit"; +export { ArrowsVertical } from "./ArrowsVertical"; +export { Article } from "./Article"; +export { ArticleMedium } from "./ArticleMedium"; +export { ArticleNyTimes } from "./ArticleNyTimes"; +export { Asterisk } from "./Asterisk"; +export { AsteriskSimple } from "./AsteriskSimple"; +export { At } from "./At"; +export { Atom } from "./Atom"; +export { Baby } from "./Baby"; +export { Backpack } from "./Backpack"; +export { Backspace } from "./Backspace"; +export { Bag } from "./Bag"; +export { BagSimple } from "./BagSimple"; +export { Balloon } from "./Balloon"; +export { Bandaids } from "./Bandaids"; +export { Bank } from "./Bank"; +export { Barbell } from "./Barbell"; +export { Barcode } from "./Barcode"; +export { Barricade } from "./Barricade"; +export { Baseball } from "./Baseball"; +export { BaseballCap } from "./BaseballCap"; +export { Basket } from "./Basket"; +export { Basketball } from "./Basketball"; +export { Bathtub } from "./Bathtub"; +export { BatteryCharging } from "./BatteryCharging"; +export { BatteryChargingVertical } from "./BatteryChargingVertical"; +export { BatteryEmpty } from "./BatteryEmpty"; +export { BatteryFull } from "./BatteryFull"; +export { BatteryHigh } from "./BatteryHigh"; +export { BatteryLow } from "./BatteryLow"; +export { BatteryMedium } from "./BatteryMedium"; +export { BatteryPlus } from "./BatteryPlus"; +export { BatteryPlusVertical } from "./BatteryPlusVertical"; +export { BatteryVerticalEmpty } from "./BatteryVerticalEmpty"; +export { BatteryVerticalFull } from "./BatteryVerticalFull"; +export { BatteryVerticalHigh } from "./BatteryVerticalHigh"; +export { BatteryVerticalLow } from "./BatteryVerticalLow"; +export { BatteryVerticalMedium } from "./BatteryVerticalMedium"; +export { BatteryWarning } from "./BatteryWarning"; +export { BatteryWarningVertical } from "./BatteryWarningVertical"; +export { Bed } from "./Bed"; +export { BeerBottle } from "./BeerBottle"; +export { BeerStein } from "./BeerStein"; +export { BehanceLogo } from "./BehanceLogo"; +export { Bell } from "./Bell"; +export { BellRinging } from "./BellRinging"; +export { BellSimple } from "./BellSimple"; +export { BellSimpleRinging } from "./BellSimpleRinging"; +export { BellSimpleSlash } from "./BellSimpleSlash"; +export { BellSimpleZ } from "./BellSimpleZ"; +export { BellSlash } from "./BellSlash"; +export { BellZ } from "./BellZ"; +export { BezierCurve } from "./BezierCurve"; +export { Bicycle } from "./Bicycle"; +export { Binoculars } from "./Binoculars"; +export { Bird } from "./Bird"; +export { Bluetooth } from "./Bluetooth"; +export { BluetoothConnected } from "./BluetoothConnected"; +export { BluetoothSlash } from "./BluetoothSlash"; +export { BluetoothX } from "./BluetoothX"; +export { Boat } from "./Boat"; +export { Bone } from "./Bone"; +export { Book } from "./Book"; +export { BookBookmark } from "./BookBookmark"; +export { BookOpen } from "./BookOpen"; +export { BookOpenText } from "./BookOpenText"; +export { Bookmark } from "./Bookmark"; +export { BookmarkSimple } from "./BookmarkSimple"; +export { Bookmarks } from "./Bookmarks"; +export { BookmarksSimple } from "./BookmarksSimple"; +export { Books } from "./Books"; +export { Boot } from "./Boot"; +export { BoundingBox } from "./BoundingBox"; +export { BowlFood } from "./BowlFood"; +export { BracketsAngle } from "./BracketsAngle"; +export { BracketsCurly } from "./BracketsCurly"; +export { BracketsRound } from "./BracketsRound"; +export { BracketsSquare } from "./BracketsSquare"; +export { Brain } from "./Brain"; +export { Brandy } from "./Brandy"; +export { Bridge } from "./Bridge"; +export { Briefcase } from "./Briefcase"; +export { BriefcaseMetal } from "./BriefcaseMetal"; +export { Broadcast } from "./Broadcast"; +export { Broom } from "./Broom"; +export { Browser } from "./Browser"; +export { Browsers } from "./Browsers"; +export { BugBeetle } from "./BugBeetle"; +export { Bug } from "./Bug"; +export { BugDroid } from "./BugDroid"; +export { Buildings } from "./Buildings"; +export { Bus } from "./Bus"; +export { Butterfly } from "./Butterfly"; +export { Cactus } from "./Cactus"; +export { Cake } from "./Cake"; +export { Calculator } from "./Calculator"; +export { CalendarBlank } from "./CalendarBlank"; +export { Calendar } from "./Calendar"; +export { CalendarCheck } from "./CalendarCheck"; +export { CalendarPlus } from "./CalendarPlus"; +export { CalendarX } from "./CalendarX"; +export { CallBell } from "./CallBell"; +export { Camera } from "./Camera"; +export { CameraPlus } from "./CameraPlus"; +export { CameraRotate } from "./CameraRotate"; +export { CameraSlash } from "./CameraSlash"; +export { Campfire } from "./Campfire"; +export { Car } from "./Car"; +export { CarProfile } from "./CarProfile"; +export { CarSimple } from "./CarSimple"; +export { Cardholder } from "./Cardholder"; +export { Cards } from "./Cards"; +export { CaretCircleDoubleDown } from "./CaretCircleDoubleDown"; +export { CaretCircleDoubleLeft } from "./CaretCircleDoubleLeft"; +export { CaretCircleDoubleRight } from "./CaretCircleDoubleRight"; +export { CaretCircleDoubleUp } from "./CaretCircleDoubleUp"; +export { CaretCircleDown } from "./CaretCircleDown"; +export { CaretCircleLeft } from "./CaretCircleLeft"; +export { CaretCircleRight } from "./CaretCircleRight"; +export { CaretCircleUp } from "./CaretCircleUp"; +export { CaretCircleUpDown } from "./CaretCircleUpDown"; +export { CaretDoubleDown } from "./CaretDoubleDown"; +export { CaretDoubleLeft } from "./CaretDoubleLeft"; +export { CaretDoubleRight } from "./CaretDoubleRight"; +export { CaretDoubleUp } from "./CaretDoubleUp"; +export { CaretDown } from "./CaretDown"; +export { CaretLeft } from "./CaretLeft"; +export { CaretRight } from "./CaretRight"; +export { CaretUp } from "./CaretUp"; +export { CaretUpDown } from "./CaretUpDown"; +export { Carrot } from "./Carrot"; +export { CassetteTape } from "./CassetteTape"; +export { CastleTurret } from "./CastleTurret"; +export { Cat } from "./Cat"; +export { CellSignalFull } from "./CellSignalFull"; +export { CellSignalHigh } from "./CellSignalHigh"; +export { CellSignalLow } from "./CellSignalLow"; +export { CellSignalMedium } from "./CellSignalMedium"; +export { CellSignalNone } from "./CellSignalNone"; +export { CellSignalSlash } from "./CellSignalSlash"; +export { CellSignalX } from "./CellSignalX"; +export { Certificate } from "./Certificate"; +export { Chair } from "./Chair"; +export { Chalkboard } from "./Chalkboard"; +export { ChalkboardSimple } from "./ChalkboardSimple"; +export { ChalkboardTeacher } from "./ChalkboardTeacher"; +export { Champagne } from "./Champagne"; +export { ChargingStation } from "./ChargingStation"; +export { ChartBar } from "./ChartBar"; +export { ChartBarHorizontal } from "./ChartBarHorizontal"; +export { ChartDonut } from "./ChartDonut"; +export { ChartLine } from "./ChartLine"; +export { ChartLineDown } from "./ChartLineDown"; +export { ChartLineUp } from "./ChartLineUp"; +export { ChartPie } from "./ChartPie"; +export { ChartPieSlice } from "./ChartPieSlice"; +export { ChartPolar } from "./ChartPolar"; +export { ChartScatter } from "./ChartScatter"; +export { Chat } from "./Chat"; +export { ChatCentered } from "./ChatCentered"; +export { ChatCenteredDots } from "./ChatCenteredDots"; +export { ChatCenteredText } from "./ChatCenteredText"; +export { ChatCircle } from "./ChatCircle"; +export { ChatCircleDots } from "./ChatCircleDots"; +export { ChatCircleText } from "./ChatCircleText"; +export { ChatDots } from "./ChatDots"; +export { ChatTeardrop } from "./ChatTeardrop"; +export { ChatTeardropDots } from "./ChatTeardropDots"; +export { ChatTeardropText } from "./ChatTeardropText"; +export { ChatText } from "./ChatText"; +export { Chats } from "./Chats"; +export { ChatsCircle } from "./ChatsCircle"; +export { ChatsTeardrop } from "./ChatsTeardrop"; +export { Check } from "./Check"; +export { CheckCircle } from "./CheckCircle"; +export { CheckFat } from "./CheckFat"; +export { CheckSquare } from "./CheckSquare"; +export { CheckSquareOffset } from "./CheckSquareOffset"; +export { Checks } from "./Checks"; +export { Church } from "./Church"; +export { Circle } from "./Circle"; +export { CircleDashed } from "./CircleDashed"; +export { CircleHalf } from "./CircleHalf"; +export { CircleHalfTilt } from "./CircleHalfTilt"; +export { CircleNotch } from "./CircleNotch"; +export { CirclesFour } from "./CirclesFour"; +export { CirclesThree } from "./CirclesThree"; +export { CirclesThreePlus } from "./CirclesThreePlus"; +export { Circuitry } from "./Circuitry"; +export { Clipboard } from "./Clipboard"; +export { ClipboardText } from "./ClipboardText"; +export { ClockAfternoon } from "./ClockAfternoon"; +export { Clock } from "./Clock"; +export { ClockClockwise } from "./ClockClockwise"; +export { ClockCountdown } from "./ClockCountdown"; +export { ClockCounterClockwise } from "./ClockCounterClockwise"; +export { ClosedCaptioning } from "./ClosedCaptioning"; +export { CloudArrowDown } from "./CloudArrowDown"; +export { CloudArrowUp } from "./CloudArrowUp"; +export { Cloud } from "./Cloud"; +export { CloudCheck } from "./CloudCheck"; +export { CloudFog } from "./CloudFog"; +export { CloudLightning } from "./CloudLightning"; +export { CloudMoon } from "./CloudMoon"; +export { CloudRain } from "./CloudRain"; +export { CloudSlash } from "./CloudSlash"; +export { CloudSnow } from "./CloudSnow"; +export { CloudSun } from "./CloudSun"; +export { CloudWarning } from "./CloudWarning"; +export { CloudX } from "./CloudX"; +export { Club } from "./Club"; +export { CoatHanger } from "./CoatHanger"; +export { CodaLogo } from "./CodaLogo"; +export { CodeBlock } from "./CodeBlock"; +export { Code } from "./Code"; +export { CodeSimple } from "./CodeSimple"; +export { CodepenLogo } from "./CodepenLogo"; +export { CodesandboxLogo } from "./CodesandboxLogo"; +export { Coffee } from "./Coffee"; +export { Coin } from "./Coin"; +export { CoinVertical } from "./CoinVertical"; +export { Coins } from "./Coins"; +export { Columns } from "./Columns"; +export { Command } from "./Command"; +export { Compass } from "./Compass"; +export { CompassTool } from "./CompassTool"; +export { ComputerTower } from "./ComputerTower"; +export { Confetti } from "./Confetti"; +export { ContactlessPayment } from "./ContactlessPayment"; +export { Control } from "./Control"; +export { Cookie } from "./Cookie"; +export { CookingPot } from "./CookingPot"; +export { Copy } from "./Copy"; +export { CopySimple } from "./CopySimple"; +export { Copyleft } from "./Copyleft"; +export { Copyright } from "./Copyright"; +export { CornersIn } from "./CornersIn"; +export { CornersOut } from "./CornersOut"; +export { Couch } from "./Couch"; +export { Cpu } from "./Cpu"; +export { CreditCard } from "./CreditCard"; +export { Crop } from "./Crop"; +export { Cross } from "./Cross"; +export { Crosshair } from "./Crosshair"; +export { CrosshairSimple } from "./CrosshairSimple"; +export { Crown } from "./Crown"; +export { CrownSimple } from "./CrownSimple"; +export { Cube } from "./Cube"; +export { CubeFocus } from "./CubeFocus"; +export { CubeTransparent } from "./CubeTransparent"; +export { CurrencyBtc } from "./CurrencyBtc"; +export { CurrencyCircleDollar } from "./CurrencyCircleDollar"; +export { CurrencyCny } from "./CurrencyCny"; +export { CurrencyDollar } from "./CurrencyDollar"; +export { CurrencyDollarSimple } from "./CurrencyDollarSimple"; +export { CurrencyEth } from "./CurrencyEth"; +export { CurrencyEur } from "./CurrencyEur"; +export { CurrencyGbp } from "./CurrencyGbp"; +export { CurrencyInr } from "./CurrencyInr"; +export { CurrencyJpy } from "./CurrencyJpy"; +export { CurrencyKrw } from "./CurrencyKrw"; +export { CurrencyKzt } from "./CurrencyKzt"; +export { CurrencyNgn } from "./CurrencyNgn"; +export { CurrencyRub } from "./CurrencyRub"; +export { Cursor } from "./Cursor"; +export { CursorClick } from "./CursorClick"; +export { CursorText } from "./CursorText"; +export { Cylinder } from "./Cylinder"; +export { Database } from "./Database"; +export { Desktop } from "./Desktop"; +export { DesktopTower } from "./DesktopTower"; +export { Detective } from "./Detective"; +export { DevToLogo } from "./DevToLogo"; +export { DeviceMobile } from "./DeviceMobile"; +export { DeviceMobileCamera } from "./DeviceMobileCamera"; +export { DeviceMobileSpeaker } from "./DeviceMobileSpeaker"; +export { DeviceTablet } from "./DeviceTablet"; +export { DeviceTabletCamera } from "./DeviceTabletCamera"; +export { DeviceTabletSpeaker } from "./DeviceTabletSpeaker"; +export { Devices } from "./Devices"; +export { Diamond } from "./Diamond"; +export { DiamondsFour } from "./DiamondsFour"; +export { DiceFive } from "./DiceFive"; +export { DiceFour } from "./DiceFour"; +export { DiceOne } from "./DiceOne"; +export { DiceSix } from "./DiceSix"; +export { DiceThree } from "./DiceThree"; +export { DiceTwo } from "./DiceTwo"; +export { Disc } from "./Disc"; +export { DiscordLogo } from "./DiscordLogo"; +export { Divide } from "./Divide"; +export { Dna } from "./Dna"; +export { Dog } from "./Dog"; +export { Door } from "./Door"; +export { DoorOpen } from "./DoorOpen"; +export { Dot } from "./Dot"; +export { DotOutline } from "./DotOutline"; +export { DotsNine } from "./DotsNine"; +export { DotsSix } from "./DotsSix"; +export { DotsSixVertical } from "./DotsSixVertical"; +export { DotsThree } from "./DotsThree"; +export { DotsThreeCircle } from "./DotsThreeCircle"; +export { DotsThreeCircleVertical } from "./DotsThreeCircleVertical"; +export { DotsThreeOutline } from "./DotsThreeOutline"; +export { DotsThreeOutlineVertical } from "./DotsThreeOutlineVertical"; +export { DotsThreeVertical } from "./DotsThreeVertical"; +export { Download } from "./Download"; +export { DownloadSimple } from "./DownloadSimple"; +export { Dress } from "./Dress"; +export { DribbbleLogo } from "./DribbbleLogo"; +export { Drop } from "./Drop"; +export { DropHalf } from "./DropHalf"; +export { DropHalfBottom } from "./DropHalfBottom"; +export { DropboxLogo } from "./DropboxLogo"; +export { Ear } from "./Ear"; +export { EarSlash } from "./EarSlash"; +export { Egg } from "./Egg"; +export { EggCrack } from "./EggCrack"; +export { Eject } from "./Eject"; +export { EjectSimple } from "./EjectSimple"; +export { Elevator } from "./Elevator"; +export { Engine } from "./Engine"; +export { Envelope } from "./Envelope"; +export { EnvelopeOpen } from "./EnvelopeOpen"; +export { EnvelopeSimple } from "./EnvelopeSimple"; +export { EnvelopeSimpleOpen } from "./EnvelopeSimpleOpen"; +export { Equalizer } from "./Equalizer"; +export { Equals } from "./Equals"; +export { Eraser } from "./Eraser"; +export { EscalatorDown } from "./EscalatorDown"; +export { EscalatorUp } from "./EscalatorUp"; +export { Exam } from "./Exam"; +export { Exclude } from "./Exclude"; +export { ExcludeSquare } from "./ExcludeSquare"; +export { Export } from "./Export"; +export { Eye } from "./Eye"; +export { EyeClosed } from "./EyeClosed"; +export { EyeSlash } from "./EyeSlash"; +export { Eyedropper } from "./Eyedropper"; +export { EyedropperSample } from "./EyedropperSample"; +export { Eyeglasses } from "./Eyeglasses"; +export { FaceMask } from "./FaceMask"; +export { FacebookLogo } from "./FacebookLogo"; +export { Factory } from "./Factory"; +export { Faders } from "./Faders"; +export { FadersHorizontal } from "./FadersHorizontal"; +export { Fan } from "./Fan"; +export { FastForward } from "./FastForward"; +export { FastForwardCircle } from "./FastForwardCircle"; +export { Feather } from "./Feather"; +export { FigmaLogo } from "./FigmaLogo"; +export { FileArchive } from "./FileArchive"; +export { FileArrowDown } from "./FileArrowDown"; +export { FileArrowUp } from "./FileArrowUp"; +export { FileAudio } from "./FileAudio"; +export { File } from "./File"; +export { FileCloud } from "./FileCloud"; +export { FileCode } from "./FileCode"; +export { FileCss } from "./FileCss"; +export { FileCsv } from "./FileCsv"; +export { FileDashed, FileDashed as FileDotted } from "./FileDashed"; +export { FileDoc } from "./FileDoc"; +export { FileHtml } from "./FileHtml"; +export { FileImage } from "./FileImage"; +export { FileJpg } from "./FileJpg"; +export { FileJs } from "./FileJs"; +export { FileJsx } from "./FileJsx"; +export { FileLock } from "./FileLock"; +export { + FileMagnifyingGlass, + FileMagnifyingGlass as FileSearch, +} from "./FileMagnifyingGlass"; +export { FileMinus } from "./FileMinus"; +export { FilePdf } from "./FilePdf"; +export { FilePlus } from "./FilePlus"; +export { FilePng } from "./FilePng"; +export { FilePpt } from "./FilePpt"; +export { FileRs } from "./FileRs"; +export { FileSql } from "./FileSql"; +export { FileSvg } from "./FileSvg"; +export { FileText } from "./FileText"; +export { FileTs } from "./FileTs"; +export { FileTsx } from "./FileTsx"; +export { FileVideo } from "./FileVideo"; +export { FileVue } from "./FileVue"; +export { FileX } from "./FileX"; +export { FileXls } from "./FileXls"; +export { FileZip } from "./FileZip"; +export { Files } from "./Files"; +export { FilmReel } from "./FilmReel"; +export { FilmScript } from "./FilmScript"; +export { FilmSlate } from "./FilmSlate"; +export { FilmStrip } from "./FilmStrip"; +export { Fingerprint } from "./Fingerprint"; +export { FingerprintSimple } from "./FingerprintSimple"; +export { FinnTheHuman } from "./FinnTheHuman"; +export { Fire } from "./Fire"; +export { FireExtinguisher } from "./FireExtinguisher"; +export { FireSimple } from "./FireSimple"; +export { FirstAid } from "./FirstAid"; +export { FirstAidKit } from "./FirstAidKit"; +export { Fish } from "./Fish"; +export { FishSimple } from "./FishSimple"; +export { FlagBanner } from "./FlagBanner"; +export { Flag } from "./Flag"; +export { FlagCheckered } from "./FlagCheckered"; +export { FlagPennant } from "./FlagPennant"; +export { Flame } from "./Flame"; +export { Flashlight } from "./Flashlight"; +export { Flask } from "./Flask"; +export { FloppyDiskBack } from "./FloppyDiskBack"; +export { FloppyDisk } from "./FloppyDisk"; +export { FlowArrow } from "./FlowArrow"; +export { Flower } from "./Flower"; +export { FlowerLotus } from "./FlowerLotus"; +export { FlowerTulip } from "./FlowerTulip"; +export { FlyingSaucer } from "./FlyingSaucer"; +export { Folder } from "./Folder"; +export { FolderDashed, FolderDashed as FolderDotted } from "./FolderDashed"; +export { FolderLock } from "./FolderLock"; +export { FolderMinus } from "./FolderMinus"; +export { FolderNotch } from "./FolderNotch"; +export { FolderNotchMinus } from "./FolderNotchMinus"; +export { FolderNotchOpen } from "./FolderNotchOpen"; +export { FolderNotchPlus } from "./FolderNotchPlus"; +export { FolderOpen } from "./FolderOpen"; +export { FolderPlus } from "./FolderPlus"; +export { FolderSimple } from "./FolderSimple"; +export { + FolderSimpleDashed, + FolderSimpleDashed as FolderSimpleDotted, +} from "./FolderSimpleDashed"; +export { FolderSimpleLock } from "./FolderSimpleLock"; +export { FolderSimpleMinus } from "./FolderSimpleMinus"; +export { FolderSimplePlus } from "./FolderSimplePlus"; +export { FolderSimpleStar } from "./FolderSimpleStar"; +export { FolderSimpleUser } from "./FolderSimpleUser"; +export { FolderStar } from "./FolderStar"; +export { FolderUser } from "./FolderUser"; +export { Folders } from "./Folders"; +export { Football } from "./Football"; +export { Footprints } from "./Footprints"; +export { ForkKnife } from "./ForkKnife"; +export { FrameCorners } from "./FrameCorners"; +export { FramerLogo } from "./FramerLogo"; +export { Function } from "./Function"; +export { Funnel } from "./Funnel"; +export { FunnelSimple } from "./FunnelSimple"; +export { GameController } from "./GameController"; +export { Garage } from "./Garage"; +export { GasCan } from "./GasCan"; +export { GasPump } from "./GasPump"; +export { Gauge } from "./Gauge"; +export { Gavel } from "./Gavel"; +export { Gear } from "./Gear"; +export { GearFine } from "./GearFine"; +export { GearSix } from "./GearSix"; +export { GenderFemale } from "./GenderFemale"; +export { GenderIntersex } from "./GenderIntersex"; +export { GenderMale } from "./GenderMale"; +export { GenderNeuter } from "./GenderNeuter"; +export { GenderNonbinary } from "./GenderNonbinary"; +export { GenderTransgender } from "./GenderTransgender"; +export { Ghost } from "./Ghost"; +export { Gif } from "./Gif"; +export { Gift } from "./Gift"; +export { GitBranch } from "./GitBranch"; +export { GitCommit } from "./GitCommit"; +export { GitDiff } from "./GitDiff"; +export { GitFork } from "./GitFork"; +export { GitMerge } from "./GitMerge"; +export { GitPullRequest } from "./GitPullRequest"; +export { GithubLogo } from "./GithubLogo"; +export { GitlabLogo } from "./GitlabLogo"; +export { GitlabLogoSimple } from "./GitlabLogoSimple"; +export { Globe } from "./Globe"; +export { GlobeHemisphereEast } from "./GlobeHemisphereEast"; +export { GlobeHemisphereWest } from "./GlobeHemisphereWest"; +export { GlobeSimple } from "./GlobeSimple"; +export { GlobeStand } from "./GlobeStand"; +export { Goggles } from "./Goggles"; +export { GoodreadsLogo } from "./GoodreadsLogo"; +export { GoogleCardboardLogo } from "./GoogleCardboardLogo"; +export { GoogleChromeLogo } from "./GoogleChromeLogo"; +export { GoogleDriveLogo } from "./GoogleDriveLogo"; +export { GoogleLogo } from "./GoogleLogo"; +export { GooglePhotosLogo } from "./GooglePhotosLogo"; +export { GooglePlayLogo } from "./GooglePlayLogo"; +export { GooglePodcastsLogo } from "./GooglePodcastsLogo"; +export { Gradient } from "./Gradient"; +export { GraduationCap } from "./GraduationCap"; +export { Grains } from "./Grains"; +export { GrainsSlash } from "./GrainsSlash"; +export { Graph } from "./Graph"; +export { GridFour } from "./GridFour"; +export { GridNine } from "./GridNine"; +export { Guitar } from "./Guitar"; +export { Hamburger } from "./Hamburger"; +export { Hammer } from "./Hammer"; +export { Hand } from "./Hand"; +export { HandCoins } from "./HandCoins"; +export { HandEye } from "./HandEye"; +export { HandFist } from "./HandFist"; +export { HandGrabbing } from "./HandGrabbing"; +export { HandHeart } from "./HandHeart"; +export { HandPalm } from "./HandPalm"; +export { HandPointing } from "./HandPointing"; +export { HandSoap } from "./HandSoap"; +export { HandSwipeLeft } from "./HandSwipeLeft"; +export { HandSwipeRight } from "./HandSwipeRight"; +export { HandTap } from "./HandTap"; +export { HandWaving } from "./HandWaving"; +export { Handbag } from "./Handbag"; +export { HandbagSimple } from "./HandbagSimple"; +export { HandsClapping } from "./HandsClapping"; +export { HandsPraying } from "./HandsPraying"; +export { Handshake } from "./Handshake"; +export { HardDrive } from "./HardDrive"; +export { HardDrives } from "./HardDrives"; +export { Hash } from "./Hash"; +export { HashStraight } from "./HashStraight"; +export { Headlights } from "./Headlights"; +export { Headphones } from "./Headphones"; +export { Headset } from "./Headset"; +export { Heart } from "./Heart"; +export { HeartBreak } from "./HeartBreak"; +export { HeartHalf } from "./HeartHalf"; +export { HeartStraight } from "./HeartStraight"; +export { HeartStraightBreak } from "./HeartStraightBreak"; +export { Heartbeat } from "./Heartbeat"; +export { Hexagon } from "./Hexagon"; +export { HighHeel } from "./HighHeel"; +export { HighlighterCircle } from "./HighlighterCircle"; +export { Hoodie } from "./Hoodie"; +export { Horse } from "./Horse"; +export { Hourglass } from "./Hourglass"; +export { HourglassHigh } from "./HourglassHigh"; +export { HourglassLow } from "./HourglassLow"; +export { HourglassMedium } from "./HourglassMedium"; +export { HourglassSimple } from "./HourglassSimple"; +export { HourglassSimpleHigh } from "./HourglassSimpleHigh"; +export { HourglassSimpleLow } from "./HourglassSimpleLow"; +export { HourglassSimpleMedium } from "./HourglassSimpleMedium"; +export { House } from "./House"; +export { HouseLine } from "./HouseLine"; +export { HouseSimple } from "./HouseSimple"; +export { IceCream } from "./IceCream"; +export { IdentificationBadge } from "./IdentificationBadge"; +export { IdentificationCard } from "./IdentificationCard"; +export { Image } from "./Image"; +export { ImageSquare } from "./ImageSquare"; +export { Images } from "./Images"; +export { ImagesSquare } from "./ImagesSquare"; +export { Infinity } from "./Infinity"; +export { Info } from "./Info"; +export { InstagramLogo } from "./InstagramLogo"; +export { Intersect } from "./Intersect"; +export { IntersectSquare } from "./IntersectSquare"; +export { IntersectThree } from "./IntersectThree"; +export { Jeep } from "./Jeep"; +export { Kanban } from "./Kanban"; +export { Key } from "./Key"; +export { KeyReturn } from "./KeyReturn"; +export { Keyboard } from "./Keyboard"; +export { Keyhole } from "./Keyhole"; +export { Knife } from "./Knife"; +export { Ladder } from "./Ladder"; +export { LadderSimple } from "./LadderSimple"; +export { Lamp } from "./Lamp"; +export { Laptop } from "./Laptop"; +export { Layout } from "./Layout"; +export { Leaf } from "./Leaf"; +export { Lifebuoy } from "./Lifebuoy"; +export { Lightbulb } from "./Lightbulb"; +export { LightbulbFilament } from "./LightbulbFilament"; +export { Lighthouse } from "./Lighthouse"; +export { LightningA } from "./LightningA"; +export { Lightning } from "./Lightning"; +export { LightningSlash } from "./LightningSlash"; +export { LineSegment } from "./LineSegment"; +export { LineSegments } from "./LineSegments"; +export { Link } from "./Link"; +export { LinkBreak } from "./LinkBreak"; +export { LinkSimple } from "./LinkSimple"; +export { LinkSimpleBreak } from "./LinkSimpleBreak"; +export { LinkSimpleHorizontal } from "./LinkSimpleHorizontal"; +export { LinkSimpleHorizontalBreak } from "./LinkSimpleHorizontalBreak"; +export { LinkedinLogo } from "./LinkedinLogo"; +export { LinuxLogo } from "./LinuxLogo"; +export { List } from "./List"; +export { ListBullets } from "./ListBullets"; +export { ListChecks } from "./ListChecks"; +export { ListDashes } from "./ListDashes"; +export { ListMagnifyingGlass } from "./ListMagnifyingGlass"; +export { ListNumbers } from "./ListNumbers"; +export { ListPlus } from "./ListPlus"; +export { Lock } from "./Lock"; +export { LockKey } from "./LockKey"; +export { LockKeyOpen } from "./LockKeyOpen"; +export { LockLaminated } from "./LockLaminated"; +export { LockLaminatedOpen } from "./LockLaminatedOpen"; +export { LockOpen } from "./LockOpen"; +export { LockSimple } from "./LockSimple"; +export { LockSimpleOpen } from "./LockSimpleOpen"; +export { Lockers } from "./Lockers"; +export { MagicWand } from "./MagicWand"; +export { Magnet } from "./Magnet"; +export { MagnetStraight } from "./MagnetStraight"; +export { MagnifyingGlass } from "./MagnifyingGlass"; +export { MagnifyingGlassMinus } from "./MagnifyingGlassMinus"; +export { MagnifyingGlassPlus } from "./MagnifyingGlassPlus"; +export { MapPin } from "./MapPin"; +export { MapPinLine } from "./MapPinLine"; +export { MapTrifold } from "./MapTrifold"; +export { MarkerCircle } from "./MarkerCircle"; +export { Martini } from "./Martini"; +export { MaskHappy } from "./MaskHappy"; +export { MaskSad } from "./MaskSad"; +export { MathOperations } from "./MathOperations"; +export { Medal } from "./Medal"; +export { MedalMilitary } from "./MedalMilitary"; +export { MediumLogo } from "./MediumLogo"; +export { Megaphone } from "./Megaphone"; +export { MegaphoneSimple } from "./MegaphoneSimple"; +export { MessengerLogo } from "./MessengerLogo"; +export { MetaLogo } from "./MetaLogo"; +export { Metronome } from "./Metronome"; +export { Microphone } from "./Microphone"; +export { MicrophoneSlash } from "./MicrophoneSlash"; +export { MicrophoneStage } from "./MicrophoneStage"; +export { MicrosoftExcelLogo } from "./MicrosoftExcelLogo"; +export { MicrosoftOutlookLogo } from "./MicrosoftOutlookLogo"; +export { MicrosoftPowerpointLogo } from "./MicrosoftPowerpointLogo"; +export { MicrosoftTeamsLogo } from "./MicrosoftTeamsLogo"; +export { MicrosoftWordLogo } from "./MicrosoftWordLogo"; +export { Minus } from "./Minus"; +export { MinusCircle } from "./MinusCircle"; +export { MinusSquare } from "./MinusSquare"; +export { Money } from "./Money"; +export { Monitor } from "./Monitor"; +export { MonitorPlay } from "./MonitorPlay"; +export { Moon } from "./Moon"; +export { MoonStars } from "./MoonStars"; +export { Moped } from "./Moped"; +export { MopedFront } from "./MopedFront"; +export { Mosque } from "./Mosque"; +export { Motorcycle } from "./Motorcycle"; +export { Mountains } from "./Mountains"; +export { Mouse } from "./Mouse"; +export { MouseSimple } from "./MouseSimple"; +export { MusicNote } from "./MusicNote"; +export { MusicNoteSimple } from "./MusicNoteSimple"; +export { MusicNotes } from "./MusicNotes"; +export { MusicNotesPlus } from "./MusicNotesPlus"; +export { MusicNotesSimple } from "./MusicNotesSimple"; +export { NavigationArrow } from "./NavigationArrow"; +export { Needle } from "./Needle"; +export { Newspaper } from "./Newspaper"; +export { NewspaperClipping } from "./NewspaperClipping"; +export { Notches } from "./Notches"; +export { NoteBlank } from "./NoteBlank"; +export { Note } from "./Note"; +export { NotePencil } from "./NotePencil"; +export { Notebook } from "./Notebook"; +export { Notepad } from "./Notepad"; +export { Notification } from "./Notification"; +export { NotionLogo } from "./NotionLogo"; +export { NumberCircleEight } from "./NumberCircleEight"; +export { NumberCircleFive } from "./NumberCircleFive"; +export { NumberCircleFour } from "./NumberCircleFour"; +export { NumberCircleNine } from "./NumberCircleNine"; +export { NumberCircleOne } from "./NumberCircleOne"; +export { NumberCircleSeven } from "./NumberCircleSeven"; +export { NumberCircleSix } from "./NumberCircleSix"; +export { NumberCircleThree } from "./NumberCircleThree"; +export { NumberCircleTwo } from "./NumberCircleTwo"; +export { NumberCircleZero } from "./NumberCircleZero"; +export { NumberEight } from "./NumberEight"; +export { NumberFive } from "./NumberFive"; +export { NumberFour } from "./NumberFour"; +export { NumberNine } from "./NumberNine"; +export { NumberOne } from "./NumberOne"; +export { NumberSeven } from "./NumberSeven"; +export { NumberSix } from "./NumberSix"; +export { NumberSquareEight } from "./NumberSquareEight"; +export { NumberSquareFive } from "./NumberSquareFive"; +export { NumberSquareFour } from "./NumberSquareFour"; +export { NumberSquareNine } from "./NumberSquareNine"; +export { NumberSquareOne } from "./NumberSquareOne"; +export { NumberSquareSeven } from "./NumberSquareSeven"; +export { NumberSquareSix } from "./NumberSquareSix"; +export { NumberSquareThree } from "./NumberSquareThree"; +export { NumberSquareTwo } from "./NumberSquareTwo"; +export { NumberSquareZero } from "./NumberSquareZero"; +export { NumberThree } from "./NumberThree"; +export { NumberTwo } from "./NumberTwo"; +export { NumberZero } from "./NumberZero"; +export { Nut } from "./Nut"; +export { NyTimesLogo } from "./NyTimesLogo"; +export { Octagon } from "./Octagon"; +export { OfficeChair } from "./OfficeChair"; +export { Option } from "./Option"; +export { OrangeSlice } from "./OrangeSlice"; +export { Package } from "./Package"; +export { PaintBrush } from "./PaintBrush"; +export { PaintBrushBroad } from "./PaintBrushBroad"; +export { PaintBrushHousehold } from "./PaintBrushHousehold"; +export { PaintBucket } from "./PaintBucket"; +export { PaintRoller } from "./PaintRoller"; +export { Palette } from "./Palette"; +export { Pants } from "./Pants"; +export { PaperPlane } from "./PaperPlane"; +export { PaperPlaneRight } from "./PaperPlaneRight"; +export { PaperPlaneTilt } from "./PaperPlaneTilt"; +export { Paperclip } from "./Paperclip"; +export { PaperclipHorizontal } from "./PaperclipHorizontal"; +export { Parachute } from "./Parachute"; +export { Paragraph } from "./Paragraph"; +export { Parallelogram } from "./Parallelogram"; +export { Park } from "./Park"; +export { Password } from "./Password"; +export { Path } from "./Path"; +export { PatreonLogo } from "./PatreonLogo"; +export { Pause } from "./Pause"; +export { PauseCircle } from "./PauseCircle"; +export { PawPrint } from "./PawPrint"; +export { PaypalLogo } from "./PaypalLogo"; +export { Peace } from "./Peace"; +export { Pen } from "./Pen"; +export { PenNib } from "./PenNib"; +export { PenNibStraight } from "./PenNibStraight"; +export { Pencil } from "./Pencil"; +export { PencilCircle } from "./PencilCircle"; +export { PencilLine } from "./PencilLine"; +export { PencilSimple } from "./PencilSimple"; +export { PencilSimpleLine } from "./PencilSimpleLine"; +export { PencilSimpleSlash } from "./PencilSimpleSlash"; +export { PencilSlash } from "./PencilSlash"; +export { Pentagram } from "./Pentagram"; +export { Pepper } from "./Pepper"; +export { Percent } from "./Percent"; +export { PersonArmsSpread } from "./PersonArmsSpread"; +export { Person } from "./Person"; +export { PersonSimpleBike } from "./PersonSimpleBike"; +export { PersonSimple } from "./PersonSimple"; +export { PersonSimpleRun } from "./PersonSimpleRun"; +export { PersonSimpleThrow } from "./PersonSimpleThrow"; +export { PersonSimpleWalk } from "./PersonSimpleWalk"; +export { Perspective } from "./Perspective"; +export { Phone } from "./Phone"; +export { PhoneCall } from "./PhoneCall"; +export { PhoneDisconnect } from "./PhoneDisconnect"; +export { PhoneIncoming } from "./PhoneIncoming"; +export { PhoneOutgoing } from "./PhoneOutgoing"; +export { PhonePlus } from "./PhonePlus"; +export { PhoneSlash } from "./PhoneSlash"; +export { PhoneX } from "./PhoneX"; +export { PhosphorLogo } from "./PhosphorLogo"; +export { Pi } from "./Pi"; +export { PianoKeys } from "./PianoKeys"; +export { PictureInPicture } from "./PictureInPicture"; +export { PiggyBank } from "./PiggyBank"; +export { Pill } from "./Pill"; +export { PinterestLogo } from "./PinterestLogo"; +export { Pinwheel } from "./Pinwheel"; +export { Pizza } from "./Pizza"; +export { Placeholder } from "./Placeholder"; +export { Planet } from "./Planet"; +export { Plant } from "./Plant"; +export { Play } from "./Play"; +export { PlayCircle } from "./PlayCircle"; +export { PlayPause } from "./PlayPause"; +export { Playlist } from "./Playlist"; +export { Plug } from "./Plug"; +export { PlugCharging } from "./PlugCharging"; +export { Plugs } from "./Plugs"; +export { PlugsConnected } from "./PlugsConnected"; +export { Plus } from "./Plus"; +export { PlusCircle } from "./PlusCircle"; +export { PlusMinus } from "./PlusMinus"; +export { PlusSquare } from "./PlusSquare"; +export { PokerChip } from "./PokerChip"; +export { PoliceCar } from "./PoliceCar"; +export { Polygon } from "./Polygon"; +export { Popcorn } from "./Popcorn"; +export { PottedPlant } from "./PottedPlant"; +export { Power } from "./Power"; +export { Prescription } from "./Prescription"; +export { Presentation } from "./Presentation"; +export { PresentationChart } from "./PresentationChart"; +export { Printer } from "./Printer"; +export { Prohibit } from "./Prohibit"; +export { ProhibitInset } from "./ProhibitInset"; +export { ProjectorScreen } from "./ProjectorScreen"; +export { ProjectorScreenChart } from "./ProjectorScreenChart"; +export { Pulse, Pulse as Activity } from "./Pulse"; +export { PushPin } from "./PushPin"; +export { PushPinSimple } from "./PushPinSimple"; +export { PushPinSimpleSlash } from "./PushPinSimpleSlash"; +export { PushPinSlash } from "./PushPinSlash"; +export { PuzzlePiece } from "./PuzzlePiece"; +export { QrCode } from "./QrCode"; +export { Question } from "./Question"; +export { Queue } from "./Queue"; +export { Quotes } from "./Quotes"; +export { Radical } from "./Radical"; +export { Radio } from "./Radio"; +export { RadioButton } from "./RadioButton"; +export { Radioactive } from "./Radioactive"; +export { Rainbow } from "./Rainbow"; +export { RainbowCloud } from "./RainbowCloud"; +export { ReadCvLogo } from "./ReadCvLogo"; +export { Receipt } from "./Receipt"; +export { ReceiptX } from "./ReceiptX"; +export { Record } from "./Record"; +export { Rectangle } from "./Rectangle"; +export { Recycle } from "./Recycle"; +export { RedditLogo } from "./RedditLogo"; +export { Repeat } from "./Repeat"; +export { RepeatOnce } from "./RepeatOnce"; +export { Rewind } from "./Rewind"; +export { RewindCircle } from "./RewindCircle"; +export { RoadHorizon } from "./RoadHorizon"; +export { Robot } from "./Robot"; +export { Rocket } from "./Rocket"; +export { RocketLaunch } from "./RocketLaunch"; +export { Rows } from "./Rows"; +export { Rss } from "./Rss"; +export { RssSimple } from "./RssSimple"; +export { Rug } from "./Rug"; +export { Ruler } from "./Ruler"; +export { Scales } from "./Scales"; +export { Scan } from "./Scan"; +export { Scissors } from "./Scissors"; +export { Scooter } from "./Scooter"; +export { Screencast } from "./Screencast"; +export { ScribbleLoop } from "./ScribbleLoop"; +export { Scroll } from "./Scroll"; +export { Seal, Seal as CircleWavy } from "./Seal"; +export { SealCheck, SealCheck as CircleWavyCheck } from "./SealCheck"; +export { + SealQuestion, + SealQuestion as CircleWavyQuestion, +} from "./SealQuestion"; +export { SealWarning, SealWarning as CircleWavyWarning } from "./SealWarning"; +export { SelectionAll } from "./SelectionAll"; +export { SelectionBackground } from "./SelectionBackground"; +export { Selection } from "./Selection"; +export { SelectionForeground } from "./SelectionForeground"; +export { SelectionInverse } from "./SelectionInverse"; +export { SelectionPlus } from "./SelectionPlus"; +export { SelectionSlash } from "./SelectionSlash"; +export { Shapes } from "./Shapes"; +export { Share } from "./Share"; +export { ShareFat } from "./ShareFat"; +export { ShareNetwork } from "./ShareNetwork"; +export { Shield } from "./Shield"; +export { ShieldCheck } from "./ShieldCheck"; +export { ShieldCheckered } from "./ShieldCheckered"; +export { ShieldChevron } from "./ShieldChevron"; +export { ShieldPlus } from "./ShieldPlus"; +export { ShieldSlash } from "./ShieldSlash"; +export { ShieldStar } from "./ShieldStar"; +export { ShieldWarning } from "./ShieldWarning"; +export { ShirtFolded } from "./ShirtFolded"; +export { ShootingStar } from "./ShootingStar"; +export { ShoppingBag } from "./ShoppingBag"; +export { ShoppingBagOpen } from "./ShoppingBagOpen"; +export { ShoppingCart } from "./ShoppingCart"; +export { ShoppingCartSimple } from "./ShoppingCartSimple"; +export { Shower } from "./Shower"; +export { Shrimp } from "./Shrimp"; +export { ShuffleAngular } from "./ShuffleAngular"; +export { Shuffle } from "./Shuffle"; +export { ShuffleSimple } from "./ShuffleSimple"; +export { Sidebar } from "./Sidebar"; +export { SidebarSimple } from "./SidebarSimple"; +export { Sigma } from "./Sigma"; +export { SignIn } from "./SignIn"; +export { SignOut } from "./SignOut"; +export { Signature } from "./Signature"; +export { Signpost } from "./Signpost"; +export { SimCard } from "./SimCard"; +export { Siren } from "./Siren"; +export { SketchLogo } from "./SketchLogo"; +export { SkipBack } from "./SkipBack"; +export { SkipBackCircle } from "./SkipBackCircle"; +export { SkipForward } from "./SkipForward"; +export { SkipForwardCircle } from "./SkipForwardCircle"; +export { Skull } from "./Skull"; +export { SlackLogo } from "./SlackLogo"; +export { Sliders } from "./Sliders"; +export { SlidersHorizontal } from "./SlidersHorizontal"; +export { Slideshow } from "./Slideshow"; +export { SmileyAngry } from "./SmileyAngry"; +export { SmileyBlank } from "./SmileyBlank"; +export { Smiley } from "./Smiley"; +export { SmileyMeh } from "./SmileyMeh"; +export { SmileyNervous } from "./SmileyNervous"; +export { SmileySad } from "./SmileySad"; +export { SmileySticker } from "./SmileySticker"; +export { SmileyWink } from "./SmileyWink"; +export { SmileyXEyes } from "./SmileyXEyes"; +export { SnapchatLogo } from "./SnapchatLogo"; +export { Sneaker } from "./Sneaker"; +export { SneakerMove } from "./SneakerMove"; +export { Snowflake } from "./Snowflake"; +export { SoccerBall } from "./SoccerBall"; +export { SortAscending } from "./SortAscending"; +export { SortDescending } from "./SortDescending"; +export { SoundcloudLogo } from "./SoundcloudLogo"; +export { Spade } from "./Spade"; +export { Sparkle } from "./Sparkle"; +export { SpeakerHifi } from "./SpeakerHifi"; +export { SpeakerHigh } from "./SpeakerHigh"; +export { SpeakerLow } from "./SpeakerLow"; +export { SpeakerNone } from "./SpeakerNone"; +export { SpeakerSimpleHigh } from "./SpeakerSimpleHigh"; +export { SpeakerSimpleLow } from "./SpeakerSimpleLow"; +export { SpeakerSimpleNone } from "./SpeakerSimpleNone"; +export { SpeakerSimpleSlash } from "./SpeakerSimpleSlash"; +export { SpeakerSimpleX } from "./SpeakerSimpleX"; +export { SpeakerSlash } from "./SpeakerSlash"; +export { SpeakerX } from "./SpeakerX"; +export { Spinner } from "./Spinner"; +export { SpinnerGap } from "./SpinnerGap"; +export { Spiral } from "./Spiral"; +export { SplitHorizontal } from "./SplitHorizontal"; +export { SplitVertical } from "./SplitVertical"; +export { SpotifyLogo } from "./SpotifyLogo"; +export { Square } from "./Square"; +export { SquareHalf } from "./SquareHalf"; +export { SquareHalfBottom } from "./SquareHalfBottom"; +export { SquareLogo } from "./SquareLogo"; +export { SquareSplitHorizontal } from "./SquareSplitHorizontal"; +export { SquareSplitVertical } from "./SquareSplitVertical"; +export { SquaresFour } from "./SquaresFour"; +export { Stack } from "./Stack"; +export { StackOverflowLogo } from "./StackOverflowLogo"; +export { StackSimple } from "./StackSimple"; +export { Stairs } from "./Stairs"; +export { Stamp } from "./Stamp"; +export { StarAndCrescent } from "./StarAndCrescent"; +export { Star } from "./Star"; +export { StarFour } from "./StarFour"; +export { StarHalf } from "./StarHalf"; +export { StarOfDavid } from "./StarOfDavid"; +export { SteeringWheel } from "./SteeringWheel"; +export { Steps } from "./Steps"; +export { Stethoscope } from "./Stethoscope"; +export { Sticker } from "./Sticker"; +export { Stool } from "./Stool"; +export { Stop } from "./Stop"; +export { StopCircle } from "./StopCircle"; +export { Storefront } from "./Storefront"; +export { Strategy } from "./Strategy"; +export { StripeLogo } from "./StripeLogo"; +export { Student } from "./Student"; +export { Subtitles } from "./Subtitles"; +export { Subtract } from "./Subtract"; +export { SubtractSquare } from "./SubtractSquare"; +export { Suitcase } from "./Suitcase"; +export { SuitcaseRolling } from "./SuitcaseRolling"; +export { SuitcaseSimple } from "./SuitcaseSimple"; +export { Sun } from "./Sun"; +export { SunDim } from "./SunDim"; +export { SunHorizon } from "./SunHorizon"; +export { Sunglasses } from "./Sunglasses"; +export { Swap } from "./Swap"; +export { Swatches } from "./Swatches"; +export { SwimmingPool } from "./SwimmingPool"; +export { Sword } from "./Sword"; +export { Synagogue } from "./Synagogue"; +export { Syringe } from "./Syringe"; +export { TShirt } from "./TShirt"; +export { Table } from "./Table"; +export { Tabs } from "./Tabs"; +export { Tag } from "./Tag"; +export { TagChevron } from "./TagChevron"; +export { TagSimple } from "./TagSimple"; +export { Target } from "./Target"; +export { Taxi } from "./Taxi"; +export { TelegramLogo } from "./TelegramLogo"; +export { Television } from "./Television"; +export { TelevisionSimple } from "./TelevisionSimple"; +export { TennisBall } from "./TennisBall"; +export { Tent } from "./Tent"; +export { Terminal } from "./Terminal"; +export { TerminalWindow } from "./TerminalWindow"; +export { TestTube } from "./TestTube"; +export { TextAUnderline } from "./TextAUnderline"; +export { TextAa } from "./TextAa"; +export { TextAlignCenter } from "./TextAlignCenter"; +export { TextAlignJustify } from "./TextAlignJustify"; +export { TextAlignLeft } from "./TextAlignLeft"; +export { TextAlignRight } from "./TextAlignRight"; +export { TextB, TextB as TextBolder } from "./TextB"; +export { TextColumns } from "./TextColumns"; +export { TextH } from "./TextH"; +export { TextHFive } from "./TextHFive"; +export { TextHFour } from "./TextHFour"; +export { TextHOne } from "./TextHOne"; +export { TextHSix } from "./TextHSix"; +export { TextHThree } from "./TextHThree"; +export { TextHTwo } from "./TextHTwo"; +export { TextIndent } from "./TextIndent"; +export { TextItalic } from "./TextItalic"; +export { TextOutdent } from "./TextOutdent"; +export { TextStrikethrough } from "./TextStrikethrough"; +export { TextT } from "./TextT"; +export { TextUnderline } from "./TextUnderline"; +export { Textbox } from "./Textbox"; +export { Thermometer } from "./Thermometer"; +export { ThermometerCold } from "./ThermometerCold"; +export { ThermometerHot } from "./ThermometerHot"; +export { ThermometerSimple } from "./ThermometerSimple"; +export { ThumbsDown } from "./ThumbsDown"; +export { ThumbsUp } from "./ThumbsUp"; +export { Ticket } from "./Ticket"; +export { TidalLogo } from "./TidalLogo"; +export { TiktokLogo } from "./TiktokLogo"; +export { Timer } from "./Timer"; +export { Tipi } from "./Tipi"; +export { ToggleLeft } from "./ToggleLeft"; +export { ToggleRight } from "./ToggleRight"; +export { Toilet } from "./Toilet"; +export { ToiletPaper } from "./ToiletPaper"; +export { Toolbox } from "./Toolbox"; +export { Tooth } from "./Tooth"; +export { Tote } from "./Tote"; +export { ToteSimple } from "./ToteSimple"; +export { Trademark } from "./Trademark"; +export { TrademarkRegistered } from "./TrademarkRegistered"; +export { TrafficCone } from "./TrafficCone"; +export { TrafficSign } from "./TrafficSign"; +export { TrafficSignal } from "./TrafficSignal"; +export { Train } from "./Train"; +export { TrainRegional } from "./TrainRegional"; +export { TrainSimple } from "./TrainSimple"; +export { Tram } from "./Tram"; +export { Translate } from "./Translate"; +export { Trash } from "./Trash"; +export { TrashSimple } from "./TrashSimple"; +export { Tray } from "./Tray"; +export { Tree } from "./Tree"; +export { TreeEvergreen } from "./TreeEvergreen"; +export { TreePalm } from "./TreePalm"; +export { TreeStructure } from "./TreeStructure"; +export { TrendDown } from "./TrendDown"; +export { TrendUp } from "./TrendUp"; +export { Triangle } from "./Triangle"; +export { Trophy } from "./Trophy"; +export { Truck } from "./Truck"; +export { TwitchLogo } from "./TwitchLogo"; +export { TwitterLogo } from "./TwitterLogo"; +export { Umbrella } from "./Umbrella"; +export { UmbrellaSimple } from "./UmbrellaSimple"; +export { Unite } from "./Unite"; +export { UniteSquare } from "./UniteSquare"; +export { Upload } from "./Upload"; +export { UploadSimple } from "./UploadSimple"; +export { Usb } from "./Usb"; +export { User } from "./User"; +export { UserCircle } from "./UserCircle"; +export { UserCircleGear } from "./UserCircleGear"; +export { UserCircleMinus } from "./UserCircleMinus"; +export { UserCirclePlus } from "./UserCirclePlus"; +export { UserFocus } from "./UserFocus"; +export { UserGear } from "./UserGear"; +export { UserList } from "./UserList"; +export { UserMinus } from "./UserMinus"; +export { UserPlus } from "./UserPlus"; +export { UserRectangle } from "./UserRectangle"; +export { UserSquare } from "./UserSquare"; +export { UserSwitch } from "./UserSwitch"; +export { Users } from "./Users"; +export { UsersFour } from "./UsersFour"; +export { UsersThree } from "./UsersThree"; +export { Van } from "./Van"; +export { Vault } from "./Vault"; +export { Vibrate } from "./Vibrate"; +export { Video } from "./Video"; +export { VideoCamera } from "./VideoCamera"; +export { VideoCameraSlash } from "./VideoCameraSlash"; +export { Vignette } from "./Vignette"; +export { VinylRecord } from "./VinylRecord"; +export { VirtualReality } from "./VirtualReality"; +export { Virus } from "./Virus"; +export { Voicemail } from "./Voicemail"; +export { Volleyball } from "./Volleyball"; +export { Wall } from "./Wall"; +export { Wallet } from "./Wallet"; +export { Warehouse } from "./Warehouse"; +export { Warning } from "./Warning"; +export { WarningCircle } from "./WarningCircle"; +export { WarningDiamond } from "./WarningDiamond"; +export { WarningOctagon } from "./WarningOctagon"; +export { Watch } from "./Watch"; +export { WaveSawtooth } from "./WaveSawtooth"; +export { WaveSine } from "./WaveSine"; +export { WaveSquare } from "./WaveSquare"; +export { WaveTriangle } from "./WaveTriangle"; +export { Waveform } from "./Waveform"; +export { Waves } from "./Waves"; +export { Webcam } from "./Webcam"; +export { WebcamSlash } from "./WebcamSlash"; +export { WebhooksLogo } from "./WebhooksLogo"; +export { WechatLogo } from "./WechatLogo"; +export { WhatsappLogo } from "./WhatsappLogo"; +export { Wheelchair } from "./Wheelchair"; +export { WheelchairMotion } from "./WheelchairMotion"; +export { WifiHigh } from "./WifiHigh"; +export { WifiLow } from "./WifiLow"; +export { WifiMedium } from "./WifiMedium"; +export { WifiNone } from "./WifiNone"; +export { WifiSlash } from "./WifiSlash"; +export { WifiX } from "./WifiX"; +export { Wind } from "./Wind"; +export { WindowsLogo } from "./WindowsLogo"; +export { Wine } from "./Wine"; +export { Wrench } from "./Wrench"; +export { X } from "./X"; +export { XCircle } from "./XCircle"; +export { XSquare } from "./XSquare"; +export { YinYang } from "./YinYang"; +export { YoutubeLogo } from "./YoutubeLogo";