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