diff --git a/.changeset/small-icons-load.md b/.changeset/small-icons-load.md new file mode 100644 index 0000000000..57285146f2 --- /dev/null +++ b/.changeset/small-icons-load.md @@ -0,0 +1,7 @@ +--- +"@emdash-cms/admin": patch +"@emdash-cms/blocks": patch +"emdash": patch +--- + +Reduces the admin's initial download by deferring uncommon plugin navigation icons and Block Kit chart code until they are displayed. Preserves Phosphor's exported icon aliases and keeps admin routes mounted if an icon or chart chunk fails to load. diff --git a/.github/workflows/query-counts.yml b/.github/workflows/query-counts.yml index 6b7e804a4f..cbfbe2c9cf 100644 --- a/.github/workflows/query-counts.yml +++ b/.github/workflows/query-counts.yml @@ -28,10 +28,15 @@ jobs: - run: pnpm install --frozen-lockfile - run: pnpm build - - name: Regenerate snapshots - run: | - node scripts/query-counts.mjs --target sqlite --update - node scripts/query-counts.mjs --target d1 --update + - name: Regenerate SQLite snapshots + run: node scripts/query-counts.mjs --target sqlite --update + + - name: Check admin client bundle + # Reuse the SQLite production build before the D1 run replaces dist/. + run: pnpm bundle:check:ci + + - name: Regenerate D1 snapshots + run: node scripts/query-counts.mjs --target d1 --update - name: Detect snapshot drift id: drift diff --git a/.oxfmtrc.json b/.oxfmtrc.json index 72401a3482..52dbcc0125 100644 --- a/.oxfmtrc.json +++ b/.oxfmtrc.json @@ -9,6 +9,7 @@ "**/emdash-env.d.ts", "**/worker-configuration.d.ts", "packages/registry-lexicons/src/generated/**", + "packages/admin/src/generated/phosphor-icon-buckets/**", "packages/plugin-cli/schemas/**", "infra/emdash-bot/.flue/lib/machine.json", "infra/emdash-bot/BOT_STATE_MACHINE.md" diff --git a/fixtures/perf-site/astro.config.mjs b/fixtures/perf-site/astro.config.mjs index e12662547d..b8b915721c 100644 --- a/fixtures/perf-site/astro.config.mjs +++ b/fixtures/perf-site/astro.config.mjs @@ -6,6 +6,8 @@ import { defineConfig } from "astro/config"; import emdash, { local } from "emdash/astro"; import { sqlite } from "emdash/db"; +import { adminClientBundleMetadata } from "../../scripts/check-admin-client-bundle.mjs"; + const target = process.env.EMDASH_FIXTURE_TARGET ?? "sqlite"; const sqliteIntegration = emdash({ @@ -33,4 +35,7 @@ export default defineConfig({ }), integrations: [react(), target === "d1" ? d1Integration : sqliteIntegration], devToolbar: { enabled: false }, + vite: { + plugins: [adminClientBundleMetadata()], + }, }); diff --git a/package.json b/package.json index 4506adf870..e1566c8d9c 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,8 @@ "knip": "knip --no-exit-code --exclude unlisted,unresolved,exports,types,duplicates", "new": "create-emdash", "screenshots": "node scripts/screenshot-all-templates.mjs", + "bundle:check": "node scripts/check-admin-client-bundle.mjs", + "bundle:check:ci": "node scripts/check-admin-client-bundle.mjs --ci-reuse-query-count-build", "query-counts": "node scripts/query-counts.mjs", "locale:extract": "pnpm --filter @emdash-cms/admin locale:extract", "locale:compile": "pnpm --filter @emdash-cms/admin locale:compile" diff --git a/packages/admin/package.json b/packages/admin/package.json index 6e4acc532b..a8cbecacbd 100644 --- a/packages/admin/package.json +++ b/packages/admin/package.json @@ -24,12 +24,14 @@ } }, "scripts": { - "build": "node --run locale:compile && tsdown && node --run locale:copy && npx @tailwindcss/cli -i src/styles.css -o dist/styles.css --minify", - "dev": "tsdown --watch", + "build": "node --run icons:generate && node --run locale:compile && tsdown && node --run locale:copy && npx @tailwindcss/cli -i src/styles.css -o dist/styles.css --minify", + "dev": "node --run icons:generate && tsdown --watch", "prepublishOnly": "node --run build", "check": "publint && attw --pack --ignore-rules=cjs-resolves-to-esm --ignore-rules=no-resolution", "test": "vitest", - "typecheck": "tsgo --noEmit", + "typecheck": "node --run icons:check && tsgo --noEmit", + "icons:generate": "node ./scripts/generate-phosphor-icon-buckets.js", + "icons:check": "node ./scripts/generate-phosphor-icon-buckets.js --check", "locale:compile": "lingui compile --namespace es", "locale:copy": "node ./scripts/copy-locales.js", "locale:extract": "lingui extract --clean" diff --git a/packages/admin/scripts/generate-phosphor-icon-buckets.js b/packages/admin/scripts/generate-phosphor-icon-buckets.js new file mode 100644 index 0000000000..253a629b15 --- /dev/null +++ b/packages/admin/scripts/generate-phosphor-icon-buckets.js @@ -0,0 +1,144 @@ +import { existsSync, mkdirSync, readFileSync, readdirSync, rmSync, writeFileSync } from "node:fs"; +import { dirname, join } from "node:path"; +import { fileURLToPath } from "node:url"; + +import ts from "typescript"; + +const BUCKET_COUNT = 32; +const ICON_NAME_PATTERN = /^[A-Z][A-Za-z0-9]*$/; +const GENERATED_FILE_PATTERN = /^(?:bucket-\d{2}|module-aliases)\.ts$/; +const checkOnly = process.argv.includes("--check"); + +const scriptDir = dirname(fileURLToPath(import.meta.url)); +const packageDir = join(scriptDir, ".."); +const phosphorPackageDir = dirname( + fileURLToPath(import.meta.resolve("@phosphor-icons/react/package.json")), +); +const iconModulesDir = join(phosphorPackageDir, "dist", "csr"); +const outputDir = join(packageDir, "src", "generated", "phosphor-icon-buckets"); + +function getBucket(name) { + let hash = 0x811c9dc5; + for (let index = 0; index < name.length; index++) { + hash = Math.imul(hash ^ name.charCodeAt(index), 0x01000193); + } + return (hash >>> 0) & (BUCKET_COUNT - 1); +} + +function getModuleExportNames(fileName) { + const source = readFileSync(join(iconModulesDir, fileName), "utf8"); + const sourceFile = ts.createSourceFile( + fileName, + source, + ts.ScriptTarget.Latest, + true, + ts.ScriptKind.JS, + ); + const exportNames = []; + for (const statement of sourceFile.statements) { + if ( + ts.isExportDeclaration(statement) && + statement.exportClause && + ts.isNamedExports(statement.exportClause) + ) { + for (const element of statement.exportClause.elements) { + exportNames.push(element.name.text); + } + } + } + return exportNames.toSorted(); +} + +const iconModules = readdirSync(iconModulesDir, { withFileTypes: true }) + .filter((entry) => entry.isFile() && entry.name.endsWith(".es.js")) + .map((entry) => ({ + moduleName: entry.name.slice(0, -6), + exportNames: getModuleExportNames(entry.name), + })) + .toSorted((a, b) => a.moduleName.localeCompare(b.moduleName)); + +const exportOwners = new Map(); +const moduleAliases = []; +for (const { moduleName, exportNames } of iconModules) { + if (!ICON_NAME_PATTERN.test(moduleName) || moduleName.endsWith("Icon")) { + throw new Error(`Unsupported Phosphor icon module name: ${moduleName}`); + } + if (!exportNames.includes(moduleName) || !exportNames.includes(`${moduleName}Icon`)) { + throw new Error(`Phosphor icon module ${moduleName} is missing its canonical exports`); + } + for (const exportName of exportNames) { + if (!ICON_NAME_PATTERN.test(exportName)) { + throw new Error(`Unsupported Phosphor icon export name: ${exportName}`); + } + const existingOwner = exportOwners.get(exportName); + if (existingOwner) { + throw new Error( + `Phosphor icon export ${exportName} is declared by both ${existingOwner} and ${moduleName}`, + ); + } + exportOwners.set(exportName, moduleName); + if (exportName !== moduleName && exportName !== `${moduleName}Icon`) { + moduleAliases.push({ exportName, moduleName }); + } + } +} + +/** @type {{ moduleName: string; exportNames: string[] }[][]} */ +const buckets = Array.from({ length: BUCKET_COUNT }, () => []); +for (const iconModule of iconModules) { + buckets[getBucket(iconModule.moduleName)].push(iconModule); +} + +const expectedFiles = new Map( + buckets.map((modules, index) => { + const fileName = `bucket-${String(index).padStart(2, "0")}.ts`; + const exports = modules + .map( + ({ moduleName, exportNames }) => + `export { ${exportNames.join(", ")} } from "@phosphor-icons/react/${moduleName}";`, + ) + .join("\n"); + return [ + fileName, + `// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit.\n\n${exports}\n`, + ]; + }), +); +const moduleAliasEntries = moduleAliases + .toSorted((a, b) => a.exportName.localeCompare(b.exportName)) + .map(({ exportName, moduleName }) => `\t${exportName}: "${moduleName}",`) + .join("\n"); +expectedFiles.set( + "module-aliases.ts", + `// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit.\n\nexport const PHOSPHOR_ICON_MODULE_ALIASES: Readonly> = {\n${moduleAliasEntries}\n};\n`, +); + +const existingGeneratedFiles = existsSync(outputDir) + ? readdirSync(outputDir).filter((fileName) => GENERATED_FILE_PATTERN.test(fileName)) + : []; +const unexpectedFiles = existingGeneratedFiles.filter((fileName) => !expectedFiles.has(fileName)); +const staleFiles = [...expectedFiles].flatMap(([fileName, expected]) => { + const filePath = join(outputDir, fileName); + return !existsSync(filePath) || readFileSync(filePath, "utf8") !== expected ? [fileName] : []; +}); + +if (checkOnly) { + const mismatches = [...staleFiles, ...unexpectedFiles]; + if (mismatches.length > 0) { + console.error( + `Generated Phosphor icon buckets are stale: ${mismatches.join(", ")}. Run \`node --run icons:generate\`.`, + ); + process.exitCode = 1; + } +} else { + mkdirSync(outputDir, { recursive: true }); + for (const fileName of unexpectedFiles) { + rmSync(join(outputDir, fileName)); + } + for (const [fileName, source] of expectedFiles) { + const filePath = join(outputDir, fileName); + if (!existsSync(filePath) || readFileSync(filePath, "utf8") !== source) { + writeFileSync(filePath, source); + } + } +} diff --git a/packages/admin/src/components/admin-navigation-icons.ts b/packages/admin/src/components/admin-navigation-icons.ts index dd3cebc0c0..1178b525f4 100644 --- a/packages/admin/src/components/admin-navigation-icons.ts +++ b/packages/admin/src/components/admin-navigation-icons.ts @@ -42,6 +42,8 @@ import { import type { Icon } from "@phosphor-icons/react"; import * as React from "react"; +import { loadPhosphorIcon } from "../lib/phosphor-icon-loader.js"; + /** Shared icon vocabulary for first-party admin entities and navigation surfaces. */ export const ADMIN_NAV_ICONS = { dashboard: SquaresFour, @@ -143,8 +145,7 @@ export function resolveNavIcon(name?: string): React.ElementType { let icon = lazyIconCache.get(componentName); if (!icon) { icon = React.lazy(async () => { - const mod = await import("@phosphor-icons/react"); - const candidate: unknown = (mod as Record)[componentName]; + const candidate = await loadPhosphorIcon(componentName); return { default: isIconComponent(candidate) ? candidate : ADMIN_NAV_ICONS.plugins }; }); lazyIconCache.set(componentName, icon); diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-00.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-00.ts new file mode 100644 index 0000000000..ce85a0c87e --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-00.ts @@ -0,0 +1,49 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AppleLogo, AppleLogoIcon } from "@phosphor-icons/react/AppleLogo"; +export { ArrowArcRight, ArrowArcRightIcon } from "@phosphor-icons/react/ArrowArcRight"; +export { ArrowFatUp, ArrowFatUpIcon } from "@phosphor-icons/react/ArrowFatUp"; +export { ArrowSquareLeft, ArrowSquareLeftIcon } from "@phosphor-icons/react/ArrowSquareLeft"; +export { BellSimpleRinging, BellSimpleRingingIcon } from "@phosphor-icons/react/BellSimpleRinging"; +export { Blueprint, BlueprintIcon } from "@phosphor-icons/react/Blueprint"; +export { BookOpen, BookOpenIcon } from "@phosphor-icons/react/BookOpen"; +export { CaretDoubleLeft, CaretDoubleLeftIcon } from "@phosphor-icons/react/CaretDoubleLeft"; +export { CellSignalFull, CellSignalFullIcon } from "@phosphor-icons/react/CellSignalFull"; +export { CodepenLogo, CodepenLogoIcon } from "@phosphor-icons/react/CodepenLogo"; +export { Cube, CubeIcon } from "@phosphor-icons/react/Cube"; +export { DeviceRotate, DeviceRotateIcon } from "@phosphor-icons/react/DeviceRotate"; +export { Devices, DevicesIcon } from "@phosphor-icons/react/Devices"; +export { DiamondsFour, DiamondsFourIcon } from "@phosphor-icons/react/DiamondsFour"; +export { Dot, DotIcon } from "@phosphor-icons/react/Dot"; +export { Faders, FadersIcon } from "@phosphor-icons/react/Faders"; +export { FadersHorizontal, FadersHorizontalIcon } from "@phosphor-icons/react/FadersHorizontal"; +export { FileC, FileCIcon } from "@phosphor-icons/react/FileC"; +export { FileCpp, FileCppIcon } from "@phosphor-icons/react/FileCpp"; +export { Flame, FlameIcon } from "@phosphor-icons/react/Flame"; +export { GenderFemale, GenderFemaleIcon } from "@phosphor-icons/react/GenderFemale"; +export { Hand, HandIcon } from "@phosphor-icons/react/Hand"; +export { HandGrabbing, HandGrabbingIcon } from "@phosphor-icons/react/HandGrabbing"; +export { LinkedinLogo, LinkedinLogoIcon } from "@phosphor-icons/react/LinkedinLogo"; +export { MapPin, MapPinIcon } from "@phosphor-icons/react/MapPin"; +export { MapPinPlus, MapPinPlusIcon } from "@phosphor-icons/react/MapPinPlus"; +export { MicrosoftTeamsLogo, MicrosoftTeamsLogoIcon } from "@phosphor-icons/react/MicrosoftTeamsLogo"; +export { Moon, MoonIcon } from "@phosphor-icons/react/Moon"; +export { MusicNote, MusicNoteIcon } from "@phosphor-icons/react/MusicNote"; +export { Notebook, NotebookIcon } from "@phosphor-icons/react/Notebook"; +export { NumberSquareSeven, NumberSquareSevenIcon } from "@phosphor-icons/react/NumberSquareSeven"; +export { Palette, PaletteIcon } from "@phosphor-icons/react/Palette"; +export { Person, PersonIcon } from "@phosphor-icons/react/Person"; +export { PhoneSlash, PhoneSlashIcon } from "@phosphor-icons/react/PhoneSlash"; +export { PipeWrench, PipeWrenchIcon } from "@phosphor-icons/react/PipeWrench"; +export { PokerChip, PokerChipIcon } from "@phosphor-icons/react/PokerChip"; +export { QuestionMark, QuestionMarkIcon } from "@phosphor-icons/react/QuestionMark"; +export { CircleWavyIcon, Seal, SealIcon } from "@phosphor-icons/react/Seal"; +export { SmileyMeh, SmileyMehIcon } from "@phosphor-icons/react/SmileyMeh"; +export { SmileyMelting, SmileyMeltingIcon } from "@phosphor-icons/react/SmileyMelting"; +export { SpeakerHifi, SpeakerHifiIcon } from "@phosphor-icons/react/SpeakerHifi"; +export { StarHalf, StarHalfIcon } from "@phosphor-icons/react/StarHalf"; +export { Student, StudentIcon } from "@phosphor-icons/react/Student"; +export { Tent, TentIcon } from "@phosphor-icons/react/Tent"; +export { TextHTwo, TextHTwoIcon } from "@phosphor-icons/react/TextHTwo"; +export { VectorTwo, VectorTwoIcon } from "@phosphor-icons/react/VectorTwo"; +export { Visor, VisorIcon } from "@phosphor-icons/react/Visor"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-01.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-01.ts new file mode 100644 index 0000000000..057e7805f5 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-01.ts @@ -0,0 +1,42 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AirplaneTakeoff, AirplaneTakeoffIcon } from "@phosphor-icons/react/AirplaneTakeoff"; +export { ArrowFatLinesUp, ArrowFatLinesUpIcon } from "@phosphor-icons/react/ArrowFatLinesUp"; +export { ArrowsOut, ArrowsOutIcon } from "@phosphor-icons/react/ArrowsOut"; +export { ArrowUDownRight, ArrowUDownRightIcon } from "@phosphor-icons/react/ArrowUDownRight"; +export { ArrowURightDown, ArrowURightDownIcon } from "@phosphor-icons/react/ArrowURightDown"; +export { Asterisk, AsteriskIcon } from "@phosphor-icons/react/Asterisk"; +export { BellSlash, BellSlashIcon } from "@phosphor-icons/react/BellSlash"; +export { BuildingApartment, BuildingApartmentIcon } from "@phosphor-icons/react/BuildingApartment"; +export { BuildingOffice, BuildingOfficeIcon } from "@phosphor-icons/react/BuildingOffice"; +export { Car, CarIcon } from "@phosphor-icons/react/Car"; +export { CaretCircleUpDown, CaretCircleUpDownIcon } from "@phosphor-icons/react/CaretCircleUpDown"; +export { ChartLine, ChartLineIcon } from "@phosphor-icons/react/ChartLine"; +export { ChartPolar, ChartPolarIcon } from "@phosphor-icons/react/ChartPolar"; +export { Coffee, CoffeeIcon } from "@phosphor-icons/react/Coffee"; +export { CurrencyBtc, CurrencyBtcIcon } from "@phosphor-icons/react/CurrencyBtc"; +export { DotsNine, DotsNineIcon } from "@phosphor-icons/react/DotsNine"; +export { DotsThreeCircleVertical, DotsThreeCircleVerticalIcon } from "@phosphor-icons/react/DotsThreeCircleVertical"; +export { FileX, FileXIcon } from "@phosphor-icons/react/FileX"; +export { FolderNotchOpenIcon, FolderOpen, FolderOpenIcon } from "@phosphor-icons/react/FolderOpen"; +export { Gif, GifIcon } from "@phosphor-icons/react/Gif"; +export { Headset, HeadsetIcon } from "@phosphor-icons/react/Headset"; +export { List, ListIcon } from "@phosphor-icons/react/List"; +export { Megaphone, MegaphoneIcon } from "@phosphor-icons/react/Megaphone"; +export { NumberCircleSeven, NumberCircleSevenIcon } from "@phosphor-icons/react/NumberCircleSeven"; +export { NumberSquareZero, NumberSquareZeroIcon } from "@phosphor-icons/react/NumberSquareZero"; +export { Pants, PantsIcon } from "@phosphor-icons/react/Pants"; +export { PaperPlaneRight, PaperPlaneRightIcon } from "@phosphor-icons/react/PaperPlaneRight"; +export { PixLogo, PixLogoIcon } from "@phosphor-icons/react/PixLogo"; +export { ReceiptX, ReceiptXIcon } from "@phosphor-icons/react/ReceiptX"; +export { Resize, ResizeIcon } from "@phosphor-icons/react/Resize"; +export { RssSimple, RssSimpleIcon } from "@phosphor-icons/react/RssSimple"; +export { SkipBack, SkipBackIcon } from "@phosphor-icons/react/SkipBack"; +export { Subtract, SubtractIcon } from "@phosphor-icons/react/Subtract"; +export { Sun, SunIcon } from "@phosphor-icons/react/Sun"; +export { TagSimple, TagSimpleIcon } from "@phosphor-icons/react/TagSimple"; +export { Usb, UsbIcon } from "@phosphor-icons/react/Usb"; +export { UserSquare, UserSquareIcon } from "@phosphor-icons/react/UserSquare"; +export { WaveSine, WaveSineIcon } from "@phosphor-icons/react/WaveSine"; +export { Wheelchair, WheelchairIcon } from "@phosphor-icons/react/Wheelchair"; +export { YoutubeLogo, YoutubeLogoIcon } from "@phosphor-icons/react/YoutubeLogo"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-02.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-02.ts new file mode 100644 index 0000000000..005adb16c2 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-02.ts @@ -0,0 +1,37 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AppStoreLogo, AppStoreLogoIcon } from "@phosphor-icons/react/AppStoreLogo"; +export { ArrowUpLeft, ArrowUpLeftIcon } from "@phosphor-icons/react/ArrowUpLeft"; +export { ArticleMedium, ArticleMediumIcon } from "@phosphor-icons/react/ArticleMedium"; +export { ArticleNyTimes, ArticleNyTimesIcon } from "@phosphor-icons/react/ArticleNyTimes"; +export { BatteryWarning, BatteryWarningIcon } from "@phosphor-icons/react/BatteryWarning"; +export { CellSignalMedium, CellSignalMediumIcon } from "@phosphor-icons/react/CellSignalMedium"; +export { Church, ChurchIcon } from "@phosphor-icons/react/Church"; +export { City, CityIcon } from "@phosphor-icons/react/City"; +export { ClipboardText, ClipboardTextIcon } from "@phosphor-icons/react/ClipboardText"; +export { CubeTransparent, CubeTransparentIcon } from "@phosphor-icons/react/CubeTransparent"; +export { DeviceMobileSpeaker, DeviceMobileSpeakerIcon } from "@phosphor-icons/react/DeviceMobileSpeaker"; +export { GitCommit, GitCommitIcon } from "@phosphor-icons/react/GitCommit"; +export { Globe, GlobeIcon } from "@phosphor-icons/react/Globe"; +export { GrainsSlash, GrainsSlashIcon } from "@phosphor-icons/react/GrainsSlash"; +export { LinuxLogo, LinuxLogoIcon } from "@phosphor-icons/react/LinuxLogo"; +export { Lock, LockIcon } from "@phosphor-icons/react/Lock"; +export { Needle, NeedleIcon } from "@phosphor-icons/react/Needle"; +export { NumberZero, NumberZeroIcon } from "@phosphor-icons/react/NumberZero"; +export { PaperPlaneTilt, PaperPlaneTiltIcon } from "@phosphor-icons/react/PaperPlaneTilt"; +export { PersonSimpleCircle, PersonSimpleCircleIcon } from "@phosphor-icons/react/PersonSimpleCircle"; +export { PianoKeys, PianoKeysIcon } from "@phosphor-icons/react/PianoKeys"; +export { Pill, PillIcon } from "@phosphor-icons/react/Pill"; +export { Racquet, RacquetIcon } from "@phosphor-icons/react/Racquet"; +export { Sailboat, SailboatIcon } from "@phosphor-icons/react/Sailboat"; +export { Smiley, SmileyIcon } from "@phosphor-icons/react/Smiley"; +export { SoundcloudLogo, SoundcloudLogoIcon } from "@phosphor-icons/react/SoundcloudLogo"; +export { SpeakerSimpleLow, SpeakerSimpleLowIcon } from "@phosphor-icons/react/SpeakerSimpleLow"; +export { SpeakerSimpleNone, SpeakerSimpleNoneIcon } from "@phosphor-icons/react/SpeakerSimpleNone"; +export { StarOfDavid, StarOfDavidIcon } from "@phosphor-icons/react/StarOfDavid"; +export { TextH, TextHIcon } from "@phosphor-icons/react/TextH"; +export { TextHFour, TextHFourIcon } from "@phosphor-icons/react/TextHFour"; +export { TextHThree, TextHThreeIcon } from "@phosphor-icons/react/TextHThree"; +export { Timer, TimerIcon } from "@phosphor-icons/react/Timer"; +export { Van, VanIcon } from "@phosphor-icons/react/Van"; +export { VectorThree, VectorThreeIcon } from "@phosphor-icons/react/VectorThree"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-03.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-03.ts new file mode 100644 index 0000000000..ba699b74e0 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-03.ts @@ -0,0 +1,49 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ArrowCircleUp, ArrowCircleUpIcon } from "@phosphor-icons/react/ArrowCircleUp"; +export { ArrowFatLineRight, ArrowFatLineRightIcon } from "@phosphor-icons/react/ArrowFatLineRight"; +export { ArrowLeft, ArrowLeftIcon } from "@phosphor-icons/react/ArrowLeft"; +export { ArrowsOutSimple, ArrowsOutSimpleIcon } from "@phosphor-icons/react/ArrowsOutSimple"; +export { AsteriskSimple, AsteriskSimpleIcon } from "@phosphor-icons/react/AsteriskSimple"; +export { BaseballCap, BaseballCapIcon } from "@phosphor-icons/react/BaseballCap"; +export { BatteryEmpty, BatteryEmptyIcon } from "@phosphor-icons/react/BatteryEmpty"; +export { BookOpenUser, BookOpenUserIcon } from "@phosphor-icons/react/BookOpenUser"; +export { Briefcase, BriefcaseIcon } from "@phosphor-icons/react/Briefcase"; +export { CalendarBlank, CalendarBlankIcon } from "@phosphor-icons/react/CalendarBlank"; +export { CalendarPlus, CalendarPlusIcon } from "@phosphor-icons/react/CalendarPlus"; +export { CalendarStar, CalendarStarIcon } from "@phosphor-icons/react/CalendarStar"; +export { CameraSlash, CameraSlashIcon } from "@phosphor-icons/react/CameraSlash"; +export { CarSimple, CarSimpleIcon } from "@phosphor-icons/react/CarSimple"; +export { Cigarette, CigaretteIcon } from "@phosphor-icons/react/Cigarette"; +export { CourtBasketball, CourtBasketballIcon } from "@phosphor-icons/react/CourtBasketball"; +export { Crosshair, CrosshairIcon } from "@phosphor-icons/react/Crosshair"; +export { File, FileIcon } from "@phosphor-icons/react/File"; +export { FilePdf, FilePdfIcon } from "@phosphor-icons/react/FilePdf"; +export { FilmReel, FilmReelIcon } from "@phosphor-icons/react/FilmReel"; +export { Fish, FishIcon } from "@phosphor-icons/react/Fish"; +export { FlagCheckered, FlagCheckeredIcon } from "@phosphor-icons/react/FlagCheckered"; +export { FramerLogo, FramerLogoIcon } from "@phosphor-icons/react/FramerLogo"; +export { GenderTransgender, GenderTransgenderIcon } from "@phosphor-icons/react/GenderTransgender"; +export { GitBranch, GitBranchIcon } from "@phosphor-icons/react/GitBranch"; +export { GoogleCardboardLogo, GoogleCardboardLogoIcon } from "@phosphor-icons/react/GoogleCardboardLogo"; +export { Gps, GpsIcon } from "@phosphor-icons/react/Gps"; +export { HandsClapping, HandsClappingIcon } from "@phosphor-icons/react/HandsClapping"; +export { Heart, HeartIcon } from "@phosphor-icons/react/Heart"; +export { LessThan, LessThanIcon } from "@phosphor-icons/react/LessThan"; +export { LetterCircleP, LetterCirclePIcon } from "@phosphor-icons/react/LetterCircleP"; +export { LockLaminatedOpen, LockLaminatedOpenIcon } from "@phosphor-icons/react/LockLaminatedOpen"; +export { MegaphoneSimple, MegaphoneSimpleIcon } from "@phosphor-icons/react/MegaphoneSimple"; +export { Mountains, MountainsIcon } from "@phosphor-icons/react/Mountains"; +export { MusicNotesMinus, MusicNotesMinusIcon } from "@phosphor-icons/react/MusicNotesMinus"; +export { OrangeSlice, OrangeSliceIcon } from "@phosphor-icons/react/OrangeSlice"; +export { PersonSimpleWalk, PersonSimpleWalkIcon } from "@phosphor-icons/react/PersonSimpleWalk"; +export { PingPong, PingPongIcon } from "@phosphor-icons/react/PingPong"; +export { Play, PlayIcon } from "@phosphor-icons/react/Play"; +export { PushPinSimpleSlash, PushPinSimpleSlashIcon } from "@phosphor-icons/react/PushPinSimpleSlash"; +export { Receipt, ReceiptIcon } from "@phosphor-icons/react/Receipt"; +export { RowsPlusTop, RowsPlusTopIcon } from "@phosphor-icons/react/RowsPlusTop"; +export { ScribbleLoop, ScribbleLoopIcon } from "@phosphor-icons/react/ScribbleLoop"; +export { ShieldChevron, ShieldChevronIcon } from "@phosphor-icons/react/ShieldChevron"; +export { StackPlus, StackPlusIcon } from "@phosphor-icons/react/StackPlus"; +export { StripeLogo, StripeLogoIcon } from "@phosphor-icons/react/StripeLogo"; +export { TrayArrowUp, TrayArrowUpIcon } from "@phosphor-icons/react/TrayArrowUp"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-04.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-04.ts new file mode 100644 index 0000000000..79c3b9a790 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-04.ts @@ -0,0 +1,42 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ArrowCircleRight, ArrowCircleRightIcon } from "@phosphor-icons/react/ArrowCircleRight"; +export { ArrowDownRight, ArrowDownRightIcon } from "@phosphor-icons/react/ArrowDownRight"; +export { BookmarksSimple, BookmarksSimpleIcon } from "@phosphor-icons/react/BookmarksSimple"; +export { Butterfly, ButterflyIcon } from "@phosphor-icons/react/Butterfly"; +export { Cards, CardsIcon } from "@phosphor-icons/react/Cards"; +export { CaretCircleDoubleUp, CaretCircleDoubleUpIcon } from "@phosphor-icons/react/CaretCircleDoubleUp"; +export { ChartBar, ChartBarIcon } from "@phosphor-icons/react/ChartBar"; +export { ChartLineUp, ChartLineUpIcon } from "@phosphor-icons/react/ChartLineUp"; +export { ChatCircleSlash, ChatCircleSlashIcon } from "@phosphor-icons/react/ChatCircleSlash"; +export { Checkerboard, CheckerboardIcon } from "@phosphor-icons/react/Checkerboard"; +export { CloudRain, CloudRainIcon } from "@phosphor-icons/react/CloudRain"; +export { ContactlessPayment, ContactlessPaymentIcon } from "@phosphor-icons/react/ContactlessPayment"; +export { Copy, CopyIcon } from "@phosphor-icons/react/Copy"; +export { DiceTwo, DiceTwoIcon } from "@phosphor-icons/react/DiceTwo"; +export { DribbbleLogo, DribbbleLogoIcon } from "@phosphor-icons/react/DribbbleLogo"; +export { EarSlash, EarSlashIcon } from "@phosphor-icons/react/EarSlash"; +export { FileArrowDown, FileArrowDownIcon } from "@phosphor-icons/react/FileArrowDown"; +export { FileText, FileTextIcon } from "@phosphor-icons/react/FileText"; +export { FilmSlate, FilmSlateIcon } from "@phosphor-icons/react/FilmSlate"; +export { FireTruck, FireTruckIcon } from "@phosphor-icons/react/FireTruck"; +export { FolderDashed, FolderDashedIcon, FolderDottedIcon } from "@phosphor-icons/react/FolderDashed"; +export { GasPump, GasPumpIcon } from "@phosphor-icons/react/GasPump"; +export { HardDrive, HardDriveIcon } from "@phosphor-icons/react/HardDrive"; +export { Hurricane, HurricaneIcon } from "@phosphor-icons/react/Hurricane"; +export { Mouse, MouseIcon } from "@phosphor-icons/react/Mouse"; +export { NumberCircleSix, NumberCircleSixIcon } from "@phosphor-icons/react/NumberCircleSix"; +export { NumberOne, NumberOneIcon } from "@phosphor-icons/react/NumberOne"; +export { Numpad, NumpadIcon } from "@phosphor-icons/react/Numpad"; +export { OpenAiLogo, OpenAiLogoIcon } from "@phosphor-icons/react/OpenAiLogo"; +export { Pencil, PencilIcon } from "@phosphor-icons/react/Pencil"; +export { Scooter, ScooterIcon } from "@phosphor-icons/react/Scooter"; +export { SmileyNervous, SmileyNervousIcon } from "@phosphor-icons/react/SmileyNervous"; +export { SolarPanel, SolarPanelIcon } from "@phosphor-icons/react/SolarPanel"; +export { Stamp, StampIcon } from "@phosphor-icons/react/Stamp"; +export { Strategy, StrategyIcon } from "@phosphor-icons/react/Strategy"; +export { TextAa, TextAaIcon } from "@phosphor-icons/react/TextAa"; +export { TidalLogo, TidalLogoIcon } from "@phosphor-icons/react/TidalLogo"; +export { Vibrate, VibrateIcon } from "@phosphor-icons/react/Vibrate"; +export { Warehouse, WarehouseIcon } from "@phosphor-icons/react/Warehouse"; +export { WifiHigh, WifiHighIcon } from "@phosphor-icons/react/WifiHigh"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-05.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-05.ts new file mode 100644 index 0000000000..5c7d27bec6 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-05.ts @@ -0,0 +1,59 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AirplaneTaxiing, AirplaneTaxiingIcon } from "@phosphor-icons/react/AirplaneTaxiing"; +export { Airplay, AirplayIcon } from "@phosphor-icons/react/Airplay"; +export { AlignBottom, AlignBottomIcon } from "@phosphor-icons/react/AlignBottom"; +export { Archive, ArchiveIcon } from "@phosphor-icons/react/Archive"; +export { ArrowBendUpLeft, ArrowBendUpLeftIcon } from "@phosphor-icons/react/ArrowBendUpLeft"; +export { ArrowFatRight, ArrowFatRightIcon } from "@phosphor-icons/react/ArrowFatRight"; +export { ArrowsMerge, ArrowsMergeIcon } from "@phosphor-icons/react/ArrowsMerge"; +export { ArrowSquareDown, ArrowSquareDownIcon } from "@phosphor-icons/react/ArrowSquareDown"; +export { ArrowSquareDownRight, ArrowSquareDownRightIcon } from "@phosphor-icons/react/ArrowSquareDownRight"; +export { BatteryMedium, BatteryMediumIcon } from "@phosphor-icons/react/BatteryMedium"; +export { Bread, BreadIcon } from "@phosphor-icons/react/Bread"; +export { CalendarX, CalendarXIcon } from "@phosphor-icons/react/CalendarX"; +export { CaretDoubleDown, CaretDoubleDownIcon } from "@phosphor-icons/react/CaretDoubleDown"; +export { CaretUpDown, CaretUpDownIcon } from "@phosphor-icons/react/CaretUpDown"; +export { ComputerTower, ComputerTowerIcon } from "@phosphor-icons/react/ComputerTower"; +export { Copyleft, CopyleftIcon } from "@phosphor-icons/react/Copyleft"; +export { Couch, CouchIcon } from "@phosphor-icons/react/Couch"; +export { DeviceMobile, DeviceMobileIcon } from "@phosphor-icons/react/DeviceMobile"; +export { DropHalf, DropHalfIcon } from "@phosphor-icons/react/DropHalf"; +export { Eraser, EraserIcon } from "@phosphor-icons/react/Eraser"; +export { FileArrowUp, FileArrowUpIcon } from "@phosphor-icons/react/FileArrowUp"; +export { Footprints, FootprintsIcon } from "@phosphor-icons/react/Footprints"; +export { Gradient, GradientIcon } from "@phosphor-icons/react/Gradient"; +export { HourglassHigh, HourglassHighIcon } from "@phosphor-icons/react/HourglassHigh"; +export { Info, InfoIcon } from "@phosphor-icons/react/Info"; +export { Jeep, JeepIcon } from "@phosphor-icons/react/Jeep"; +export { Lightning, LightningIcon } from "@phosphor-icons/react/Lightning"; +export { ListDashes, ListDashesIcon } from "@phosphor-icons/react/ListDashes"; +export { MicrosoftExcelLogo, MicrosoftExcelLogoIcon } from "@phosphor-icons/react/MicrosoftExcelLogo"; +export { MicrosoftOutlookLogo, MicrosoftOutlookLogoIcon } from "@phosphor-icons/react/MicrosoftOutlookLogo"; +export { Network, NetworkIcon } from "@phosphor-icons/react/Network"; +export { Notches, NotchesIcon } from "@phosphor-icons/react/Notches"; +export { NumberSeven, NumberSevenIcon } from "@phosphor-icons/react/NumberSeven"; +export { PatreonLogo, PatreonLogoIcon } from "@phosphor-icons/react/PatreonLogo"; +export { PersonSimpleHike, PersonSimpleHikeIcon } from "@phosphor-icons/react/PersonSimpleHike"; +export { Pizza, PizzaIcon } from "@phosphor-icons/react/Pizza"; +export { PushPinSlash, PushPinSlashIcon } from "@phosphor-icons/react/PushPinSlash"; +export { Question, QuestionIcon } from "@phosphor-icons/react/Question"; +export { Rabbit, RabbitIcon } from "@phosphor-icons/react/Rabbit"; +export { Rug, RugIcon } from "@phosphor-icons/react/Rug"; +export { Screwdriver, ScrewdriverIcon } from "@phosphor-icons/react/Screwdriver"; +export { SelectionPlus, SelectionPlusIcon } from "@phosphor-icons/react/SelectionPlus"; +export { ShoppingBagOpen, ShoppingBagOpenIcon } from "@phosphor-icons/react/ShoppingBagOpen"; +export { SkipBackCircle, SkipBackCircleIcon } from "@phosphor-icons/react/SkipBackCircle"; +export { SplitVertical, SplitVerticalIcon } from "@phosphor-icons/react/SplitVertical"; +export { StackSimple, StackSimpleIcon } from "@phosphor-icons/react/StackSimple"; +export { Stop, StopIcon } from "@phosphor-icons/react/Stop"; +export { TextColumns, TextColumnsIcon } from "@phosphor-icons/react/TextColumns"; +export { ThreeD, ThreeDIcon } from "@phosphor-icons/react/ThreeD"; +export { Ticket, TicketIcon } from "@phosphor-icons/react/Ticket"; +export { ToggleRight, ToggleRightIcon } from "@phosphor-icons/react/ToggleRight"; +export { Trash, TrashIcon } from "@phosphor-icons/react/Trash"; +export { Triangle, TriangleIcon } from "@phosphor-icons/react/Triangle"; +export { TShirt, TShirtIcon } from "@phosphor-icons/react/TShirt"; +export { Umbrella, UmbrellaIcon } from "@phosphor-icons/react/Umbrella"; +export { UserCircleGear, UserCircleGearIcon } from "@phosphor-icons/react/UserCircleGear"; +export { Waves, WavesIcon } from "@phosphor-icons/react/Waves"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-06.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-06.ts new file mode 100644 index 0000000000..e646bdf85c --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-06.ts @@ -0,0 +1,52 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { Acorn, AcornIcon } from "@phosphor-icons/react/Acorn"; +export { ArrowFatLinesRight, ArrowFatLinesRightIcon } from "@phosphor-icons/react/ArrowFatLinesRight"; +export { BellZ, BellZIcon } from "@phosphor-icons/react/BellZ"; +export { Cactus, CactusIcon } from "@phosphor-icons/react/Cactus"; +export { CheckFat, CheckFatIcon } from "@phosphor-icons/react/CheckFat"; +export { CloudFog, CloudFogIcon } from "@phosphor-icons/react/CloudFog"; +export { CoinVertical, CoinVerticalIcon } from "@phosphor-icons/react/CoinVertical"; +export { CopySimple, CopySimpleIcon } from "@phosphor-icons/react/CopySimple"; +export { Crane, CraneIcon } from "@phosphor-icons/react/Crane"; +export { Egg, EggIcon } from "@phosphor-icons/react/Egg"; +export { EyeClosed, EyeClosedIcon } from "@phosphor-icons/react/EyeClosed"; +export { FacebookLogo, FacebookLogoIcon } from "@phosphor-icons/react/FacebookLogo"; +export { FileMagnifyingGlass, FileMagnifyingGlassIcon, FileSearchIcon } from "@phosphor-icons/react/FileMagnifyingGlass"; +export { FilePng, FilePngIcon } from "@phosphor-icons/react/FilePng"; +export { FlagBannerFold, FlagBannerFoldIcon } from "@phosphor-icons/react/FlagBannerFold"; +export { Flower, FlowerIcon } from "@phosphor-icons/react/Flower"; +export { FlowerTulip, FlowerTulipIcon } from "@phosphor-icons/react/FlowerTulip"; +export { ForkKnife, ForkKnifeIcon } from "@phosphor-icons/react/ForkKnife"; +export { GenderIntersex, GenderIntersexIcon } from "@phosphor-icons/react/GenderIntersex"; +export { GraphicsCard, GraphicsCardIcon } from "@phosphor-icons/react/GraphicsCard"; +export { Handbag, HandbagIcon } from "@phosphor-icons/react/Handbag"; +export { HandDeposit, HandDepositIcon } from "@phosphor-icons/react/HandDeposit"; +export { HandFist, HandFistIcon } from "@phosphor-icons/react/HandFist"; +export { Handshake, HandshakeIcon } from "@phosphor-icons/react/Handshake"; +export { Headphones, HeadphonesIcon } from "@phosphor-icons/react/Headphones"; +export { Horse, HorseIcon } from "@phosphor-icons/react/Horse"; +export { Intersect, IntersectIcon } from "@phosphor-icons/react/Intersect"; +export { IntersectThree, IntersectThreeIcon } from "@phosphor-icons/react/IntersectThree"; +export { Lifebuoy, LifebuoyIcon } from "@phosphor-icons/react/Lifebuoy"; +export { LinkSimpleHorizontalBreak, LinkSimpleHorizontalBreakIcon } from "@phosphor-icons/react/LinkSimpleHorizontalBreak"; +export { MemberOf, MemberOfIcon } from "@phosphor-icons/react/MemberOf"; +export { MouseSimple, MouseSimpleIcon } from "@phosphor-icons/react/MouseSimple"; +export { NewspaperClipping, NewspaperClippingIcon } from "@phosphor-icons/react/NewspaperClipping"; +export { Notification, NotificationIcon } from "@phosphor-icons/react/Notification"; +export { NumberCircleZero, NumberCircleZeroIcon } from "@phosphor-icons/react/NumberCircleZero"; +export { PencilSimple, PencilSimpleIcon } from "@phosphor-icons/react/PencilSimple"; +export { PersonSimpleTaiChi, PersonSimpleTaiChiIcon } from "@phosphor-icons/react/PersonSimpleTaiChi"; +export { PinterestLogo, PinterestLogoIcon } from "@phosphor-icons/react/PinterestLogo"; +export { Power, PowerIcon } from "@phosphor-icons/react/Power"; +export { Prohibit, ProhibitIcon } from "@phosphor-icons/react/Prohibit"; +export { Scales, ScalesIcon } from "@phosphor-icons/react/Scales"; +export { SmileySad, SmileySadIcon } from "@phosphor-icons/react/SmileySad"; +export { Spinner, SpinnerIcon } from "@phosphor-icons/react/Spinner"; +export { Square, SquareIcon } from "@phosphor-icons/react/Square"; +export { ThermometerHot, ThermometerHotIcon } from "@phosphor-icons/react/ThermometerHot"; +export { Trolley, TrolleyIcon } from "@phosphor-icons/react/Trolley"; +export { Unite, UniteIcon } from "@phosphor-icons/react/Unite"; +export { UserCircleMinus, UserCircleMinusIcon } from "@phosphor-icons/react/UserCircleMinus"; +export { UserFocus, UserFocusIcon } from "@phosphor-icons/react/UserFocus"; +export { UserPlus, UserPlusIcon } from "@phosphor-icons/react/UserPlus"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-07.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-07.ts new file mode 100644 index 0000000000..09c477f5ba --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-07.ts @@ -0,0 +1,39 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ArrowCircleUpRight, ArrowCircleUpRightIcon } from "@phosphor-icons/react/ArrowCircleUpRight"; +export { BellSimpleSlash, BellSimpleSlashIcon } from "@phosphor-icons/react/BellSimpleSlash"; +export { Binoculars, BinocularsIcon } from "@phosphor-icons/react/Binoculars"; +export { BoxingGlove, BoxingGloveIcon } from "@phosphor-icons/react/BoxingGlove"; +export { Cat, CatIcon } from "@phosphor-icons/react/Cat"; +export { ChartPie, ChartPieIcon } from "@phosphor-icons/react/ChartPie"; +export { ChatCircleDots, ChatCircleDotsIcon } from "@phosphor-icons/react/ChatCircleDots"; +export { ChatTeardropSlash, ChatTeardropSlashIcon } from "@phosphor-icons/react/ChatTeardropSlash"; +export { Check, CheckIcon } from "@phosphor-icons/react/Check"; +export { Diamond, DiamondIcon } from "@phosphor-icons/react/Diamond"; +export { DotsSix, DotsSixIcon } from "@phosphor-icons/react/DotsSix"; +export { Dresser, DresserIcon } from "@phosphor-icons/react/Dresser"; +export { ExclamationMark, ExclamationMarkIcon } from "@phosphor-icons/react/ExclamationMark"; +export { FileDoc, FileDocIcon } from "@phosphor-icons/react/FileDoc"; +export { FolderMinus, FolderMinusIcon, FolderNotchMinusIcon } from "@phosphor-icons/react/FolderMinus"; +export { FolderSimple, FolderSimpleIcon } from "@phosphor-icons/react/FolderSimple"; +export { GitlabLogoSimple, GitlabLogoSimpleIcon } from "@phosphor-icons/react/GitlabLogoSimple"; +export { Graph, GraphIcon } from "@phosphor-icons/react/Graph"; +export { Hammer, HammerIcon } from "@phosphor-icons/react/Hammer"; +export { HourglassSimple, HourglassSimpleIcon } from "@phosphor-icons/react/HourglassSimple"; +export { MedalMilitary, MedalMilitaryIcon } from "@phosphor-icons/react/MedalMilitary"; +export { NetworkX, NetworkXIcon } from "@phosphor-icons/react/NetworkX"; +export { NumberSquareTwo, NumberSquareTwoIcon } from "@phosphor-icons/react/NumberSquareTwo"; +export { PersonSimpleBike, PersonSimpleBikeIcon } from "@phosphor-icons/react/PersonSimpleBike"; +export { PhoneIncoming, PhoneIncomingIcon } from "@phosphor-icons/react/PhoneIncoming"; +export { QrCode, QrCodeIcon } from "@phosphor-icons/react/QrCode"; +export { ShoppingCart, ShoppingCartIcon } from "@phosphor-icons/react/ShoppingCart"; +export { Sidebar, SidebarIcon } from "@phosphor-icons/react/Sidebar"; +export { SkipForwardCircle, SkipForwardCircleIcon } from "@phosphor-icons/react/SkipForwardCircle"; +export { Snowflake, SnowflakeIcon } from "@phosphor-icons/react/Snowflake"; +export { Sunglasses, SunglassesIcon } from "@phosphor-icons/react/Sunglasses"; +export { SupersetProperOf, SupersetProperOfIcon } from "@phosphor-icons/react/SupersetProperOf"; +export { Thermometer, ThermometerIcon } from "@phosphor-icons/react/Thermometer"; +export { UsersFour, UsersFourIcon } from "@phosphor-icons/react/UsersFour"; +export { WaveformSlash, WaveformSlashIcon } from "@phosphor-icons/react/WaveformSlash"; +export { Wind, WindIcon } from "@phosphor-icons/react/Wind"; +export { X, XIcon } from "@phosphor-icons/react/X"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-08.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-08.ts new file mode 100644 index 0000000000..7602fb3767 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-08.ts @@ -0,0 +1,46 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ApproximateEquals, ApproximateEqualsIcon } from "@phosphor-icons/react/ApproximateEquals"; +export { ArrowClockwise, ArrowClockwiseIcon } from "@phosphor-icons/react/ArrowClockwise"; +export { ArrowCounterClockwise, ArrowCounterClockwiseIcon } from "@phosphor-icons/react/ArrowCounterClockwise"; +export { ArrowElbowLeft, ArrowElbowLeftIcon } from "@phosphor-icons/react/ArrowElbowLeft"; +export { ArrowFatLinesDown, ArrowFatLinesDownIcon } from "@phosphor-icons/react/ArrowFatLinesDown"; +export { At, AtIcon } from "@phosphor-icons/react/At"; +export { BaseballHelmet, BaseballHelmetIcon } from "@phosphor-icons/react/BaseballHelmet"; +export { BatteryWarningVertical, BatteryWarningVerticalIcon } from "@phosphor-icons/react/BatteryWarningVertical"; +export { BluetoothConnected, BluetoothConnectedIcon } from "@phosphor-icons/react/BluetoothConnected"; +export { BookBookmark, BookBookmarkIcon } from "@phosphor-icons/react/BookBookmark"; +export { ChatCenteredText, ChatCenteredTextIcon } from "@phosphor-icons/react/ChatCenteredText"; +export { Chats, ChatsIcon } from "@phosphor-icons/react/Chats"; +export { Cheese, CheeseIcon } from "@phosphor-icons/react/Cheese"; +export { CircleDashed, CircleDashedIcon } from "@phosphor-icons/react/CircleDashed"; +export { ClockCountdown, ClockCountdownIcon } from "@phosphor-icons/react/ClockCountdown"; +export { CurrencyKrw, CurrencyKrwIcon } from "@phosphor-icons/react/CurrencyKrw"; +export { DesktopTower, DesktopTowerIcon } from "@phosphor-icons/react/DesktopTower"; +export { EggCrack, EggCrackIcon } from "@phosphor-icons/react/EggCrack"; +export { Feather, FeatherIcon } from "@phosphor-icons/react/Feather"; +export { FileJs, FileJsIcon } from "@phosphor-icons/react/FileJs"; +export { GasCan, GasCanIcon } from "@phosphor-icons/react/GasCan"; +export { Hamburger, HamburgerIcon } from "@phosphor-icons/react/Hamburger"; +export { HandSwipeRight, HandSwipeRightIcon } from "@phosphor-icons/react/HandSwipeRight"; +export { HourglassSimpleMedium, HourglassSimpleMediumIcon } from "@phosphor-icons/react/HourglassSimpleMedium"; +export { Intersection, IntersectionIcon } from "@phosphor-icons/react/Intersection"; +export { JarLabel, JarLabelIcon } from "@phosphor-icons/react/JarLabel"; +export { Lego, LegoIcon } from "@phosphor-icons/react/Lego"; +export { MapPinSimpleLine, MapPinSimpleLineIcon } from "@phosphor-icons/react/MapPinSimpleLine"; +export { Newspaper, NewspaperIcon } from "@phosphor-icons/react/Newspaper"; +export { NumberSix, NumberSixIcon } from "@phosphor-icons/react/NumberSix"; +export { NumberThree, NumberThreeIcon } from "@phosphor-icons/react/NumberThree"; +export { Nut, NutIcon } from "@phosphor-icons/react/Nut"; +export { Parallelogram, ParallelogramIcon } from "@phosphor-icons/react/Parallelogram"; +export { Scan, ScanIcon } from "@phosphor-icons/react/Scan"; +export { Seat, SeatIcon } from "@phosphor-icons/react/Seat"; +export { ShieldCheck, ShieldCheckIcon } from "@phosphor-icons/react/ShieldCheck"; +export { SignOut, SignOutIcon } from "@phosphor-icons/react/SignOut"; +export { Target, TargetIcon } from "@phosphor-icons/react/Target"; +export { Toilet, ToiletIcon } from "@phosphor-icons/react/Toilet"; +export { TreeView, TreeViewIcon } from "@phosphor-icons/react/TreeView"; +export { Truck, TruckIcon } from "@phosphor-icons/react/Truck"; +export { Watch, WatchIcon } from "@phosphor-icons/react/Watch"; +export { Webcam, WebcamIcon } from "@phosphor-icons/react/Webcam"; +export { WechatLogo, WechatLogoIcon } from "@phosphor-icons/react/WechatLogo"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-09.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-09.ts new file mode 100644 index 0000000000..40d375014c --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-09.ts @@ -0,0 +1,70 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AirTrafficControl, AirTrafficControlIcon } from "@phosphor-icons/react/AirTrafficControl"; +export { AlignLeftSimple, AlignLeftSimpleIcon } from "@phosphor-icons/react/AlignLeftSimple"; +export { AlignTop, AlignTopIcon } from "@phosphor-icons/react/AlignTop"; +export { Aperture, ApertureIcon } from "@phosphor-icons/react/Aperture"; +export { ArrowBendDownRight, ArrowBendDownRightIcon } from "@phosphor-icons/react/ArrowBendDownRight"; +export { ArrowBendRightDown, ArrowBendRightDownIcon } from "@phosphor-icons/react/ArrowBendRightDown"; +export { ArrowLineDownLeft, ArrowLineDownLeftIcon } from "@phosphor-icons/react/ArrowLineDownLeft"; +export { ArrowLineUpRight, ArrowLineUpRightIcon } from "@phosphor-icons/react/ArrowLineUpRight"; +export { ArrowsCounterClockwise, ArrowsCounterClockwiseIcon } from "@phosphor-icons/react/ArrowsCounterClockwise"; +export { ArrowULeftUp, ArrowULeftUpIcon } from "@phosphor-icons/react/ArrowULeftUp"; +export { Baby, BabyIcon } from "@phosphor-icons/react/Baby"; +export { Bandaids, BandaidsIcon } from "@phosphor-icons/react/Bandaids"; +export { BowlFood, BowlFoodIcon } from "@phosphor-icons/react/BowlFood"; +export { BracketsCurly, BracketsCurlyIcon } from "@phosphor-icons/react/BracketsCurly"; +export { BugDroid, BugDroidIcon } from "@phosphor-icons/react/BugDroid"; +export { CassetteTape, CassetteTapeIcon } from "@phosphor-icons/react/CassetteTape"; +export { CellSignalHigh, CellSignalHighIcon } from "@phosphor-icons/react/CellSignalHigh"; +export { Champagne, ChampagneIcon } from "@phosphor-icons/react/Champagne"; +export { ChartDonut, ChartDonutIcon } from "@phosphor-icons/react/ChartDonut"; +export { Circle, CircleIcon } from "@phosphor-icons/react/Circle"; +export { CompassTool, CompassToolIcon } from "@phosphor-icons/react/CompassTool"; +export { Cpu, CpuIcon } from "@phosphor-icons/react/Cpu"; +export { CurrencyKzt, CurrencyKztIcon } from "@phosphor-icons/react/CurrencyKzt"; +export { CurrencyNgn, CurrencyNgnIcon } from "@phosphor-icons/react/CurrencyNgn"; +export { Dog, DogIcon } from "@phosphor-icons/react/Dog"; +export { Door, DoorIcon } from "@phosphor-icons/react/Door"; +export { DotsSixVertical, DotsSixVerticalIcon } from "@phosphor-icons/react/DotsSixVertical"; +export { Exclude, ExcludeIcon } from "@phosphor-icons/react/Exclude"; +export { FalloutShelter, FalloutShelterIcon } from "@phosphor-icons/react/FalloutShelter"; +export { FileMinus, FileMinusIcon } from "@phosphor-icons/react/FileMinus"; +export { FlowerLotus, FlowerLotusIcon } from "@phosphor-icons/react/FlowerLotus"; +export { FolderStar, FolderStarIcon } from "@phosphor-icons/react/FolderStar"; +export { Function, FunctionIcon } from "@phosphor-icons/react/Function"; +export { FunnelSimpleX, FunnelSimpleXIcon } from "@phosphor-icons/react/FunnelSimpleX"; +export { GlobeHemisphereWest, GlobeHemisphereWestIcon } from "@phosphor-icons/react/GlobeHemisphereWest"; +export { GreaterThanOrEqual, GreaterThanOrEqualIcon } from "@phosphor-icons/react/GreaterThanOrEqual"; +export { GridFour, GridFourIcon } from "@phosphor-icons/react/GridFour"; +export { HandArrowDown, HandArrowDownIcon } from "@phosphor-icons/react/HandArrowDown"; +export { HardHat, HardHatIcon } from "@phosphor-icons/react/HardHat"; +export { HourglassLow, HourglassLowIcon } from "@phosphor-icons/react/HourglassLow"; +export { ImageSquare, ImageSquareIcon } from "@phosphor-icons/react/ImageSquare"; +export { Ladder, LadderIcon } from "@phosphor-icons/react/Ladder"; +export { LineVertical, LineVerticalIcon } from "@phosphor-icons/react/LineVertical"; +export { Link, LinkIcon } from "@phosphor-icons/react/Link"; +export { LockKey, LockKeyIcon } from "@phosphor-icons/react/LockKey"; +export { MapTrifold, MapTrifoldIcon } from "@phosphor-icons/react/MapTrifold"; +export { MediumLogo, MediumLogoIcon } from "@phosphor-icons/react/MediumLogo"; +export { Microphone, MicrophoneIcon } from "@phosphor-icons/react/Microphone"; +export { MoonStars, MoonStarsIcon } from "@phosphor-icons/react/MoonStars"; +export { MopedFront, MopedFrontIcon } from "@phosphor-icons/react/MopedFront"; +export { MusicNotes, MusicNotesIcon } from "@phosphor-icons/react/MusicNotes"; +export { MusicNotesPlus, MusicNotesPlusIcon } from "@phosphor-icons/react/MusicNotesPlus"; +export { NotSubsetOf, NotSubsetOfIcon } from "@phosphor-icons/react/NotSubsetOf"; +export { PiggyBank, PiggyBankIcon } from "@phosphor-icons/react/PiggyBank"; +export { Polygon, PolygonIcon } from "@phosphor-icons/react/Polygon"; +export { ProjectorScreenChart, ProjectorScreenChartIcon } from "@phosphor-icons/react/ProjectorScreenChart"; +export { Rainbow, RainbowIcon } from "@phosphor-icons/react/Rainbow"; +export { ShieldSlash, ShieldSlashIcon } from "@phosphor-icons/react/ShieldSlash"; +export { SneakerMove, SneakerMoveIcon } from "@phosphor-icons/react/SneakerMove"; +export { SpeakerSimpleSlash, SpeakerSimpleSlashIcon } from "@phosphor-icons/react/SpeakerSimpleSlash"; +export { StandardDefinition, StandardDefinitionIcon } from "@phosphor-icons/react/StandardDefinition"; +export { StarFour, StarFourIcon } from "@phosphor-icons/react/StarFour"; +export { StopCircle, StopCircleIcon } from "@phosphor-icons/react/StopCircle"; +export { SuitcaseRolling, SuitcaseRollingIcon } from "@phosphor-icons/react/SuitcaseRolling"; +export { Taxi, TaxiIcon } from "@phosphor-icons/react/Taxi"; +export { TelegramLogo, TelegramLogoIcon } from "@phosphor-icons/react/TelegramLogo"; +export { Tilde, TildeIcon } from "@phosphor-icons/react/Tilde"; +export { Train, TrainIcon } from "@phosphor-icons/react/Train"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-10.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-10.ts new file mode 100644 index 0000000000..05d9b61fe8 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-10.ts @@ -0,0 +1,43 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ArrowLineDownRight, ArrowLineDownRightIcon } from "@phosphor-icons/react/ArrowLineDownRight"; +export { BoundingBox, BoundingBoxIcon } from "@phosphor-icons/react/BoundingBox"; +export { BoxArrowUp, BoxArrowUpIcon } from "@phosphor-icons/react/BoxArrowUp"; +export { Bulldozer, BulldozerIcon } from "@phosphor-icons/react/Bulldozer"; +export { CarBattery, CarBatteryIcon } from "@phosphor-icons/react/CarBattery"; +export { CaretLineDown, CaretLineDownIcon } from "@phosphor-icons/react/CaretLineDown"; +export { Chair, ChairIcon } from "@phosphor-icons/react/Chair"; +export { ClockUser, ClockUserIcon } from "@phosphor-icons/react/ClockUser"; +export { DeviceMobileSlash, DeviceMobileSlashIcon } from "@phosphor-icons/react/DeviceMobileSlash"; +export { DevToLogo, DevToLogoIcon } from "@phosphor-icons/react/DevToLogo"; +export { DropHalfBottom, DropHalfBottomIcon } from "@phosphor-icons/react/DropHalfBottom"; +export { FileMd, FileMdIcon } from "@phosphor-icons/react/FileMd"; +export { FolderLock, FolderLockIcon } from "@phosphor-icons/react/FolderLock"; +export { Folders, FoldersIcon } from "@phosphor-icons/react/Folders"; +export { FolderSimpleDashed, FolderSimpleDashedIcon, FolderSimpleDottedIcon } from "@phosphor-icons/react/FolderSimpleDashed"; +export { FolderUser, FolderUserIcon } from "@phosphor-icons/react/FolderUser"; +export { FourK, FourKIcon } from "@phosphor-icons/react/FourK"; +export { HandPeace, HandPeaceIcon } from "@phosphor-icons/react/HandPeace"; +export { LightningSlash, LightningSlashIcon } from "@phosphor-icons/react/LightningSlash"; +export { ListBullets, ListBulletsIcon } from "@phosphor-icons/react/ListBullets"; +export { LockOpen, LockOpenIcon } from "@phosphor-icons/react/LockOpen"; +export { MagicWand, MagicWandIcon } from "@phosphor-icons/react/MagicWand"; +export { MapPinSimple, MapPinSimpleIcon } from "@phosphor-icons/react/MapPinSimple"; +export { MusicNoteSimple, MusicNoteSimpleIcon } from "@phosphor-icons/react/MusicNoteSimple"; +export { NetworkSlash, NetworkSlashIcon } from "@phosphor-icons/react/NetworkSlash"; +export { PersonSimple, PersonSimpleIcon } from "@phosphor-icons/react/PersonSimple"; +export { PersonSimpleThrow, PersonSimpleThrowIcon } from "@phosphor-icons/react/PersonSimpleThrow"; +export { Popcorn, PopcornIcon } from "@phosphor-icons/react/Popcorn"; +export { RainbowCloud, RainbowCloudIcon } from "@phosphor-icons/react/RainbowCloud"; +export { Repeat, RepeatIcon } from "@phosphor-icons/react/Repeat"; +export { SimCard, SimCardIcon } from "@phosphor-icons/react/SimCard"; +export { Skull, SkullIcon } from "@phosphor-icons/react/Skull"; +export { SkypeLogo, SkypeLogoIcon } from "@phosphor-icons/react/SkypeLogo"; +export { SpotifyLogo, SpotifyLogoIcon } from "@phosphor-icons/react/SpotifyLogo"; +export { SprayBottle, SprayBottleIcon } from "@phosphor-icons/react/SprayBottle"; +export { StackOverflowLogo, StackOverflowLogoIcon } from "@phosphor-icons/react/StackOverflowLogo"; +export { TextHFive, TextHFiveIcon } from "@phosphor-icons/react/TextHFive"; +export { Tornado, TornadoIcon } from "@phosphor-icons/react/Tornado"; +export { UserCircle, UserCircleIcon } from "@phosphor-icons/react/UserCircle"; +export { WifiLow, WifiLowIcon } from "@phosphor-icons/react/WifiLow"; +export { WifiNone, WifiNoneIcon } from "@phosphor-icons/react/WifiNone"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-11.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-11.ts new file mode 100644 index 0000000000..2bd810b4cd --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-11.ts @@ -0,0 +1,40 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AlignLeft, AlignLeftIcon } from "@phosphor-icons/react/AlignLeft"; +export { Backpack, BackpackIcon } from "@phosphor-icons/react/Backpack"; +export { Bathtub, BathtubIcon } from "@phosphor-icons/react/Bathtub"; +export { BookmarkSimple, BookmarkSimpleIcon } from "@phosphor-icons/react/BookmarkSimple"; +export { ArchiveBoxIcon, BoxArrowDown, BoxArrowDownIcon } from "@phosphor-icons/react/BoxArrowDown"; +export { CalendarDots, CalendarDotsIcon } from "@phosphor-icons/react/CalendarDots"; +export { CashRegister, CashRegisterIcon } from "@phosphor-icons/react/CashRegister"; +export { CastleTurret, CastleTurretIcon } from "@phosphor-icons/react/CastleTurret"; +export { Chat, ChatIcon } from "@phosphor-icons/react/Chat"; +export { ChatCenteredDots, ChatCenteredDotsIcon } from "@phosphor-icons/react/ChatCenteredDots"; +export { CloudMoon, CloudMoonIcon } from "@phosphor-icons/react/CloudMoon"; +export { DownloadSimple, DownloadSimpleIcon } from "@phosphor-icons/react/DownloadSimple"; +export { Eyes, EyesIcon } from "@phosphor-icons/react/Eyes"; +export { FireSimple, FireSimpleIcon } from "@phosphor-icons/react/FireSimple"; +export { FolderSimpleStar, FolderSimpleStarIcon } from "@phosphor-icons/react/FolderSimpleStar"; +export { FunnelSimple, FunnelSimpleIcon } from "@phosphor-icons/react/FunnelSimple"; +export { GlobeHemisphereEast, GlobeHemisphereEastIcon } from "@phosphor-icons/react/GlobeHemisphereEast"; +export { HashStraight, HashStraightIcon } from "@phosphor-icons/react/HashStraight"; +export { HourglassSimpleHigh, HourglassSimpleHighIcon } from "@phosphor-icons/react/HourglassSimpleHigh"; +export { Images, ImagesIcon } from "@phosphor-icons/react/Images"; +export { LetterCircleH, LetterCircleHIcon } from "@phosphor-icons/react/LetterCircleH"; +export { Mailbox, MailboxIcon } from "@phosphor-icons/react/Mailbox"; +export { MouseMiddleClick, MouseMiddleClickIcon } from "@phosphor-icons/react/MouseMiddleClick"; +export { Orange, OrangeIcon } from "@phosphor-icons/react/Orange"; +export { Oven, OvenIcon } from "@phosphor-icons/react/Oven"; +export { PencilSimpleSlash, PencilSimpleSlashIcon } from "@phosphor-icons/react/PencilSimpleSlash"; +export { PenNibStraight, PenNibStraightIcon } from "@phosphor-icons/react/PenNibStraight"; +export { PersonSimpleRun, PersonSimpleRunIcon } from "@phosphor-icons/react/PersonSimpleRun"; +export { PlayCircle, PlayCircleIcon } from "@phosphor-icons/react/PlayCircle"; +export { Playlist, PlaylistIcon } from "@phosphor-icons/react/Playlist"; +export { PlayPause, PlayPauseIcon } from "@phosphor-icons/react/PlayPause"; +export { Shower, ShowerIcon } from "@phosphor-icons/react/Shower"; +export { Slideshow, SlideshowIcon } from "@phosphor-icons/react/Slideshow"; +export { SplitHorizontal, SplitHorizontalIcon } from "@phosphor-icons/react/SplitHorizontal"; +export { SquaresFour, SquaresFourIcon } from "@phosphor-icons/react/SquaresFour"; +export { TextAlignRight, TextAlignRightIcon } from "@phosphor-icons/react/TextAlignRight"; +export { WashingMachine, WashingMachineIcon } from "@phosphor-icons/react/WashingMachine"; +export { Yarn, YarnIcon } from "@phosphor-icons/react/Yarn"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-12.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-12.ts new file mode 100644 index 0000000000..d670a2a45e --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-12.ts @@ -0,0 +1,51 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { Alien, AlienIcon } from "@phosphor-icons/react/Alien"; +export { ArrowBendDoubleUpLeft, ArrowBendDoubleUpLeftIcon } from "@phosphor-icons/react/ArrowBendDoubleUpLeft"; +export { ArrowRight, ArrowRightIcon } from "@phosphor-icons/react/ArrowRight"; +export { ArrowsInLineVertical, ArrowsInLineVerticalIcon } from "@phosphor-icons/react/ArrowsInLineVertical"; +export { ArrowsLeftRight, ArrowsLeftRightIcon } from "@phosphor-icons/react/ArrowsLeftRight"; +export { Backspace, BackspaceIcon } from "@phosphor-icons/react/Backspace"; +export { Bed, BedIcon } from "@phosphor-icons/react/Bed"; +export { CaretCircleDoubleLeft, CaretCircleDoubleLeftIcon } from "@phosphor-icons/react/CaretCircleDoubleLeft"; +export { ChartBarHorizontal, ChartBarHorizontalIcon } from "@phosphor-icons/react/ChartBarHorizontal"; +export { ChatsCircle, ChatsCircleIcon } from "@phosphor-icons/react/ChatsCircle"; +export { ChatSlash, ChatSlashIcon } from "@phosphor-icons/react/ChatSlash"; +export { Cherries, CherriesIcon } from "@phosphor-icons/react/Cherries"; +export { Coin, CoinIcon } from "@phosphor-icons/react/Coin"; +export { CurrencyCircleDollar, CurrencyCircleDollarIcon } from "@phosphor-icons/react/CurrencyCircleDollar"; +export { Disc, DiscIcon } from "@phosphor-icons/react/Disc"; +export { Drop, DropIcon } from "@phosphor-icons/react/Drop"; +export { EjectSimple, EjectSimpleIcon } from "@phosphor-icons/react/EjectSimple"; +export { FaceMask, FaceMaskIcon } from "@phosphor-icons/react/FaceMask"; +export { FileLock, FileLockIcon } from "@phosphor-icons/react/FileLock"; +export { FileXls, FileXlsIcon } from "@phosphor-icons/react/FileXls"; +export { FilmScript, FilmScriptIcon } from "@phosphor-icons/react/FilmScript"; +export { FlipVertical, FlipVerticalIcon } from "@phosphor-icons/react/FlipVertical"; +export { Garage, GarageIcon } from "@phosphor-icons/react/Garage"; +export { GooglePodcastsLogo, GooglePodcastsLogoIcon } from "@phosphor-icons/react/GooglePodcastsLogo"; +export { InstagramLogo, InstagramLogoIcon } from "@phosphor-icons/react/InstagramLogo"; +export { Island, IslandIcon } from "@phosphor-icons/react/Island"; +export { Key, KeyIcon } from "@phosphor-icons/react/Key"; +export { LightningA, LightningAIcon } from "@phosphor-icons/react/LightningA"; +export { LinkBreak, LinkBreakIcon } from "@phosphor-icons/react/LinkBreak"; +export { Medal, MedalIcon } from "@phosphor-icons/react/Medal"; +export { Motorcycle, MotorcycleIcon } from "@phosphor-icons/react/Motorcycle"; +export { NotePencil, NotePencilIcon } from "@phosphor-icons/react/NotePencil"; +export { NumberCircleNine, NumberCircleNineIcon } from "@phosphor-icons/react/NumberCircleNine"; +export { NumberFour, NumberFourIcon } from "@phosphor-icons/react/NumberFour"; +export { PencilSimpleLine, PencilSimpleLineIcon } from "@phosphor-icons/react/PencilSimpleLine"; +export { PintGlass, PintGlassIcon } from "@phosphor-icons/react/PintGlass"; +export { Quotes, QuotesIcon } from "@phosphor-icons/react/Quotes"; +export { Record, RecordIcon } from "@phosphor-icons/react/Record"; +export { Scroll, ScrollIcon } from "@phosphor-icons/react/Scroll"; +export { CircleWavyWarningIcon, SealWarning, SealWarningIcon } from "@phosphor-icons/react/SealWarning"; +export { SecurityCamera, SecurityCameraIcon } from "@phosphor-icons/react/SecurityCamera"; +export { ShuffleAngular, ShuffleAngularIcon } from "@phosphor-icons/react/ShuffleAngular"; +export { SolarRoof, SolarRoofIcon } from "@phosphor-icons/react/SolarRoof"; +export { Stool, StoolIcon } from "@phosphor-icons/react/Stool"; +export { Suitcase, SuitcaseIcon } from "@phosphor-icons/react/Suitcase"; +export { Trademark, TrademarkIcon } from "@phosphor-icons/react/Trademark"; +export { TrademarkRegistered, TrademarkRegisteredIcon } from "@phosphor-icons/react/TrademarkRegistered"; +export { Video, VideoIcon } from "@phosphor-icons/react/Video"; +export { Wallet, WalletIcon } from "@phosphor-icons/react/Wallet"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-13.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-13.ts new file mode 100644 index 0000000000..157cc7de06 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-13.ts @@ -0,0 +1,39 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ArrowElbowDownRight, ArrowElbowDownRightIcon } from "@phosphor-icons/react/ArrowElbowDownRight"; +export { ArrowElbowRightDown, ArrowElbowRightDownIcon } from "@phosphor-icons/react/ArrowElbowRightDown"; +export { ArrowFatLinesLeft, ArrowFatLinesLeftIcon } from "@phosphor-icons/react/ArrowFatLinesLeft"; +export { ArrowsSplit, ArrowsSplitIcon } from "@phosphor-icons/react/ArrowsSplit"; +export { BeachBall, BeachBallIcon } from "@phosphor-icons/react/BeachBall"; +export { Calculator, CalculatorIcon } from "@phosphor-icons/react/Calculator"; +export { CameraRotate, CameraRotateIcon } from "@phosphor-icons/react/CameraRotate"; +export { Club, ClubIcon } from "@phosphor-icons/react/Club"; +export { CodeBlock, CodeBlockIcon } from "@phosphor-icons/react/CodeBlock"; +export { Coins, CoinsIcon } from "@phosphor-icons/react/Coins"; +export { Confetti, ConfettiIcon } from "@phosphor-icons/react/Confetti"; +export { Factory, FactoryIcon } from "@phosphor-icons/react/Factory"; +export { FileCsv, FileCsvIcon } from "@phosphor-icons/react/FileCsv"; +export { FileSql, FileSqlIcon } from "@phosphor-icons/react/FileSql"; +export { GitPullRequest, GitPullRequestIcon } from "@phosphor-icons/react/GitPullRequest"; +export { GoogleDriveLogo, GoogleDriveLogoIcon } from "@phosphor-icons/react/GoogleDriveLogo"; +export { Grains, GrainsIcon } from "@phosphor-icons/react/Grains"; +export { IdentificationCard, IdentificationCardIcon } from "@phosphor-icons/react/IdentificationCard"; +export { Laptop, LaptopIcon } from "@phosphor-icons/react/Laptop"; +export { ListNumbers, ListNumbersIcon } from "@phosphor-icons/react/ListNumbers"; +export { MaskHappy, MaskHappyIcon } from "@phosphor-icons/react/MaskHappy"; +export { MathOperations, MathOperationsIcon } from "@phosphor-icons/react/MathOperations"; +export { MouseScroll, MouseScrollIcon } from "@phosphor-icons/react/MouseScroll"; +export { NumberSquareOne, NumberSquareOneIcon } from "@phosphor-icons/react/NumberSquareOne"; +export { Pause, PauseIcon } from "@phosphor-icons/react/Pause"; +export { Prescription, PrescriptionIcon } from "@phosphor-icons/react/Prescription"; +export { PuzzlePiece, PuzzlePieceIcon } from "@phosphor-icons/react/PuzzlePiece"; +export { Scribble, ScribbleIcon } from "@phosphor-icons/react/Scribble"; +export { SelectionBackground, SelectionBackgroundIcon } from "@phosphor-icons/react/SelectionBackground"; +export { Signature, SignatureIcon } from "@phosphor-icons/react/Signature"; +export { SmileySticker, SmileyStickerIcon } from "@phosphor-icons/react/SmileySticker"; +export { SmileyWink, SmileyWinkIcon } from "@phosphor-icons/react/SmileyWink"; +export { SortAscending, SortAscendingIcon } from "@phosphor-icons/react/SortAscending"; +export { Tabs, TabsIcon } from "@phosphor-icons/react/Tabs"; +export { TrafficCone, TrafficConeIcon } from "@phosphor-icons/react/TrafficCone"; +export { Tray, TrayIcon } from "@phosphor-icons/react/Tray"; +export { UserGear, UserGearIcon } from "@phosphor-icons/react/UserGear"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-14.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-14.ts new file mode 100644 index 0000000000..31cd4c050b --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-14.ts @@ -0,0 +1,52 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AddressBook, AddressBookIcon } from "@phosphor-icons/react/AddressBook"; +export { AngularLogo, AngularLogoIcon } from "@phosphor-icons/react/AngularLogo"; +export { ArrowDown, ArrowDownIcon } from "@phosphor-icons/react/ArrowDown"; +export { ArrowFatLineLeft, ArrowFatLineLeftIcon } from "@phosphor-icons/react/ArrowFatLineLeft"; +export { ArrowsDownUp, ArrowsDownUpIcon } from "@phosphor-icons/react/ArrowsDownUp"; +export { ArrowSquareIn, ArrowSquareInIcon } from "@phosphor-icons/react/ArrowSquareIn"; +export { BatteryHigh, BatteryHighIcon } from "@phosphor-icons/react/BatteryHigh"; +export { BellRinging, BellRingingIcon } from "@phosphor-icons/react/BellRinging"; +export { Camera, CameraIcon } from "@phosphor-icons/react/Camera"; +export { CellSignalSlash, CellSignalSlashIcon } from "@phosphor-icons/react/CellSignalSlash"; +export { CirclesThree, CirclesThreeIcon } from "@phosphor-icons/react/CirclesThree"; +export { CloudCheck, CloudCheckIcon } from "@phosphor-icons/react/CloudCheck"; +export { DeviceMobileCamera, DeviceMobileCameraIcon } from "@phosphor-icons/react/DeviceMobileCamera"; +export { DiceFour, DiceFourIcon } from "@phosphor-icons/react/DiceFour"; +export { DiceSix, DiceSixIcon } from "@phosphor-icons/react/DiceSix"; +export { Empty, EmptyIcon } from "@phosphor-icons/react/Empty"; +export { EscalatorUp, EscalatorUpIcon } from "@phosphor-icons/react/EscalatorUp"; +export { Eyedropper, EyedropperIcon } from "@phosphor-icons/react/Eyedropper"; +export { FileCss, FileCssIcon } from "@phosphor-icons/react/FileCss"; +export { FileHtml, FileHtmlIcon } from "@phosphor-icons/react/FileHtml"; +export { Gear, GearIcon } from "@phosphor-icons/react/Gear"; +export { GlobeX, GlobeXIcon } from "@phosphor-icons/react/GlobeX"; +export { GpsFix, GpsFixIcon } from "@phosphor-icons/react/GpsFix"; +export { Kanban, KanbanIcon } from "@phosphor-icons/react/Kanban"; +export { LinkSimpleBreak, LinkSimpleBreakIcon } from "@phosphor-icons/react/LinkSimpleBreak"; +export { Memory, MemoryIcon } from "@phosphor-icons/react/Memory"; +export { MouseRightClick, MouseRightClickIcon } from "@phosphor-icons/react/MouseRightClick"; +export { NuclearPlant, NuclearPlantIcon } from "@phosphor-icons/react/NuclearPlant"; +export { PaintBrushHousehold, PaintBrushHouseholdIcon } from "@phosphor-icons/react/PaintBrushHousehold"; +export { PersonSimpleSwim, PersonSimpleSwimIcon } from "@phosphor-icons/react/PersonSimpleSwim"; +export { PlugCharging, PlugChargingIcon } from "@phosphor-icons/react/PlugCharging"; +export { Popsicle, PopsicleIcon } from "@phosphor-icons/react/Popsicle"; +export { PushPinSimple, PushPinSimpleIcon } from "@phosphor-icons/react/PushPinSimple"; +export { Rectangle, RectangleIcon } from "@phosphor-icons/react/Rectangle"; +export { Recycle, RecycleIcon } from "@phosphor-icons/react/Recycle"; +export { Rewind, RewindIcon } from "@phosphor-icons/react/Rewind"; +export { ShippingContainer, ShippingContainerIcon } from "@phosphor-icons/react/ShippingContainer"; +export { Shuffle, ShuffleIcon } from "@phosphor-icons/react/Shuffle"; +export { Signpost, SignpostIcon } from "@phosphor-icons/react/Signpost"; +export { Siren, SirenIcon } from "@phosphor-icons/react/Siren"; +export { SketchLogo, SketchLogoIcon } from "@phosphor-icons/react/SketchLogo"; +export { SpeakerX, SpeakerXIcon } from "@phosphor-icons/react/SpeakerX"; +export { Stethoscope, StethoscopeIcon } from "@phosphor-icons/react/Stethoscope"; +export { Swap, SwapIcon } from "@phosphor-icons/react/Swap"; +export { TagChevron, TagChevronIcon } from "@phosphor-icons/react/TagChevron"; +export { TrafficSignal, TrafficSignalIcon } from "@phosphor-icons/react/TrafficSignal"; +export { UploadSimple, UploadSimpleIcon } from "@phosphor-icons/react/UploadSimple"; +export { UserCirclePlus, UserCirclePlusIcon } from "@phosphor-icons/react/UserCirclePlus"; +export { UserList, UserListIcon } from "@phosphor-icons/react/UserList"; +export { UserMinus, UserMinusIcon } from "@phosphor-icons/react/UserMinus"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-15.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-15.ts new file mode 100644 index 0000000000..201e4164d6 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-15.ts @@ -0,0 +1,51 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { Airplane, AirplaneIcon } from "@phosphor-icons/react/Airplane"; +export { AlignCenterVerticalSimple, AlignCenterVerticalSimpleIcon } from "@phosphor-icons/react/AlignCenterVerticalSimple"; +export { ArrowArcLeft, ArrowArcLeftIcon } from "@phosphor-icons/react/ArrowArcLeft"; +export { ArrowSquareOut, ArrowSquareOutIcon } from "@phosphor-icons/react/ArrowSquareOut"; +export { ArrowUpRight, ArrowUpRightIcon } from "@phosphor-icons/react/ArrowUpRight"; +export { BabyCarriage, BabyCarriageIcon } from "@phosphor-icons/react/BabyCarriage"; +export { Bone, BoneIcon } from "@phosphor-icons/react/Bone"; +export { Boules, BoulesIcon } from "@phosphor-icons/react/Boules"; +export { Browser, BrowserIcon } from "@phosphor-icons/react/Browser"; +export { CaretLineUp, CaretLineUpIcon } from "@phosphor-icons/react/CaretLineUp"; +export { ChatDots, ChatDotsIcon } from "@phosphor-icons/react/ChatDots"; +export { CheckCircle, CheckCircleIcon } from "@phosphor-icons/react/CheckCircle"; +export { CircleHalfTilt, CircleHalfTiltIcon } from "@phosphor-icons/react/CircleHalfTilt"; +export { CodaLogo, CodaLogoIcon } from "@phosphor-icons/react/CodaLogo"; +export { Compass, CompassIcon } from "@phosphor-icons/react/Compass"; +export { CurrencyJpy, CurrencyJpyIcon } from "@phosphor-icons/react/CurrencyJpy"; +export { Cursor, CursorIcon } from "@phosphor-icons/react/Cursor"; +export { Cylinder, CylinderIcon } from "@phosphor-icons/react/Cylinder"; +export { EnvelopeSimple, EnvelopeSimpleIcon } from "@phosphor-icons/react/EnvelopeSimple"; +export { Equalizer, EqualizerIcon } from "@phosphor-icons/react/Equalizer"; +export { FileAudio, FileAudioIcon } from "@phosphor-icons/react/FileAudio"; +export { FileSvg, FileSvgIcon } from "@phosphor-icons/react/FileSvg"; +export { Gift, GiftIcon } from "@phosphor-icons/react/Gift"; +export { Guitar, GuitarIcon } from "@phosphor-icons/react/Guitar"; +export { Joystick, JoystickIcon } from "@phosphor-icons/react/Joystick"; +export { LampPendant, LampPendantIcon } from "@phosphor-icons/react/LampPendant"; +export { LegoSmiley, LegoSmileyIcon } from "@phosphor-icons/react/LegoSmiley"; +export { MapPinSimpleArea, MapPinSimpleAreaIcon } from "@phosphor-icons/react/MapPinSimpleArea"; +export { Minus, MinusIcon } from "@phosphor-icons/react/Minus"; +export { Money, MoneyIcon } from "@phosphor-icons/react/Money"; +export { MonitorPlay, MonitorPlayIcon } from "@phosphor-icons/react/MonitorPlay"; +export { MouseLeftClick, MouseLeftClickIcon } from "@phosphor-icons/react/MouseLeftClick"; +export { NumberSquareNine, NumberSquareNineIcon } from "@phosphor-icons/react/NumberSquareNine"; +export { PaintBrushBroad, PaintBrushBroadIcon } from "@phosphor-icons/react/PaintBrushBroad"; +export { Phone, PhoneIcon } from "@phosphor-icons/react/Phone"; +export { PhonePause, PhonePauseIcon } from "@phosphor-icons/react/PhonePause"; +export { PresentationChart, PresentationChartIcon } from "@phosphor-icons/react/PresentationChart"; +export { ScanSmiley, ScanSmileyIcon } from "@phosphor-icons/react/ScanSmiley"; +export { Shapes, ShapesIcon } from "@phosphor-icons/react/Shapes"; +export { ShareFat, ShareFatIcon } from "@phosphor-icons/react/ShareFat"; +export { SmileyAngry, SmileyAngryIcon } from "@phosphor-icons/react/SmileyAngry"; +export { SoccerBall, SoccerBallIcon } from "@phosphor-icons/react/SoccerBall"; +export { SortDescending, SortDescendingIcon } from "@phosphor-icons/react/SortDescending"; +export { Stairs, StairsIcon } from "@phosphor-icons/react/Stairs"; +export { TextOutdent, TextOutdentIcon } from "@phosphor-icons/react/TextOutdent"; +export { Tote, ToteIcon } from "@phosphor-icons/react/Tote"; +export { Vault, VaultIcon } from "@phosphor-icons/react/Vault"; +export { Warning, WarningIcon } from "@phosphor-icons/react/Warning"; +export { XCircle, XCircleIcon } from "@phosphor-icons/react/XCircle"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-16.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-16.ts new file mode 100644 index 0000000000..bf401edab7 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-16.ts @@ -0,0 +1,55 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AppWindow, AppWindowIcon } from "@phosphor-icons/react/AppWindow"; +export { ArrowFatLeft, ArrowFatLeftIcon } from "@phosphor-icons/react/ArrowFatLeft"; +export { ArrowsInCardinal, ArrowsInCardinalIcon } from "@phosphor-icons/react/ArrowsInCardinal"; +export { ArrowSquareDownLeft, ArrowSquareDownLeftIcon } from "@phosphor-icons/react/ArrowSquareDownLeft"; +export { ArrowSquareUp, ArrowSquareUpIcon } from "@phosphor-icons/react/ArrowSquareUp"; +export { ArrowULeftDown, ArrowULeftDownIcon } from "@phosphor-icons/react/ArrowULeftDown"; +export { Barricade, BarricadeIcon } from "@phosphor-icons/react/Barricade"; +export { Belt, BeltIcon } from "@phosphor-icons/react/Belt"; +export { Bridge, BridgeIcon } from "@phosphor-icons/react/Bridge"; +export { CalendarSlash, CalendarSlashIcon } from "@phosphor-icons/react/CalendarSlash"; +export { CaretDoubleUp, CaretDoubleUpIcon } from "@phosphor-icons/react/CaretDoubleUp"; +export { CaretLineRight, CaretLineRightIcon } from "@phosphor-icons/react/CaretLineRight"; +export { Certificate, CertificateIcon } from "@phosphor-icons/react/Certificate"; +export { ChatCenteredSlash, ChatCenteredSlashIcon } from "@phosphor-icons/react/ChatCenteredSlash"; +export { CheckSquare, CheckSquareIcon } from "@phosphor-icons/react/CheckSquare"; +export { Cow, CowIcon } from "@phosphor-icons/react/Cow"; +export { Cricket, CricketIcon } from "@phosphor-icons/react/Cricket"; +export { Crown, CrownIcon } from "@phosphor-icons/react/Crown"; +export { Detective, DetectiveIcon } from "@phosphor-icons/react/Detective"; +export { DeviceTabletSpeaker, DeviceTabletSpeakerIcon } from "@phosphor-icons/react/DeviceTabletSpeaker"; +export { DiscordLogo, DiscordLogoIcon } from "@phosphor-icons/react/DiscordLogo"; +export { Divide, DivideIcon } from "@phosphor-icons/react/Divide"; +export { Dress, DressIcon } from "@phosphor-icons/react/Dress"; +export { FastForwardCircle, FastForwardCircleIcon } from "@phosphor-icons/react/FastForwardCircle"; +export { FileJsx, FileJsxIcon } from "@phosphor-icons/react/FileJsx"; +export { FilePy, FilePyIcon } from "@phosphor-icons/react/FilePy"; +export { FileRs, FileRsIcon } from "@phosphor-icons/react/FileRs"; +export { Files, FilesIcon } from "@phosphor-icons/react/Files"; +export { Flask, FlaskIcon } from "@phosphor-icons/react/Flask"; +export { FolderSimpleLock, FolderSimpleLockIcon } from "@phosphor-icons/react/FolderSimpleLock"; +export { Gauge, GaugeIcon } from "@phosphor-icons/react/Gauge"; +export { Ghost, GhostIcon } from "@phosphor-icons/react/Ghost"; +export { GlobeSimple, GlobeSimpleIcon } from "@phosphor-icons/react/GlobeSimple"; +export { HandPalm, HandPalmIcon } from "@phosphor-icons/react/HandPalm"; +export { HighlighterCircle, HighlighterCircleIcon } from "@phosphor-icons/react/HighlighterCircle"; +export { Invoice, InvoiceIcon } from "@phosphor-icons/react/Invoice"; +export { Lectern, LecternIcon } from "@phosphor-icons/react/Lectern"; +export { ListChecks, ListChecksIcon } from "@phosphor-icons/react/ListChecks"; +export { LockSimple, LockSimpleIcon } from "@phosphor-icons/react/LockSimple"; +export { NumberFive, NumberFiveIcon } from "@phosphor-icons/react/NumberFive"; +export { NumberNine, NumberNineIcon } from "@phosphor-icons/react/NumberNine"; +export { Pen, PenIcon } from "@phosphor-icons/react/Pen"; +export { PictureInPicture, PictureInPictureIcon } from "@phosphor-icons/react/PictureInPicture"; +export { RadioButton, RadioButtonIcon } from "@phosphor-icons/react/RadioButton"; +export { SelectionForeground, SelectionForegroundIcon } from "@phosphor-icons/react/SelectionForeground"; +export { Shield, ShieldIcon } from "@phosphor-icons/react/Shield"; +export { ShieldPlus, ShieldPlusIcon } from "@phosphor-icons/react/ShieldPlus"; +export { ShieldStar, ShieldStarIcon } from "@phosphor-icons/react/ShieldStar"; +export { ToggleLeft, ToggleLeftIcon } from "@phosphor-icons/react/ToggleLeft"; +export { WaveTriangle, WaveTriangleIcon } from "@phosphor-icons/react/WaveTriangle"; +export { WebhooksLogo, WebhooksLogoIcon } from "@phosphor-icons/react/WebhooksLogo"; +export { WifiX, WifiXIcon } from "@phosphor-icons/react/WifiX"; +export { XSquare, XSquareIcon } from "@phosphor-icons/react/XSquare"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-17.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-17.ts new file mode 100644 index 0000000000..24e1de0ea8 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-17.ts @@ -0,0 +1,58 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ArrowBendLeftUp, ArrowBendLeftUpIcon } from "@phosphor-icons/react/ArrowBendLeftUp"; +export { ArrowLineUp, ArrowLineUpIcon } from "@phosphor-icons/react/ArrowLineUp"; +export { ArrowSquareUpLeft, ArrowSquareUpLeftIcon } from "@phosphor-icons/react/ArrowSquareUpLeft"; +export { ArrowsVertical, ArrowsVerticalIcon } from "@phosphor-icons/react/ArrowsVertical"; +export { Bag, BagIcon } from "@phosphor-icons/react/Bag"; +export { Biohazard, BiohazardIcon } from "@phosphor-icons/react/Biohazard"; +export { Bomb, BombIcon } from "@phosphor-icons/react/Bomb"; +export { Books, BooksIcon } from "@phosphor-icons/react/Books"; +export { CalendarCheck, CalendarCheckIcon } from "@phosphor-icons/react/CalendarCheck"; +export { Cardholder, CardholderIcon } from "@phosphor-icons/react/Cardholder"; +export { CaretCircleDoubleDown, CaretCircleDoubleDownIcon } from "@phosphor-icons/react/CaretCircleDoubleDown"; +export { CaretCircleUp, CaretCircleUpIcon } from "@phosphor-icons/react/CaretCircleUp"; +export { ChartLineDown, ChartLineDownIcon } from "@phosphor-icons/react/ChartLineDown"; +export { Circuitry, CircuitryIcon } from "@phosphor-icons/react/Circuitry"; +export { Clipboard, ClipboardIcon } from "@phosphor-icons/react/Clipboard"; +export { CloudSnow, CloudSnowIcon } from "@phosphor-icons/react/CloudSnow"; +export { CrosshairSimple, CrosshairSimpleIcon } from "@phosphor-icons/react/CrosshairSimple"; +export { CurrencyInr, CurrencyInrIcon } from "@phosphor-icons/react/CurrencyInr"; +export { CursorClick, CursorClickIcon } from "@phosphor-icons/react/CursorClick"; +export { Drone, DroneIcon } from "@phosphor-icons/react/Drone"; +export { FileVue, FileVueIcon } from "@phosphor-icons/react/FileVue"; +export { FishSimple, FishSimpleIcon } from "@phosphor-icons/react/FishSimple"; +export { FlagBanner, FlagBannerIcon } from "@phosphor-icons/react/FlagBanner"; +export { FloppyDiskBack, FloppyDiskBackIcon } from "@phosphor-icons/react/FloppyDiskBack"; +export { Hash, HashIcon } from "@phosphor-icons/react/Hash"; +export { HeartStraight, HeartStraightIcon } from "@phosphor-icons/react/HeartStraight"; +export { Hoodie, HoodieIcon } from "@phosphor-icons/react/Hoodie"; +export { HouseLine, HouseLineIcon } from "@phosphor-icons/react/HouseLine"; +export { LineSegments, LineSegmentsIcon } from "@phosphor-icons/react/LineSegments"; +export { ListPlus, ListPlusIcon } from "@phosphor-icons/react/ListPlus"; +export { Log, LogIcon } from "@phosphor-icons/react/Log"; +export { MicrophoneStage, MicrophoneStageIcon } from "@phosphor-icons/react/MicrophoneStage"; +export { Microscope, MicroscopeIcon } from "@phosphor-icons/react/Microscope"; +export { MicrosoftPowerpointLogo, MicrosoftPowerpointLogoIcon } from "@phosphor-icons/react/MicrosoftPowerpointLogo"; +export { PaintBrush, PaintBrushIcon } from "@phosphor-icons/react/PaintBrush"; +export { PauseCircle, PauseCircleIcon } from "@phosphor-icons/react/PauseCircle"; +export { PenNib, PenNibIcon } from "@phosphor-icons/react/PenNib"; +export { PhoneOutgoing, PhoneOutgoingIcon } from "@phosphor-icons/react/PhoneOutgoing"; +export { PhosphorLogo, PhosphorLogoIcon } from "@phosphor-icons/react/PhosphorLogo"; +export { Ranking, RankingIcon } from "@phosphor-icons/react/Ranking"; +export { SealPercent, SealPercentIcon } from "@phosphor-icons/react/SealPercent"; +export { ShirtFolded, ShirtFoldedIcon } from "@phosphor-icons/react/ShirtFolded"; +export { SlidersHorizontal, SlidersHorizontalIcon } from "@phosphor-icons/react/SlidersHorizontal"; +export { Star, StarIcon } from "@phosphor-icons/react/Star"; +export { SteeringWheel, SteeringWheelIcon } from "@phosphor-icons/react/SteeringWheel"; +export { Synagogue, SynagogueIcon } from "@phosphor-icons/react/Synagogue"; +export { Television, TelevisionIcon } from "@phosphor-icons/react/Television"; +export { Terminal, TerminalIcon } from "@phosphor-icons/react/Terminal"; +export { TerminalWindow, TerminalWindowIcon } from "@phosphor-icons/react/TerminalWindow"; +export { TextAlignJustify, TextAlignJustifyIcon } from "@phosphor-icons/react/TextAlignJustify"; +export { ThermometerCold, ThermometerColdIcon } from "@phosphor-icons/react/ThermometerCold"; +export { Tram, TramIcon } from "@phosphor-icons/react/Tram"; +export { TreasureChest, TreasureChestIcon } from "@phosphor-icons/react/TreasureChest"; +export { UsersThree, UsersThreeIcon } from "@phosphor-icons/react/UsersThree"; +export { WebcamSlash, WebcamSlashIcon } from "@phosphor-icons/react/WebcamSlash"; +export { WifiSlash, WifiSlashIcon } from "@phosphor-icons/react/WifiSlash"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-18.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-18.ts new file mode 100644 index 0000000000..6caceccc4f --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-18.ts @@ -0,0 +1,57 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AmazonLogo, AmazonLogoIcon } from "@phosphor-icons/react/AmazonLogo"; +export { ArrowFatLineUp, ArrowFatLineUpIcon } from "@phosphor-icons/react/ArrowFatLineUp"; +export { ArrowSquareUpRight, ArrowSquareUpRightIcon } from "@phosphor-icons/react/ArrowSquareUpRight"; +export { Asclepius, AsclepiusIcon, CaduceusIcon } from "@phosphor-icons/react/Asclepius"; +export { BatteryPlus, BatteryPlusIcon } from "@phosphor-icons/react/BatteryPlus"; +export { BellSimple, BellSimpleIcon } from "@phosphor-icons/react/BellSimple"; +export { Bird, BirdIcon } from "@phosphor-icons/react/Bird"; +export { BluetoothSlash, BluetoothSlashIcon } from "@phosphor-icons/react/BluetoothSlash"; +export { Buildings, BuildingsIcon } from "@phosphor-icons/react/Buildings"; +export { CameraPlus, CameraPlusIcon } from "@phosphor-icons/react/CameraPlus"; +export { CarProfile, CarProfileIcon } from "@phosphor-icons/react/CarProfile"; +export { Carrot, CarrotIcon } from "@phosphor-icons/react/Carrot"; +export { CellTower, CellTowerIcon } from "@phosphor-icons/react/CellTower"; +export { ChalkboardSimple, ChalkboardSimpleIcon } from "@phosphor-icons/react/ChalkboardSimple"; +export { ChatTeardrop, ChatTeardropIcon } from "@phosphor-icons/react/ChatTeardrop"; +export { ChefHat, ChefHatIcon } from "@phosphor-icons/react/ChefHat"; +export { CirclesThreePlus, CirclesThreePlusIcon } from "@phosphor-icons/react/CirclesThreePlus"; +export { CloudWarning, CloudWarningIcon } from "@phosphor-icons/react/CloudWarning"; +export { CloudX, CloudXIcon } from "@phosphor-icons/react/CloudX"; +export { Command, CommandIcon } from "@phosphor-icons/react/Command"; +export { CurrencyEur, CurrencyEurIcon } from "@phosphor-icons/react/CurrencyEur"; +export { Dna, DnaIcon } from "@phosphor-icons/react/Dna"; +export { Exam, ExamIcon } from "@phosphor-icons/react/Exam"; +export { Fan, FanIcon } from "@phosphor-icons/react/Fan"; +export { FileJpg, FileJpgIcon } from "@phosphor-icons/react/FileJpg"; +export { FileTs, FileTsIcon } from "@phosphor-icons/react/FileTs"; +export { FileZip, FileZipIcon } from "@phosphor-icons/react/FileZip"; +export { FireExtinguisher, FireExtinguisherIcon } from "@phosphor-icons/react/FireExtinguisher"; +export { FloppyDisk, FloppyDiskIcon } from "@phosphor-icons/react/FloppyDisk"; +export { GoodreadsLogo, GoodreadsLogoIcon } from "@phosphor-icons/react/GoodreadsLogo"; +export { HandWaving, HandWavingIcon } from "@phosphor-icons/react/HandWaving"; +export { Jar, JarIcon } from "@phosphor-icons/react/Jar"; +export { KeyReturn, KeyReturnIcon } from "@phosphor-icons/react/KeyReturn"; +export { Lockers, LockersIcon } from "@phosphor-icons/react/Lockers"; +export { Notepad, NotepadIcon } from "@phosphor-icons/react/Notepad"; +export { NotSupersetOf, NotSupersetOfIcon } from "@phosphor-icons/react/NotSupersetOf"; +export { Onigiri, OnigiriIcon } from "@phosphor-icons/react/Onigiri"; +export { Panorama, PanoramaIcon } from "@phosphor-icons/react/Panorama"; +export { Pi, PiIcon } from "@phosphor-icons/react/Pi"; +export { Plant, PlantIcon } from "@phosphor-icons/react/Plant"; +export { Screencast, ScreencastIcon } from "@phosphor-icons/react/Screencast"; +export { Spade, SpadeIcon } from "@phosphor-icons/react/Spade"; +export { SpinnerGap, SpinnerGapIcon } from "@phosphor-icons/react/SpinnerGap"; +export { SquareSplitHorizontal, SquareSplitHorizontalIcon } from "@phosphor-icons/react/SquareSplitHorizontal"; +export { SubtractSquare, SubtractSquareIcon } from "@phosphor-icons/react/SubtractSquare"; +export { TextAlignCenter, TextAlignCenterIcon } from "@phosphor-icons/react/TextAlignCenter"; +export { TextHSix, TextHSixIcon } from "@phosphor-icons/react/TextHSix"; +export { TextItalic, TextItalicIcon } from "@phosphor-icons/react/TextItalic"; +export { TextUnderline, TextUnderlineIcon } from "@phosphor-icons/react/TextUnderline"; +export { User, UserIcon } from "@phosphor-icons/react/User"; +export { UserCheck, UserCheckIcon } from "@phosphor-icons/react/UserCheck"; +export { VideoConference, VideoConferenceIcon } from "@phosphor-icons/react/VideoConference"; +export { Voicemail, VoicemailIcon } from "@phosphor-icons/react/Voicemail"; +export { Waveform, WaveformIcon } from "@phosphor-icons/react/Waveform"; +export { YinYang, YinYangIcon } from "@phosphor-icons/react/YinYang"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-19.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-19.ts new file mode 100644 index 0000000000..f9c2e271dc --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-19.ts @@ -0,0 +1,54 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AndroidLogo, AndroidLogoIcon } from "@phosphor-icons/react/AndroidLogo"; +export { ArrowCircleDownLeft, ArrowCircleDownLeftIcon } from "@phosphor-icons/react/ArrowCircleDownLeft"; +export { ArrowFatLineDown, ArrowFatLineDownIcon } from "@phosphor-icons/react/ArrowFatLineDown"; +export { ArrowsOutLineHorizontal, ArrowsOutLineHorizontalIcon } from "@phosphor-icons/react/ArrowsOutLineHorizontal"; +export { BagSimple, BagSimpleIcon } from "@phosphor-icons/react/BagSimple"; +export { Basket, BasketIcon } from "@phosphor-icons/react/Basket"; +export { BowlSteam, BowlSteamIcon } from "@phosphor-icons/react/BowlSteam"; +export { BracketsAngle, BracketsAngleIcon } from "@phosphor-icons/react/BracketsAngle"; +export { Brain, BrainIcon } from "@phosphor-icons/react/Brain"; +export { CellSignalX, CellSignalXIcon } from "@phosphor-icons/react/CellSignalX"; +export { ChatCircle, ChatCircleIcon } from "@phosphor-icons/react/ChatCircle"; +export { CheckSquareOffset, CheckSquareOffsetIcon } from "@phosphor-icons/react/CheckSquareOffset"; +export { CloudSlash, CloudSlashIcon } from "@phosphor-icons/react/CloudSlash"; +export { CoffeeBean, CoffeeBeanIcon } from "@phosphor-icons/react/CoffeeBean"; +export { CornersOut, CornersOutIcon } from "@phosphor-icons/react/CornersOut"; +export { CraneTower, CraneTowerIcon } from "@phosphor-icons/react/CraneTower"; +export { Desktop, DesktopIcon } from "@phosphor-icons/react/Desktop"; +export { DeviceTablet, DeviceTabletIcon } from "@phosphor-icons/react/DeviceTablet"; +export { DotsThreeOutline, DotsThreeOutlineIcon } from "@phosphor-icons/react/DotsThreeOutline"; +export { Ear, EarIcon } from "@phosphor-icons/react/Ear"; +export { EnvelopeSimpleOpen, EnvelopeSimpleOpenIcon } from "@phosphor-icons/react/EnvelopeSimpleOpen"; +export { Export, ExportIcon } from "@phosphor-icons/react/Export"; +export { FilmStrip, FilmStripIcon } from "@phosphor-icons/react/FilmStrip"; +export { Flashlight, FlashlightIcon } from "@phosphor-icons/react/Flashlight"; +export { FunnelX, FunnelXIcon } from "@phosphor-icons/react/FunnelX"; +export { GenderNeuter, GenderNeuterIcon } from "@phosphor-icons/react/GenderNeuter"; +export { Hospital, HospitalIcon } from "@phosphor-icons/react/Hospital"; +export { LinkSimpleHorizontal, LinkSimpleHorizontalIcon } from "@phosphor-icons/react/LinkSimpleHorizontal"; +export { MarkdownLogo, MarkdownLogoIcon } from "@phosphor-icons/react/MarkdownLogo"; +export { MatrixLogo, MatrixLogoIcon } from "@phosphor-icons/react/MatrixLogo"; +export { Mosque, MosqueIcon } from "@phosphor-icons/react/Mosque"; +export { NumberEight, NumberEightIcon } from "@phosphor-icons/react/NumberEight"; +export { PhonePlus, PhonePlusIcon } from "@phosphor-icons/react/PhonePlus"; +export { Planet, PlanetIcon } from "@phosphor-icons/react/Planet"; +export { ReadCvLogo, ReadCvLogoIcon } from "@phosphor-icons/react/ReadCvLogo"; +export { Rss, RssIcon } from "@phosphor-icons/react/Rss"; +export { Ruler, RulerIcon } from "@phosphor-icons/react/Ruler"; +export { SelectionInverse, SelectionInverseIcon } from "@phosphor-icons/react/SelectionInverse"; +export { SquareHalf, SquareHalfIcon } from "@phosphor-icons/react/SquareHalf"; +export { SubtitlesSlash, SubtitlesSlashIcon } from "@phosphor-icons/react/SubtitlesSlash"; +export { Tag, TagIcon } from "@phosphor-icons/react/Tag"; +export { TelevisionSimple, TelevisionSimpleIcon } from "@phosphor-icons/react/TelevisionSimple"; +export { TennisBall, TennisBallIcon } from "@phosphor-icons/react/TennisBall"; +export { TextTSlash, TextTSlashIcon } from "@phosphor-icons/react/TextTSlash"; +export { TipJar, TipJarIcon } from "@phosphor-icons/react/TipJar"; +export { Tire, TireIcon } from "@phosphor-icons/react/Tire"; +export { TrafficSign, TrafficSignIcon } from "@phosphor-icons/react/TrafficSign"; +export { TruckTrailer, TruckTrailerIcon } from "@phosphor-icons/react/TruckTrailer"; +export { UserRectangle, UserRectangleIcon } from "@phosphor-icons/react/UserRectangle"; +export { Users, UsersIcon } from "@phosphor-icons/react/Users"; +export { Vignette, VignetteIcon } from "@phosphor-icons/react/Vignette"; +export { WaveSquare, WaveSquareIcon } from "@phosphor-icons/react/WaveSquare"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-20.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-20.ts new file mode 100644 index 0000000000..022611c383 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-20.ts @@ -0,0 +1,53 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AlignRight, AlignRightIcon } from "@phosphor-icons/react/AlignRight"; +export { Anchor, AnchorIcon } from "@phosphor-icons/react/Anchor"; +export { ArrowElbowLeftDown, ArrowElbowLeftDownIcon } from "@phosphor-icons/react/ArrowElbowLeftDown"; +export { ArrowsIn, ArrowsInIcon } from "@phosphor-icons/react/ArrowsIn"; +export { ArrowUDownLeft, ArrowUDownLeftIcon } from "@phosphor-icons/react/ArrowUDownLeft"; +export { ArrowURightUp, ArrowURightUpIcon } from "@phosphor-icons/react/ArrowURightUp"; +export { BatteryLow, BatteryLowIcon } from "@phosphor-icons/react/BatteryLow"; +export { BehanceLogo, BehanceLogoIcon } from "@phosphor-icons/react/BehanceLogo"; +export { Broadcast, BroadcastIcon } from "@phosphor-icons/react/Broadcast"; +export { Browsers, BrowsersIcon } from "@phosphor-icons/react/Browsers"; +export { CallBell, CallBellIcon } from "@phosphor-icons/react/CallBell"; +export { CaretDown, CaretDownIcon } from "@phosphor-icons/react/CaretDown"; +export { ChatCircleText, ChatCircleTextIcon } from "@phosphor-icons/react/ChatCircleText"; +export { CigaretteSlash, CigaretteSlashIcon } from "@phosphor-icons/react/CigaretteSlash"; +export { CloudLightning, CloudLightningIcon } from "@phosphor-icons/react/CloudLightning"; +export { Code, CodeIcon } from "@phosphor-icons/react/Code"; +export { CodesandboxLogo, CodesandboxLogoIcon } from "@phosphor-icons/react/CodesandboxLogo"; +export { CurrencyDollar, CurrencyDollarIcon } from "@phosphor-icons/react/CurrencyDollar"; +export { DeviceTabletCamera, DeviceTabletCameraIcon } from "@phosphor-icons/react/DeviceTabletCamera"; +export { Equals, EqualsIcon } from "@phosphor-icons/react/Equals"; +export { FileCSharp, FileCSharpIcon } from "@phosphor-icons/react/FileCSharp"; +export { FinnTheHuman, FinnTheHumanIcon } from "@phosphor-icons/react/FinnTheHuman"; +export { FolderSimpleUser, FolderSimpleUserIcon } from "@phosphor-icons/react/FolderSimpleUser"; +export { FrameCorners, FrameCornersIcon } from "@phosphor-icons/react/FrameCorners"; +export { GpsSlash, GpsSlashIcon } from "@phosphor-icons/react/GpsSlash"; +export { HeartStraightBreak, HeartStraightBreakIcon } from "@phosphor-icons/react/HeartStraightBreak"; +export { ImagesSquare, ImagesSquareIcon } from "@phosphor-icons/react/ImagesSquare"; +export { Keyboard, KeyboardIcon } from "@phosphor-icons/react/Keyboard"; +export { Lightbulb, LightbulbIcon } from "@phosphor-icons/react/Lightbulb"; +export { MagnifyingGlass, MagnifyingGlassIcon } from "@phosphor-icons/react/MagnifyingGlass"; +export { MagnifyingGlassPlus, MagnifyingGlassPlusIcon } from "@phosphor-icons/react/MagnifyingGlassPlus"; +export { Option, OptionIcon } from "@phosphor-icons/react/Option"; +export { PhoneTransfer, PhoneTransferIcon } from "@phosphor-icons/react/PhoneTransfer"; +export { Radio, RadioIcon } from "@phosphor-icons/react/Radio"; +export { SelectionAll, SelectionAllIcon } from "@phosphor-icons/react/SelectionAll"; +export { ShuffleSimple, ShuffleSimpleIcon } from "@phosphor-icons/react/ShuffleSimple"; +export { Sigma, SigmaIcon } from "@phosphor-icons/react/Sigma"; +export { SnapchatLogo, SnapchatLogoIcon } from "@phosphor-icons/react/SnapchatLogo"; +export { SquareSplitVertical, SquareSplitVerticalIcon } from "@phosphor-icons/react/SquareSplitVertical"; +export { SteamLogo, SteamLogoIcon } from "@phosphor-icons/react/SteamLogo"; +export { Steps, StepsIcon } from "@phosphor-icons/react/Steps"; +export { Subway, SubwayIcon } from "@phosphor-icons/react/Subway"; +export { SunHorizon, SunHorizonIcon } from "@phosphor-icons/react/SunHorizon"; +export { TextB, TextBIcon, TextBolderIcon } from "@phosphor-icons/react/TextB"; +export { TiktokLogo, TiktokLogoIcon } from "@phosphor-icons/react/TiktokLogo"; +export { TrainRegional, TrainRegionalIcon } from "@phosphor-icons/react/TrainRegional"; +export { TumblrLogo, TumblrLogoIcon } from "@phosphor-icons/react/TumblrLogo"; +export { Union, UnionIcon } from "@phosphor-icons/react/Union"; +export { VirtualReality, VirtualRealityIcon } from "@phosphor-icons/react/VirtualReality"; +export { Wine, WineIcon } from "@phosphor-icons/react/Wine"; +export { Wrench, WrenchIcon } from "@phosphor-icons/react/Wrench"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-21.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-21.ts new file mode 100644 index 0000000000..c714801aa2 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-21.ts @@ -0,0 +1,51 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AlignCenterVertical, AlignCenterVerticalIcon } from "@phosphor-icons/react/AlignCenterVertical"; +export { ArrowElbowLeftUp, ArrowElbowLeftUpIcon } from "@phosphor-icons/react/ArrowElbowLeftUp"; +export { ArrowFatDown, ArrowFatDownIcon } from "@phosphor-icons/react/ArrowFatDown"; +export { ArrowSquareRight, ArrowSquareRightIcon } from "@phosphor-icons/react/ArrowSquareRight"; +export { BatteryVerticalEmpty, BatteryVerticalEmptyIcon } from "@phosphor-icons/react/BatteryVerticalEmpty"; +export { Boot, BootIcon } from "@phosphor-icons/react/Boot"; +export { Bug, BugIcon } from "@phosphor-icons/react/Bug"; +export { Building, BuildingIcon } from "@phosphor-icons/react/Building"; +export { CalendarHeart, CalendarHeartIcon } from "@phosphor-icons/react/CalendarHeart"; +export { CalendarMinus, CalendarMinusIcon } from "@phosphor-icons/react/CalendarMinus"; +export { CaretDoubleRight, CaretDoubleRightIcon } from "@phosphor-icons/react/CaretDoubleRight"; +export { CaretUp, CaretUpIcon } from "@phosphor-icons/react/CaretUp"; +export { CellSignalLow, CellSignalLowIcon } from "@phosphor-icons/react/CellSignalLow"; +export { DoorOpen, DoorOpenIcon } from "@phosphor-icons/react/DoorOpen"; +export { DotsThreeOutlineVertical, DotsThreeOutlineVerticalIcon } from "@phosphor-icons/react/DotsThreeOutlineVertical"; +export { DropSlash, DropSlashIcon } from "@phosphor-icons/react/DropSlash"; +export { Envelope, EnvelopeIcon } from "@phosphor-icons/react/Envelope"; +export { FlyingSaucer, FlyingSaucerIcon } from "@phosphor-icons/react/FlyingSaucer"; +export { GithubLogo, GithubLogoIcon } from "@phosphor-icons/react/GithubLogo"; +export { HairDryer, HairDryerIcon } from "@phosphor-icons/react/HairDryer"; +export { HandEye, HandEyeIcon } from "@phosphor-icons/react/HandEye"; +export { HandTap, HandTapIcon } from "@phosphor-icons/react/HandTap"; +export { HardDrives, HardDrivesIcon } from "@phosphor-icons/react/HardDrives"; +export { IntersectSquare, IntersectSquareIcon } from "@phosphor-icons/react/IntersectSquare"; +export { Leaf, LeafIcon } from "@phosphor-icons/react/Leaf"; +export { LetterCircleV, LetterCircleVIcon } from "@phosphor-icons/react/LetterCircleV"; +export { ListStar, ListStarIcon } from "@phosphor-icons/react/ListStar"; +export { LockKeyOpen, LockKeyOpenIcon } from "@phosphor-icons/react/LockKeyOpen"; +export { MagnetStraight, MagnetStraightIcon } from "@phosphor-icons/react/MagnetStraight"; +export { NotMemberOf, NotMemberOfIcon } from "@phosphor-icons/react/NotMemberOf"; +export { Perspective, PerspectiveIcon } from "@phosphor-icons/react/Perspective"; +export { PhoneDisconnect, PhoneDisconnectIcon } from "@phosphor-icons/react/PhoneDisconnect"; +export { PhoneX, PhoneXIcon } from "@phosphor-icons/react/PhoneX"; +export { Plus, PlusIcon } from "@phosphor-icons/react/Plus"; +export { Rocket, RocketIcon } from "@phosphor-icons/react/Rocket"; +export { Selection, SelectionIcon } from "@phosphor-icons/react/Selection"; +export { Sock, SockIcon } from "@phosphor-icons/react/Sock"; +export { Sparkle, SparkleIcon } from "@phosphor-icons/react/Sparkle"; +export { StackMinus, StackMinusIcon } from "@phosphor-icons/react/StackMinus"; +export { Swatches, SwatchesIcon } from "@phosphor-icons/react/Swatches"; +export { TeaBag, TeaBagIcon } from "@phosphor-icons/react/TeaBag"; +export { TextStrikethrough, TextStrikethroughIcon } from "@phosphor-icons/react/TextStrikethrough"; +export { Tooth, ToothIcon } from "@phosphor-icons/react/Tooth"; +export { ToteSimple, ToteSimpleIcon } from "@phosphor-icons/react/ToteSimple"; +export { Translate, TranslateIcon } from "@phosphor-icons/react/Translate"; +export { Tree, TreeIcon } from "@phosphor-icons/react/Tree"; +export { UniteSquare, UniteSquareIcon } from "@phosphor-icons/react/UniteSquare"; +export { Wall, WallIcon } from "@phosphor-icons/react/Wall"; +export { Windmill, WindmillIcon } from "@phosphor-icons/react/Windmill"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-22.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-22.ts new file mode 100644 index 0000000000..3f1eb54056 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-22.ts @@ -0,0 +1,50 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AlignRightSimple, AlignRightSimpleIcon } from "@phosphor-icons/react/AlignRightSimple"; +export { AnchorSimple, AnchorSimpleIcon } from "@phosphor-icons/react/AnchorSimple"; +export { ArrowCircleDown, ArrowCircleDownIcon } from "@phosphor-icons/react/ArrowCircleDown"; +export { ArrowLineRight, ArrowLineRightIcon } from "@phosphor-icons/react/ArrowLineRight"; +export { ArrowsInSimple, ArrowsInSimpleIcon } from "@phosphor-icons/react/ArrowsInSimple"; +export { ArrowUUpRight, ArrowUUpRightIcon } from "@phosphor-icons/react/ArrowUUpRight"; +export { Basketball, BasketballIcon } from "@phosphor-icons/react/Basketball"; +export { BatteryVerticalLow, BatteryVerticalLowIcon } from "@phosphor-icons/react/BatteryVerticalLow"; +export { BriefcaseMetal, BriefcaseMetalIcon } from "@phosphor-icons/react/BriefcaseMetal"; +export { BugBeetle, BugBeetleIcon } from "@phosphor-icons/react/BugBeetle"; +export { CaretCircleRight, CaretCircleRightIcon } from "@phosphor-icons/react/CaretCircleRight"; +export { ChalkboardTeacher, ChalkboardTeacherIcon } from "@phosphor-icons/react/ChalkboardTeacher"; +export { CirclesFour, CirclesFourIcon } from "@phosphor-icons/react/CirclesFour"; +export { CloudArrowUp, CloudArrowUpIcon } from "@phosphor-icons/react/CloudArrowUp"; +export { CodeSimple, CodeSimpleIcon } from "@phosphor-icons/react/CodeSimple"; +export { ColumnsPlusRight, ColumnsPlusRightIcon } from "@phosphor-icons/react/ColumnsPlusRight"; +export { CurrencyDollarSimple, CurrencyDollarSimpleIcon } from "@phosphor-icons/react/CurrencyDollarSimple"; +export { DiceFive, DiceFiveIcon } from "@phosphor-icons/react/DiceFive"; +export { DiceThree, DiceThreeIcon } from "@phosphor-icons/react/DiceThree"; +export { DotOutline, DotOutlineIcon } from "@phosphor-icons/react/DotOutline"; +export { Eject, EjectIcon } from "@phosphor-icons/react/Eject"; +export { Eyeglasses, EyeglassesIcon } from "@phosphor-icons/react/Eyeglasses"; +export { FlowArrow, FlowArrowIcon } from "@phosphor-icons/react/FlowArrow"; +export { GearFine, GearFineIcon } from "@phosphor-icons/react/GearFine"; +export { GearSix, GearSixIcon } from "@phosphor-icons/react/GearSix"; +export { GlobeStand, GlobeStandIcon } from "@phosphor-icons/react/GlobeStand"; +export { HeartBreak, HeartBreakIcon } from "@phosphor-icons/react/HeartBreak"; +export { HeartHalf, HeartHalfIcon } from "@phosphor-icons/react/HeartHalf"; +export { LessThanOrEqual, LessThanOrEqualIcon } from "@phosphor-icons/react/LessThanOrEqual"; +export { LightbulbFilament, LightbulbFilamentIcon } from "@phosphor-icons/react/LightbulbFilament"; +export { LinktreeLogo, LinktreeLogoIcon } from "@phosphor-icons/react/LinktreeLogo"; +export { Path, PathIcon } from "@phosphor-icons/react/Path"; +export { PencilLine, PencilLineIcon } from "@phosphor-icons/react/PencilLine"; +export { PlusSquare, PlusSquareIcon } from "@phosphor-icons/react/PlusSquare"; +export { PottedPlant, PottedPlantIcon } from "@phosphor-icons/react/PottedPlant"; +export { Radioactive, RadioactiveIcon } from "@phosphor-icons/react/Radioactive"; +export { RewindCircle, RewindCircleIcon } from "@phosphor-icons/react/RewindCircle"; +export { RocketLaunch, RocketLaunchIcon } from "@phosphor-icons/react/RocketLaunch"; +export { Scissors, ScissorsIcon } from "@phosphor-icons/react/Scissors"; +export { Shovel, ShovelIcon } from "@phosphor-icons/react/Shovel"; +export { SubsetOf, SubsetOfIcon } from "@phosphor-icons/react/SubsetOf"; +export { SwimmingPool, SwimmingPoolIcon } from "@phosphor-icons/react/SwimmingPool"; +export { Sword, SwordIcon } from "@phosphor-icons/react/Sword"; +export { Syringe, SyringeIcon } from "@phosphor-icons/react/Syringe"; +export { TextAlignLeft, TextAlignLeftIcon } from "@phosphor-icons/react/TextAlignLeft"; +export { ArchiveTrayIcon, TrayArrowDown, TrayArrowDownIcon } from "@phosphor-icons/react/TrayArrowDown"; +export { TreeStructure, TreeStructureIcon } from "@phosphor-icons/react/TreeStructure"; +export { VinylRecord, VinylRecordIcon } from "@phosphor-icons/react/VinylRecord"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-23.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-23.ts new file mode 100644 index 0000000000..5b8c15b4f0 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-23.ts @@ -0,0 +1,34 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { Bank, BankIcon } from "@phosphor-icons/react/Bank"; +export { Barbell, BarbellIcon } from "@phosphor-icons/react/Barbell"; +export { Barcode, BarcodeIcon } from "@phosphor-icons/react/Barcode"; +export { BatteryFull, BatteryFullIcon } from "@phosphor-icons/react/BatteryFull"; +export { BookOpenText, BookOpenTextIcon } from "@phosphor-icons/react/BookOpenText"; +export { ChartPieSlice, ChartPieSliceIcon } from "@phosphor-icons/react/ChartPieSlice"; +export { Crop, CropIcon } from "@phosphor-icons/react/Crop"; +export { DotsThree, DotsThreeIcon } from "@phosphor-icons/react/DotsThree"; +export { Elevator, ElevatorIcon } from "@phosphor-icons/react/Elevator"; +export { EscalatorDown, EscalatorDownIcon } from "@phosphor-icons/react/EscalatorDown"; +export { FilePlus, FilePlusIcon } from "@phosphor-icons/react/FilePlus"; +export { Flag, FlagIcon } from "@phosphor-icons/react/Flag"; +export { Goggles, GogglesIcon } from "@phosphor-icons/react/Goggles"; +export { HandSwipeLeft, HandSwipeLeftIcon } from "@phosphor-icons/react/HandSwipeLeft"; +export { Heartbeat, HeartbeatIcon } from "@phosphor-icons/react/Heartbeat"; +export { HighHeel, HighHeelIcon } from "@phosphor-icons/react/HighHeel"; +export { HourglassSimpleLow, HourglassSimpleLowIcon } from "@phosphor-icons/react/HourglassSimpleLow"; +export { LastfmLogo, LastfmLogoIcon } from "@phosphor-icons/react/LastfmLogo"; +export { ListHeart, ListHeartIcon } from "@phosphor-icons/react/ListHeart"; +export { MinusCircle, MinusCircleIcon } from "@phosphor-icons/react/MinusCircle"; +export { NotEquals, NotEqualsIcon } from "@phosphor-icons/react/NotEquals"; +export { NumberCircleEight, NumberCircleEightIcon } from "@phosphor-icons/react/NumberCircleEight"; +export { Paperclip, PaperclipIcon } from "@phosphor-icons/react/Paperclip"; +export { PaperclipHorizontal, PaperclipHorizontalIcon } from "@phosphor-icons/react/PaperclipHorizontal"; +export { PhoneList, PhoneListIcon } from "@phosphor-icons/react/PhoneList"; +export { RectangleDashed, RectangleDashedIcon } from "@phosphor-icons/react/RectangleDashed"; +export { SpeakerSlash, SpeakerSlashIcon } from "@phosphor-icons/react/SpeakerSlash"; +export { SpinnerBall, SpinnerBallIcon } from "@phosphor-icons/react/SpinnerBall"; +export { TextAUnderline, TextAUnderlineIcon } from "@phosphor-icons/react/TextAUnderline"; +export { TextSubscript, TextSubscriptIcon } from "@phosphor-icons/react/TextSubscript"; +export { WarningCircle, WarningCircleIcon } from "@phosphor-icons/react/WarningCircle"; +export { WifiMedium, WifiMediumIcon } from "@phosphor-icons/react/WifiMedium"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-24.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-24.ts new file mode 100644 index 0000000000..493fe4fad4 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-24.ts @@ -0,0 +1,66 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AirplaneTilt, AirplaneTiltIcon } from "@phosphor-icons/react/AirplaneTilt"; +export { Angle, AngleIcon } from "@phosphor-icons/react/Angle"; +export { ArrowBendLeftDown, ArrowBendLeftDownIcon } from "@phosphor-icons/react/ArrowBendLeftDown"; +export { ArrowElbowDownLeft, ArrowElbowDownLeftIcon } from "@phosphor-icons/react/ArrowElbowDownLeft"; +export { ArrowElbowRightUp, ArrowElbowRightUpIcon } from "@phosphor-icons/react/ArrowElbowRightUp"; +export { ArrowLineDown, ArrowLineDownIcon } from "@phosphor-icons/react/ArrowLineDown"; +export { Atom, AtomIcon } from "@phosphor-icons/react/Atom"; +export { BatteryPlusVertical, BatteryPlusVerticalIcon } from "@phosphor-icons/react/BatteryPlusVertical"; +export { BatteryVerticalHigh, BatteryVerticalHighIcon } from "@phosphor-icons/react/BatteryVerticalHigh"; +export { Bell, BellIcon } from "@phosphor-icons/react/Bell"; +export { BellSimpleZ, BellSimpleZIcon } from "@phosphor-icons/react/BellSimpleZ"; +export { Book, BookIcon } from "@phosphor-icons/react/Book"; +export { BracketsRound, BracketsRoundIcon } from "@phosphor-icons/react/BracketsRound"; +export { CableCar, CableCarIcon } from "@phosphor-icons/react/CableCar"; +export { Campfire, CampfireIcon } from "@phosphor-icons/react/Campfire"; +export { CaretCircleDown, CaretCircleDownIcon } from "@phosphor-icons/react/CaretCircleDown"; +export { Chalkboard, ChalkboardIcon } from "@phosphor-icons/react/Chalkboard"; +export { CircleHalf, CircleHalfIcon } from "@phosphor-icons/react/CircleHalf"; +export { CloudSun, CloudSunIcon } from "@phosphor-icons/react/CloudSun"; +export { Clover, CloverIcon } from "@phosphor-icons/react/Clover"; +export { CrownCross, CrownCrossIcon } from "@phosphor-icons/react/CrownCross"; +export { CubeFocus, CubeFocusIcon } from "@phosphor-icons/react/CubeFocus"; +export { CursorText, CursorTextIcon } from "@phosphor-icons/react/CursorText"; +export { Database, DatabaseIcon } from "@phosphor-icons/react/Database"; +export { Desk, DeskIcon } from "@phosphor-icons/react/Desk"; +export { DiscoBall, DiscoBallIcon } from "@phosphor-icons/react/DiscoBall"; +export { FileCloud, FileCloudIcon } from "@phosphor-icons/react/FileCloud"; +export { FileImage, FileImageIcon } from "@phosphor-icons/react/FileImage"; +export { Football, FootballIcon } from "@phosphor-icons/react/Football"; +export { Gavel, GavelIcon } from "@phosphor-icons/react/Gavel"; +export { GitDiff, GitDiffIcon } from "@phosphor-icons/react/GitDiff"; +export { GlobeSimpleX, GlobeSimpleXIcon } from "@phosphor-icons/react/GlobeSimpleX"; +export { GooglePhotosLogo, GooglePhotosLogoIcon } from "@phosphor-icons/react/GooglePhotosLogo"; +export { HighDefinition, HighDefinitionIcon } from "@phosphor-icons/react/HighDefinition"; +export { Hockey, HockeyIcon } from "@phosphor-icons/react/Hockey"; +export { LineSegment, LineSegmentIcon } from "@phosphor-icons/react/LineSegment"; +export { ListMagnifyingGlass, ListMagnifyingGlassIcon } from "@phosphor-icons/react/ListMagnifyingGlass"; +export { LockSimpleOpen, LockSimpleOpenIcon } from "@phosphor-icons/react/LockSimpleOpen"; +export { MinusSquare, MinusSquareIcon } from "@phosphor-icons/react/MinusSquare"; +export { NavigationArrow, NavigationArrowIcon } from "@phosphor-icons/react/NavigationArrow"; +export { NumberCircleFour, NumberCircleFourIcon } from "@phosphor-icons/react/NumberCircleFour"; +export { NumberCircleOne, NumberCircleOneIcon } from "@phosphor-icons/react/NumberCircleOne"; +export { Octagon, OctagonIcon } from "@phosphor-icons/react/Octagon"; +export { Password, PasswordIcon } from "@phosphor-icons/react/Password"; +export { PencilCircle, PencilCircleIcon } from "@phosphor-icons/react/PencilCircle"; +export { PencilRuler, PencilRulerIcon } from "@phosphor-icons/react/PencilRuler"; +export { Pentagram, PentagramIcon } from "@phosphor-icons/react/Pentagram"; +export { Queue, QueueIcon } from "@phosphor-icons/react/Queue"; +export { Rows, RowsIcon } from "@phosphor-icons/react/Rows"; +export { CircleWavyCheckIcon, SealCheck, SealCheckIcon } from "@phosphor-icons/react/SealCheck"; +export { Share, ShareIcon } from "@phosphor-icons/react/Share"; +export { ShootingStar, ShootingStarIcon } from "@phosphor-icons/react/ShootingStar"; +export { SlackLogo, SlackLogoIcon } from "@phosphor-icons/react/SlackLogo"; +export { SmileyBlank, SmileyBlankIcon } from "@phosphor-icons/react/SmileyBlank"; +export { SpeakerLow, SpeakerLowIcon } from "@phosphor-icons/react/SpeakerLow"; +export { SpeakerNone, SpeakerNoneIcon } from "@phosphor-icons/react/SpeakerNone"; +export { SpeakerSimpleX, SpeakerSimpleXIcon } from "@phosphor-icons/react/SpeakerSimpleX"; +export { Sphere, SphereIcon } from "@phosphor-icons/react/Sphere"; +export { Spiral, SpiralIcon } from "@phosphor-icons/react/Spiral"; +export { Toolbox, ToolboxIcon } from "@phosphor-icons/react/Toolbox"; +export { Towel, TowelIcon } from "@phosphor-icons/react/Towel"; +export { Tractor, TractorIcon } from "@phosphor-icons/react/Tractor"; +export { WhatsappLogo, WhatsappLogoIcon } from "@phosphor-icons/react/WhatsappLogo"; +export { XLogo, XLogoIcon } from "@phosphor-icons/react/XLogo"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-25.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-25.ts new file mode 100644 index 0000000000..558e02bd77 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-25.ts @@ -0,0 +1,58 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AlignCenterHorizontalSimple, AlignCenterHorizontalSimpleIcon } from "@phosphor-icons/react/AlignCenterHorizontalSimple"; +export { ArrowBendDoubleUpRight, ArrowBendDoubleUpRightIcon } from "@phosphor-icons/react/ArrowBendDoubleUpRight"; +export { ArrowElbowUpLeft, ArrowElbowUpLeftIcon } from "@phosphor-icons/react/ArrowElbowUpLeft"; +export { Article, ArticleIcon } from "@phosphor-icons/react/Article"; +export { BatteryCharging, BatteryChargingIcon } from "@phosphor-icons/react/BatteryCharging"; +export { BatteryVerticalFull, BatteryVerticalFullIcon } from "@phosphor-icons/react/BatteryVerticalFull"; +export { BezierCurve, BezierCurveIcon } from "@phosphor-icons/react/BezierCurve"; +export { Bookmark, BookmarkIcon } from "@phosphor-icons/react/Bookmark"; +export { Bus, BusIcon } from "@phosphor-icons/react/Bus"; +export { Cake, CakeIcon } from "@phosphor-icons/react/Cake"; +export { CaretCircleDoubleRight, CaretCircleDoubleRightIcon } from "@phosphor-icons/react/CaretCircleDoubleRight"; +export { CaretLeft, CaretLeftIcon } from "@phosphor-icons/react/CaretLeft"; +export { ChatsTeardrop, ChatsTeardropIcon } from "@phosphor-icons/react/ChatsTeardrop"; +export { ChatTeardropText, ChatTeardropTextIcon } from "@phosphor-icons/react/ChatTeardropText"; +export { CurrencyGbp, CurrencyGbpIcon } from "@phosphor-icons/react/CurrencyGbp"; +export { DotsThreeVertical, DotsThreeVerticalIcon } from "@phosphor-icons/react/DotsThreeVertical"; +export { Download, DownloadIcon } from "@phosphor-icons/react/Download"; +export { EnvelopeOpen, EnvelopeOpenIcon } from "@phosphor-icons/react/EnvelopeOpen"; +export { Farm, FarmIcon } from "@phosphor-icons/react/Farm"; +export { FileTxt, FileTxtIcon } from "@phosphor-icons/react/FileTxt"; +export { FingerprintSimple, FingerprintSimpleIcon } from "@phosphor-icons/react/FingerprintSimple"; +export { Fire, FireIcon } from "@phosphor-icons/react/Fire"; +export { Funnel, FunnelIcon } from "@phosphor-icons/react/Funnel"; +export { GitMerge, GitMergeIcon } from "@phosphor-icons/react/GitMerge"; +export { Golf, GolfIcon } from "@phosphor-icons/react/Golf"; +export { GoogleLogo, GoogleLogoIcon } from "@phosphor-icons/react/GoogleLogo"; +export { GridNine, GridNineIcon } from "@phosphor-icons/react/GridNine"; +export { HouseSimple, HouseSimpleIcon } from "@phosphor-icons/react/HouseSimple"; +export { Infinity, InfinityIcon, LemniscateIcon } from "@phosphor-icons/react/Infinity"; +export { Lasso, LassoIcon } from "@phosphor-icons/react/Lasso"; +export { Lighthouse, LighthouseIcon } from "@phosphor-icons/react/Lighthouse"; +export { MapPinArea, MapPinAreaIcon } from "@phosphor-icons/react/MapPinArea"; +export { Meteor, MeteorIcon } from "@phosphor-icons/react/Meteor"; +export { Monitor, MonitorIcon } from "@phosphor-icons/react/Monitor"; +export { NoteBlank, NoteBlankIcon } from "@phosphor-icons/react/NoteBlank"; +export { NyTimesLogo, NyTimesLogoIcon } from "@phosphor-icons/react/NyTimesLogo"; +export { PaintBucket, PaintBucketIcon } from "@phosphor-icons/react/PaintBucket"; +export { PaperPlane, PaperPlaneIcon } from "@phosphor-icons/react/PaperPlane"; +export { Paragraph, ParagraphIcon } from "@phosphor-icons/react/Paragraph"; +export { Park, ParkIcon } from "@phosphor-icons/react/Park"; +export { PaypalLogo, PaypalLogoIcon } from "@phosphor-icons/react/PaypalLogo"; +export { Pentagon, PentagonIcon } from "@phosphor-icons/react/Pentagon"; +export { Pepper, PepperIcon } from "@phosphor-icons/react/Pepper"; +export { Pipe, PipeIcon } from "@phosphor-icons/react/Pipe"; +export { Plug, PlugIcon } from "@phosphor-icons/react/Plug"; +export { PlusCircle, PlusCircleIcon } from "@phosphor-icons/react/PlusCircle"; +export { Presentation, PresentationIcon } from "@phosphor-icons/react/Presentation"; +export { Seatbelt, SeatbeltIcon } from "@phosphor-icons/react/Seatbelt"; +export { ShoppingBag, ShoppingBagIcon } from "@phosphor-icons/react/ShoppingBag"; +export { SquareLogo, SquareLogoIcon } from "@phosphor-icons/react/SquareLogo"; +export { Storefront, StorefrontIcon } from "@phosphor-icons/react/Storefront"; +export { ThreadsLogo, ThreadsLogoIcon } from "@phosphor-icons/react/ThreadsLogo"; +export { Tipi, TipiIcon } from "@phosphor-icons/react/Tipi"; +export { UserSound, UserSoundIcon } from "@phosphor-icons/react/UserSound"; +export { Volleyball, VolleyballIcon } from "@phosphor-icons/react/Volleyball"; +export { WaveSawtooth, WaveSawtoothIcon } from "@phosphor-icons/react/WaveSawtooth"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-26.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-26.ts new file mode 100644 index 0000000000..b472231fe3 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-26.ts @@ -0,0 +1,46 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AddressBookTabs, AddressBookTabsIcon } from "@phosphor-icons/react/AddressBookTabs"; +export { AirplaneInFlight, AirplaneInFlightIcon } from "@phosphor-icons/react/AirplaneInFlight"; +export { Alarm, AlarmIcon } from "@phosphor-icons/react/Alarm"; +export { Armchair, ArmchairIcon } from "@phosphor-icons/react/Armchair"; +export { ArrowCircleUpLeft, ArrowCircleUpLeftIcon } from "@phosphor-icons/react/ArrowCircleUpLeft"; +export { ArrowElbowUpRight, ArrowElbowUpRightIcon } from "@phosphor-icons/react/ArrowElbowUpRight"; +export { ArrowsInLineHorizontal, ArrowsInLineHorizontalIcon } from "@phosphor-icons/react/ArrowsInLineHorizontal"; +export { Bicycle, BicycleIcon } from "@phosphor-icons/react/Bicycle"; +export { Broom, BroomIcon } from "@phosphor-icons/react/Broom"; +export { CalendarDot, CalendarDotIcon } from "@phosphor-icons/react/CalendarDot"; +export { CaretRight, CaretRightIcon } from "@phosphor-icons/react/CaretRight"; +export { CornersIn, CornersInIcon } from "@phosphor-icons/react/CornersIn"; +export { CreditCard, CreditCardIcon } from "@phosphor-icons/react/CreditCard"; +export { CrownSimple, CrownSimpleIcon } from "@phosphor-icons/react/CrownSimple"; +export { DropboxLogo, DropboxLogoIcon } from "@phosphor-icons/react/DropboxLogo"; +export { ExcludeSquare, ExcludeSquareIcon } from "@phosphor-icons/react/ExcludeSquare"; +export { Eye, EyeIcon } from "@phosphor-icons/react/Eye"; +export { FileCode, FileCodeIcon } from "@phosphor-icons/react/FileCode"; +export { FlipHorizontal, FlipHorizontalIcon } from "@phosphor-icons/react/FlipHorizontal"; +export { HandCoins, HandCoinsIcon } from "@phosphor-icons/react/HandCoins"; +export { HandPointing, HandPointingIcon } from "@phosphor-icons/react/HandPointing"; +export { HandWithdraw, HandWithdrawIcon } from "@phosphor-icons/react/HandWithdraw"; +export { HeadCircuit, HeadCircuitIcon } from "@phosphor-icons/react/HeadCircuit"; +export { Headlights, HeadlightsIcon } from "@phosphor-icons/react/Headlights"; +export { IdentificationBadge, IdentificationBadgeIcon } from "@phosphor-icons/react/IdentificationBadge"; +export { Image, ImageIcon } from "@phosphor-icons/react/Image"; +export { Knife, KnifeIcon } from "@phosphor-icons/react/Knife"; +export { MapPinLine, MapPinLineIcon } from "@phosphor-icons/react/MapPinLine"; +export { MoneyWavy, MoneyWavyIcon } from "@phosphor-icons/react/MoneyWavy"; +export { NumberSquareEight, NumberSquareEightIcon } from "@phosphor-icons/react/NumberSquareEight"; +export { NumberTwo, NumberTwoIcon } from "@phosphor-icons/react/NumberTwo"; +export { Percent, PercentIcon } from "@phosphor-icons/react/Percent"; +export { Placeholder, PlaceholderIcon } from "@phosphor-icons/react/Placeholder"; +export { RedditLogo, RedditLogoIcon } from "@phosphor-icons/react/RedditLogo"; +export { SelectionSlash, SelectionSlashIcon } from "@phosphor-icons/react/SelectionSlash"; +export { Shrimp, ShrimpIcon } from "@phosphor-icons/react/Shrimp"; +export { SpeakerHigh, SpeakerHighIcon } from "@phosphor-icons/react/SpeakerHigh"; +export { Speedometer, SpeedometerIcon } from "@phosphor-icons/react/Speedometer"; +export { TextHOne, TextHOneIcon } from "@phosphor-icons/react/TextHOne"; +export { TextSuperscript, TextSuperscriptIcon } from "@phosphor-icons/react/TextSuperscript"; +export { ToiletPaper, ToiletPaperIcon } from "@phosphor-icons/react/ToiletPaper"; +export { UserCircleCheck, UserCircleCheckIcon } from "@phosphor-icons/react/UserCircleCheck"; +export { UserSwitch, UserSwitchIcon } from "@phosphor-icons/react/UserSwitch"; +export { WarningOctagon, WarningOctagonIcon } from "@phosphor-icons/react/WarningOctagon"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-27.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-27.ts new file mode 100644 index 0000000000..dfeb7a9dd3 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-27.ts @@ -0,0 +1,51 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AlignCenterHorizontal, AlignCenterHorizontalIcon } from "@phosphor-icons/react/AlignCenterHorizontal"; +export { AlignTopSimple, AlignTopSimpleIcon } from "@phosphor-icons/react/AlignTopSimple"; +export { ArrowCircleLeft, ArrowCircleLeftIcon } from "@phosphor-icons/react/ArrowCircleLeft"; +export { ArrowDownLeft, ArrowDownLeftIcon } from "@phosphor-icons/react/ArrowDownLeft"; +export { ArrowsClockwise, ArrowsClockwiseIcon } from "@phosphor-icons/react/ArrowsClockwise"; +export { ArrowUp, ArrowUpIcon } from "@phosphor-icons/react/ArrowUp"; +export { Axe, AxeIcon } from "@phosphor-icons/react/Axe"; +export { BatteryVerticalMedium, BatteryVerticalMediumIcon } from "@phosphor-icons/react/BatteryVerticalMedium"; +export { BeerBottle, BeerBottleIcon } from "@phosphor-icons/react/BeerBottle"; +export { Boat, BoatIcon } from "@phosphor-icons/react/Boat"; +export { Cheers, CheersIcon } from "@phosphor-icons/react/Cheers"; +export { ClosedCaptioning, ClosedCaptioningIcon } from "@phosphor-icons/react/ClosedCaptioning"; +export { Cross, CrossIcon } from "@phosphor-icons/react/Cross"; +export { CurrencyRub, CurrencyRubIcon } from "@phosphor-icons/react/CurrencyRub"; +export { Engine, EngineIcon } from "@phosphor-icons/react/Engine"; +export { FileArchive, FileArchiveIcon } from "@phosphor-icons/react/FileArchive"; +export { FileIni, FileIniIcon } from "@phosphor-icons/react/FileIni"; +export { Fingerprint, FingerprintIcon } from "@phosphor-icons/react/Fingerprint"; +export { FolderSimplePlus, FolderSimplePlusIcon } from "@phosphor-icons/react/FolderSimplePlus"; +export { GameController, GameControllerIcon } from "@phosphor-icons/react/GameController"; +export { GoogleChromeLogo, GoogleChromeLogoIcon } from "@phosphor-icons/react/GoogleChromeLogo"; +export { HandSoap, HandSoapIcon } from "@phosphor-icons/react/HandSoap"; +export { HandsPraying, HandsPrayingIcon } from "@phosphor-icons/react/HandsPraying"; +export { Hexagon, HexagonIcon } from "@phosphor-icons/react/Hexagon"; +export { House, HouseIcon } from "@phosphor-icons/react/House"; +export { ImageBroken, ImageBrokenIcon } from "@phosphor-icons/react/ImageBroken"; +export { LadderSimple, LadderSimpleIcon } from "@phosphor-icons/react/LadderSimple"; +export { Lamp, LampIcon } from "@phosphor-icons/react/Lamp"; +export { LinkSimple, LinkSimpleIcon } from "@phosphor-icons/react/LinkSimple"; +export { MaskSad, MaskSadIcon } from "@phosphor-icons/react/MaskSad"; +export { MessengerLogo, MessengerLogoIcon } from "@phosphor-icons/react/MessengerLogo"; +export { Metronome, MetronomeIcon } from "@phosphor-icons/react/Metronome"; +export { MusicNotesSimple, MusicNotesSimpleIcon } from "@phosphor-icons/react/MusicNotesSimple"; +export { NotionLogo, NotionLogoIcon } from "@phosphor-icons/react/NotionLogo"; +export { NumberSquareFour, NumberSquareFourIcon } from "@phosphor-icons/react/NumberSquareFour"; +export { Package, PackageIcon } from "@phosphor-icons/react/Package"; +export { PaintRoller, PaintRollerIcon } from "@phosphor-icons/react/PaintRoller"; +export { PersonSimpleSki, PersonSimpleSkiIcon } from "@phosphor-icons/react/PersonSimpleSki"; +export { PersonSimpleSnowboard, PersonSimpleSnowboardIcon } from "@phosphor-icons/react/PersonSimpleSnowboard"; +export { Pinwheel, PinwheelIcon } from "@phosphor-icons/react/Pinwheel"; +export { PoliceCar, PoliceCarIcon } from "@phosphor-icons/react/PoliceCar"; +export { RowsPlusBottom, RowsPlusBottomIcon } from "@phosphor-icons/react/RowsPlusBottom"; +export { SignIn, SignInIcon } from "@phosphor-icons/react/SignIn"; +export { Textbox, TextboxIcon } from "@phosphor-icons/react/Textbox"; +export { TrainSimple, TrainSimpleIcon } from "@phosphor-icons/react/TrainSimple"; +export { TwitterLogo, TwitterLogoIcon } from "@phosphor-icons/react/TwitterLogo"; +export { UserCircleDashed, UserCircleDashedIcon } from "@phosphor-icons/react/UserCircleDashed"; +export { VideoCamera, VideoCameraIcon } from "@phosphor-icons/react/VideoCamera"; +export { WheelchairMotion, WheelchairMotionIcon } from "@phosphor-icons/react/WheelchairMotion"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-28.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-28.ts new file mode 100644 index 0000000000..58b75119c1 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-28.ts @@ -0,0 +1,44 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { ArrowBendDownLeft, ArrowBendDownLeftIcon } from "@phosphor-icons/react/ArrowBendDownLeft"; +export { ArrowBendRightUp, ArrowBendRightUpIcon } from "@phosphor-icons/react/ArrowBendRightUp"; +export { ArrowCircleDownRight, ArrowCircleDownRightIcon } from "@phosphor-icons/react/ArrowCircleDownRight"; +export { ArrowLineUpLeft, ArrowLineUpLeftIcon } from "@phosphor-icons/react/ArrowLineUpLeft"; +export { Balloon, BalloonIcon } from "@phosphor-icons/react/Balloon"; +export { Barn, BarnIcon } from "@phosphor-icons/react/Barn"; +export { BeerStein, BeerSteinIcon } from "@phosphor-icons/react/BeerStein"; +export { Binary, BinaryIcon } from "@phosphor-icons/react/Binary"; +export { CardsThree, CardsThreeIcon } from "@phosphor-icons/react/CardsThree"; +export { ChatText, ChatTextIcon } from "@phosphor-icons/react/ChatText"; +export { Checks, ChecksIcon } from "@phosphor-icons/react/Checks"; +export { Columns, ColumnsIcon } from "@phosphor-icons/react/Columns"; +export { CompassRose, CompassRoseIcon } from "@phosphor-icons/react/CompassRose"; +export { EyedropperSample, EyedropperSampleIcon } from "@phosphor-icons/react/EyedropperSample"; +export { FastForward, FastForwardIcon } from "@phosphor-icons/react/FastForward"; +export { FigmaLogo, FigmaLogoIcon } from "@phosphor-icons/react/FigmaLogo"; +export { HandArrowUp, HandArrowUpIcon } from "@phosphor-icons/react/HandArrowUp"; +export { HandbagSimple, HandbagSimpleIcon } from "@phosphor-icons/react/HandbagSimple"; +export { HandHeart, HandHeartIcon } from "@phosphor-icons/react/HandHeart"; +export { Highlighter, HighlighterIcon } from "@phosphor-icons/react/Highlighter"; +export { MagnifyingGlassMinus, MagnifyingGlassMinusIcon } from "@phosphor-icons/react/MagnifyingGlassMinus"; +export { MicrosoftWordLogo, MicrosoftWordLogoIcon } from "@phosphor-icons/react/MicrosoftWordLogo"; +export { NumberCircleFive, NumberCircleFiveIcon } from "@phosphor-icons/react/NumberCircleFive"; +export { NumberCircleThree, NumberCircleThreeIcon } from "@phosphor-icons/react/NumberCircleThree"; +export { Parachute, ParachuteIcon } from "@phosphor-icons/react/Parachute"; +export { PersonArmsSpread, PersonArmsSpreadIcon } from "@phosphor-icons/react/PersonArmsSpread"; +export { PushPin, PushPinIcon } from "@phosphor-icons/react/PushPin"; +export { CircleWavyQuestionIcon, SealQuestion, SealQuestionIcon } from "@phosphor-icons/react/SealQuestion"; +export { ShieldWarning, ShieldWarningIcon } from "@phosphor-icons/react/ShieldWarning"; +export { SmileyXEyes, SmileyXEyesIcon } from "@phosphor-icons/react/SmileyXEyes"; +export { Sneaker, SneakerIcon } from "@phosphor-icons/react/Sneaker"; +export { SpeakerSimpleHigh, SpeakerSimpleHighIcon } from "@phosphor-icons/react/SpeakerSimpleHigh"; +export { SquareHalfBottom, SquareHalfBottomIcon } from "@phosphor-icons/react/SquareHalfBottom"; +export { Sticker, StickerIcon } from "@phosphor-icons/react/Sticker"; +export { SubsetProperOf, SubsetProperOfIcon } from "@phosphor-icons/react/SubsetProperOf"; +export { TextIndent, TextIndentIcon } from "@phosphor-icons/react/TextIndent"; +export { ThumbsDown, ThumbsDownIcon } from "@phosphor-icons/react/ThumbsDown"; +export { TreeEvergreen, TreeEvergreenIcon } from "@phosphor-icons/react/TreeEvergreen"; +export { TrendDown, TrendDownIcon } from "@phosphor-icons/react/TrendDown"; +export { TriangleDashed, TriangleDashedIcon } from "@phosphor-icons/react/TriangleDashed"; +export { Upload, UploadIcon } from "@phosphor-icons/react/Upload"; +export { VideoCameraSlash, VideoCameraSlashIcon } from "@phosphor-icons/react/VideoCameraSlash"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-29.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-29.ts new file mode 100644 index 0000000000..6be01b703d --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-29.ts @@ -0,0 +1,53 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { Ambulance, AmbulanceIcon } from "@phosphor-icons/react/Ambulance"; +export { ApplePodcastsLogo, ApplePodcastsLogoIcon } from "@phosphor-icons/react/ApplePodcastsLogo"; +export { ArrowElbowRight, ArrowElbowRightIcon } from "@phosphor-icons/react/ArrowElbowRight"; +export { ArrowLineLeft, ArrowLineLeftIcon } from "@phosphor-icons/react/ArrowLineLeft"; +export { ArrowsOutCardinal, ArrowsOutCardinalIcon } from "@phosphor-icons/react/ArrowsOutCardinal"; +export { ArrowsOutLineVertical, ArrowsOutLineVerticalIcon } from "@phosphor-icons/react/ArrowsOutLineVertical"; +export { ArrowUUpLeft, ArrowUUpLeftIcon } from "@phosphor-icons/react/ArrowUUpLeft"; +export { Baseball, BaseballIcon } from "@phosphor-icons/react/Baseball"; +export { Beanie, BeanieIcon } from "@phosphor-icons/react/Beanie"; +export { Bluetooth, BluetoothIcon } from "@phosphor-icons/react/Bluetooth"; +export { Brandy, BrandyIcon } from "@phosphor-icons/react/Brandy"; +export { CaretCircleLeft, CaretCircleLeftIcon } from "@phosphor-icons/react/CaretCircleLeft"; +export { CircleNotch, CircleNotchIcon } from "@phosphor-icons/react/CircleNotch"; +export { Clock, ClockIcon } from "@phosphor-icons/react/Clock"; +export { ClockClockwise, ClockClockwiseIcon } from "@phosphor-icons/react/ClockClockwise"; +export { CoatHanger, CoatHangerIcon } from "@phosphor-icons/react/CoatHanger"; +export { ColumnsPlusLeft, ColumnsPlusLeftIcon } from "@phosphor-icons/react/ColumnsPlusLeft"; +export { CurrencyEth, CurrencyEthIcon } from "@phosphor-icons/react/CurrencyEth"; +export { FilePpt, FilePptIcon } from "@phosphor-icons/react/FilePpt"; +export { FirstAid, FirstAidIcon } from "@phosphor-icons/react/FirstAid"; +export { FlagPennant, FlagPennantIcon } from "@phosphor-icons/react/FlagPennant"; +export { Folder, FolderIcon, FolderNotchIcon } from "@phosphor-icons/react/Folder"; +export { FolderNotchPlusIcon, FolderPlus, FolderPlusIcon } from "@phosphor-icons/react/FolderPlus"; +export { FolderSimpleMinus, FolderSimpleMinusIcon } from "@phosphor-icons/react/FolderSimpleMinus"; +export { FootballHelmet, FootballHelmetIcon } from "@phosphor-icons/react/FootballHelmet"; +export { GenderMale, GenderMaleIcon } from "@phosphor-icons/react/GenderMale"; +export { GitlabLogo, GitlabLogoIcon } from "@phosphor-icons/react/GitlabLogo"; +export { Hourglass, HourglassIcon } from "@phosphor-icons/react/Hourglass"; +export { Martini, MartiniIcon } from "@phosphor-icons/react/Martini"; +export { MastodonLogo, MastodonLogoIcon } from "@phosphor-icons/react/MastodonLogo"; +export { Note, NoteIcon } from "@phosphor-icons/react/Note"; +export { NumberSquareSix, NumberSquareSixIcon } from "@phosphor-icons/react/NumberSquareSix"; +export { NumberSquareThree, NumberSquareThreeIcon } from "@phosphor-icons/react/NumberSquareThree"; +export { Peace, PeaceIcon } from "@phosphor-icons/react/Peace"; +export { PencilSlash, PencilSlashIcon } from "@phosphor-icons/react/PencilSlash"; +export { PicnicTable, PicnicTableIcon } from "@phosphor-icons/react/PicnicTable"; +export { PlugsConnected, PlugsConnectedIcon } from "@phosphor-icons/react/PlugsConnected"; +export { Radical, RadicalIcon } from "@phosphor-icons/react/Radical"; +export { ShoppingCartSimple, ShoppingCartSimpleIcon } from "@phosphor-icons/react/ShoppingCartSimple"; +export { SidebarSimple, SidebarSimpleIcon } from "@phosphor-icons/react/SidebarSimple"; +export { Sliders, SlidersIcon } from "@phosphor-icons/react/Sliders"; +export { StarAndCrescent, StarAndCrescentIcon } from "@phosphor-icons/react/StarAndCrescent"; +export { SunDim, SunDimIcon } from "@phosphor-icons/react/SunDim"; +export { SupersetOf, SupersetOfIcon } from "@phosphor-icons/react/SupersetOf"; +export { ThermometerSimple, ThermometerSimpleIcon } from "@phosphor-icons/react/ThermometerSimple"; +export { ThumbsUp, ThumbsUpIcon } from "@phosphor-icons/react/ThumbsUp"; +export { TreePalm, TreePalmIcon } from "@phosphor-icons/react/TreePalm"; +export { TrendUp, TrendUpIcon } from "@phosphor-icons/react/TrendUp"; +export { TwitchLogo, TwitchLogoIcon } from "@phosphor-icons/react/TwitchLogo"; +export { WarningDiamond, WarningDiamondIcon } from "@phosphor-icons/react/WarningDiamond"; +export { WindowsLogo, WindowsLogoIcon } from "@phosphor-icons/react/WindowsLogo"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-30.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-30.ts new file mode 100644 index 0000000000..9dd4abcab3 --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-30.ts @@ -0,0 +1,39 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AirplaneLanding, AirplaneLandingIcon } from "@phosphor-icons/react/AirplaneLanding"; +export { ArrowBendUpRight, ArrowBendUpRightIcon } from "@phosphor-icons/react/ArrowBendUpRight"; +export { Avocado, AvocadoIcon } from "@phosphor-icons/react/Avocado"; +export { Bookmarks, BookmarksIcon } from "@phosphor-icons/react/Bookmarks"; +export { BowlingBall, BowlingBallIcon } from "@phosphor-icons/react/BowlingBall"; +export { ChargingStation, ChargingStationIcon } from "@phosphor-icons/react/ChargingStation"; +export { ChatTeardropDots, ChatTeardropDotsIcon } from "@phosphor-icons/react/ChatTeardropDots"; +export { Cloud, CloudIcon } from "@phosphor-icons/react/Cloud"; +export { Control, ControlIcon } from "@phosphor-icons/react/Control"; +export { CookingPot, CookingPotIcon } from "@phosphor-icons/react/CookingPot"; +export { Copyright, CopyrightIcon } from "@phosphor-icons/react/Copyright"; +export { CurrencyCny, CurrencyCnyIcon } from "@phosphor-icons/react/CurrencyCny"; +export { DiceOne, DiceOneIcon } from "@phosphor-icons/react/DiceOne"; +export { DropSimple, DropSimpleIcon } from "@phosphor-icons/react/DropSimple"; +export { FileDashed, FileDashedIcon, FileDottedIcon } from "@phosphor-icons/react/FileDashed"; +export { FileTsx, FileTsxIcon } from "@phosphor-icons/react/FileTsx"; +export { FileVideo, FileVideoIcon } from "@phosphor-icons/react/FileVideo"; +export { GenderNonbinary, GenderNonbinaryIcon } from "@phosphor-icons/react/GenderNonbinary"; +export { GreaterThan, GreaterThanIcon } from "@phosphor-icons/react/GreaterThan"; +export { HourglassMedium, HourglassMediumIcon } from "@phosphor-icons/react/HourglassMedium"; +export { IceCream, IceCreamIcon } from "@phosphor-icons/react/IceCream"; +export { Keyhole, KeyholeIcon } from "@phosphor-icons/react/Keyhole"; +export { MicrophoneSlash, MicrophoneSlashIcon } from "@phosphor-icons/react/MicrophoneSlash"; +export { Moped, MopedIcon } from "@phosphor-icons/react/Moped"; +export { NumberCircleTwo, NumberCircleTwoIcon } from "@phosphor-icons/react/NumberCircleTwo"; +export { OfficeChair, OfficeChairIcon } from "@phosphor-icons/react/OfficeChair"; +export { PawPrint, PawPrintIcon } from "@phosphor-icons/react/PawPrint"; +export { Plugs, PlugsIcon } from "@phosphor-icons/react/Plugs"; +export { ActivityIcon, Pulse, PulseIcon } from "@phosphor-icons/react/Pulse"; +export { ReplitLogo, ReplitLogoIcon } from "@phosphor-icons/react/ReplitLogo"; +export { RoadHorizon, RoadHorizonIcon } from "@phosphor-icons/react/RoadHorizon"; +export { ShareNetwork, ShareNetworkIcon } from "@phosphor-icons/react/ShareNetwork"; +export { ShieldCheckered, ShieldCheckeredIcon } from "@phosphor-icons/react/ShieldCheckered"; +export { Subtitles, SubtitlesIcon } from "@phosphor-icons/react/Subtitles"; +export { SuitcaseSimple, SuitcaseSimpleIcon } from "@phosphor-icons/react/SuitcaseSimple"; +export { TextT, TextTIcon } from "@phosphor-icons/react/TextT"; +export { Virus, VirusIcon } from "@phosphor-icons/react/Virus"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/bucket-31.ts b/packages/admin/src/generated/phosphor-icon-buckets/bucket-31.ts new file mode 100644 index 0000000000..1dee5da6bf --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/bucket-31.ts @@ -0,0 +1,46 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export { AlignBottomSimple, AlignBottomSimpleIcon } from "@phosphor-icons/react/AlignBottomSimple"; +export { ArrowsHorizontal, ArrowsHorizontalIcon } from "@phosphor-icons/react/ArrowsHorizontal"; +export { BatteryChargingVertical, BatteryChargingVerticalIcon } from "@phosphor-icons/react/BatteryChargingVertical"; +export { BluetoothX, BluetoothXIcon } from "@phosphor-icons/react/BluetoothX"; +export { BracketsSquare, BracketsSquareIcon } from "@phosphor-icons/react/BracketsSquare"; +export { Calendar, CalendarIcon } from "@phosphor-icons/react/Calendar"; +export { CaretLineLeft, CaretLineLeftIcon } from "@phosphor-icons/react/CaretLineLeft"; +export { CellSignalNone, CellSignalNoneIcon } from "@phosphor-icons/react/CellSignalNone"; +export { ChartScatter, ChartScatterIcon } from "@phosphor-icons/react/ChartScatter"; +export { ChatCentered, ChatCenteredIcon } from "@phosphor-icons/react/ChatCentered"; +export { ClockAfternoon, ClockAfternoonIcon } from "@phosphor-icons/react/ClockAfternoon"; +export { ClockCounterClockwise, ClockCounterClockwiseIcon } from "@phosphor-icons/react/ClockCounterClockwise"; +export { CloudArrowDown, CloudArrowDownIcon } from "@phosphor-icons/react/CloudArrowDown"; +export { Cookie, CookieIcon } from "@phosphor-icons/react/Cookie"; +export { CowboyHat, CowboyHatIcon } from "@phosphor-icons/react/CowboyHat"; +export { DotsThreeCircle, DotsThreeCircleIcon } from "@phosphor-icons/react/DotsThreeCircle"; +export { EyeSlash, EyeSlashIcon } from "@phosphor-icons/react/EyeSlash"; +export { FediverseLogo, FediverseLogoIcon } from "@phosphor-icons/react/FediverseLogo"; +export { FirstAidKit, FirstAidKitIcon } from "@phosphor-icons/react/FirstAidKit"; +export { GitFork, GitForkIcon } from "@phosphor-icons/react/GitFork"; +export { GooglePlayLogo, GooglePlayLogoIcon } from "@phosphor-icons/react/GooglePlayLogo"; +export { GraduationCap, GraduationCapIcon } from "@phosphor-icons/react/GraduationCap"; +export { Layout, LayoutIcon } from "@phosphor-icons/react/Layout"; +export { LockLaminated, LockLaminatedIcon } from "@phosphor-icons/react/LockLaminated"; +export { Magnet, MagnetIcon } from "@phosphor-icons/react/Magnet"; +export { MarkerCircle, MarkerCircleIcon } from "@phosphor-icons/react/MarkerCircle"; +export { MetaLogo, MetaLogoIcon } from "@phosphor-icons/react/MetaLogo"; +export { MonitorArrowUp, MonitorArrowUpIcon } from "@phosphor-icons/react/MonitorArrowUp"; +export { NumberSquareFive, NumberSquareFiveIcon } from "@phosphor-icons/react/NumberSquareFive"; +export { PhoneCall, PhoneCallIcon } from "@phosphor-icons/react/PhoneCall"; +export { PlusMinus, PlusMinusIcon } from "@phosphor-icons/react/PlusMinus"; +export { Printer, PrinterIcon } from "@phosphor-icons/react/Printer"; +export { ProhibitInset, ProhibitInsetIcon } from "@phosphor-icons/react/ProhibitInset"; +export { ProjectorScreen, ProjectorScreenIcon } from "@phosphor-icons/react/ProjectorScreen"; +export { RepeatOnce, RepeatOnceIcon } from "@phosphor-icons/react/RepeatOnce"; +export { Robot, RobotIcon } from "@phosphor-icons/react/Robot"; +export { SkipForward, SkipForwardIcon } from "@phosphor-icons/react/SkipForward"; +export { Stack, StackIcon } from "@phosphor-icons/react/Stack"; +export { Table, TableIcon } from "@phosphor-icons/react/Table"; +export { TestTube, TestTubeIcon } from "@phosphor-icons/react/TestTube"; +export { TrashSimple, TrashSimpleIcon } from "@phosphor-icons/react/TrashSimple"; +export { TrolleySuitcase, TrolleySuitcaseIcon } from "@phosphor-icons/react/TrolleySuitcase"; +export { Trophy, TrophyIcon } from "@phosphor-icons/react/Trophy"; +export { UmbrellaSimple, UmbrellaSimpleIcon } from "@phosphor-icons/react/UmbrellaSimple"; diff --git a/packages/admin/src/generated/phosphor-icon-buckets/module-aliases.ts b/packages/admin/src/generated/phosphor-icon-buckets/module-aliases.ts new file mode 100644 index 0000000000..2deb100a0d --- /dev/null +++ b/packages/admin/src/generated/phosphor-icon-buckets/module-aliases.ts @@ -0,0 +1,22 @@ +// Generated by scripts/generate-phosphor-icon-buckets.js. Do not edit. + +export const PHOSPHOR_ICON_MODULE_ALIASES: Readonly> = { + ActivityIcon: "Pulse", + ArchiveBoxIcon: "BoxArrowDown", + ArchiveTrayIcon: "TrayArrowDown", + CaduceusIcon: "Asclepius", + CircleWavyCheckIcon: "SealCheck", + CircleWavyIcon: "Seal", + CircleWavyQuestionIcon: "SealQuestion", + CircleWavyWarningIcon: "SealWarning", + FileDottedIcon: "FileDashed", + FileSearchIcon: "FileMagnifyingGlass", + FolderDottedIcon: "FolderDashed", + FolderNotchIcon: "Folder", + FolderNotchMinusIcon: "FolderMinus", + FolderNotchOpenIcon: "FolderOpen", + FolderNotchPlusIcon: "FolderPlus", + FolderSimpleDottedIcon: "FolderSimpleDashed", + LemniscateIcon: "Infinity", + TextBolderIcon: "TextB", +}; diff --git a/packages/admin/src/lib/phosphor-icon-loader.ts b/packages/admin/src/lib/phosphor-icon-loader.ts new file mode 100644 index 0000000000..690b35f53e --- /dev/null +++ b/packages/admin/src/lib/phosphor-icon-loader.ts @@ -0,0 +1,64 @@ +import { Plug } from "@phosphor-icons/react"; + +import { PHOSPHOR_ICON_MODULE_ALIASES } from "../generated/phosphor-icon-buckets/module-aliases.js"; + +type PhosphorIconModule = Record; + +const PHOSPHOR_ICON_BUCKETS: ReadonlyArray<() => Promise> = [ + () => import("../generated/phosphor-icon-buckets/bucket-00.js"), + () => import("../generated/phosphor-icon-buckets/bucket-01.js"), + () => import("../generated/phosphor-icon-buckets/bucket-02.js"), + () => import("../generated/phosphor-icon-buckets/bucket-03.js"), + () => import("../generated/phosphor-icon-buckets/bucket-04.js"), + () => import("../generated/phosphor-icon-buckets/bucket-05.js"), + () => import("../generated/phosphor-icon-buckets/bucket-06.js"), + () => import("../generated/phosphor-icon-buckets/bucket-07.js"), + () => import("../generated/phosphor-icon-buckets/bucket-08.js"), + () => import("../generated/phosphor-icon-buckets/bucket-09.js"), + () => import("../generated/phosphor-icon-buckets/bucket-10.js"), + () => import("../generated/phosphor-icon-buckets/bucket-11.js"), + () => import("../generated/phosphor-icon-buckets/bucket-12.js"), + () => import("../generated/phosphor-icon-buckets/bucket-13.js"), + () => import("../generated/phosphor-icon-buckets/bucket-14.js"), + () => import("../generated/phosphor-icon-buckets/bucket-15.js"), + () => import("../generated/phosphor-icon-buckets/bucket-16.js"), + () => import("../generated/phosphor-icon-buckets/bucket-17.js"), + () => import("../generated/phosphor-icon-buckets/bucket-18.js"), + () => import("../generated/phosphor-icon-buckets/bucket-19.js"), + () => import("../generated/phosphor-icon-buckets/bucket-20.js"), + () => import("../generated/phosphor-icon-buckets/bucket-21.js"), + () => import("../generated/phosphor-icon-buckets/bucket-22.js"), + () => import("../generated/phosphor-icon-buckets/bucket-23.js"), + () => import("../generated/phosphor-icon-buckets/bucket-24.js"), + () => import("../generated/phosphor-icon-buckets/bucket-25.js"), + () => import("../generated/phosphor-icon-buckets/bucket-26.js"), + () => import("../generated/phosphor-icon-buckets/bucket-27.js"), + () => import("../generated/phosphor-icon-buckets/bucket-28.js"), + () => import("../generated/phosphor-icon-buckets/bucket-29.js"), + () => import("../generated/phosphor-icon-buckets/bucket-30.js"), + () => import("../generated/phosphor-icon-buckets/bucket-31.js"), +]; + +function getBucket(name: string): number { + let hash = 0x811c9dc5; + for (let index = 0; index < name.length; index++) { + hash = Math.imul(hash ^ name.charCodeAt(index), 0x01000193); + } + return (hash >>> 0) & (PHOSPHOR_ICON_BUCKETS.length - 1); +} + +export async function loadPhosphorIcon(name: string): Promise { + const alias = Object.hasOwn(PHOSPHOR_ICON_MODULE_ALIASES, name) + ? PHOSPHOR_ICON_MODULE_ALIASES[name] + : undefined; + const moduleName = alias ?? (name.endsWith("Icon") ? name.slice(0, -4) : name); + const loadBucket = PHOSPHOR_ICON_BUCKETS[getBucket(moduleName)]; + if (!loadBucket) return undefined; + try { + const bucket = await loadBucket(); + return Object.hasOwn(bucket, name) ? bucket[name] : undefined; + } catch (error) { + console.error(`[admin] Failed to load Phosphor icon "${name}":`, error); + return Plug; + } +} diff --git a/packages/admin/tests/components/Sidebar.test.tsx b/packages/admin/tests/components/Sidebar.test.tsx index 6aad546204..760507e17b 100644 --- a/packages/admin/tests/components/Sidebar.test.tsx +++ b/packages/admin/tests/components/Sidebar.test.tsx @@ -24,8 +24,11 @@ */ import { + ActivityIcon, Plug, Gear, + Heart, + HeartIcon, Trophy, ClockCounterClockwise, IdentificationCard, @@ -44,6 +47,7 @@ import { toPhosphorIconName, visibleCollectionEntries, } from "../../src/components/Sidebar"; +import { loadPhosphorIcon } from "../../src/lib/phosphor-icon-loader.js"; import { render } from "../utils/render.tsx"; // Mirror @emdash-cms/auth Role levels. Kept inline (matching Sidebar.tsx) @@ -241,6 +245,30 @@ describe("resolveNavIcon", () => { expect((first as { $$typeof?: symbol }).$$typeof).toBe(Symbol.for("react.lazy")); }); + it("renders uncommon Phosphor names and Icon aliases", async () => { + const ByName = resolveNavIcon("heart"); + const ByAlias = resolveNavIcon("heart-icon"); + const ByModuleAlias = resolveNavIcon("activity-icon"); + const screen = await render( + loading}> + + + + + + , + ); + const byName = screen.getByTestId("by-name"); + await expect.element(byName).toBeInTheDocument(); + expect(byName.element().innerHTML).toBe(screen.getByTestId("expected").element().innerHTML); + expect(screen.getByTestId("by-alias").element().innerHTML).toBe( + screen.getByTestId("expected").element().innerHTML, + ); + expect(screen.getByTestId("by-module-alias").element().innerHTML).toBe( + screen.getByTestId("expected-module-alias").element().innerHTML, + ); + }); + it("renders the Plug fallback for a name that doesn't exist in Phosphor", async () => { // The lazy path resolves an unknown icon name to Plug. Drive // it through a real render (not the Kumo Sidebar — just the icon) and @@ -258,3 +286,29 @@ describe("resolveNavIcon", () => { expect(resolved.element().innerHTML).toBe(screen.getByTestId("expected").element().innerHTML); }); }); + +describe("loadPhosphorIcon", () => { + it("loads canonical names and Icon aliases from the same generated module", async () => { + const heart = await loadPhosphorIcon("Heart"); + const heartAlias = await loadPhosphorIcon("HeartIcon"); + + expect(heart).toBe(heartAlias); + expect((heart as { displayName?: string }).displayName).toBe(HeartIcon.displayName); + }); + + it("loads aliases exported from differently named modules", async () => { + const activity = await loadPhosphorIcon("ActivityIcon"); + const pulse = await loadPhosphorIcon("PulseIcon"); + + expect(activity).toBe(pulse); + expect((activity as { displayName?: string }).displayName).toBe(ActivityIcon.displayName); + }); + + it("returns undefined for names outside the installed Phosphor set", async () => { + await expect(loadPhosphorIcon("DefinitelyNotARealIconXyz")).resolves.toBeUndefined(); + }); + + it("returns undefined for inherited object properties", async () => { + await expect(loadPhosphorIcon("constructor")).resolves.toBeUndefined(); + }); +}); diff --git a/packages/admin/tests/lib/phosphor-icon-loader-failure.test.ts b/packages/admin/tests/lib/phosphor-icon-loader-failure.test.ts new file mode 100644 index 0000000000..8a0e500977 --- /dev/null +++ b/packages/admin/tests/lib/phosphor-icon-loader-failure.test.ts @@ -0,0 +1,30 @@ +import { Plug } from "@phosphor-icons/react"; +import { afterEach, describe, expect, it, vi } from "vitest"; +import { cdp } from "vitest/browser"; + +import { loadPhosphorIcon } from "../../src/lib/phosphor-icon-loader.js"; + +afterEach(() => { + vi.restoreAllMocks(); +}); + +describe("loadPhosphorIcon failures", () => { + it("returns Plug when an icon bucket cannot be loaded", async () => { + const error = vi.spyOn(console, "error").mockImplementation(() => {}); + const session = cdp(); + await session.send("Network.enable"); + await session.send("Network.setBlockedURLs", { + urls: ["*phosphor-icon-buckets/bucket-03.ts*"], + }); + + try { + await expect(loadPhosphorIcon("Heart")).resolves.toBe(Plug); + expect(error).toHaveBeenCalledWith( + '[admin] Failed to load Phosphor icon "Heart":', + expect.any(Error), + ); + } finally { + await session.send("Network.setBlockedURLs", { urls: [] }); + } + }); +}); diff --git a/packages/admin/tsdown.config.ts b/packages/admin/tsdown.config.ts index 33da1c89af..77ab9acfce 100644 --- a/packages/admin/tsdown.config.ts +++ b/packages/admin/tsdown.config.ts @@ -32,11 +32,14 @@ export default defineConfig({ plugins: [linguiMacroPlugin()], // @tiptap/suggestion is intentionally bundled (devDependency) inlineOnly: false, + // Generated icon buckets are package-owned chunks; normal root imports stay consumer-owned. + noExternal: /^@phosphor-icons\/react\//, external: [ "react", "react-dom", "react/jsx-runtime", "react/jsx-dev-runtime", + "@phosphor-icons/react", // Keep TanStack external - Vite in consumer project will need to resolve these "@tanstack/react-router", "@tanstack/react-query", diff --git a/packages/admin/vitest.config.ts b/packages/admin/vitest.config.ts index 3680c703ef..6d554a0dcb 100644 --- a/packages/admin/vitest.config.ts +++ b/packages/admin/vitest.config.ts @@ -1,9 +1,26 @@ +import { dirname, join } from "node:path"; +import { fileURLToPath } from "node:url"; + import react from "@vitejs/plugin-react"; import { playwright } from "@vitest/browser-playwright"; import { defineConfig } from "vitest/config"; +const phosphorPackageDir = dirname( + fileURLToPath(import.meta.resolve("@phosphor-icons/react/package.json")), +); +const phosphorCsrDir = join(phosphorPackageDir, "dist", "csr"); +const PHOSPHOR_DEEP_IMPORT_RE = /^@phosphor-icons\/react\/([A-Z][A-Za-z0-9]*)$/; + export default defineConfig({ plugins: [ + { + name: "phosphor-icon-source", + enforce: "pre", + resolveId(id) { + const iconName = id.match(PHOSPHOR_DEEP_IMPORT_RE)?.[1]; + if (iconName) return join(phosphorCsrDir, `${iconName}.es.js`); + }, + }, react({ babel: { plugins: [ diff --git a/packages/blocks/src/renderer.tsx b/packages/blocks/src/renderer.tsx index 2473c37942..0056af3c63 100644 --- a/packages/blocks/src/renderer.tsx +++ b/packages/blocks/src/renderer.tsx @@ -1,7 +1,8 @@ +import { lazy, Suspense } from "react"; + import { AccordionBlockComponent } from "./blocks/accordion.js"; import { ActionsBlockComponent } from "./blocks/actions.js"; import { BannerBlockComponent } from "./blocks/banner.js"; -import { ChartBlockComponent } from "./blocks/chart.js"; import { CodeBlockComponent } from "./blocks/code.js"; import { ColumnsBlockComponent } from "./blocks/columns.js"; import { ContextBlockComponent } from "./blocks/context.js"; @@ -16,7 +17,29 @@ import { SectionBlockComponent } from "./blocks/section.js"; import { StatsBlockComponent } from "./blocks/stats.js"; import { TabBlockComponent } from "./blocks/tab.js"; import { TableBlockComponent } from "./blocks/table.js"; -import type { Block, BlockInteraction } from "./types.js"; +import type { Block, BlockInteraction, ChartBlock } from "./types.js"; + +function ChartPlaceholder({ height }: { height?: number }) { + return ( +