/** * @fileoverview Phosphor-derived icon set with three weights (regular, fill, duotone). * Raw SVG paths sourced from https://phosphoricons.com/. Each icon accepts a * `weight` prop and inherits text color via `currentColor`. * @module @saasflare/ui/components/ui/phosphor */ export { IconBase, type IconWeight, type PhosphorIconProps, } from "./icon-base"; export { BrandIconBase, type BrandColorful, type BrandIconProps, type BrandIconWeight, } from "./brand-icon-base"; export { ArrowLeftIcon } from "./arrow-left"; export { ArrowRightIcon } from "./arrow-right"; export { ArrowUpIcon } from "./arrow-up"; export { CaretDownIcon } from "./caret-down"; export { CaretLeftIcon } from "./caret-left"; export { CaretRightIcon } from "./caret-right"; export { CaretUpIcon } from "./caret-up"; export { CheckIcon } from "./check"; export { CheckCircleIcon } from "./check-circle"; export { CircleIcon } from "./circle"; export { CircleNotchIcon } from "./circle-notch"; export { DotsSixVerticalIcon } from "./dots-six-vertical"; export { DotsThreeIcon } from "./dots-three"; export { InfoIcon } from "./info"; export { MagnifyingGlassIcon } from "./magnifying-glass"; export { MinusIcon } from "./minus"; export { MonitorIcon } from "./monitor"; export { MoonIcon } from "./moon"; export { PauseIcon } from "./pause"; export { PlayIcon } from "./play"; export { QuotesIcon } from "./quotes"; export { SidebarSimpleIcon } from "./sidebar-simple"; export { SunIcon } from "./sun"; export { WarningIcon } from "./warning"; export { XIcon } from "./x"; export { XCircleIcon } from "./x-circle"; export { AppleLogoIcon } from "./apple-logo"; export { DiscordLogoIcon } from "./discord-logo"; export { DribbbleLogoIcon } from "./dribbble-logo"; export { FacebookLogoIcon } from "./facebook-logo"; export { GithubLogoIcon } from "./github-logo"; export { GitlabLogoIcon } from "./gitlab-logo"; export { GoogleLogoIcon } from "./google-logo"; export { LinkedinLogoIcon } from "./linkedin-logo"; export { MediumLogoIcon } from "./medium-logo"; export { MicrosoftOutlookLogoIcon } from "./microsoft-outlook-logo"; export { PaypalLogoIcon } from "./paypal-logo"; export { RedditLogoIcon } from "./reddit-logo"; export { SlackLogoIcon } from "./slack-logo"; export { StripeLogoIcon } from "./stripe-logo"; export { TiktokLogoIcon } from "./tiktok-logo"; export { XLogoIcon } from "./x-logo";