diff --git a/.astro/astro/env.d.ts b/.astro/astro/env.d.ts new file mode 100644 index 0000000..beccdc7 --- /dev/null +++ b/.astro/astro/env.d.ts @@ -0,0 +1,12 @@ +declare module 'astro:env/client' { + export const VERSION: string; +export const MARKETPLACE_ENABLED: boolean; +export const SEO: string; + +} + +declare module 'astro:env/server' { + + + export const getSecret: (key: string) => string | undefined; +} diff --git a/.astro/content-assets.mjs b/.astro/content-assets.mjs new file mode 100644 index 0000000..2b8b823 --- /dev/null +++ b/.astro/content-assets.mjs @@ -0,0 +1 @@ +export default new Map(); \ No newline at end of file diff --git a/.astro/content-modules.mjs b/.astro/content-modules.mjs new file mode 100644 index 0000000..2b8b823 --- /dev/null +++ b/.astro/content-modules.mjs @@ -0,0 +1 @@ +export default new Map(); \ No newline at end of file diff --git a/.astro/content.d.ts b/.astro/content.d.ts new file mode 100644 index 0000000..dd21763 --- /dev/null +++ b/.astro/content.d.ts @@ -0,0 +1,155 @@ +declare module 'astro:content' { + export interface RenderResult { + Content: import('astro/runtime/server/index.js').AstroComponentFactory; + headings: import('astro').MarkdownHeading[]; + remarkPluginFrontmatter: Record; + } + interface Render { + '.md': Promise; + } + + export interface RenderedContent { + html: string; + metadata?: { + imagePaths: Array; + [key: string]: unknown; + }; + } +} + +declare module 'astro:content' { + type Flatten = T extends { [K: string]: infer U } ? U : never; + + export type CollectionKey = keyof AnyEntryMap; + export type CollectionEntry = Flatten; + + export type ContentCollectionKey = keyof ContentEntryMap; + export type DataCollectionKey = keyof DataEntryMap; + + type AllValuesOf = T extends any ? T[keyof T] : never; + type ValidContentEntrySlug = AllValuesOf< + ContentEntryMap[C] + >['slug']; + + /** @deprecated Use `getEntry` instead. */ + export function getEntryBySlug< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >( + collection: C, + // Note that this has to accept a regular string too, for SSR + entrySlug: E, + ): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + + /** @deprecated Use `getEntry` instead. */ + export function getDataEntryById( + collection: C, + entryId: E, + ): Promise>; + + export function getCollection>( + collection: C, + filter?: (entry: CollectionEntry) => entry is E, + ): Promise; + export function getCollection( + collection: C, + filter?: (entry: CollectionEntry) => unknown, + ): Promise[]>; + + export function getEntry< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >(entry: { + collection: C; + slug: E; + }): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + export function getEntry< + C extends keyof DataEntryMap, + E extends keyof DataEntryMap[C] | (string & {}), + >(entry: { + collection: C; + id: E; + }): E extends keyof DataEntryMap[C] + ? Promise + : Promise | undefined>; + export function getEntry< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >( + collection: C, + slug: E, + ): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + export function getEntry< + C extends keyof DataEntryMap, + E extends keyof DataEntryMap[C] | (string & {}), + >( + collection: C, + id: E, + ): E extends keyof DataEntryMap[C] + ? string extends keyof DataEntryMap[C] + ? Promise | undefined + : Promise + : Promise | undefined>; + + /** Resolve an array of entry references from the same collection */ + export function getEntries( + entries: { + collection: C; + slug: ValidContentEntrySlug; + }[], + ): Promise[]>; + export function getEntries( + entries: { + collection: C; + id: keyof DataEntryMap[C]; + }[], + ): Promise[]>; + + export function render( + entry: AnyEntryMap[C][string], + ): Promise; + + export function reference( + collection: C, + ): import('astro/zod').ZodEffects< + import('astro/zod').ZodString, + C extends keyof ContentEntryMap + ? { + collection: C; + slug: ValidContentEntrySlug; + } + : { + collection: C; + id: keyof DataEntryMap[C]; + } + >; + // Allow generic `string` to avoid excessive type errors in the config + // if `dev` is not running to update as you edit. + // Invalid collection names will be caught at build time. + export function reference( + collection: C, + ): import('astro/zod').ZodEffects; + + type ReturnTypeOrOriginal = T extends (...args: any[]) => infer R ? R : T; + type InferEntrySchema = import('astro/zod').infer< + ReturnTypeOrOriginal['schema']> + >; + + type ContentEntryMap = { + + }; + + type DataEntryMap = { + + }; + + type AnyEntryMap = ContentEntryMap & DataEntryMap; + + export type ContentConfig = typeof import("../src/content.config.mjs"); +} diff --git a/.astro/data-store.json b/.astro/data-store.json new file mode 100644 index 0000000..c36efb2 --- /dev/null +++ b/.astro/data-store.json @@ -0,0 +1 @@ +[["Map",1,2],"meta::meta",["Map",3,4,5,6],"astro-version","5.1.2","astro-config-digest","{\"root\":{},\"srcDir\":{},\"publicDir\":{},\"outDir\":{},\"cacheDir\":{},\"site\":\"http://localhost:4321\",\"compressHTML\":true,\"base\":\"/\",\"trailingSlash\":\"ignore\",\"output\":\"server\",\"scopedStyleStrategy\":\"attribute\",\"build\":{\"format\":\"directory\",\"client\":{},\"server\":{},\"assets\":\"_astro\",\"serverEntry\":\"entry.mjs\",\"redirects\":true,\"inlineStylesheets\":\"auto\",\"concurrency\":1},\"server\":{\"open\":false,\"host\":\"0.0.0.0\",\"port\":4321,\"streaming\":true},\"redirects\":{},\"image\":{\"endpoint\":{\"route\":\"/_image\"},\"service\":{\"entrypoint\":\"astro/assets/services/sharp\",\"config\":{}},\"domains\":[],\"remotePatterns\":[]},\"devToolbar\":{\"enabled\":true},\"markdown\":{\"syntaxHighlight\":\"shiki\",\"shikiConfig\":{\"langs\":[],\"langAlias\":{},\"theme\":\"github-dark\",\"themes\":{},\"wrap\":false,\"transformers\":[]},\"remarkPlugins\":[],\"rehypePlugins\":[],\"remarkRehype\":{},\"gfm\":true,\"smartypants\":true},\"security\":{\"checkOrigin\":true},\"env\":{\"schema\":{\"VERSION\":{\"context\":\"client\",\"access\":\"public\",\"type\":\"string\",\"optional\":true,\"default\":\"9.0.4\"},\"MARKETPLACE_ENABLED\":{\"context\":\"client\",\"access\":\"public\",\"type\":\"boolean\",\"optional\":true,\"default\":true},\"SEO\":{\"context\":\"client\",\"access\":\"public\",\"type\":\"string\",\"optional\":true,\"default\":\"{\\\"enabled\\\":true,\\\"domain\\\":\\\"localhost:4321\\\"}\"}},\"validateSecrets\":false},\"experimental\":{\"clientPrerender\":false,\"contentIntellisense\":false,\"responsiveImages\":false},\"legacy\":{\"collections\":false}}"] \ No newline at end of file diff --git a/.astro/env.d.ts b/.astro/env.d.ts new file mode 100644 index 0000000..03694c8 --- /dev/null +++ b/.astro/env.d.ts @@ -0,0 +1,5 @@ +declare module 'astro:env/client' { + export const VERSION: string; + export const MARKETPLACE_ENABLED: boolean; + export const SEO: string; +} \ No newline at end of file diff --git a/.astro/icon.d.ts b/.astro/icon.d.ts new file mode 100644 index 0000000..8580951 --- /dev/null +++ b/.astro/icon.d.ts @@ -0,0 +1,9167 @@ +// Automatically generated by astro-icon +// 0d73d2e39a24cb93f1a8a33ab53083a47cae2a6831e529092dd56711b6588b04 + +declare module "virtual:astro-icon" { + export type Icon = + | "ph:acorn" + | "ph:acorn-bold" + | "ph:acorn-duotone" + | "ph:acorn-fill" + | "ph:acorn-light" + | "ph:acorn-thin" + | "ph:activity" + | "ph:activity-bold" + | "ph:activity-light" + | "ph:activity-thin" + | "ph:address-book" + | "ph:address-book-bold" + | "ph:address-book-duotone" + | "ph:address-book-fill" + | "ph:address-book-light" + | "ph:address-book-tabs" + | "ph:address-book-tabs-bold" + | "ph:address-book-tabs-duotone" + | "ph:address-book-tabs-fill" + | "ph:address-book-tabs-light" + | "ph:address-book-tabs-thin" + | "ph:address-book-thin" + | "ph:air-traffic-control" + | "ph:air-traffic-control-bold" + | "ph:air-traffic-control-duotone" + | "ph:air-traffic-control-fill" + | "ph:air-traffic-control-light" + | "ph:air-traffic-control-thin" + | "ph:airplane" + | "ph:airplane-bold" + | "ph:airplane-duotone" + | "ph:airplane-fill" + | "ph:airplane-in-flight" + | "ph:airplane-in-flight-bold" + | "ph:airplane-in-flight-duotone" + | "ph:airplane-in-flight-fill" + | "ph:airplane-in-flight-light" + | "ph:airplane-in-flight-thin" + | "ph:airplane-landing" + | "ph:airplane-landing-bold" + | "ph:airplane-landing-duotone" + | "ph:airplane-landing-fill" + | "ph:airplane-landing-light" + | "ph:airplane-landing-thin" + | "ph:airplane-light" + | "ph:airplane-takeoff" + | "ph:airplane-takeoff-bold" + | "ph:airplane-takeoff-duotone" + | "ph:airplane-takeoff-fill" + | "ph:airplane-takeoff-light" + | "ph:airplane-takeoff-thin" + | "ph:airplane-taxiing" + | "ph:airplane-taxiing-bold" + | "ph:airplane-taxiing-duotone" + | "ph:airplane-taxiing-fill" + | "ph:airplane-taxiing-light" + | "ph:airplane-taxiing-thin" + | "ph:airplane-thin" + | "ph:airplane-tilt" + | "ph:airplane-tilt-bold" + | "ph:airplane-tilt-duotone" + | "ph:airplane-tilt-fill" + | "ph:airplane-tilt-light" + | "ph:airplane-tilt-thin" + | "ph:airplay" + | "ph:airplay-bold" + | "ph:airplay-duotone" + | "ph:airplay-fill" + | "ph:airplay-light" + | "ph:airplay-thin" + | "ph:alarm" + | "ph:alarm-bold" + | "ph:alarm-duotone" + | "ph:alarm-fill" + | "ph:alarm-light" + | "ph:alarm-thin" + | "ph:alien" + | "ph:alien-bold" + | "ph:alien-duotone" + | "ph:alien-fill" + | "ph:alien-light" + | "ph:alien-thin" + | "ph:align-bottom" + | "ph:align-bottom-bold" + | "ph:align-bottom-duotone" + | "ph:align-bottom-fill" + | "ph:align-bottom-light" + | "ph:align-bottom-simple" + | "ph:align-bottom-simple-bold" + | "ph:align-bottom-simple-duotone" + | "ph:align-bottom-simple-fill" + | "ph:align-bottom-simple-light" + | "ph:align-bottom-simple-thin" + | "ph:align-bottom-thin" + | "ph:align-center-horizontal" + | "ph:align-center-horizontal-bold" + | "ph:align-center-horizontal-duotone" + | "ph:align-center-horizontal-fill" + | "ph:align-center-horizontal-light" + | "ph:align-center-horizontal-simple" + | "ph:align-center-horizontal-simple-bold" + | "ph:align-center-horizontal-simple-duotone" + | "ph:align-center-horizontal-simple-fill" + | "ph:align-center-horizontal-simple-light" + | "ph:align-center-horizontal-simple-thin" + | "ph:align-center-horizontal-thin" + | "ph:align-center-vertical" + | "ph:align-center-vertical-bold" + | "ph:align-center-vertical-duotone" + | "ph:align-center-vertical-fill" + | "ph:align-center-vertical-light" + | "ph:align-center-vertical-simple" + | "ph:align-center-vertical-simple-bold" + | "ph:align-center-vertical-simple-duotone" + | "ph:align-center-vertical-simple-fill" + | "ph:align-center-vertical-simple-light" + | "ph:align-center-vertical-simple-thin" + | "ph:align-center-vertical-thin" + | "ph:align-left" + | "ph:align-left-bold" + | "ph:align-left-duotone" + | "ph:align-left-fill" + | "ph:align-left-light" + | "ph:align-left-simple" + | "ph:align-left-simple-bold" + | "ph:align-left-simple-duotone" + | "ph:align-left-simple-fill" + | "ph:align-left-simple-light" + | "ph:align-left-simple-thin" + | "ph:align-left-thin" + | "ph:align-right" + | "ph:align-right-bold" + | "ph:align-right-duotone" + | "ph:align-right-fill" + | "ph:align-right-light" + | "ph:align-right-simple" + | "ph:align-right-simple-bold" + | "ph:align-right-simple-duotone" + | "ph:align-right-simple-fill" + | "ph:align-right-simple-light" + | "ph:align-right-simple-thin" + | "ph:align-right-thin" + | "ph:align-top" + | "ph:align-top-bold" + | "ph:align-top-duotone" + | "ph:align-top-fill" + | "ph:align-top-light" + | "ph:align-top-simple" + | "ph:align-top-simple-bold" + | "ph:align-top-simple-duotone" + | "ph:align-top-simple-fill" + | "ph:align-top-simple-light" + | "ph:align-top-simple-thin" + | "ph:align-top-thin" + | "ph:amazon-logo" + | "ph:amazon-logo-bold" + | "ph:amazon-logo-duotone" + | "ph:amazon-logo-fill" + | "ph:amazon-logo-light" + | "ph:amazon-logo-thin" + | "ph:ambulance" + | "ph:ambulance-bold" + | "ph:ambulance-duotone" + | "ph:ambulance-fill" + | "ph:ambulance-light" + | "ph:ambulance-thin" + | "ph:anchor" + | "ph:anchor-bold" + | "ph:anchor-duotone" + | "ph:anchor-fill" + | "ph:anchor-light" + | "ph:anchor-simple" + | "ph:anchor-simple-bold" + | "ph:anchor-simple-duotone" + | "ph:anchor-simple-fill" + | "ph:anchor-simple-light" + | "ph:anchor-simple-thin" + | "ph:anchor-thin" + | "ph:android-logo" + | "ph:android-logo-bold" + | "ph:android-logo-duotone" + | "ph:android-logo-fill" + | "ph:android-logo-light" + | "ph:android-logo-thin" + | "ph:angle" + | "ph:angle-bold" + | "ph:angle-duotone" + | "ph:angle-fill" + | "ph:angle-light" + | "ph:angle-thin" + | "ph:angular-logo" + | "ph:angular-logo-bold" + | "ph:angular-logo-duotone" + | "ph:angular-logo-fill" + | "ph:angular-logo-light" + | "ph:angular-logo-thin" + | "ph:aperture" + | "ph:aperture-bold" + | "ph:aperture-duotone" + | "ph:aperture-fill" + | "ph:aperture-light" + | "ph:aperture-thin" + | "ph:app-store-logo" + | "ph:app-store-logo-bold" + | "ph:app-store-logo-duotone" + | "ph:app-store-logo-fill" + | "ph:app-store-logo-light" + | "ph:app-store-logo-thin" + | "ph:app-window" + | "ph:app-window-bold" + | "ph:app-window-duotone" + | "ph:app-window-fill" + | "ph:app-window-light" + | "ph:app-window-thin" + | "ph:apple-logo" + | "ph:apple-logo-bold" + | "ph:apple-logo-duotone" + | "ph:apple-logo-fill" + | "ph:apple-logo-light" + | "ph:apple-logo-thin" + | "ph:apple-podcasts-logo" + | "ph:apple-podcasts-logo-bold" + | "ph:apple-podcasts-logo-duotone" + | "ph:apple-podcasts-logo-fill" + | "ph:apple-podcasts-logo-light" + | "ph:apple-podcasts-logo-thin" + | "ph:approximate-equals" + | "ph:approximate-equals-bold" + | "ph:approximate-equals-duotone" + | "ph:approximate-equals-fill" + | "ph:approximate-equals-light" + | "ph:approximate-equals-thin" + | "ph:archive" + | "ph:archive-bold" + | "ph:archive-duotone" + | "ph:archive-fill" + | "ph:archive-light" + | "ph:archive-thin" + | "ph:archive-tray-bold" + | "ph:armchair" + | "ph:armchair-bold" + | "ph:armchair-duotone" + | "ph:armchair-fill" + | "ph:armchair-light" + | "ph:armchair-thin" + | "ph:arrow-arc-left" + | "ph:arrow-arc-left-bold" + | "ph:arrow-arc-left-duotone" + | "ph:arrow-arc-left-fill" + | "ph:arrow-arc-left-light" + | "ph:arrow-arc-left-thin" + | "ph:arrow-arc-right" + | "ph:arrow-arc-right-bold" + | "ph:arrow-arc-right-duotone" + | "ph:arrow-arc-right-fill" + | "ph:arrow-arc-right-light" + | "ph:arrow-arc-right-thin" + | "ph:arrow-bend-double-up-left" + | "ph:arrow-bend-double-up-left-bold" + | "ph:arrow-bend-double-up-left-duotone" + | "ph:arrow-bend-double-up-left-fill" + | "ph:arrow-bend-double-up-left-light" + | "ph:arrow-bend-double-up-left-thin" + | "ph:arrow-bend-double-up-right" + | "ph:arrow-bend-double-up-right-bold" + | "ph:arrow-bend-double-up-right-duotone" + | "ph:arrow-bend-double-up-right-fill" + | "ph:arrow-bend-double-up-right-light" + | "ph:arrow-bend-double-up-right-thin" + | "ph:arrow-bend-down-left" + | "ph:arrow-bend-down-left-bold" + | "ph:arrow-bend-down-left-duotone" + | "ph:arrow-bend-down-left-fill" + | "ph:arrow-bend-down-left-light" + | "ph:arrow-bend-down-left-thin" + | "ph:arrow-bend-down-right" + | "ph:arrow-bend-down-right-bold" + | "ph:arrow-bend-down-right-duotone" + | "ph:arrow-bend-down-right-fill" + | "ph:arrow-bend-down-right-light" + | "ph:arrow-bend-down-right-thin" + | "ph:arrow-bend-left-down" + | "ph:arrow-bend-left-down-bold" + | "ph:arrow-bend-left-down-duotone" + | "ph:arrow-bend-left-down-fill" + | "ph:arrow-bend-left-down-light" + | "ph:arrow-bend-left-down-thin" + | "ph:arrow-bend-left-up" + | "ph:arrow-bend-left-up-bold" + | "ph:arrow-bend-left-up-duotone" + | "ph:arrow-bend-left-up-fill" + | "ph:arrow-bend-left-up-light" + | "ph:arrow-bend-left-up-thin" + | "ph:arrow-bend-right-down" + | "ph:arrow-bend-right-down-bold" + | "ph:arrow-bend-right-down-duotone" + | "ph:arrow-bend-right-down-fill" + | "ph:arrow-bend-right-down-light" + | "ph:arrow-bend-right-down-thin" + | "ph:arrow-bend-right-up" + | "ph:arrow-bend-right-up-bold" + | "ph:arrow-bend-right-up-duotone" + | "ph:arrow-bend-right-up-fill" + | "ph:arrow-bend-right-up-light" + | "ph:arrow-bend-right-up-thin" + | "ph:arrow-bend-up-left" + | "ph:arrow-bend-up-left-bold" + | "ph:arrow-bend-up-left-duotone" + | "ph:arrow-bend-up-left-fill" + | "ph:arrow-bend-up-left-light" + | "ph:arrow-bend-up-left-thin" + | "ph:arrow-bend-up-right" + | "ph:arrow-bend-up-right-bold" + | "ph:arrow-bend-up-right-duotone" + | "ph:arrow-bend-up-right-fill" + | "ph:arrow-bend-up-right-light" + | "ph:arrow-bend-up-right-thin" + | "ph:arrow-circle-down" + | "ph:arrow-circle-down-bold" + | "ph:arrow-circle-down-duotone" + | "ph:arrow-circle-down-fill" + | "ph:arrow-circle-down-left" + | "ph:arrow-circle-down-left-bold" + | "ph:arrow-circle-down-left-duotone" + | "ph:arrow-circle-down-left-fill" + | "ph:arrow-circle-down-left-light" + | "ph:arrow-circle-down-left-thin" + | "ph:arrow-circle-down-light" + | "ph:arrow-circle-down-right" + | "ph:arrow-circle-down-right-bold" + | "ph:arrow-circle-down-right-duotone" + | "ph:arrow-circle-down-right-fill" + | "ph:arrow-circle-down-right-light" + | "ph:arrow-circle-down-right-thin" + | "ph:arrow-circle-down-thin" + | "ph:arrow-circle-left" + | "ph:arrow-circle-left-bold" + | "ph:arrow-circle-left-duotone" + | "ph:arrow-circle-left-fill" + | "ph:arrow-circle-left-light" + | "ph:arrow-circle-left-thin" + | "ph:arrow-circle-right" + | "ph:arrow-circle-right-bold" + | "ph:arrow-circle-right-duotone" + | "ph:arrow-circle-right-fill" + | "ph:arrow-circle-right-light" + | "ph:arrow-circle-right-thin" + | "ph:arrow-circle-up" + | "ph:arrow-circle-up-bold" + | "ph:arrow-circle-up-duotone" + | "ph:arrow-circle-up-fill" + | "ph:arrow-circle-up-left" + | "ph:arrow-circle-up-left-bold" + | "ph:arrow-circle-up-left-duotone" + | "ph:arrow-circle-up-left-fill" + | "ph:arrow-circle-up-left-light" + | "ph:arrow-circle-up-left-thin" + | "ph:arrow-circle-up-light" + | "ph:arrow-circle-up-right" + | "ph:arrow-circle-up-right-bold" + | "ph:arrow-circle-up-right-duotone" + | "ph:arrow-circle-up-right-fill" + | "ph:arrow-circle-up-right-light" + | "ph:arrow-circle-up-right-thin" + | "ph:arrow-circle-up-thin" + | "ph:arrow-clockwise" + | "ph:arrow-clockwise-bold" + | "ph:arrow-clockwise-duotone" + | "ph:arrow-clockwise-fill" + | "ph:arrow-clockwise-light" + | "ph:arrow-clockwise-thin" + | "ph:arrow-counter-clockwise" + | "ph:arrow-counter-clockwise-bold" + | "ph:arrow-counter-clockwise-duotone" + | "ph:arrow-counter-clockwise-fill" + | "ph:arrow-counter-clockwise-light" + | "ph:arrow-counter-clockwise-thin" + | "ph:arrow-down" + | "ph:arrow-down-bold" + | "ph:arrow-down-duotone" + | "ph:arrow-down-fill" + | "ph:arrow-down-left" + | "ph:arrow-down-left-bold" + | "ph:arrow-down-left-duotone" + | "ph:arrow-down-left-fill" + | "ph:arrow-down-left-light" + | "ph:arrow-down-left-thin" + | "ph:arrow-down-light" + | "ph:arrow-down-right" + | "ph:arrow-down-right-bold" + | "ph:arrow-down-right-duotone" + | "ph:arrow-down-right-fill" + | "ph:arrow-down-right-light" + | "ph:arrow-down-right-thin" + | "ph:arrow-down-thin" + | "ph:arrow-elbow-down-left" + | "ph:arrow-elbow-down-left-bold" + | "ph:arrow-elbow-down-left-duotone" + | "ph:arrow-elbow-down-left-fill" + | "ph:arrow-elbow-down-left-light" + | "ph:arrow-elbow-down-left-thin" + | "ph:arrow-elbow-down-right" + | "ph:arrow-elbow-down-right-bold" + | "ph:arrow-elbow-down-right-duotone" + | "ph:arrow-elbow-down-right-fill" + | "ph:arrow-elbow-down-right-light" + | "ph:arrow-elbow-down-right-thin" + | "ph:arrow-elbow-left" + | "ph:arrow-elbow-left-bold" + | "ph:arrow-elbow-left-down" + | "ph:arrow-elbow-left-down-bold" + | "ph:arrow-elbow-left-down-duotone" + | "ph:arrow-elbow-left-down-fill" + | "ph:arrow-elbow-left-down-light" + | "ph:arrow-elbow-left-down-thin" + | "ph:arrow-elbow-left-duotone" + | "ph:arrow-elbow-left-fill" + | "ph:arrow-elbow-left-light" + | "ph:arrow-elbow-left-thin" + | "ph:arrow-elbow-left-up" + | "ph:arrow-elbow-left-up-bold" + | "ph:arrow-elbow-left-up-duotone" + | "ph:arrow-elbow-left-up-fill" + | "ph:arrow-elbow-left-up-light" + | "ph:arrow-elbow-left-up-thin" + | "ph:arrow-elbow-right" + | "ph:arrow-elbow-right-bold" + | "ph:arrow-elbow-right-down" + | "ph:arrow-elbow-right-down-bold" + | "ph:arrow-elbow-right-down-duotone" + | "ph:arrow-elbow-right-down-fill" + | "ph:arrow-elbow-right-down-light" + | "ph:arrow-elbow-right-down-thin" + | "ph:arrow-elbow-right-duotone" + | "ph:arrow-elbow-right-fill" + | "ph:arrow-elbow-right-light" + | "ph:arrow-elbow-right-thin" + | "ph:arrow-elbow-right-up" + | "ph:arrow-elbow-right-up-bold" + | "ph:arrow-elbow-right-up-duotone" + | "ph:arrow-elbow-right-up-fill" + | "ph:arrow-elbow-right-up-light" + | "ph:arrow-elbow-right-up-thin" + | "ph:arrow-elbow-up-left" + | "ph:arrow-elbow-up-left-bold" + | "ph:arrow-elbow-up-left-duotone" + | "ph:arrow-elbow-up-left-fill" + | "ph:arrow-elbow-up-left-light" + | "ph:arrow-elbow-up-left-thin" + | "ph:arrow-elbow-up-right" + | "ph:arrow-elbow-up-right-bold" + | "ph:arrow-elbow-up-right-duotone" + | "ph:arrow-elbow-up-right-fill" + | "ph:arrow-elbow-up-right-light" + | "ph:arrow-elbow-up-right-thin" + | "ph:arrow-fat-down" + | "ph:arrow-fat-down-bold" + | "ph:arrow-fat-down-duotone" + | "ph:arrow-fat-down-fill" + | "ph:arrow-fat-down-light" + | "ph:arrow-fat-down-thin" + | "ph:arrow-fat-left" + | "ph:arrow-fat-left-bold" + | "ph:arrow-fat-left-duotone" + | "ph:arrow-fat-left-fill" + | "ph:arrow-fat-left-light" + | "ph:arrow-fat-left-thin" + | "ph:arrow-fat-line-down" + | "ph:arrow-fat-line-down-bold" + | "ph:arrow-fat-line-down-duotone" + | "ph:arrow-fat-line-down-fill" + | "ph:arrow-fat-line-down-light" + | "ph:arrow-fat-line-down-thin" + | "ph:arrow-fat-line-left" + | "ph:arrow-fat-line-left-bold" + | "ph:arrow-fat-line-left-duotone" + | "ph:arrow-fat-line-left-fill" + | "ph:arrow-fat-line-left-light" + | "ph:arrow-fat-line-left-thin" + | "ph:arrow-fat-line-right" + | "ph:arrow-fat-line-right-bold" + | "ph:arrow-fat-line-right-duotone" + | "ph:arrow-fat-line-right-fill" + | "ph:arrow-fat-line-right-light" + | "ph:arrow-fat-line-right-thin" + | "ph:arrow-fat-line-up" + | "ph:arrow-fat-line-up-bold" + | "ph:arrow-fat-line-up-duotone" + | "ph:arrow-fat-line-up-fill" + | "ph:arrow-fat-line-up-light" + | "ph:arrow-fat-line-up-thin" + | "ph:arrow-fat-lines-down" + | "ph:arrow-fat-lines-down-bold" + | "ph:arrow-fat-lines-down-duotone" + | "ph:arrow-fat-lines-down-fill" + | "ph:arrow-fat-lines-down-light" + | "ph:arrow-fat-lines-down-thin" + | "ph:arrow-fat-lines-left" + | "ph:arrow-fat-lines-left-bold" + | "ph:arrow-fat-lines-left-duotone" + | "ph:arrow-fat-lines-left-fill" + | "ph:arrow-fat-lines-left-light" + | "ph:arrow-fat-lines-left-thin" + | "ph:arrow-fat-lines-right" + | "ph:arrow-fat-lines-right-bold" + | "ph:arrow-fat-lines-right-duotone" + | "ph:arrow-fat-lines-right-fill" + | "ph:arrow-fat-lines-right-light" + | "ph:arrow-fat-lines-right-thin" + | "ph:arrow-fat-lines-up" + | "ph:arrow-fat-lines-up-bold" + | "ph:arrow-fat-lines-up-duotone" + | "ph:arrow-fat-lines-up-fill" + | "ph:arrow-fat-lines-up-light" + | "ph:arrow-fat-lines-up-thin" + | "ph:arrow-fat-right" + | "ph:arrow-fat-right-bold" + | "ph:arrow-fat-right-duotone" + | "ph:arrow-fat-right-fill" + | "ph:arrow-fat-right-light" + | "ph:arrow-fat-right-thin" + | "ph:arrow-fat-up" + | "ph:arrow-fat-up-bold" + | "ph:arrow-fat-up-duotone" + | "ph:arrow-fat-up-fill" + | "ph:arrow-fat-up-light" + | "ph:arrow-fat-up-thin" + | "ph:arrow-left" + | "ph:arrow-left-bold" + | "ph:arrow-left-duotone" + | "ph:arrow-left-fill" + | "ph:arrow-left-light" + | "ph:arrow-left-thin" + | "ph:arrow-line-down" + | "ph:arrow-line-down-bold" + | "ph:arrow-line-down-duotone" + | "ph:arrow-line-down-fill" + | "ph:arrow-line-down-left" + | "ph:arrow-line-down-left-bold" + | "ph:arrow-line-down-left-duotone" + | "ph:arrow-line-down-left-fill" + | "ph:arrow-line-down-left-light" + | "ph:arrow-line-down-left-thin" + | "ph:arrow-line-down-light" + | "ph:arrow-line-down-right" + | "ph:arrow-line-down-right-bold" + | "ph:arrow-line-down-right-duotone" + | "ph:arrow-line-down-right-fill" + | "ph:arrow-line-down-right-light" + | "ph:arrow-line-down-right-thin" + | "ph:arrow-line-down-thin" + | "ph:arrow-line-left" + | "ph:arrow-line-left-bold" + | "ph:arrow-line-left-duotone" + | "ph:arrow-line-left-fill" + | "ph:arrow-line-left-light" + | "ph:arrow-line-left-thin" + | "ph:arrow-line-right" + | "ph:arrow-line-right-bold" + | "ph:arrow-line-right-duotone" + | "ph:arrow-line-right-fill" + | "ph:arrow-line-right-light" + | "ph:arrow-line-right-thin" + | "ph:arrow-line-up" + | "ph:arrow-line-up-bold" + | "ph:arrow-line-up-duotone" + | "ph:arrow-line-up-fill" + | "ph:arrow-line-up-left" + | "ph:arrow-line-up-left-bold" + | "ph:arrow-line-up-left-duotone" + | "ph:arrow-line-up-left-fill" + | "ph:arrow-line-up-left-light" + | "ph:arrow-line-up-left-thin" + | "ph:arrow-line-up-light" + | "ph:arrow-line-up-right" + | "ph:arrow-line-up-right-bold" + | "ph:arrow-line-up-right-duotone" + | "ph:arrow-line-up-right-fill" + | "ph:arrow-line-up-right-light" + | "ph:arrow-line-up-right-thin" + | "ph:arrow-line-up-thin" + | "ph:arrow-right" + | "ph:arrow-right-bold" + | "ph:arrow-right-duotone" + | "ph:arrow-right-fill" + | "ph:arrow-right-light" + | "ph:arrow-right-thin" + | "ph:arrow-square-down" + | "ph:arrow-square-down-bold" + | "ph:arrow-square-down-duotone" + | "ph:arrow-square-down-fill" + | "ph:arrow-square-down-left" + | "ph:arrow-square-down-left-bold" + | "ph:arrow-square-down-left-duotone" + | "ph:arrow-square-down-left-fill" + | "ph:arrow-square-down-left-light" + | "ph:arrow-square-down-left-thin" + | "ph:arrow-square-down-light" + | "ph:arrow-square-down-right" + | "ph:arrow-square-down-right-bold" + | "ph:arrow-square-down-right-duotone" + | "ph:arrow-square-down-right-fill" + | "ph:arrow-square-down-right-light" + | "ph:arrow-square-down-right-thin" + | "ph:arrow-square-down-thin" + | "ph:arrow-square-in" + | "ph:arrow-square-in-bold" + | "ph:arrow-square-in-duotone" + | "ph:arrow-square-in-fill" + | "ph:arrow-square-in-light" + | "ph:arrow-square-in-thin" + | "ph:arrow-square-left" + | "ph:arrow-square-left-bold" + | "ph:arrow-square-left-duotone" + | "ph:arrow-square-left-fill" + | "ph:arrow-square-left-light" + | "ph:arrow-square-left-thin" + | "ph:arrow-square-out" + | "ph:arrow-square-out-bold" + | "ph:arrow-square-out-duotone" + | "ph:arrow-square-out-fill" + | "ph:arrow-square-out-light" + | "ph:arrow-square-out-thin" + | "ph:arrow-square-right" + | "ph:arrow-square-right-bold" + | "ph:arrow-square-right-duotone" + | "ph:arrow-square-right-fill" + | "ph:arrow-square-right-light" + | "ph:arrow-square-right-thin" + | "ph:arrow-square-up" + | "ph:arrow-square-up-bold" + | "ph:arrow-square-up-duotone" + | "ph:arrow-square-up-fill" + | "ph:arrow-square-up-left" + | "ph:arrow-square-up-left-bold" + | "ph:arrow-square-up-left-duotone" + | "ph:arrow-square-up-left-fill" + | "ph:arrow-square-up-left-light" + | "ph:arrow-square-up-left-thin" + | "ph:arrow-square-up-light" + | "ph:arrow-square-up-right" + | "ph:arrow-square-up-right-bold" + | "ph:arrow-square-up-right-duotone" + | "ph:arrow-square-up-right-fill" + | "ph:arrow-square-up-right-light" + | "ph:arrow-square-up-right-thin" + | "ph:arrow-square-up-thin" + | "ph:arrow-u-down-left" + | "ph:arrow-u-down-left-bold" + | "ph:arrow-u-down-left-duotone" + | "ph:arrow-u-down-left-fill" + | "ph:arrow-u-down-left-light" + | "ph:arrow-u-down-left-thin" + | "ph:arrow-u-down-right" + | "ph:arrow-u-down-right-bold" + | "ph:arrow-u-down-right-duotone" + | "ph:arrow-u-down-right-fill" + | "ph:arrow-u-down-right-light" + | "ph:arrow-u-down-right-thin" + | "ph:arrow-u-left-down" + | "ph:arrow-u-left-down-bold" + | "ph:arrow-u-left-down-duotone" + | "ph:arrow-u-left-down-fill" + | "ph:arrow-u-left-down-light" + | "ph:arrow-u-left-down-thin" + | "ph:arrow-u-left-up" + | "ph:arrow-u-left-up-bold" + | "ph:arrow-u-left-up-duotone" + | "ph:arrow-u-left-up-fill" + | "ph:arrow-u-left-up-light" + | "ph:arrow-u-left-up-thin" + | "ph:arrow-u-right-down" + | "ph:arrow-u-right-down-bold" + | "ph:arrow-u-right-down-duotone" + | "ph:arrow-u-right-down-fill" + | "ph:arrow-u-right-down-light" + | "ph:arrow-u-right-down-thin" + | "ph:arrow-u-right-up" + | "ph:arrow-u-right-up-bold" + | "ph:arrow-u-right-up-duotone" + | "ph:arrow-u-right-up-fill" + | "ph:arrow-u-right-up-light" + | "ph:arrow-u-right-up-thin" + | "ph:arrow-u-up-left" + | "ph:arrow-u-up-left-bold" + | "ph:arrow-u-up-left-duotone" + | "ph:arrow-u-up-left-fill" + | "ph:arrow-u-up-left-light" + | "ph:arrow-u-up-left-thin" + | "ph:arrow-u-up-right" + | "ph:arrow-u-up-right-bold" + | "ph:arrow-u-up-right-duotone" + | "ph:arrow-u-up-right-fill" + | "ph:arrow-u-up-right-light" + | "ph:arrow-u-up-right-thin" + | "ph:arrow-up" + | "ph:arrow-up-bold" + | "ph:arrow-up-duotone" + | "ph:arrow-up-fill" + | "ph:arrow-up-left" + | "ph:arrow-up-left-bold" + | "ph:arrow-up-left-duotone" + | "ph:arrow-up-left-fill" + | "ph:arrow-up-left-light" + | "ph:arrow-up-left-thin" + | "ph:arrow-up-light" + | "ph:arrow-up-right" + | "ph:arrow-up-right-bold" + | "ph:arrow-up-right-duotone" + | "ph:arrow-up-right-fill" + | "ph:arrow-up-right-light" + | "ph:arrow-up-right-thin" + | "ph:arrow-up-thin" + | "ph:arrows-clockwise" + | "ph:arrows-clockwise-bold" + | "ph:arrows-clockwise-duotone" + | "ph:arrows-clockwise-fill" + | "ph:arrows-clockwise-light" + | "ph:arrows-clockwise-thin" + | "ph:arrows-counter-clockwise" + | "ph:arrows-counter-clockwise-bold" + | "ph:arrows-counter-clockwise-duotone" + | "ph:arrows-counter-clockwise-fill" + | "ph:arrows-counter-clockwise-light" + | "ph:arrows-counter-clockwise-thin" + | "ph:arrows-down-up" + | "ph:arrows-down-up-bold" + | "ph:arrows-down-up-duotone" + | "ph:arrows-down-up-fill" + | "ph:arrows-down-up-light" + | "ph:arrows-down-up-thin" + | "ph:arrows-horizontal" + | "ph:arrows-horizontal-bold" + | "ph:arrows-horizontal-duotone" + | "ph:arrows-horizontal-fill" + | "ph:arrows-horizontal-light" + | "ph:arrows-horizontal-thin" + | "ph:arrows-in" + | "ph:arrows-in-bold" + | "ph:arrows-in-cardinal" + | "ph:arrows-in-cardinal-bold" + | "ph:arrows-in-cardinal-duotone" + | "ph:arrows-in-cardinal-fill" + | "ph:arrows-in-cardinal-light" + | "ph:arrows-in-cardinal-thin" + | "ph:arrows-in-duotone" + | "ph:arrows-in-fill" + | "ph:arrows-in-light" + | "ph:arrows-in-line-horizontal" + | "ph:arrows-in-line-horizontal-bold" + | "ph:arrows-in-line-horizontal-duotone" + | "ph:arrows-in-line-horizontal-fill" + | "ph:arrows-in-line-horizontal-light" + | "ph:arrows-in-line-horizontal-thin" + | "ph:arrows-in-line-vertical" + | "ph:arrows-in-line-vertical-bold" + | "ph:arrows-in-line-vertical-duotone" + | "ph:arrows-in-line-vertical-fill" + | "ph:arrows-in-line-vertical-light" + | "ph:arrows-in-line-vertical-thin" + | "ph:arrows-in-simple" + | "ph:arrows-in-simple-bold" + | "ph:arrows-in-simple-duotone" + | "ph:arrows-in-simple-fill" + | "ph:arrows-in-simple-light" + | "ph:arrows-in-simple-thin" + | "ph:arrows-in-thin" + | "ph:arrows-left-right" + | "ph:arrows-left-right-bold" + | "ph:arrows-left-right-duotone" + | "ph:arrows-left-right-fill" + | "ph:arrows-left-right-light" + | "ph:arrows-left-right-thin" + | "ph:arrows-merge" + | "ph:arrows-merge-bold" + | "ph:arrows-merge-duotone" + | "ph:arrows-merge-fill" + | "ph:arrows-merge-light" + | "ph:arrows-merge-thin" + | "ph:arrows-out" + | "ph:arrows-out-bold" + | "ph:arrows-out-cardinal" + | "ph:arrows-out-cardinal-bold" + | "ph:arrows-out-cardinal-duotone" + | "ph:arrows-out-cardinal-fill" + | "ph:arrows-out-cardinal-light" + | "ph:arrows-out-cardinal-thin" + | "ph:arrows-out-duotone" + | "ph:arrows-out-fill" + | "ph:arrows-out-light" + | "ph:arrows-out-line-horizontal" + | "ph:arrows-out-line-horizontal-bold" + | "ph:arrows-out-line-horizontal-duotone" + | "ph:arrows-out-line-horizontal-fill" + | "ph:arrows-out-line-horizontal-light" + | "ph:arrows-out-line-horizontal-thin" + | "ph:arrows-out-line-vertical" + | "ph:arrows-out-line-vertical-bold" + | "ph:arrows-out-line-vertical-duotone" + | "ph:arrows-out-line-vertical-fill" + | "ph:arrows-out-line-vertical-light" + | "ph:arrows-out-line-vertical-thin" + | "ph:arrows-out-simple" + | "ph:arrows-out-simple-bold" + | "ph:arrows-out-simple-duotone" + | "ph:arrows-out-simple-fill" + | "ph:arrows-out-simple-light" + | "ph:arrows-out-simple-thin" + | "ph:arrows-out-thin" + | "ph:arrows-split" + | "ph:arrows-split-bold" + | "ph:arrows-split-duotone" + | "ph:arrows-split-fill" + | "ph:arrows-split-light" + | "ph:arrows-split-thin" + | "ph:arrows-vertical" + | "ph:arrows-vertical-bold" + | "ph:arrows-vertical-duotone" + | "ph:arrows-vertical-fill" + | "ph:arrows-vertical-light" + | "ph:arrows-vertical-thin" + | "ph:article" + | "ph:article-bold" + | "ph:article-duotone" + | "ph:article-fill" + | "ph:article-light" + | "ph:article-medium" + | "ph:article-medium-bold" + | "ph:article-medium-duotone" + | "ph:article-medium-fill" + | "ph:article-medium-light" + | "ph:article-medium-thin" + | "ph:article-ny-times" + | "ph:article-ny-times-bold" + | "ph:article-ny-times-duotone" + | "ph:article-ny-times-fill" + | "ph:article-ny-times-light" + | "ph:article-ny-times-thin" + | "ph:article-thin" + | "ph:asclepius" + | "ph:asclepius-bold" + | "ph:asclepius-duotone" + | "ph:asclepius-fill" + | "ph:asclepius-light" + | "ph:asclepius-thin" + | "ph:asterisk" + | "ph:asterisk-bold" + | "ph:asterisk-duotone" + | "ph:asterisk-fill" + | "ph:asterisk-light" + | "ph:asterisk-simple" + | "ph:asterisk-simple-bold" + | "ph:asterisk-simple-duotone" + | "ph:asterisk-simple-fill" + | "ph:asterisk-simple-light" + | "ph:asterisk-simple-thin" + | "ph:asterisk-thin" + | "ph:at" + | "ph:at-bold" + | "ph:at-duotone" + | "ph:at-fill" + | "ph:at-light" + | "ph:at-thin" + | "ph:atom" + | "ph:atom-bold" + | "ph:atom-duotone" + | "ph:atom-fill" + | "ph:atom-light" + | "ph:atom-thin" + | "ph:avocado" + | "ph:avocado-bold" + | "ph:avocado-duotone" + | "ph:avocado-fill" + | "ph:avocado-light" + | "ph:avocado-thin" + | "ph:axe" + | "ph:axe-bold" + | "ph:axe-duotone" + | "ph:axe-fill" + | "ph:axe-light" + | "ph:axe-thin" + | "ph:baby" + | "ph:baby-bold" + | "ph:baby-carriage" + | "ph:baby-carriage-bold" + | "ph:baby-carriage-duotone" + | "ph:baby-carriage-fill" + | "ph:baby-carriage-light" + | "ph:baby-carriage-thin" + | "ph:baby-duotone" + | "ph:baby-fill" + | "ph:baby-light" + | "ph:baby-thin" + | "ph:backpack" + | "ph:backpack-bold" + | "ph:backpack-duotone" + | "ph:backpack-fill" + | "ph:backpack-light" + | "ph:backpack-thin" + | "ph:backspace" + | "ph:backspace-bold" + | "ph:backspace-duotone" + | "ph:backspace-fill" + | "ph:backspace-light" + | "ph:backspace-thin" + | "ph:bag" + | "ph:bag-bold" + | "ph:bag-duotone" + | "ph:bag-fill" + | "ph:bag-light" + | "ph:bag-simple" + | "ph:bag-simple-bold" + | "ph:bag-simple-duotone" + | "ph:bag-simple-fill" + | "ph:bag-simple-light" + | "ph:bag-simple-thin" + | "ph:bag-thin" + | "ph:balloon" + | "ph:balloon-bold" + | "ph:balloon-duotone" + | "ph:balloon-fill" + | "ph:balloon-light" + | "ph:balloon-thin" + | "ph:bandaids" + | "ph:bandaids-bold" + | "ph:bandaids-duotone" + | "ph:bandaids-fill" + | "ph:bandaids-light" + | "ph:bandaids-thin" + | "ph:bank" + | "ph:bank-bold" + | "ph:bank-duotone" + | "ph:bank-fill" + | "ph:bank-light" + | "ph:bank-thin" + | "ph:barbell" + | "ph:barbell-bold" + | "ph:barbell-duotone" + | "ph:barbell-fill" + | "ph:barbell-light" + | "ph:barbell-thin" + | "ph:barcode" + | "ph:barcode-bold" + | "ph:barcode-duotone" + | "ph:barcode-fill" + | "ph:barcode-light" + | "ph:barcode-thin" + | "ph:barn" + | "ph:barn-bold" + | "ph:barn-duotone" + | "ph:barn-fill" + | "ph:barn-light" + | "ph:barn-thin" + | "ph:barricade" + | "ph:barricade-bold" + | "ph:barricade-duotone" + | "ph:barricade-fill" + | "ph:barricade-light" + | "ph:barricade-thin" + | "ph:baseball" + | "ph:baseball-bold" + | "ph:baseball-cap" + | "ph:baseball-cap-bold" + | "ph:baseball-cap-duotone" + | "ph:baseball-cap-fill" + | "ph:baseball-cap-light" + | "ph:baseball-cap-thin" + | "ph:baseball-duotone" + | "ph:baseball-fill" + | "ph:baseball-helmet" + | "ph:baseball-helmet-bold" + | "ph:baseball-helmet-duotone" + | "ph:baseball-helmet-fill" + | "ph:baseball-helmet-light" + | "ph:baseball-helmet-thin" + | "ph:baseball-light" + | "ph:baseball-thin" + | "ph:basket" + | "ph:basket-bold" + | "ph:basket-duotone" + | "ph:basket-fill" + | "ph:basket-light" + | "ph:basket-thin" + | "ph:basketball" + | "ph:basketball-bold" + | "ph:basketball-duotone" + | "ph:basketball-fill" + | "ph:basketball-light" + | "ph:basketball-thin" + | "ph:bathtub" + | "ph:bathtub-bold" + | "ph:bathtub-duotone" + | "ph:bathtub-fill" + | "ph:bathtub-light" + | "ph:bathtub-thin" + | "ph:battery-charging" + | "ph:battery-charging-bold" + | "ph:battery-charging-duotone" + | "ph:battery-charging-fill" + | "ph:battery-charging-light" + | "ph:battery-charging-thin" + | "ph:battery-charging-vertical" + | "ph:battery-charging-vertical-bold" + | "ph:battery-charging-vertical-duotone" + | "ph:battery-charging-vertical-fill" + | "ph:battery-charging-vertical-light" + | "ph:battery-charging-vertical-thin" + | "ph:battery-empty" + | "ph:battery-empty-bold" + | "ph:battery-empty-duotone" + | "ph:battery-empty-fill" + | "ph:battery-empty-light" + | "ph:battery-empty-thin" + | "ph:battery-full" + | "ph:battery-full-bold" + | "ph:battery-full-duotone" + | "ph:battery-full-fill" + | "ph:battery-full-light" + | "ph:battery-full-thin" + | "ph:battery-high" + | "ph:battery-high-bold" + | "ph:battery-high-duotone" + | "ph:battery-high-fill" + | "ph:battery-high-light" + | "ph:battery-high-thin" + | "ph:battery-low" + | "ph:battery-low-bold" + | "ph:battery-low-duotone" + | "ph:battery-low-fill" + | "ph:battery-low-light" + | "ph:battery-low-thin" + | "ph:battery-medium" + | "ph:battery-medium-bold" + | "ph:battery-medium-duotone" + | "ph:battery-medium-fill" + | "ph:battery-medium-light" + | "ph:battery-medium-thin" + | "ph:battery-plus" + | "ph:battery-plus-bold" + | "ph:battery-plus-duotone" + | "ph:battery-plus-fill" + | "ph:battery-plus-light" + | "ph:battery-plus-thin" + | "ph:battery-plus-vertical" + | "ph:battery-plus-vertical-bold" + | "ph:battery-plus-vertical-duotone" + | "ph:battery-plus-vertical-fill" + | "ph:battery-plus-vertical-light" + | "ph:battery-plus-vertical-thin" + | "ph:battery-vertical-empty" + | "ph:battery-vertical-empty-bold" + | "ph:battery-vertical-empty-duotone" + | "ph:battery-vertical-empty-fill" + | "ph:battery-vertical-empty-light" + | "ph:battery-vertical-empty-thin" + | "ph:battery-vertical-full" + | "ph:battery-vertical-full-bold" + | "ph:battery-vertical-full-duotone" + | "ph:battery-vertical-full-fill" + | "ph:battery-vertical-full-light" + | "ph:battery-vertical-full-thin" + | "ph:battery-vertical-high" + | "ph:battery-vertical-high-bold" + | "ph:battery-vertical-high-duotone" + | "ph:battery-vertical-high-fill" + | "ph:battery-vertical-high-light" + | "ph:battery-vertical-high-thin" + | "ph:battery-vertical-low" + | "ph:battery-vertical-low-bold" + | "ph:battery-vertical-low-duotone" + | "ph:battery-vertical-low-fill" + | "ph:battery-vertical-low-light" + | "ph:battery-vertical-low-thin" + | "ph:battery-vertical-medium" + | "ph:battery-vertical-medium-bold" + | "ph:battery-vertical-medium-duotone" + | "ph:battery-vertical-medium-fill" + | "ph:battery-vertical-medium-light" + | "ph:battery-vertical-medium-thin" + | "ph:battery-warning" + | "ph:battery-warning-bold" + | "ph:battery-warning-duotone" + | "ph:battery-warning-fill" + | "ph:battery-warning-light" + | "ph:battery-warning-thin" + | "ph:battery-warning-vertical" + | "ph:battery-warning-vertical-bold" + | "ph:battery-warning-vertical-duotone" + | "ph:battery-warning-vertical-fill" + | "ph:battery-warning-vertical-light" + | "ph:battery-warning-vertical-thin" + | "ph:beach-ball" + | "ph:beach-ball-bold" + | "ph:beach-ball-duotone" + | "ph:beach-ball-fill" + | "ph:beach-ball-light" + | "ph:beach-ball-thin" + | "ph:beanie" + | "ph:beanie-bold" + | "ph:beanie-duotone" + | "ph:beanie-fill" + | "ph:beanie-light" + | "ph:beanie-thin" + | "ph:bed" + | "ph:bed-bold" + | "ph:bed-duotone" + | "ph:bed-fill" + | "ph:bed-light" + | "ph:bed-thin" + | "ph:beer-bottle" + | "ph:beer-bottle-bold" + | "ph:beer-bottle-duotone" + | "ph:beer-bottle-fill" + | "ph:beer-bottle-light" + | "ph:beer-bottle-thin" + | "ph:beer-stein" + | "ph:beer-stein-bold" + | "ph:beer-stein-duotone" + | "ph:beer-stein-fill" + | "ph:beer-stein-light" + | "ph:beer-stein-thin" + | "ph:behance-logo" + | "ph:behance-logo-bold" + | "ph:behance-logo-duotone" + | "ph:behance-logo-fill" + | "ph:behance-logo-light" + | "ph:behance-logo-thin" + | "ph:bell" + | "ph:bell-bold" + | "ph:bell-duotone" + | "ph:bell-fill" + | "ph:bell-light" + | "ph:bell-ringing" + | "ph:bell-ringing-bold" + | "ph:bell-ringing-duotone" + | "ph:bell-ringing-fill" + | "ph:bell-ringing-light" + | "ph:bell-ringing-thin" + | "ph:bell-simple" + | "ph:bell-simple-bold" + | "ph:bell-simple-duotone" + | "ph:bell-simple-fill" + | "ph:bell-simple-light" + | "ph:bell-simple-ringing" + | "ph:bell-simple-ringing-bold" + | "ph:bell-simple-ringing-duotone" + | "ph:bell-simple-ringing-fill" + | "ph:bell-simple-ringing-light" + | "ph:bell-simple-ringing-thin" + | "ph:bell-simple-slash" + | "ph:bell-simple-slash-bold" + | "ph:bell-simple-slash-duotone" + | "ph:bell-simple-slash-fill" + | "ph:bell-simple-slash-light" + | "ph:bell-simple-slash-thin" + | "ph:bell-simple-thin" + | "ph:bell-simple-z" + | "ph:bell-simple-z-bold" + | "ph:bell-simple-z-duotone" + | "ph:bell-simple-z-fill" + | "ph:bell-simple-z-light" + | "ph:bell-simple-z-thin" + | "ph:bell-slash" + | "ph:bell-slash-bold" + | "ph:bell-slash-duotone" + | "ph:bell-slash-fill" + | "ph:bell-slash-light" + | "ph:bell-slash-thin" + | "ph:bell-thin" + | "ph:bell-z" + | "ph:bell-z-bold" + | "ph:bell-z-duotone" + | "ph:bell-z-fill" + | "ph:bell-z-light" + | "ph:bell-z-thin" + | "ph:belt" + | "ph:belt-bold" + | "ph:belt-duotone" + | "ph:belt-fill" + | "ph:belt-light" + | "ph:belt-thin" + | "ph:bezier-curve" + | "ph:bezier-curve-bold" + | "ph:bezier-curve-duotone" + | "ph:bezier-curve-fill" + | "ph:bezier-curve-light" + | "ph:bezier-curve-thin" + | "ph:bicycle" + | "ph:bicycle-bold" + | "ph:bicycle-duotone" + | "ph:bicycle-fill" + | "ph:bicycle-light" + | "ph:bicycle-thin" + | "ph:binary" + | "ph:binary-bold" + | "ph:binary-duotone" + | "ph:binary-fill" + | "ph:binary-light" + | "ph:binary-thin" + | "ph:binoculars" + | "ph:binoculars-bold" + | "ph:binoculars-duotone" + | "ph:binoculars-fill" + | "ph:binoculars-light" + | "ph:binoculars-thin" + | "ph:biohazard" + | "ph:biohazard-bold" + | "ph:biohazard-duotone" + | "ph:biohazard-fill" + | "ph:biohazard-light" + | "ph:biohazard-thin" + | "ph:bird" + | "ph:bird-bold" + | "ph:bird-duotone" + | "ph:bird-fill" + | "ph:bird-light" + | "ph:bird-thin" + | "ph:blueprint" + | "ph:blueprint-bold" + | "ph:blueprint-duotone" + | "ph:blueprint-fill" + | "ph:blueprint-light" + | "ph:blueprint-thin" + | "ph:bluetooth" + | "ph:bluetooth-bold" + | "ph:bluetooth-connected" + | "ph:bluetooth-connected-bold" + | "ph:bluetooth-connected-duotone" + | "ph:bluetooth-connected-fill" + | "ph:bluetooth-connected-light" + | "ph:bluetooth-connected-thin" + | "ph:bluetooth-duotone" + | "ph:bluetooth-fill" + | "ph:bluetooth-light" + | "ph:bluetooth-slash" + | "ph:bluetooth-slash-bold" + | "ph:bluetooth-slash-duotone" + | "ph:bluetooth-slash-fill" + | "ph:bluetooth-slash-light" + | "ph:bluetooth-slash-thin" + | "ph:bluetooth-thin" + | "ph:bluetooth-x" + | "ph:bluetooth-x-bold" + | "ph:bluetooth-x-duotone" + | "ph:bluetooth-x-fill" + | "ph:bluetooth-x-light" + | "ph:bluetooth-x-thin" + | "ph:boat" + | "ph:boat-bold" + | "ph:boat-duotone" + | "ph:boat-fill" + | "ph:boat-light" + | "ph:boat-thin" + | "ph:bomb" + | "ph:bomb-bold" + | "ph:bomb-duotone" + | "ph:bomb-fill" + | "ph:bomb-light" + | "ph:bomb-thin" + | "ph:bone" + | "ph:bone-bold" + | "ph:bone-duotone" + | "ph:bone-fill" + | "ph:bone-light" + | "ph:bone-thin" + | "ph:book" + | "ph:book-bold" + | "ph:book-bookmark" + | "ph:book-bookmark-bold" + | "ph:book-bookmark-duotone" + | "ph:book-bookmark-fill" + | "ph:book-bookmark-light" + | "ph:book-bookmark-thin" + | "ph:book-duotone" + | "ph:book-fill" + | "ph:book-light" + | "ph:book-open" + | "ph:book-open-bold" + | "ph:book-open-duotone" + | "ph:book-open-fill" + | "ph:book-open-light" + | "ph:book-open-text" + | "ph:book-open-text-bold" + | "ph:book-open-text-duotone" + | "ph:book-open-text-fill" + | "ph:book-open-text-light" + | "ph:book-open-text-thin" + | "ph:book-open-thin" + | "ph:book-open-user" + | "ph:book-open-user-bold" + | "ph:book-open-user-duotone" + | "ph:book-open-user-fill" + | "ph:book-open-user-light" + | "ph:book-open-user-thin" + | "ph:book-thin" + | "ph:bookmark" + | "ph:bookmark-bold" + | "ph:bookmark-duotone" + | "ph:bookmark-fill" + | "ph:bookmark-light" + | "ph:bookmark-simple" + | "ph:bookmark-simple-bold" + | "ph:bookmark-simple-duotone" + | "ph:bookmark-simple-fill" + | "ph:bookmark-simple-light" + | "ph:bookmark-simple-thin" + | "ph:bookmark-thin" + | "ph:bookmarks" + | "ph:bookmarks-bold" + | "ph:bookmarks-duotone" + | "ph:bookmarks-fill" + | "ph:bookmarks-light" + | "ph:bookmarks-simple" + | "ph:bookmarks-simple-bold" + | "ph:bookmarks-simple-duotone" + | "ph:bookmarks-simple-fill" + | "ph:bookmarks-simple-light" + | "ph:bookmarks-simple-thin" + | "ph:bookmarks-thin" + | "ph:books" + | "ph:books-bold" + | "ph:books-duotone" + | "ph:books-fill" + | "ph:books-light" + | "ph:books-thin" + | "ph:boot" + | "ph:boot-bold" + | "ph:boot-duotone" + | "ph:boot-fill" + | "ph:boot-light" + | "ph:boot-thin" + | "ph:boules" + | "ph:boules-bold" + | "ph:boules-duotone" + | "ph:boules-fill" + | "ph:boules-light" + | "ph:boules-thin" + | "ph:bounding-box" + | "ph:bounding-box-bold" + | "ph:bounding-box-duotone" + | "ph:bounding-box-fill" + | "ph:bounding-box-light" + | "ph:bounding-box-thin" + | "ph:bowl-food" + | "ph:bowl-food-bold" + | "ph:bowl-food-duotone" + | "ph:bowl-food-fill" + | "ph:bowl-food-light" + | "ph:bowl-food-thin" + | "ph:bowl-steam" + | "ph:bowl-steam-bold" + | "ph:bowl-steam-duotone" + | "ph:bowl-steam-fill" + | "ph:bowl-steam-light" + | "ph:bowl-steam-thin" + | "ph:bowling-ball" + | "ph:bowling-ball-bold" + | "ph:bowling-ball-duotone" + | "ph:bowling-ball-fill" + | "ph:bowling-ball-light" + | "ph:bowling-ball-thin" + | "ph:box-arrow-down" + | "ph:box-arrow-down-bold" + | "ph:box-arrow-down-duotone" + | "ph:box-arrow-down-fill" + | "ph:box-arrow-down-light" + | "ph:box-arrow-down-thin" + | "ph:box-arrow-up" + | "ph:box-arrow-up-bold" + | "ph:box-arrow-up-duotone" + | "ph:box-arrow-up-fill" + | "ph:box-arrow-up-light" + | "ph:box-arrow-up-thin" + | "ph:boxing-glove" + | "ph:boxing-glove-bold" + | "ph:boxing-glove-duotone" + | "ph:boxing-glove-fill" + | "ph:boxing-glove-light" + | "ph:boxing-glove-thin" + | "ph:brackets-angle" + | "ph:brackets-angle-bold" + | "ph:brackets-angle-duotone" + | "ph:brackets-angle-fill" + | "ph:brackets-angle-light" + | "ph:brackets-angle-thin" + | "ph:brackets-curly" + | "ph:brackets-curly-bold" + | "ph:brackets-curly-duotone" + | "ph:brackets-curly-fill" + | "ph:brackets-curly-light" + | "ph:brackets-curly-thin" + | "ph:brackets-round" + | "ph:brackets-round-bold" + | "ph:brackets-round-duotone" + | "ph:brackets-round-fill" + | "ph:brackets-round-light" + | "ph:brackets-round-thin" + | "ph:brackets-square" + | "ph:brackets-square-bold" + | "ph:brackets-square-duotone" + | "ph:brackets-square-fill" + | "ph:brackets-square-light" + | "ph:brackets-square-thin" + | "ph:brain" + | "ph:brain-bold" + | "ph:brain-duotone" + | "ph:brain-fill" + | "ph:brain-light" + | "ph:brain-thin" + | "ph:brandy" + | "ph:brandy-bold" + | "ph:brandy-duotone" + | "ph:brandy-fill" + | "ph:brandy-light" + | "ph:brandy-thin" + | "ph:bread" + | "ph:bread-bold" + | "ph:bread-duotone" + | "ph:bread-fill" + | "ph:bread-light" + | "ph:bread-thin" + | "ph:bridge" + | "ph:bridge-bold" + | "ph:bridge-duotone" + | "ph:bridge-fill" + | "ph:bridge-light" + | "ph:bridge-thin" + | "ph:briefcase" + | "ph:briefcase-bold" + | "ph:briefcase-duotone" + | "ph:briefcase-fill" + | "ph:briefcase-light" + | "ph:briefcase-metal" + | "ph:briefcase-metal-bold" + | "ph:briefcase-metal-duotone" + | "ph:briefcase-metal-fill" + | "ph:briefcase-metal-light" + | "ph:briefcase-metal-thin" + | "ph:briefcase-simple" + | "ph:briefcase-simple-bold" + | "ph:briefcase-simple-duotone" + | "ph:briefcase-simple-fill" + | "ph:briefcase-simple-light" + | "ph:briefcase-simple-thin" + | "ph:briefcase-thin" + | "ph:broadcast" + | "ph:broadcast-bold" + | "ph:broadcast-duotone" + | "ph:broadcast-fill" + | "ph:broadcast-light" + | "ph:broadcast-thin" + | "ph:broom" + | "ph:broom-bold" + | "ph:broom-duotone" + | "ph:broom-fill" + | "ph:broom-light" + | "ph:broom-thin" + | "ph:browser" + | "ph:browser-bold" + | "ph:browser-duotone" + | "ph:browser-fill" + | "ph:browser-light" + | "ph:browser-thin" + | "ph:browsers" + | "ph:browsers-bold" + | "ph:browsers-duotone" + | "ph:browsers-fill" + | "ph:browsers-light" + | "ph:browsers-thin" + | "ph:bug" + | "ph:bug-beetle" + | "ph:bug-beetle-bold" + | "ph:bug-beetle-duotone" + | "ph:bug-beetle-fill" + | "ph:bug-beetle-light" + | "ph:bug-beetle-thin" + | "ph:bug-bold" + | "ph:bug-droid" + | "ph:bug-droid-bold" + | "ph:bug-droid-duotone" + | "ph:bug-droid-fill" + | "ph:bug-droid-light" + | "ph:bug-droid-thin" + | "ph:bug-duotone" + | "ph:bug-fill" + | "ph:bug-light" + | "ph:bug-thin" + | "ph:building" + | "ph:building-apartment" + | "ph:building-apartment-bold" + | "ph:building-apartment-duotone" + | "ph:building-apartment-fill" + | "ph:building-apartment-light" + | "ph:building-apartment-thin" + | "ph:building-bold" + | "ph:building-duotone" + | "ph:building-fill" + | "ph:building-light" + | "ph:building-office" + | "ph:building-office-bold" + | "ph:building-office-duotone" + | "ph:building-office-fill" + | "ph:building-office-light" + | "ph:building-office-thin" + | "ph:building-thin" + | "ph:buildings" + | "ph:buildings-bold" + | "ph:buildings-duotone" + | "ph:buildings-fill" + | "ph:buildings-light" + | "ph:buildings-thin" + | "ph:bulldozer" + | "ph:bulldozer-bold" + | "ph:bulldozer-duotone" + | "ph:bulldozer-fill" + | "ph:bulldozer-light" + | "ph:bulldozer-thin" + | "ph:bus" + | "ph:bus-bold" + | "ph:bus-duotone" + | "ph:bus-fill" + | "ph:bus-light" + | "ph:bus-thin" + | "ph:butterfly" + | "ph:butterfly-bold" + | "ph:butterfly-duotone" + | "ph:butterfly-fill" + | "ph:butterfly-light" + | "ph:butterfly-thin" + | "ph:cable-car" + | "ph:cable-car-bold" + | "ph:cable-car-duotone" + | "ph:cable-car-fill" + | "ph:cable-car-light" + | "ph:cable-car-thin" + | "ph:cactus" + | "ph:cactus-bold" + | "ph:cactus-duotone" + | "ph:cactus-fill" + | "ph:cactus-light" + | "ph:cactus-thin" + | "ph:cake" + | "ph:cake-bold" + | "ph:cake-duotone" + | "ph:cake-fill" + | "ph:cake-light" + | "ph:cake-thin" + | "ph:calculator" + | "ph:calculator-bold" + | "ph:calculator-duotone" + | "ph:calculator-fill" + | "ph:calculator-light" + | "ph:calculator-thin" + | "ph:calendar" + | "ph:calendar-blank" + | "ph:calendar-blank-bold" + | "ph:calendar-blank-duotone" + | "ph:calendar-blank-fill" + | "ph:calendar-blank-light" + | "ph:calendar-blank-thin" + | "ph:calendar-bold" + | "ph:calendar-check" + | "ph:calendar-check-bold" + | "ph:calendar-check-duotone" + | "ph:calendar-check-fill" + | "ph:calendar-check-light" + | "ph:calendar-check-thin" + | "ph:calendar-dot" + | "ph:calendar-dot-bold" + | "ph:calendar-dot-duotone" + | "ph:calendar-dot-fill" + | "ph:calendar-dot-light" + | "ph:calendar-dot-thin" + | "ph:calendar-dots" + | "ph:calendar-dots-bold" + | "ph:calendar-dots-duotone" + | "ph:calendar-dots-fill" + | "ph:calendar-dots-light" + | "ph:calendar-dots-thin" + | "ph:calendar-duotone" + | "ph:calendar-fill" + | "ph:calendar-heart" + | "ph:calendar-heart-bold" + | "ph:calendar-heart-duotone" + | "ph:calendar-heart-fill" + | "ph:calendar-heart-light" + | "ph:calendar-heart-thin" + | "ph:calendar-light" + | "ph:calendar-minus" + | "ph:calendar-minus-bold" + | "ph:calendar-minus-duotone" + | "ph:calendar-minus-fill" + | "ph:calendar-minus-light" + | "ph:calendar-minus-thin" + | "ph:calendar-plus" + | "ph:calendar-plus-bold" + | "ph:calendar-plus-duotone" + | "ph:calendar-plus-fill" + | "ph:calendar-plus-light" + | "ph:calendar-plus-thin" + | "ph:calendar-slash" + | "ph:calendar-slash-bold" + | "ph:calendar-slash-duotone" + | "ph:calendar-slash-fill" + | "ph:calendar-slash-light" + | "ph:calendar-slash-thin" + | "ph:calendar-star" + | "ph:calendar-star-bold" + | "ph:calendar-star-duotone" + | "ph:calendar-star-fill" + | "ph:calendar-star-light" + | "ph:calendar-star-thin" + | "ph:calendar-thin" + | "ph:calendar-x" + | "ph:calendar-x-bold" + | "ph:calendar-x-duotone" + | "ph:calendar-x-fill" + | "ph:calendar-x-light" + | "ph:calendar-x-thin" + | "ph:call-bell" + | "ph:call-bell-bold" + | "ph:call-bell-duotone" + | "ph:call-bell-fill" + | "ph:call-bell-light" + | "ph:call-bell-thin" + | "ph:camera" + | "ph:camera-bold" + | "ph:camera-duotone" + | "ph:camera-fill" + | "ph:camera-light" + | "ph:camera-plus" + | "ph:camera-plus-bold" + | "ph:camera-plus-duotone" + | "ph:camera-plus-fill" + | "ph:camera-plus-light" + | "ph:camera-plus-thin" + | "ph:camera-rotate" + | "ph:camera-rotate-bold" + | "ph:camera-rotate-duotone" + | "ph:camera-rotate-fill" + | "ph:camera-rotate-light" + | "ph:camera-rotate-thin" + | "ph:camera-slash" + | "ph:camera-slash-bold" + | "ph:camera-slash-duotone" + | "ph:camera-slash-fill" + | "ph:camera-slash-light" + | "ph:camera-slash-thin" + | "ph:camera-thin" + | "ph:campfire" + | "ph:campfire-bold" + | "ph:campfire-duotone" + | "ph:campfire-fill" + | "ph:campfire-light" + | "ph:campfire-thin" + | "ph:car" + | "ph:car-battery" + | "ph:car-battery-bold" + | "ph:car-battery-duotone" + | "ph:car-battery-fill" + | "ph:car-battery-light" + | "ph:car-battery-thin" + | "ph:car-bold" + | "ph:car-duotone" + | "ph:car-fill" + | "ph:car-light" + | "ph:car-profile" + | "ph:car-profile-bold" + | "ph:car-profile-duotone" + | "ph:car-profile-fill" + | "ph:car-profile-light" + | "ph:car-profile-thin" + | "ph:car-simple" + | "ph:car-simple-bold" + | "ph:car-simple-duotone" + | "ph:car-simple-fill" + | "ph:car-simple-light" + | "ph:car-simple-thin" + | "ph:car-thin" + | "ph:cardholder" + | "ph:cardholder-bold" + | "ph:cardholder-duotone" + | "ph:cardholder-fill" + | "ph:cardholder-light" + | "ph:cardholder-thin" + | "ph:cards" + | "ph:cards-bold" + | "ph:cards-duotone" + | "ph:cards-fill" + | "ph:cards-light" + | "ph:cards-thin" + | "ph:cards-three" + | "ph:cards-three-bold" + | "ph:cards-three-duotone" + | "ph:cards-three-fill" + | "ph:cards-three-light" + | "ph:cards-three-thin" + | "ph:caret-circle-double-down" + | "ph:caret-circle-double-down-bold" + | "ph:caret-circle-double-down-duotone" + | "ph:caret-circle-double-down-fill" + | "ph:caret-circle-double-down-light" + | "ph:caret-circle-double-down-thin" + | "ph:caret-circle-double-left" + | "ph:caret-circle-double-left-bold" + | "ph:caret-circle-double-left-duotone" + | "ph:caret-circle-double-left-fill" + | "ph:caret-circle-double-left-light" + | "ph:caret-circle-double-left-thin" + | "ph:caret-circle-double-right" + | "ph:caret-circle-double-right-bold" + | "ph:caret-circle-double-right-duotone" + | "ph:caret-circle-double-right-fill" + | "ph:caret-circle-double-right-light" + | "ph:caret-circle-double-right-thin" + | "ph:caret-circle-double-up" + | "ph:caret-circle-double-up-bold" + | "ph:caret-circle-double-up-duotone" + | "ph:caret-circle-double-up-fill" + | "ph:caret-circle-double-up-light" + | "ph:caret-circle-double-up-thin" + | "ph:caret-circle-down" + | "ph:caret-circle-down-bold" + | "ph:caret-circle-down-duotone" + | "ph:caret-circle-down-fill" + | "ph:caret-circle-down-light" + | "ph:caret-circle-down-thin" + | "ph:caret-circle-left" + | "ph:caret-circle-left-bold" + | "ph:caret-circle-left-duotone" + | "ph:caret-circle-left-fill" + | "ph:caret-circle-left-light" + | "ph:caret-circle-left-thin" + | "ph:caret-circle-right" + | "ph:caret-circle-right-bold" + | "ph:caret-circle-right-duotone" + | "ph:caret-circle-right-fill" + | "ph:caret-circle-right-light" + | "ph:caret-circle-right-thin" + | "ph:caret-circle-up" + | "ph:caret-circle-up-bold" + | "ph:caret-circle-up-down" + | "ph:caret-circle-up-down-bold" + | "ph:caret-circle-up-down-duotone" + | "ph:caret-circle-up-down-fill" + | "ph:caret-circle-up-down-light" + | "ph:caret-circle-up-down-thin" + | "ph:caret-circle-up-duotone" + | "ph:caret-circle-up-fill" + | "ph:caret-circle-up-light" + | "ph:caret-circle-up-thin" + | "ph:caret-double-down" + | "ph:caret-double-down-bold" + | "ph:caret-double-down-duotone" + | "ph:caret-double-down-fill" + | "ph:caret-double-down-light" + | "ph:caret-double-down-thin" + | "ph:caret-double-left" + | "ph:caret-double-left-bold" + | "ph:caret-double-left-duotone" + | "ph:caret-double-left-fill" + | "ph:caret-double-left-light" + | "ph:caret-double-left-thin" + | "ph:caret-double-right" + | "ph:caret-double-right-bold" + | "ph:caret-double-right-duotone" + | "ph:caret-double-right-fill" + | "ph:caret-double-right-light" + | "ph:caret-double-right-thin" + | "ph:caret-double-up" + | "ph:caret-double-up-bold" + | "ph:caret-double-up-duotone" + | "ph:caret-double-up-fill" + | "ph:caret-double-up-light" + | "ph:caret-double-up-thin" + | "ph:caret-down" + | "ph:caret-down-bold" + | "ph:caret-down-duotone" + | "ph:caret-down-fill" + | "ph:caret-down-light" + | "ph:caret-down-thin" + | "ph:caret-left" + | "ph:caret-left-bold" + | "ph:caret-left-duotone" + | "ph:caret-left-fill" + | "ph:caret-left-light" + | "ph:caret-left-thin" + | "ph:caret-line-down" + | "ph:caret-line-down-bold" + | "ph:caret-line-down-duotone" + | "ph:caret-line-down-fill" + | "ph:caret-line-down-light" + | "ph:caret-line-down-thin" + | "ph:caret-line-left" + | "ph:caret-line-left-bold" + | "ph:caret-line-left-duotone" + | "ph:caret-line-left-fill" + | "ph:caret-line-left-light" + | "ph:caret-line-left-thin" + | "ph:caret-line-right" + | "ph:caret-line-right-bold" + | "ph:caret-line-right-duotone" + | "ph:caret-line-right-fill" + | "ph:caret-line-right-light" + | "ph:caret-line-right-thin" + | "ph:caret-line-up" + | "ph:caret-line-up-bold" + | "ph:caret-line-up-duotone" + | "ph:caret-line-up-fill" + | "ph:caret-line-up-light" + | "ph:caret-line-up-thin" + | "ph:caret-right" + | "ph:caret-right-bold" + | "ph:caret-right-duotone" + | "ph:caret-right-fill" + | "ph:caret-right-light" + | "ph:caret-right-thin" + | "ph:caret-up" + | "ph:caret-up-bold" + | "ph:caret-up-down" + | "ph:caret-up-down-bold" + | "ph:caret-up-down-duotone" + | "ph:caret-up-down-fill" + | "ph:caret-up-down-light" + | "ph:caret-up-down-thin" + | "ph:caret-up-duotone" + | "ph:caret-up-fill" + | "ph:caret-up-light" + | "ph:caret-up-thin" + | "ph:carrot" + | "ph:carrot-bold" + | "ph:carrot-duotone" + | "ph:carrot-fill" + | "ph:carrot-light" + | "ph:carrot-thin" + | "ph:cash-register" + | "ph:cash-register-bold" + | "ph:cash-register-duotone" + | "ph:cash-register-fill" + | "ph:cash-register-light" + | "ph:cash-register-thin" + | "ph:cassette-tape" + | "ph:cassette-tape-bold" + | "ph:cassette-tape-duotone" + | "ph:cassette-tape-fill" + | "ph:cassette-tape-light" + | "ph:cassette-tape-thin" + | "ph:castle-turret" + | "ph:castle-turret-bold" + | "ph:castle-turret-duotone" + | "ph:castle-turret-fill" + | "ph:castle-turret-light" + | "ph:castle-turret-thin" + | "ph:cat" + | "ph:cat-bold" + | "ph:cat-duotone" + | "ph:cat-fill" + | "ph:cat-light" + | "ph:cat-thin" + | "ph:cell-signal-full" + | "ph:cell-signal-full-bold" + | "ph:cell-signal-full-duotone" + | "ph:cell-signal-full-fill" + | "ph:cell-signal-full-light" + | "ph:cell-signal-full-thin" + | "ph:cell-signal-high" + | "ph:cell-signal-high-bold" + | "ph:cell-signal-high-duotone" + | "ph:cell-signal-high-fill" + | "ph:cell-signal-high-light" + | "ph:cell-signal-high-thin" + | "ph:cell-signal-low" + | "ph:cell-signal-low-bold" + | "ph:cell-signal-low-duotone" + | "ph:cell-signal-low-fill" + | "ph:cell-signal-low-light" + | "ph:cell-signal-low-thin" + | "ph:cell-signal-medium" + | "ph:cell-signal-medium-bold" + | "ph:cell-signal-medium-duotone" + | "ph:cell-signal-medium-fill" + | "ph:cell-signal-medium-light" + | "ph:cell-signal-medium-thin" + | "ph:cell-signal-none" + | "ph:cell-signal-none-bold" + | "ph:cell-signal-none-duotone" + | "ph:cell-signal-none-fill" + | "ph:cell-signal-none-light" + | "ph:cell-signal-none-thin" + | "ph:cell-signal-slash" + | "ph:cell-signal-slash-bold" + | "ph:cell-signal-slash-duotone" + | "ph:cell-signal-slash-fill" + | "ph:cell-signal-slash-light" + | "ph:cell-signal-slash-thin" + | "ph:cell-signal-x" + | "ph:cell-signal-x-bold" + | "ph:cell-signal-x-duotone" + | "ph:cell-signal-x-fill" + | "ph:cell-signal-x-light" + | "ph:cell-signal-x-thin" + | "ph:cell-tower" + | "ph:cell-tower-bold" + | "ph:cell-tower-duotone" + | "ph:cell-tower-fill" + | "ph:cell-tower-light" + | "ph:cell-tower-thin" + | "ph:certificate" + | "ph:certificate-bold" + | "ph:certificate-duotone" + | "ph:certificate-fill" + | "ph:certificate-light" + | "ph:certificate-thin" + | "ph:chair" + | "ph:chair-bold" + | "ph:chair-duotone" + | "ph:chair-fill" + | "ph:chair-light" + | "ph:chair-thin" + | "ph:chalkboard" + | "ph:chalkboard-bold" + | "ph:chalkboard-duotone" + | "ph:chalkboard-fill" + | "ph:chalkboard-light" + | "ph:chalkboard-simple" + | "ph:chalkboard-simple-bold" + | "ph:chalkboard-simple-duotone" + | "ph:chalkboard-simple-fill" + | "ph:chalkboard-simple-light" + | "ph:chalkboard-simple-thin" + | "ph:chalkboard-teacher" + | "ph:chalkboard-teacher-bold" + | "ph:chalkboard-teacher-duotone" + | "ph:chalkboard-teacher-fill" + | "ph:chalkboard-teacher-light" + | "ph:chalkboard-teacher-thin" + | "ph:chalkboard-thin" + | "ph:champagne" + | "ph:champagne-bold" + | "ph:champagne-duotone" + | "ph:champagne-fill" + | "ph:champagne-light" + | "ph:champagne-thin" + | "ph:charging-station" + | "ph:charging-station-bold" + | "ph:charging-station-duotone" + | "ph:charging-station-fill" + | "ph:charging-station-light" + | "ph:charging-station-thin" + | "ph:chart-bar" + | "ph:chart-bar-bold" + | "ph:chart-bar-duotone" + | "ph:chart-bar-fill" + | "ph:chart-bar-horizontal" + | "ph:chart-bar-horizontal-bold" + | "ph:chart-bar-horizontal-duotone" + | "ph:chart-bar-horizontal-fill" + | "ph:chart-bar-horizontal-light" + | "ph:chart-bar-horizontal-thin" + | "ph:chart-bar-light" + | "ph:chart-bar-thin" + | "ph:chart-donut" + | "ph:chart-donut-bold" + | "ph:chart-donut-duotone" + | "ph:chart-donut-fill" + | "ph:chart-donut-light" + | "ph:chart-donut-thin" + | "ph:chart-line" + | "ph:chart-line-bold" + | "ph:chart-line-down" + | "ph:chart-line-down-bold" + | "ph:chart-line-down-duotone" + | "ph:chart-line-down-fill" + | "ph:chart-line-down-light" + | "ph:chart-line-down-thin" + | "ph:chart-line-duotone" + | "ph:chart-line-fill" + | "ph:chart-line-light" + | "ph:chart-line-thin" + | "ph:chart-line-up" + | "ph:chart-line-up-bold" + | "ph:chart-line-up-duotone" + | "ph:chart-line-up-fill" + | "ph:chart-line-up-light" + | "ph:chart-line-up-thin" + | "ph:chart-pie" + | "ph:chart-pie-bold" + | "ph:chart-pie-duotone" + | "ph:chart-pie-fill" + | "ph:chart-pie-light" + | "ph:chart-pie-slice" + | "ph:chart-pie-slice-bold" + | "ph:chart-pie-slice-duotone" + | "ph:chart-pie-slice-fill" + | "ph:chart-pie-slice-light" + | "ph:chart-pie-slice-thin" + | "ph:chart-pie-thin" + | "ph:chart-polar" + | "ph:chart-polar-bold" + | "ph:chart-polar-duotone" + | "ph:chart-polar-fill" + | "ph:chart-polar-light" + | "ph:chart-polar-thin" + | "ph:chart-scatter" + | "ph:chart-scatter-bold" + | "ph:chart-scatter-duotone" + | "ph:chart-scatter-fill" + | "ph:chart-scatter-light" + | "ph:chart-scatter-thin" + | "ph:chat" + | "ph:chat-bold" + | "ph:chat-centered" + | "ph:chat-centered-bold" + | "ph:chat-centered-dots" + | "ph:chat-centered-dots-bold" + | "ph:chat-centered-dots-duotone" + | "ph:chat-centered-dots-fill" + | "ph:chat-centered-dots-light" + | "ph:chat-centered-dots-thin" + | "ph:chat-centered-duotone" + | "ph:chat-centered-fill" + | "ph:chat-centered-light" + | "ph:chat-centered-slash" + | "ph:chat-centered-slash-bold" + | "ph:chat-centered-slash-duotone" + | "ph:chat-centered-slash-fill" + | "ph:chat-centered-slash-light" + | "ph:chat-centered-slash-thin" + | "ph:chat-centered-text" + | "ph:chat-centered-text-bold" + | "ph:chat-centered-text-duotone" + | "ph:chat-centered-text-fill" + | "ph:chat-centered-text-light" + | "ph:chat-centered-text-thin" + | "ph:chat-centered-thin" + | "ph:chat-circle" + | "ph:chat-circle-bold" + | "ph:chat-circle-dots" + | "ph:chat-circle-dots-bold" + | "ph:chat-circle-dots-duotone" + | "ph:chat-circle-dots-fill" + | "ph:chat-circle-dots-light" + | "ph:chat-circle-dots-thin" + | "ph:chat-circle-duotone" + | "ph:chat-circle-fill" + | "ph:chat-circle-light" + | "ph:chat-circle-slash" + | "ph:chat-circle-slash-bold" + | "ph:chat-circle-slash-duotone" + | "ph:chat-circle-slash-fill" + | "ph:chat-circle-slash-light" + | "ph:chat-circle-slash-thin" + | "ph:chat-circle-text" + | "ph:chat-circle-text-bold" + | "ph:chat-circle-text-duotone" + | "ph:chat-circle-text-fill" + | "ph:chat-circle-text-light" + | "ph:chat-circle-text-thin" + | "ph:chat-circle-thin" + | "ph:chat-dots" + | "ph:chat-dots-bold" + | "ph:chat-dots-duotone" + | "ph:chat-dots-fill" + | "ph:chat-dots-light" + | "ph:chat-dots-thin" + | "ph:chat-duotone" + | "ph:chat-fill" + | "ph:chat-light" + | "ph:chat-slash" + | "ph:chat-slash-bold" + | "ph:chat-slash-duotone" + | "ph:chat-slash-fill" + | "ph:chat-slash-light" + | "ph:chat-slash-thin" + | "ph:chat-teardrop" + | "ph:chat-teardrop-bold" + | "ph:chat-teardrop-dots" + | "ph:chat-teardrop-dots-bold" + | "ph:chat-teardrop-dots-duotone" + | "ph:chat-teardrop-dots-fill" + | "ph:chat-teardrop-dots-light" + | "ph:chat-teardrop-dots-thin" + | "ph:chat-teardrop-duotone" + | "ph:chat-teardrop-fill" + | "ph:chat-teardrop-light" + | "ph:chat-teardrop-slash" + | "ph:chat-teardrop-slash-bold" + | "ph:chat-teardrop-slash-duotone" + | "ph:chat-teardrop-slash-fill" + | "ph:chat-teardrop-slash-light" + | "ph:chat-teardrop-slash-thin" + | "ph:chat-teardrop-text" + | "ph:chat-teardrop-text-bold" + | "ph:chat-teardrop-text-duotone" + | "ph:chat-teardrop-text-fill" + | "ph:chat-teardrop-text-light" + | "ph:chat-teardrop-text-thin" + | "ph:chat-teardrop-thin" + | "ph:chat-text" + | "ph:chat-text-bold" + | "ph:chat-text-duotone" + | "ph:chat-text-fill" + | "ph:chat-text-light" + | "ph:chat-text-thin" + | "ph:chat-thin" + | "ph:chats" + | "ph:chats-bold" + | "ph:chats-circle" + | "ph:chats-circle-bold" + | "ph:chats-circle-duotone" + | "ph:chats-circle-fill" + | "ph:chats-circle-light" + | "ph:chats-circle-thin" + | "ph:chats-duotone" + | "ph:chats-fill" + | "ph:chats-light" + | "ph:chats-teardrop" + | "ph:chats-teardrop-bold" + | "ph:chats-teardrop-duotone" + | "ph:chats-teardrop-fill" + | "ph:chats-teardrop-light" + | "ph:chats-teardrop-thin" + | "ph:chats-thin" + | "ph:check" + | "ph:check-bold" + | "ph:check-circle" + | "ph:check-circle-bold" + | "ph:check-circle-duotone" + | "ph:check-circle-fill" + | "ph:check-circle-light" + | "ph:check-circle-thin" + | "ph:check-duotone" + | "ph:check-fat" + | "ph:check-fat-bold" + | "ph:check-fat-duotone" + | "ph:check-fat-fill" + | "ph:check-fat-light" + | "ph:check-fat-thin" + | "ph:check-fill" + | "ph:check-light" + | "ph:check-square" + | "ph:check-square-bold" + | "ph:check-square-duotone" + | "ph:check-square-fill" + | "ph:check-square-light" + | "ph:check-square-offset" + | "ph:check-square-offset-bold" + | "ph:check-square-offset-duotone" + | "ph:check-square-offset-fill" + | "ph:check-square-offset-light" + | "ph:check-square-offset-thin" + | "ph:check-square-thin" + | "ph:check-thin" + | "ph:checkerboard" + | "ph:checkerboard-bold" + | "ph:checkerboard-duotone" + | "ph:checkerboard-fill" + | "ph:checkerboard-light" + | "ph:checkerboard-thin" + | "ph:checks" + | "ph:checks-bold" + | "ph:checks-duotone" + | "ph:checks-fill" + | "ph:checks-light" + | "ph:checks-thin" + | "ph:cheers" + | "ph:cheers-bold" + | "ph:cheers-duotone" + | "ph:cheers-fill" + | "ph:cheers-light" + | "ph:cheers-thin" + | "ph:cheese" + | "ph:cheese-bold" + | "ph:cheese-duotone" + | "ph:cheese-fill" + | "ph:cheese-light" + | "ph:cheese-thin" + | "ph:chef-hat" + | "ph:chef-hat-bold" + | "ph:chef-hat-duotone" + | "ph:chef-hat-fill" + | "ph:chef-hat-light" + | "ph:chef-hat-thin" + | "ph:cherries" + | "ph:cherries-bold" + | "ph:cherries-duotone" + | "ph:cherries-fill" + | "ph:cherries-light" + | "ph:cherries-thin" + | "ph:church" + | "ph:church-bold" + | "ph:church-duotone" + | "ph:church-fill" + | "ph:church-light" + | "ph:church-thin" + | "ph:cigarette" + | "ph:cigarette-bold" + | "ph:cigarette-duotone" + | "ph:cigarette-fill" + | "ph:cigarette-light" + | "ph:cigarette-slash" + | "ph:cigarette-slash-bold" + | "ph:cigarette-slash-duotone" + | "ph:cigarette-slash-fill" + | "ph:cigarette-slash-light" + | "ph:cigarette-slash-thin" + | "ph:cigarette-thin" + | "ph:circle" + | "ph:circle-bold" + | "ph:circle-dashed" + | "ph:circle-dashed-bold" + | "ph:circle-dashed-duotone" + | "ph:circle-dashed-fill" + | "ph:circle-dashed-light" + | "ph:circle-dashed-thin" + | "ph:circle-duotone" + | "ph:circle-fill" + | "ph:circle-half" + | "ph:circle-half-bold" + | "ph:circle-half-duotone" + | "ph:circle-half-fill" + | "ph:circle-half-light" + | "ph:circle-half-thin" + | "ph:circle-half-tilt" + | "ph:circle-half-tilt-bold" + | "ph:circle-half-tilt-duotone" + | "ph:circle-half-tilt-fill" + | "ph:circle-half-tilt-light" + | "ph:circle-half-tilt-thin" + | "ph:circle-light" + | "ph:circle-notch" + | "ph:circle-notch-bold" + | "ph:circle-notch-duotone" + | "ph:circle-notch-fill" + | "ph:circle-notch-light" + | "ph:circle-notch-thin" + | "ph:circle-thin" + | "ph:circle-wavy" + | "ph:circle-wavy-bold" + | "ph:circle-wavy-check" + | "ph:circle-wavy-check-bold" + | "ph:circle-wavy-check-duotone" + | "ph:circle-wavy-check-fill" + | "ph:circle-wavy-check-light" + | "ph:circle-wavy-check-thin" + | "ph:circle-wavy-duotone" + | "ph:circle-wavy-fill" + | "ph:circle-wavy-light" + | "ph:circle-wavy-question" + | "ph:circle-wavy-question-bold" + | "ph:circle-wavy-question-duotone" + | "ph:circle-wavy-question-fill" + | "ph:circle-wavy-question-light" + | "ph:circle-wavy-question-thin" + | "ph:circle-wavy-thin" + | "ph:circle-wavy-warning" + | "ph:circle-wavy-warning-bold" + | "ph:circle-wavy-warning-duotone" + | "ph:circle-wavy-warning-fill" + | "ph:circle-wavy-warning-light" + | "ph:circle-wavy-warning-thin" + | "ph:circles-four" + | "ph:circles-four-bold" + | "ph:circles-four-duotone" + | "ph:circles-four-fill" + | "ph:circles-four-light" + | "ph:circles-four-thin" + | "ph:circles-three" + | "ph:circles-three-bold" + | "ph:circles-three-duotone" + | "ph:circles-three-fill" + | "ph:circles-three-light" + | "ph:circles-three-plus" + | "ph:circles-three-plus-bold" + | "ph:circles-three-plus-duotone" + | "ph:circles-three-plus-fill" + | "ph:circles-three-plus-light" + | "ph:circles-three-plus-thin" + | "ph:circles-three-thin" + | "ph:circuitry" + | "ph:circuitry-bold" + | "ph:circuitry-duotone" + | "ph:circuitry-fill" + | "ph:circuitry-light" + | "ph:circuitry-thin" + | "ph:city" + | "ph:city-bold" + | "ph:city-duotone" + | "ph:city-fill" + | "ph:city-light" + | "ph:city-thin" + | "ph:clipboard" + | "ph:clipboard-bold" + | "ph:clipboard-duotone" + | "ph:clipboard-fill" + | "ph:clipboard-light" + | "ph:clipboard-text" + | "ph:clipboard-text-bold" + | "ph:clipboard-text-duotone" + | "ph:clipboard-text-fill" + | "ph:clipboard-text-light" + | "ph:clipboard-text-thin" + | "ph:clipboard-thin" + | "ph:clock" + | "ph:clock-afternoon" + | "ph:clock-afternoon-bold" + | "ph:clock-afternoon-duotone" + | "ph:clock-afternoon-fill" + | "ph:clock-afternoon-light" + | "ph:clock-afternoon-thin" + | "ph:clock-bold" + | "ph:clock-clockwise" + | "ph:clock-clockwise-bold" + | "ph:clock-clockwise-duotone" + | "ph:clock-clockwise-fill" + | "ph:clock-clockwise-light" + | "ph:clock-clockwise-thin" + | "ph:clock-countdown" + | "ph:clock-countdown-bold" + | "ph:clock-countdown-duotone" + | "ph:clock-countdown-fill" + | "ph:clock-countdown-light" + | "ph:clock-countdown-thin" + | "ph:clock-counter-clockwise" + | "ph:clock-counter-clockwise-bold" + | "ph:clock-counter-clockwise-duotone" + | "ph:clock-counter-clockwise-fill" + | "ph:clock-counter-clockwise-light" + | "ph:clock-counter-clockwise-thin" + | "ph:clock-duotone" + | "ph:clock-fill" + | "ph:clock-light" + | "ph:clock-thin" + | "ph:clock-user" + | "ph:clock-user-bold" + | "ph:clock-user-duotone" + | "ph:clock-user-fill" + | "ph:clock-user-light" + | "ph:clock-user-thin" + | "ph:closed-captioning" + | "ph:closed-captioning-bold" + | "ph:closed-captioning-duotone" + | "ph:closed-captioning-fill" + | "ph:closed-captioning-light" + | "ph:closed-captioning-thin" + | "ph:cloud" + | "ph:cloud-arrow-down" + | "ph:cloud-arrow-down-bold" + | "ph:cloud-arrow-down-duotone" + | "ph:cloud-arrow-down-fill" + | "ph:cloud-arrow-down-light" + | "ph:cloud-arrow-down-thin" + | "ph:cloud-arrow-up" + | "ph:cloud-arrow-up-bold" + | "ph:cloud-arrow-up-duotone" + | "ph:cloud-arrow-up-fill" + | "ph:cloud-arrow-up-light" + | "ph:cloud-arrow-up-thin" + | "ph:cloud-bold" + | "ph:cloud-check" + | "ph:cloud-check-bold" + | "ph:cloud-check-duotone" + | "ph:cloud-check-fill" + | "ph:cloud-check-light" + | "ph:cloud-check-thin" + | "ph:cloud-duotone" + | "ph:cloud-fill" + | "ph:cloud-fog" + | "ph:cloud-fog-bold" + | "ph:cloud-fog-duotone" + | "ph:cloud-fog-fill" + | "ph:cloud-fog-light" + | "ph:cloud-fog-thin" + | "ph:cloud-light" + | "ph:cloud-lightning" + | "ph:cloud-lightning-bold" + | "ph:cloud-lightning-duotone" + | "ph:cloud-lightning-fill" + | "ph:cloud-lightning-light" + | "ph:cloud-lightning-thin" + | "ph:cloud-moon" + | "ph:cloud-moon-bold" + | "ph:cloud-moon-duotone" + | "ph:cloud-moon-fill" + | "ph:cloud-moon-light" + | "ph:cloud-moon-thin" + | "ph:cloud-rain" + | "ph:cloud-rain-bold" + | "ph:cloud-rain-duotone" + | "ph:cloud-rain-fill" + | "ph:cloud-rain-light" + | "ph:cloud-rain-thin" + | "ph:cloud-slash" + | "ph:cloud-slash-bold" + | "ph:cloud-slash-duotone" + | "ph:cloud-slash-fill" + | "ph:cloud-slash-light" + | "ph:cloud-slash-thin" + | "ph:cloud-snow" + | "ph:cloud-snow-bold" + | "ph:cloud-snow-duotone" + | "ph:cloud-snow-fill" + | "ph:cloud-snow-light" + | "ph:cloud-snow-thin" + | "ph:cloud-sun" + | "ph:cloud-sun-bold" + | "ph:cloud-sun-duotone" + | "ph:cloud-sun-fill" + | "ph:cloud-sun-light" + | "ph:cloud-sun-thin" + | "ph:cloud-thin" + | "ph:cloud-warning" + | "ph:cloud-warning-bold" + | "ph:cloud-warning-duotone" + | "ph:cloud-warning-fill" + | "ph:cloud-warning-light" + | "ph:cloud-warning-thin" + | "ph:cloud-x" + | "ph:cloud-x-bold" + | "ph:cloud-x-duotone" + | "ph:cloud-x-fill" + | "ph:cloud-x-light" + | "ph:cloud-x-thin" + | "ph:clover" + | "ph:clover-bold" + | "ph:clover-duotone" + | "ph:clover-fill" + | "ph:clover-light" + | "ph:clover-thin" + | "ph:club" + | "ph:club-bold" + | "ph:club-duotone" + | "ph:club-fill" + | "ph:club-light" + | "ph:club-thin" + | "ph:coat-hanger" + | "ph:coat-hanger-bold" + | "ph:coat-hanger-duotone" + | "ph:coat-hanger-fill" + | "ph:coat-hanger-light" + | "ph:coat-hanger-thin" + | "ph:coda-logo" + | "ph:coda-logo-bold" + | "ph:coda-logo-duotone" + | "ph:coda-logo-fill" + | "ph:coda-logo-light" + | "ph:coda-logo-thin" + | "ph:code" + | "ph:code-block" + | "ph:code-block-bold" + | "ph:code-block-duotone" + | "ph:code-block-fill" + | "ph:code-block-light" + | "ph:code-block-thin" + | "ph:code-bold" + | "ph:code-duotone" + | "ph:code-fill" + | "ph:code-light" + | "ph:code-simple" + | "ph:code-simple-bold" + | "ph:code-simple-duotone" + | "ph:code-simple-fill" + | "ph:code-simple-light" + | "ph:code-simple-thin" + | "ph:code-thin" + | "ph:codepen-logo" + | "ph:codepen-logo-bold" + | "ph:codepen-logo-duotone" + | "ph:codepen-logo-fill" + | "ph:codepen-logo-light" + | "ph:codepen-logo-thin" + | "ph:codesandbox-logo" + | "ph:codesandbox-logo-bold" + | "ph:codesandbox-logo-duotone" + | "ph:codesandbox-logo-fill" + | "ph:codesandbox-logo-light" + | "ph:codesandbox-logo-thin" + | "ph:coffee" + | "ph:coffee-bean" + | "ph:coffee-bean-bold" + | "ph:coffee-bean-duotone" + | "ph:coffee-bean-fill" + | "ph:coffee-bean-light" + | "ph:coffee-bean-thin" + | "ph:coffee-bold" + | "ph:coffee-duotone" + | "ph:coffee-fill" + | "ph:coffee-light" + | "ph:coffee-thin" + | "ph:coin" + | "ph:coin-bold" + | "ph:coin-duotone" + | "ph:coin-fill" + | "ph:coin-light" + | "ph:coin-thin" + | "ph:coin-vertical" + | "ph:coin-vertical-bold" + | "ph:coin-vertical-duotone" + | "ph:coin-vertical-fill" + | "ph:coin-vertical-light" + | "ph:coin-vertical-thin" + | "ph:coins" + | "ph:coins-bold" + | "ph:coins-duotone" + | "ph:coins-fill" + | "ph:coins-light" + | "ph:coins-thin" + | "ph:columns" + | "ph:columns-bold" + | "ph:columns-duotone" + | "ph:columns-fill" + | "ph:columns-light" + | "ph:columns-plus-left" + | "ph:columns-plus-left-bold" + | "ph:columns-plus-left-duotone" + | "ph:columns-plus-left-fill" + | "ph:columns-plus-left-light" + | "ph:columns-plus-left-thin" + | "ph:columns-plus-right" + | "ph:columns-plus-right-bold" + | "ph:columns-plus-right-duotone" + | "ph:columns-plus-right-fill" + | "ph:columns-plus-right-light" + | "ph:columns-plus-right-thin" + | "ph:columns-thin" + | "ph:command" + | "ph:command-bold" + | "ph:command-duotone" + | "ph:command-fill" + | "ph:command-light" + | "ph:command-thin" + | "ph:compass" + | "ph:compass-bold" + | "ph:compass-duotone" + | "ph:compass-fill" + | "ph:compass-light" + | "ph:compass-rose" + | "ph:compass-rose-bold" + | "ph:compass-rose-duotone" + | "ph:compass-rose-fill" + | "ph:compass-rose-light" + | "ph:compass-rose-thin" + | "ph:compass-thin" + | "ph:compass-tool" + | "ph:compass-tool-bold" + | "ph:compass-tool-duotone" + | "ph:compass-tool-fill" + | "ph:compass-tool-light" + | "ph:compass-tool-thin" + | "ph:computer-tower" + | "ph:computer-tower-bold" + | "ph:computer-tower-duotone" + | "ph:computer-tower-fill" + | "ph:computer-tower-light" + | "ph:computer-tower-thin" + | "ph:confetti" + | "ph:confetti-bold" + | "ph:confetti-duotone" + | "ph:confetti-fill" + | "ph:confetti-light" + | "ph:confetti-thin" + | "ph:contactless-payment" + | "ph:contactless-payment-bold" + | "ph:contactless-payment-duotone" + | "ph:contactless-payment-fill" + | "ph:contactless-payment-light" + | "ph:contactless-payment-thin" + | "ph:control" + | "ph:control-bold" + | "ph:control-duotone" + | "ph:control-fill" + | "ph:control-light" + | "ph:control-thin" + | "ph:cookie" + | "ph:cookie-bold" + | "ph:cookie-duotone" + | "ph:cookie-fill" + | "ph:cookie-light" + | "ph:cookie-thin" + | "ph:cooking-pot" + | "ph:cooking-pot-bold" + | "ph:cooking-pot-duotone" + | "ph:cooking-pot-fill" + | "ph:cooking-pot-light" + | "ph:cooking-pot-thin" + | "ph:copy" + | "ph:copy-bold" + | "ph:copy-duotone" + | "ph:copy-fill" + | "ph:copy-light" + | "ph:copy-simple" + | "ph:copy-simple-bold" + | "ph:copy-simple-duotone" + | "ph:copy-simple-fill" + | "ph:copy-simple-light" + | "ph:copy-simple-thin" + | "ph:copy-thin" + | "ph:copyleft" + | "ph:copyleft-bold" + | "ph:copyleft-duotone" + | "ph:copyleft-fill" + | "ph:copyleft-light" + | "ph:copyleft-thin" + | "ph:copyright" + | "ph:copyright-bold" + | "ph:copyright-duotone" + | "ph:copyright-fill" + | "ph:copyright-light" + | "ph:copyright-thin" + | "ph:corners-in" + | "ph:corners-in-bold" + | "ph:corners-in-duotone" + | "ph:corners-in-fill" + | "ph:corners-in-light" + | "ph:corners-in-thin" + | "ph:corners-out" + | "ph:corners-out-bold" + | "ph:corners-out-duotone" + | "ph:corners-out-fill" + | "ph:corners-out-light" + | "ph:corners-out-thin" + | "ph:couch" + | "ph:couch-bold" + | "ph:couch-duotone" + | "ph:couch-fill" + | "ph:couch-light" + | "ph:couch-thin" + | "ph:court-basketball" + | "ph:court-basketball-bold" + | "ph:court-basketball-duotone" + | "ph:court-basketball-fill" + | "ph:court-basketball-light" + | "ph:court-basketball-thin" + | "ph:cow" + | "ph:cow-bold" + | "ph:cow-duotone" + | "ph:cow-fill" + | "ph:cow-light" + | "ph:cow-thin" + | "ph:cowboy-hat" + | "ph:cowboy-hat-bold" + | "ph:cowboy-hat-duotone" + | "ph:cowboy-hat-fill" + | "ph:cowboy-hat-light" + | "ph:cowboy-hat-thin" + | "ph:cpu" + | "ph:cpu-bold" + | "ph:cpu-duotone" + | "ph:cpu-fill" + | "ph:cpu-light" + | "ph:cpu-thin" + | "ph:crane" + | "ph:crane-bold" + | "ph:crane-duotone" + | "ph:crane-fill" + | "ph:crane-light" + | "ph:crane-thin" + | "ph:crane-tower" + | "ph:crane-tower-bold" + | "ph:crane-tower-duotone" + | "ph:crane-tower-fill" + | "ph:crane-tower-light" + | "ph:crane-tower-thin" + | "ph:credit-card" + | "ph:credit-card-bold" + | "ph:credit-card-duotone" + | "ph:credit-card-fill" + | "ph:credit-card-light" + | "ph:credit-card-thin" + | "ph:cricket" + | "ph:cricket-bold" + | "ph:cricket-duotone" + | "ph:cricket-fill" + | "ph:cricket-light" + | "ph:cricket-thin" + | "ph:crop" + | "ph:crop-bold" + | "ph:crop-duotone" + | "ph:crop-fill" + | "ph:crop-light" + | "ph:crop-thin" + | "ph:cross" + | "ph:cross-bold" + | "ph:cross-duotone" + | "ph:cross-fill" + | "ph:cross-light" + | "ph:cross-thin" + | "ph:crosshair" + | "ph:crosshair-bold" + | "ph:crosshair-duotone" + | "ph:crosshair-fill" + | "ph:crosshair-light" + | "ph:crosshair-simple" + | "ph:crosshair-simple-bold" + | "ph:crosshair-simple-duotone" + | "ph:crosshair-simple-fill" + | "ph:crosshair-simple-light" + | "ph:crosshair-simple-thin" + | "ph:crosshair-thin" + | "ph:crown" + | "ph:crown-bold" + | "ph:crown-cross" + | "ph:crown-cross-bold" + | "ph:crown-cross-duotone" + | "ph:crown-cross-fill" + | "ph:crown-cross-light" + | "ph:crown-cross-thin" + | "ph:crown-duotone" + | "ph:crown-fill" + | "ph:crown-light" + | "ph:crown-simple" + | "ph:crown-simple-bold" + | "ph:crown-simple-duotone" + | "ph:crown-simple-fill" + | "ph:crown-simple-light" + | "ph:crown-simple-thin" + | "ph:crown-thin" + | "ph:cube" + | "ph:cube-bold" + | "ph:cube-duotone" + | "ph:cube-fill" + | "ph:cube-focus" + | "ph:cube-focus-bold" + | "ph:cube-focus-duotone" + | "ph:cube-focus-fill" + | "ph:cube-focus-light" + | "ph:cube-focus-thin" + | "ph:cube-light" + | "ph:cube-thin" + | "ph:cube-transparent" + | "ph:cube-transparent-bold" + | "ph:cube-transparent-duotone" + | "ph:cube-transparent-fill" + | "ph:cube-transparent-light" + | "ph:cube-transparent-thin" + | "ph:currency-btc" + | "ph:currency-btc-bold" + | "ph:currency-btc-duotone" + | "ph:currency-btc-fill" + | "ph:currency-btc-light" + | "ph:currency-btc-thin" + | "ph:currency-circle-dollar" + | "ph:currency-circle-dollar-bold" + | "ph:currency-circle-dollar-duotone" + | "ph:currency-circle-dollar-fill" + | "ph:currency-circle-dollar-light" + | "ph:currency-circle-dollar-thin" + | "ph:currency-cny" + | "ph:currency-cny-bold" + | "ph:currency-cny-duotone" + | "ph:currency-cny-fill" + | "ph:currency-cny-light" + | "ph:currency-cny-thin" + | "ph:currency-dollar" + | "ph:currency-dollar-bold" + | "ph:currency-dollar-duotone" + | "ph:currency-dollar-fill" + | "ph:currency-dollar-light" + | "ph:currency-dollar-simple" + | "ph:currency-dollar-simple-bold" + | "ph:currency-dollar-simple-duotone" + | "ph:currency-dollar-simple-fill" + | "ph:currency-dollar-simple-light" + | "ph:currency-dollar-simple-thin" + | "ph:currency-dollar-thin" + | "ph:currency-eth" + | "ph:currency-eth-bold" + | "ph:currency-eth-duotone" + | "ph:currency-eth-fill" + | "ph:currency-eth-light" + | "ph:currency-eth-thin" + | "ph:currency-eur" + | "ph:currency-eur-bold" + | "ph:currency-eur-duotone" + | "ph:currency-eur-fill" + | "ph:currency-eur-light" + | "ph:currency-eur-thin" + | "ph:currency-gbp" + | "ph:currency-gbp-bold" + | "ph:currency-gbp-duotone" + | "ph:currency-gbp-fill" + | "ph:currency-gbp-light" + | "ph:currency-gbp-thin" + | "ph:currency-inr" + | "ph:currency-inr-bold" + | "ph:currency-inr-duotone" + | "ph:currency-inr-fill" + | "ph:currency-inr-light" + | "ph:currency-inr-thin" + | "ph:currency-jpy" + | "ph:currency-jpy-bold" + | "ph:currency-jpy-duotone" + | "ph:currency-jpy-fill" + | "ph:currency-jpy-light" + | "ph:currency-jpy-thin" + | "ph:currency-krw" + | "ph:currency-krw-bold" + | "ph:currency-krw-duotone" + | "ph:currency-krw-fill" + | "ph:currency-krw-light" + | "ph:currency-krw-thin" + | "ph:currency-kzt" + | "ph:currency-kzt-bold" + | "ph:currency-kzt-duotone" + | "ph:currency-kzt-fill" + | "ph:currency-kzt-light" + | "ph:currency-kzt-thin" + | "ph:currency-ngn" + | "ph:currency-ngn-bold" + | "ph:currency-ngn-duotone" + | "ph:currency-ngn-fill" + | "ph:currency-ngn-light" + | "ph:currency-ngn-thin" + | "ph:currency-rub" + | "ph:currency-rub-bold" + | "ph:currency-rub-duotone" + | "ph:currency-rub-fill" + | "ph:currency-rub-light" + | "ph:currency-rub-thin" + | "ph:cursor" + | "ph:cursor-bold" + | "ph:cursor-click" + | "ph:cursor-click-bold" + | "ph:cursor-click-duotone" + | "ph:cursor-click-fill" + | "ph:cursor-click-light" + | "ph:cursor-click-thin" + | "ph:cursor-duotone" + | "ph:cursor-fill" + | "ph:cursor-light" + | "ph:cursor-text" + | "ph:cursor-text-bold" + | "ph:cursor-text-duotone" + | "ph:cursor-text-fill" + | "ph:cursor-text-light" + | "ph:cursor-text-thin" + | "ph:cursor-thin" + | "ph:cylinder" + | "ph:cylinder-bold" + | "ph:cylinder-duotone" + | "ph:cylinder-fill" + | "ph:cylinder-light" + | "ph:cylinder-thin" + | "ph:database" + | "ph:database-bold" + | "ph:database-duotone" + | "ph:database-fill" + | "ph:database-light" + | "ph:database-thin" + | "ph:desk" + | "ph:desk-bold" + | "ph:desk-duotone" + | "ph:desk-fill" + | "ph:desk-light" + | "ph:desk-thin" + | "ph:desktop" + | "ph:desktop-bold" + | "ph:desktop-duotone" + | "ph:desktop-fill" + | "ph:desktop-light" + | "ph:desktop-thin" + | "ph:desktop-tower" + | "ph:desktop-tower-bold" + | "ph:desktop-tower-duotone" + | "ph:desktop-tower-fill" + | "ph:desktop-tower-light" + | "ph:desktop-tower-thin" + | "ph:detective" + | "ph:detective-bold" + | "ph:detective-duotone" + | "ph:detective-fill" + | "ph:detective-light" + | "ph:detective-thin" + | "ph:dev-to-logo" + | "ph:dev-to-logo-bold" + | "ph:dev-to-logo-duotone" + | "ph:dev-to-logo-fill" + | "ph:dev-to-logo-light" + | "ph:dev-to-logo-thin" + | "ph:device-mobile" + | "ph:device-mobile-bold" + | "ph:device-mobile-camera" + | "ph:device-mobile-camera-bold" + | "ph:device-mobile-camera-duotone" + | "ph:device-mobile-camera-fill" + | "ph:device-mobile-camera-light" + | "ph:device-mobile-camera-thin" + | "ph:device-mobile-duotone" + | "ph:device-mobile-fill" + | "ph:device-mobile-light" + | "ph:device-mobile-slash" + | "ph:device-mobile-slash-bold" + | "ph:device-mobile-slash-duotone" + | "ph:device-mobile-slash-fill" + | "ph:device-mobile-slash-light" + | "ph:device-mobile-slash-thin" + | "ph:device-mobile-speaker" + | "ph:device-mobile-speaker-bold" + | "ph:device-mobile-speaker-duotone" + | "ph:device-mobile-speaker-fill" + | "ph:device-mobile-speaker-light" + | "ph:device-mobile-speaker-thin" + | "ph:device-mobile-thin" + | "ph:device-rotate" + | "ph:device-rotate-bold" + | "ph:device-rotate-duotone" + | "ph:device-rotate-fill" + | "ph:device-rotate-light" + | "ph:device-rotate-thin" + | "ph:device-tablet" + | "ph:device-tablet-bold" + | "ph:device-tablet-camera" + | "ph:device-tablet-camera-bold" + | "ph:device-tablet-camera-duotone" + | "ph:device-tablet-camera-fill" + | "ph:device-tablet-camera-light" + | "ph:device-tablet-camera-thin" + | "ph:device-tablet-duotone" + | "ph:device-tablet-fill" + | "ph:device-tablet-light" + | "ph:device-tablet-speaker" + | "ph:device-tablet-speaker-bold" + | "ph:device-tablet-speaker-duotone" + | "ph:device-tablet-speaker-fill" + | "ph:device-tablet-speaker-light" + | "ph:device-tablet-speaker-thin" + | "ph:device-tablet-thin" + | "ph:devices" + | "ph:devices-bold" + | "ph:devices-duotone" + | "ph:devices-fill" + | "ph:devices-light" + | "ph:devices-thin" + | "ph:diamond" + | "ph:diamond-bold" + | "ph:diamond-duotone" + | "ph:diamond-fill" + | "ph:diamond-light" + | "ph:diamond-thin" + | "ph:diamonds-four" + | "ph:diamonds-four-bold" + | "ph:diamonds-four-duotone" + | "ph:diamonds-four-fill" + | "ph:diamonds-four-light" + | "ph:diamonds-four-thin" + | "ph:dice-five" + | "ph:dice-five-bold" + | "ph:dice-five-duotone" + | "ph:dice-five-fill" + | "ph:dice-five-light" + | "ph:dice-five-thin" + | "ph:dice-four" + | "ph:dice-four-bold" + | "ph:dice-four-duotone" + | "ph:dice-four-fill" + | "ph:dice-four-light" + | "ph:dice-four-thin" + | "ph:dice-one" + | "ph:dice-one-bold" + | "ph:dice-one-duotone" + | "ph:dice-one-fill" + | "ph:dice-one-light" + | "ph:dice-one-thin" + | "ph:dice-six" + | "ph:dice-six-bold" + | "ph:dice-six-duotone" + | "ph:dice-six-fill" + | "ph:dice-six-light" + | "ph:dice-six-thin" + | "ph:dice-three" + | "ph:dice-three-bold" + | "ph:dice-three-duotone" + | "ph:dice-three-fill" + | "ph:dice-three-light" + | "ph:dice-three-thin" + | "ph:dice-two" + | "ph:dice-two-bold" + | "ph:dice-two-duotone" + | "ph:dice-two-fill" + | "ph:dice-two-light" + | "ph:dice-two-thin" + | "ph:disc" + | "ph:disc-bold" + | "ph:disc-duotone" + | "ph:disc-fill" + | "ph:disc-light" + | "ph:disc-thin" + | "ph:disco-ball" + | "ph:disco-ball-bold" + | "ph:disco-ball-duotone" + | "ph:disco-ball-fill" + | "ph:disco-ball-light" + | "ph:disco-ball-thin" + | "ph:discord-logo" + | "ph:discord-logo-bold" + | "ph:discord-logo-duotone" + | "ph:discord-logo-fill" + | "ph:discord-logo-light" + | "ph:discord-logo-thin" + | "ph:divide" + | "ph:divide-bold" + | "ph:divide-duotone" + | "ph:divide-fill" + | "ph:divide-light" + | "ph:divide-thin" + | "ph:dna" + | "ph:dna-bold" + | "ph:dna-duotone" + | "ph:dna-fill" + | "ph:dna-light" + | "ph:dna-thin" + | "ph:dog" + | "ph:dog-bold" + | "ph:dog-duotone" + | "ph:dog-fill" + | "ph:dog-light" + | "ph:dog-thin" + | "ph:door" + | "ph:door-bold" + | "ph:door-duotone" + | "ph:door-fill" + | "ph:door-light" + | "ph:door-open" + | "ph:door-open-bold" + | "ph:door-open-duotone" + | "ph:door-open-fill" + | "ph:door-open-light" + | "ph:door-open-thin" + | "ph:door-thin" + | "ph:dot" + | "ph:dot-bold" + | "ph:dot-duotone" + | "ph:dot-fill" + | "ph:dot-light" + | "ph:dot-outline" + | "ph:dot-outline-bold" + | "ph:dot-outline-duotone" + | "ph:dot-outline-fill" + | "ph:dot-outline-light" + | "ph:dot-outline-thin" + | "ph:dot-thin" + | "ph:dots-nine" + | "ph:dots-nine-bold" + | "ph:dots-nine-duotone" + | "ph:dots-nine-fill" + | "ph:dots-nine-light" + | "ph:dots-nine-thin" + | "ph:dots-six" + | "ph:dots-six-bold" + | "ph:dots-six-duotone" + | "ph:dots-six-fill" + | "ph:dots-six-light" + | "ph:dots-six-thin" + | "ph:dots-six-vertical" + | "ph:dots-six-vertical-bold" + | "ph:dots-six-vertical-duotone" + | "ph:dots-six-vertical-fill" + | "ph:dots-six-vertical-light" + | "ph:dots-six-vertical-thin" + | "ph:dots-three" + | "ph:dots-three-bold" + | "ph:dots-three-circle" + | "ph:dots-three-circle-bold" + | "ph:dots-three-circle-duotone" + | "ph:dots-three-circle-fill" + | "ph:dots-three-circle-light" + | "ph:dots-three-circle-thin" + | "ph:dots-three-circle-vertical" + | "ph:dots-three-circle-vertical-bold" + | "ph:dots-three-circle-vertical-duotone" + | "ph:dots-three-circle-vertical-fill" + | "ph:dots-three-circle-vertical-light" + | "ph:dots-three-circle-vertical-thin" + | "ph:dots-three-duotone" + | "ph:dots-three-fill" + | "ph:dots-three-light" + | "ph:dots-three-outline" + | "ph:dots-three-outline-bold" + | "ph:dots-three-outline-duotone" + | "ph:dots-three-outline-fill" + | "ph:dots-three-outline-light" + | "ph:dots-three-outline-thin" + | "ph:dots-three-outline-vertical" + | "ph:dots-three-outline-vertical-bold" + | "ph:dots-three-outline-vertical-duotone" + | "ph:dots-three-outline-vertical-fill" + | "ph:dots-three-outline-vertical-light" + | "ph:dots-three-outline-vertical-thin" + | "ph:dots-three-thin" + | "ph:dots-three-vertical" + | "ph:dots-three-vertical-bold" + | "ph:dots-three-vertical-duotone" + | "ph:dots-three-vertical-fill" + | "ph:dots-three-vertical-light" + | "ph:dots-three-vertical-thin" + | "ph:download" + | "ph:download-bold" + | "ph:download-duotone" + | "ph:download-fill" + | "ph:download-light" + | "ph:download-simple" + | "ph:download-simple-bold" + | "ph:download-simple-duotone" + | "ph:download-simple-fill" + | "ph:download-simple-light" + | "ph:download-simple-thin" + | "ph:download-thin" + | "ph:dress" + | "ph:dress-bold" + | "ph:dress-duotone" + | "ph:dress-fill" + | "ph:dress-light" + | "ph:dress-thin" + | "ph:dresser" + | "ph:dresser-bold" + | "ph:dresser-duotone" + | "ph:dresser-fill" + | "ph:dresser-light" + | "ph:dresser-thin" + | "ph:dribbble-logo" + | "ph:dribbble-logo-bold" + | "ph:dribbble-logo-duotone" + | "ph:dribbble-logo-fill" + | "ph:dribbble-logo-light" + | "ph:dribbble-logo-thin" + | "ph:drone" + | "ph:drone-bold" + | "ph:drone-duotone" + | "ph:drone-fill" + | "ph:drone-light" + | "ph:drone-thin" + | "ph:drop" + | "ph:drop-bold" + | "ph:drop-duotone" + | "ph:drop-fill" + | "ph:drop-half" + | "ph:drop-half-bold" + | "ph:drop-half-bottom" + | "ph:drop-half-bottom-bold" + | "ph:drop-half-bottom-duotone" + | "ph:drop-half-bottom-fill" + | "ph:drop-half-bottom-light" + | "ph:drop-half-bottom-thin" + | "ph:drop-half-duotone" + | "ph:drop-half-fill" + | "ph:drop-half-light" + | "ph:drop-half-thin" + | "ph:drop-light" + | "ph:drop-simple" + | "ph:drop-simple-bold" + | "ph:drop-simple-duotone" + | "ph:drop-simple-fill" + | "ph:drop-simple-light" + | "ph:drop-simple-thin" + | "ph:drop-slash" + | "ph:drop-slash-bold" + | "ph:drop-slash-duotone" + | "ph:drop-slash-fill" + | "ph:drop-slash-light" + | "ph:drop-slash-thin" + | "ph:drop-thin" + | "ph:dropbox-logo" + | "ph:dropbox-logo-bold" + | "ph:dropbox-logo-duotone" + | "ph:dropbox-logo-fill" + | "ph:dropbox-logo-light" + | "ph:dropbox-logo-thin" + | "ph:ear" + | "ph:ear-bold" + | "ph:ear-duotone" + | "ph:ear-fill" + | "ph:ear-light" + | "ph:ear-slash" + | "ph:ear-slash-bold" + | "ph:ear-slash-duotone" + | "ph:ear-slash-fill" + | "ph:ear-slash-light" + | "ph:ear-slash-thin" + | "ph:ear-thin" + | "ph:egg" + | "ph:egg-bold" + | "ph:egg-crack" + | "ph:egg-crack-bold" + | "ph:egg-crack-duotone" + | "ph:egg-crack-fill" + | "ph:egg-crack-light" + | "ph:egg-crack-thin" + | "ph:egg-duotone" + | "ph:egg-fill" + | "ph:egg-light" + | "ph:egg-thin" + | "ph:eject" + | "ph:eject-bold" + | "ph:eject-duotone" + | "ph:eject-fill" + | "ph:eject-light" + | "ph:eject-simple" + | "ph:eject-simple-bold" + | "ph:eject-simple-duotone" + | "ph:eject-simple-fill" + | "ph:eject-simple-light" + | "ph:eject-simple-thin" + | "ph:eject-thin" + | "ph:elevator" + | "ph:elevator-bold" + | "ph:elevator-duotone" + | "ph:elevator-fill" + | "ph:elevator-light" + | "ph:elevator-thin" + | "ph:empty" + | "ph:empty-bold" + | "ph:empty-duotone" + | "ph:empty-fill" + | "ph:empty-light" + | "ph:empty-thin" + | "ph:engine" + | "ph:engine-bold" + | "ph:engine-duotone" + | "ph:engine-fill" + | "ph:engine-light" + | "ph:engine-thin" + | "ph:envelope" + | "ph:envelope-bold" + | "ph:envelope-duotone" + | "ph:envelope-fill" + | "ph:envelope-light" + | "ph:envelope-open" + | "ph:envelope-open-bold" + | "ph:envelope-open-duotone" + | "ph:envelope-open-fill" + | "ph:envelope-open-light" + | "ph:envelope-open-thin" + | "ph:envelope-simple" + | "ph:envelope-simple-bold" + | "ph:envelope-simple-duotone" + | "ph:envelope-simple-fill" + | "ph:envelope-simple-light" + | "ph:envelope-simple-open" + | "ph:envelope-simple-open-bold" + | "ph:envelope-simple-open-duotone" + | "ph:envelope-simple-open-fill" + | "ph:envelope-simple-open-light" + | "ph:envelope-simple-open-thin" + | "ph:envelope-simple-thin" + | "ph:envelope-thin" + | "ph:equalizer" + | "ph:equalizer-bold" + | "ph:equalizer-duotone" + | "ph:equalizer-fill" + | "ph:equalizer-light" + | "ph:equalizer-thin" + | "ph:equals" + | "ph:equals-bold" + | "ph:equals-duotone" + | "ph:equals-fill" + | "ph:equals-light" + | "ph:equals-thin" + | "ph:eraser" + | "ph:eraser-bold" + | "ph:eraser-duotone" + | "ph:eraser-fill" + | "ph:eraser-light" + | "ph:eraser-thin" + | "ph:escalator-down" + | "ph:escalator-down-bold" + | "ph:escalator-down-duotone" + | "ph:escalator-down-fill" + | "ph:escalator-down-light" + | "ph:escalator-down-thin" + | "ph:escalator-up" + | "ph:escalator-up-bold" + | "ph:escalator-up-duotone" + | "ph:escalator-up-fill" + | "ph:escalator-up-light" + | "ph:escalator-up-thin" + | "ph:exam" + | "ph:exam-bold" + | "ph:exam-duotone" + | "ph:exam-fill" + | "ph:exam-light" + | "ph:exam-thin" + | "ph:exclamation-mark" + | "ph:exclamation-mark-bold" + | "ph:exclamation-mark-duotone" + | "ph:exclamation-mark-fill" + | "ph:exclamation-mark-light" + | "ph:exclamation-mark-thin" + | "ph:exclude" + | "ph:exclude-bold" + | "ph:exclude-duotone" + | "ph:exclude-fill" + | "ph:exclude-light" + | "ph:exclude-square" + | "ph:exclude-square-bold" + | "ph:exclude-square-duotone" + | "ph:exclude-square-fill" + | "ph:exclude-square-light" + | "ph:exclude-square-thin" + | "ph:exclude-thin" + | "ph:export" + | "ph:export-bold" + | "ph:export-duotone" + | "ph:export-fill" + | "ph:export-light" + | "ph:export-thin" + | "ph:eye" + | "ph:eye-bold" + | "ph:eye-closed" + | "ph:eye-closed-bold" + | "ph:eye-closed-duotone" + | "ph:eye-closed-fill" + | "ph:eye-closed-light" + | "ph:eye-closed-thin" + | "ph:eye-duotone" + | "ph:eye-fill" + | "ph:eye-light" + | "ph:eye-slash" + | "ph:eye-slash-bold" + | "ph:eye-slash-duotone" + | "ph:eye-slash-fill" + | "ph:eye-slash-light" + | "ph:eye-slash-thin" + | "ph:eye-thin" + | "ph:eyedropper" + | "ph:eyedropper-bold" + | "ph:eyedropper-duotone" + | "ph:eyedropper-fill" + | "ph:eyedropper-light" + | "ph:eyedropper-sample" + | "ph:eyedropper-sample-bold" + | "ph:eyedropper-sample-duotone" + | "ph:eyedropper-sample-fill" + | "ph:eyedropper-sample-light" + | "ph:eyedropper-sample-thin" + | "ph:eyedropper-thin" + | "ph:eyeglasses" + | "ph:eyeglasses-bold" + | "ph:eyeglasses-duotone" + | "ph:eyeglasses-fill" + | "ph:eyeglasses-light" + | "ph:eyeglasses-thin" + | "ph:eyes" + | "ph:eyes-bold" + | "ph:eyes-duotone" + | "ph:eyes-fill" + | "ph:eyes-light" + | "ph:eyes-thin" + | "ph:face-mask" + | "ph:face-mask-bold" + | "ph:face-mask-duotone" + | "ph:face-mask-fill" + | "ph:face-mask-light" + | "ph:face-mask-thin" + | "ph:facebook-logo" + | "ph:facebook-logo-bold" + | "ph:facebook-logo-duotone" + | "ph:facebook-logo-fill" + | "ph:facebook-logo-light" + | "ph:facebook-logo-thin" + | "ph:factory" + | "ph:factory-bold" + | "ph:factory-duotone" + | "ph:factory-fill" + | "ph:factory-light" + | "ph:factory-thin" + | "ph:faders" + | "ph:faders-bold" + | "ph:faders-duotone" + | "ph:faders-fill" + | "ph:faders-horizontal" + | "ph:faders-horizontal-bold" + | "ph:faders-horizontal-duotone" + | "ph:faders-horizontal-fill" + | "ph:faders-horizontal-light" + | "ph:faders-horizontal-thin" + | "ph:faders-light" + | "ph:faders-thin" + | "ph:fallout-shelter" + | "ph:fallout-shelter-bold" + | "ph:fallout-shelter-duotone" + | "ph:fallout-shelter-fill" + | "ph:fallout-shelter-light" + | "ph:fallout-shelter-thin" + | "ph:fan" + | "ph:fan-bold" + | "ph:fan-duotone" + | "ph:fan-fill" + | "ph:fan-light" + | "ph:fan-thin" + | "ph:farm" + | "ph:farm-bold" + | "ph:farm-duotone" + | "ph:farm-fill" + | "ph:farm-light" + | "ph:farm-thin" + | "ph:fast-forward" + | "ph:fast-forward-bold" + | "ph:fast-forward-circle" + | "ph:fast-forward-circle-bold" + | "ph:fast-forward-circle-duotone" + | "ph:fast-forward-circle-fill" + | "ph:fast-forward-circle-light" + | "ph:fast-forward-circle-thin" + | "ph:fast-forward-duotone" + | "ph:fast-forward-fill" + | "ph:fast-forward-light" + | "ph:fast-forward-thin" + | "ph:feather" + | "ph:feather-bold" + | "ph:feather-duotone" + | "ph:feather-fill" + | "ph:feather-light" + | "ph:feather-thin" + | "ph:fediverse-logo" + | "ph:fediverse-logo-bold" + | "ph:fediverse-logo-duotone" + | "ph:fediverse-logo-fill" + | "ph:fediverse-logo-light" + | "ph:fediverse-logo-thin" + | "ph:figma-logo" + | "ph:figma-logo-bold" + | "ph:figma-logo-duotone" + | "ph:figma-logo-fill" + | "ph:figma-logo-light" + | "ph:figma-logo-thin" + | "ph:file" + | "ph:file-archive" + | "ph:file-archive-bold" + | "ph:file-archive-duotone" + | "ph:file-archive-fill" + | "ph:file-archive-light" + | "ph:file-archive-thin" + | "ph:file-arrow-down" + | "ph:file-arrow-down-bold" + | "ph:file-arrow-down-duotone" + | "ph:file-arrow-down-fill" + | "ph:file-arrow-down-light" + | "ph:file-arrow-down-thin" + | "ph:file-arrow-up" + | "ph:file-arrow-up-bold" + | "ph:file-arrow-up-duotone" + | "ph:file-arrow-up-fill" + | "ph:file-arrow-up-light" + | "ph:file-arrow-up-thin" + | "ph:file-audio" + | "ph:file-audio-bold" + | "ph:file-audio-duotone" + | "ph:file-audio-fill" + | "ph:file-audio-light" + | "ph:file-audio-thin" + | "ph:file-bold" + | "ph:file-c" + | "ph:file-c-bold" + | "ph:file-c-duotone" + | "ph:file-c-fill" + | "ph:file-c-light" + | "ph:file-c-sharp" + | "ph:file-c-sharp-bold" + | "ph:file-c-sharp-duotone" + | "ph:file-c-sharp-fill" + | "ph:file-c-sharp-light" + | "ph:file-c-sharp-thin" + | "ph:file-c-thin" + | "ph:file-cloud" + | "ph:file-cloud-bold" + | "ph:file-cloud-duotone" + | "ph:file-cloud-fill" + | "ph:file-cloud-light" + | "ph:file-cloud-thin" + | "ph:file-code" + | "ph:file-code-bold" + | "ph:file-code-duotone" + | "ph:file-code-fill" + | "ph:file-code-light" + | "ph:file-code-thin" + | "ph:file-cpp" + | "ph:file-cpp-bold" + | "ph:file-cpp-duotone" + | "ph:file-cpp-fill" + | "ph:file-cpp-light" + | "ph:file-cpp-thin" + | "ph:file-css" + | "ph:file-css-bold" + | "ph:file-css-duotone" + | "ph:file-css-fill" + | "ph:file-css-light" + | "ph:file-css-thin" + | "ph:file-csv" + | "ph:file-csv-bold" + | "ph:file-csv-duotone" + | "ph:file-csv-fill" + | "ph:file-csv-light" + | "ph:file-csv-thin" + | "ph:file-dashed" + | "ph:file-dashed-bold" + | "ph:file-dashed-duotone" + | "ph:file-dashed-fill" + | "ph:file-dashed-light" + | "ph:file-dashed-thin" + | "ph:file-doc" + | "ph:file-doc-bold" + | "ph:file-doc-duotone" + | "ph:file-doc-fill" + | "ph:file-doc-light" + | "ph:file-doc-thin" + | "ph:file-dotted" + | "ph:file-dotted-bold" + | "ph:file-dotted-duotone" + | "ph:file-dotted-fill" + | "ph:file-dotted-light" + | "ph:file-dotted-thin" + | "ph:file-duotone" + | "ph:file-fill" + | "ph:file-html" + | "ph:file-html-bold" + | "ph:file-html-duotone" + | "ph:file-html-fill" + | "ph:file-html-light" + | "ph:file-html-thin" + | "ph:file-image" + | "ph:file-image-bold" + | "ph:file-image-duotone" + | "ph:file-image-fill" + | "ph:file-image-light" + | "ph:file-image-thin" + | "ph:file-ini" + | "ph:file-ini-bold" + | "ph:file-ini-duotone" + | "ph:file-ini-fill" + | "ph:file-ini-light" + | "ph:file-ini-thin" + | "ph:file-jpg" + | "ph:file-jpg-bold" + | "ph:file-jpg-duotone" + | "ph:file-jpg-fill" + | "ph:file-jpg-light" + | "ph:file-jpg-thin" + | "ph:file-js" + | "ph:file-js-bold" + | "ph:file-js-duotone" + | "ph:file-js-fill" + | "ph:file-js-light" + | "ph:file-js-thin" + | "ph:file-jsx" + | "ph:file-jsx-bold" + | "ph:file-jsx-duotone" + | "ph:file-jsx-fill" + | "ph:file-jsx-light" + | "ph:file-jsx-thin" + | "ph:file-light" + | "ph:file-lock" + | "ph:file-lock-bold" + | "ph:file-lock-duotone" + | "ph:file-lock-fill" + | "ph:file-lock-light" + | "ph:file-lock-thin" + | "ph:file-magnifying-glass" + | "ph:file-magnifying-glass-bold" + | "ph:file-magnifying-glass-duotone" + | "ph:file-magnifying-glass-fill" + | "ph:file-magnifying-glass-light" + | "ph:file-magnifying-glass-thin" + | "ph:file-md" + | "ph:file-md-bold" + | "ph:file-md-duotone" + | "ph:file-md-fill" + | "ph:file-md-light" + | "ph:file-md-thin" + | "ph:file-minus" + | "ph:file-minus-bold" + | "ph:file-minus-duotone" + | "ph:file-minus-fill" + | "ph:file-minus-light" + | "ph:file-minus-thin" + | "ph:file-pdf" + | "ph:file-pdf-bold" + | "ph:file-pdf-duotone" + | "ph:file-pdf-fill" + | "ph:file-pdf-light" + | "ph:file-pdf-thin" + | "ph:file-plus" + | "ph:file-plus-bold" + | "ph:file-plus-duotone" + | "ph:file-plus-fill" + | "ph:file-plus-light" + | "ph:file-plus-thin" + | "ph:file-png" + | "ph:file-png-bold" + | "ph:file-png-duotone" + | "ph:file-png-fill" + | "ph:file-png-light" + | "ph:file-png-thin" + | "ph:file-ppt" + | "ph:file-ppt-bold" + | "ph:file-ppt-duotone" + | "ph:file-ppt-fill" + | "ph:file-ppt-light" + | "ph:file-ppt-thin" + | "ph:file-py" + | "ph:file-py-bold" + | "ph:file-py-duotone" + | "ph:file-py-fill" + | "ph:file-py-light" + | "ph:file-py-thin" + | "ph:file-rs" + | "ph:file-rs-bold" + | "ph:file-rs-duotone" + | "ph:file-rs-fill" + | "ph:file-rs-light" + | "ph:file-rs-thin" + | "ph:file-search" + | "ph:file-search-bold" + | "ph:file-search-duotone" + | "ph:file-search-fill" + | "ph:file-search-light" + | "ph:file-search-thin" + | "ph:file-sql" + | "ph:file-sql-bold" + | "ph:file-sql-duotone" + | "ph:file-sql-fill" + | "ph:file-sql-light" + | "ph:file-sql-thin" + | "ph:file-svg" + | "ph:file-svg-bold" + | "ph:file-svg-duotone" + | "ph:file-svg-fill" + | "ph:file-svg-light" + | "ph:file-svg-thin" + | "ph:file-text" + | "ph:file-text-bold" + | "ph:file-text-duotone" + | "ph:file-text-fill" + | "ph:file-text-light" + | "ph:file-text-thin" + | "ph:file-thin" + | "ph:file-ts" + | "ph:file-ts-bold" + | "ph:file-ts-duotone" + | "ph:file-ts-fill" + | "ph:file-ts-light" + | "ph:file-ts-thin" + | "ph:file-tsx" + | "ph:file-tsx-bold" + | "ph:file-tsx-duotone" + | "ph:file-tsx-fill" + | "ph:file-tsx-light" + | "ph:file-tsx-thin" + | "ph:file-txt" + | "ph:file-txt-bold" + | "ph:file-txt-duotone" + | "ph:file-txt-fill" + | "ph:file-txt-light" + | "ph:file-txt-thin" + | "ph:file-video" + | "ph:file-video-bold" + | "ph:file-video-duotone" + | "ph:file-video-fill" + | "ph:file-video-light" + | "ph:file-video-thin" + | "ph:file-vue" + | "ph:file-vue-bold" + | "ph:file-vue-duotone" + | "ph:file-vue-fill" + | "ph:file-vue-light" + | "ph:file-vue-thin" + | "ph:file-x" + | "ph:file-x-bold" + | "ph:file-x-duotone" + | "ph:file-x-fill" + | "ph:file-x-light" + | "ph:file-x-thin" + | "ph:file-xls" + | "ph:file-xls-bold" + | "ph:file-xls-duotone" + | "ph:file-xls-fill" + | "ph:file-xls-light" + | "ph:file-xls-thin" + | "ph:file-zip" + | "ph:file-zip-bold" + | "ph:file-zip-duotone" + | "ph:file-zip-fill" + | "ph:file-zip-light" + | "ph:file-zip-thin" + | "ph:files" + | "ph:files-bold" + | "ph:files-duotone" + | "ph:files-fill" + | "ph:files-light" + | "ph:files-thin" + | "ph:film-reel" + | "ph:film-reel-bold" + | "ph:film-reel-duotone" + | "ph:film-reel-fill" + | "ph:film-reel-light" + | "ph:film-reel-thin" + | "ph:film-script" + | "ph:film-script-bold" + | "ph:film-script-duotone" + | "ph:film-script-fill" + | "ph:film-script-light" + | "ph:film-script-thin" + | "ph:film-slate" + | "ph:film-slate-bold" + | "ph:film-slate-duotone" + | "ph:film-slate-fill" + | "ph:film-slate-light" + | "ph:film-slate-thin" + | "ph:film-strip" + | "ph:film-strip-bold" + | "ph:film-strip-duotone" + | "ph:film-strip-fill" + | "ph:film-strip-light" + | "ph:film-strip-thin" + | "ph:fingerprint" + | "ph:fingerprint-bold" + | "ph:fingerprint-duotone" + | "ph:fingerprint-fill" + | "ph:fingerprint-light" + | "ph:fingerprint-simple" + | "ph:fingerprint-simple-bold" + | "ph:fingerprint-simple-duotone" + | "ph:fingerprint-simple-fill" + | "ph:fingerprint-simple-light" + | "ph:fingerprint-simple-thin" + | "ph:fingerprint-thin" + | "ph:finn-the-human" + | "ph:finn-the-human-bold" + | "ph:finn-the-human-duotone" + | "ph:finn-the-human-fill" + | "ph:finn-the-human-light" + | "ph:finn-the-human-thin" + | "ph:fire" + | "ph:fire-bold" + | "ph:fire-duotone" + | "ph:fire-extinguisher" + | "ph:fire-extinguisher-bold" + | "ph:fire-extinguisher-duotone" + | "ph:fire-extinguisher-fill" + | "ph:fire-extinguisher-light" + | "ph:fire-extinguisher-thin" + | "ph:fire-fill" + | "ph:fire-light" + | "ph:fire-simple" + | "ph:fire-simple-bold" + | "ph:fire-simple-duotone" + | "ph:fire-simple-fill" + | "ph:fire-simple-light" + | "ph:fire-simple-thin" + | "ph:fire-thin" + | "ph:fire-truck" + | "ph:fire-truck-bold" + | "ph:fire-truck-duotone" + | "ph:fire-truck-fill" + | "ph:fire-truck-light" + | "ph:fire-truck-thin" + | "ph:first-aid" + | "ph:first-aid-bold" + | "ph:first-aid-duotone" + | "ph:first-aid-fill" + | "ph:first-aid-kit" + | "ph:first-aid-kit-bold" + | "ph:first-aid-kit-duotone" + | "ph:first-aid-kit-fill" + | "ph:first-aid-kit-light" + | "ph:first-aid-kit-thin" + | "ph:first-aid-light" + | "ph:first-aid-thin" + | "ph:fish" + | "ph:fish-bold" + | "ph:fish-duotone" + | "ph:fish-fill" + | "ph:fish-light" + | "ph:fish-simple" + | "ph:fish-simple-bold" + | "ph:fish-simple-duotone" + | "ph:fish-simple-fill" + | "ph:fish-simple-light" + | "ph:fish-simple-thin" + | "ph:fish-thin" + | "ph:flag" + | "ph:flag-banner" + | "ph:flag-banner-bold" + | "ph:flag-banner-duotone" + | "ph:flag-banner-fill" + | "ph:flag-banner-fold" + | "ph:flag-banner-fold-bold" + | "ph:flag-banner-fold-duotone" + | "ph:flag-banner-fold-fill" + | "ph:flag-banner-fold-light" + | "ph:flag-banner-fold-thin" + | "ph:flag-banner-light" + | "ph:flag-banner-thin" + | "ph:flag-bold" + | "ph:flag-checkered" + | "ph:flag-checkered-bold" + | "ph:flag-checkered-duotone" + | "ph:flag-checkered-fill" + | "ph:flag-checkered-light" + | "ph:flag-checkered-thin" + | "ph:flag-duotone" + | "ph:flag-fill" + | "ph:flag-light" + | "ph:flag-pennant" + | "ph:flag-pennant-bold" + | "ph:flag-pennant-duotone" + | "ph:flag-pennant-fill" + | "ph:flag-pennant-light" + | "ph:flag-pennant-thin" + | "ph:flag-thin" + | "ph:flame" + | "ph:flame-bold" + | "ph:flame-duotone" + | "ph:flame-fill" + | "ph:flame-light" + | "ph:flame-thin" + | "ph:flashlight" + | "ph:flashlight-bold" + | "ph:flashlight-duotone" + | "ph:flashlight-fill" + | "ph:flashlight-light" + | "ph:flashlight-thin" + | "ph:flask" + | "ph:flask-bold" + | "ph:flask-duotone" + | "ph:flask-fill" + | "ph:flask-light" + | "ph:flask-thin" + | "ph:flip-horizontal" + | "ph:flip-horizontal-bold" + | "ph:flip-horizontal-duotone" + | "ph:flip-horizontal-fill" + | "ph:flip-horizontal-light" + | "ph:flip-horizontal-thin" + | "ph:flip-vertical" + | "ph:flip-vertical-bold" + | "ph:flip-vertical-duotone" + | "ph:flip-vertical-fill" + | "ph:flip-vertical-light" + | "ph:flip-vertical-thin" + | "ph:floppy-disk" + | "ph:floppy-disk-back" + | "ph:floppy-disk-back-bold" + | "ph:floppy-disk-back-duotone" + | "ph:floppy-disk-back-fill" + | "ph:floppy-disk-back-light" + | "ph:floppy-disk-back-thin" + | "ph:floppy-disk-bold" + | "ph:floppy-disk-duotone" + | "ph:floppy-disk-fill" + | "ph:floppy-disk-light" + | "ph:floppy-disk-thin" + | "ph:flow-arrow" + | "ph:flow-arrow-bold" + | "ph:flow-arrow-duotone" + | "ph:flow-arrow-fill" + | "ph:flow-arrow-light" + | "ph:flow-arrow-thin" + | "ph:flower" + | "ph:flower-bold" + | "ph:flower-duotone" + | "ph:flower-fill" + | "ph:flower-light" + | "ph:flower-lotus" + | "ph:flower-lotus-bold" + | "ph:flower-lotus-duotone" + | "ph:flower-lotus-fill" + | "ph:flower-lotus-light" + | "ph:flower-lotus-thin" + | "ph:flower-thin" + | "ph:flower-tulip" + | "ph:flower-tulip-bold" + | "ph:flower-tulip-duotone" + | "ph:flower-tulip-fill" + | "ph:flower-tulip-light" + | "ph:flower-tulip-thin" + | "ph:flying-saucer" + | "ph:flying-saucer-bold" + | "ph:flying-saucer-duotone" + | "ph:flying-saucer-fill" + | "ph:flying-saucer-light" + | "ph:flying-saucer-thin" + | "ph:folder" + | "ph:folder-bold" + | "ph:folder-dashed" + | "ph:folder-dashed-bold" + | "ph:folder-dashed-duotone" + | "ph:folder-dashed-fill" + | "ph:folder-dashed-light" + | "ph:folder-dashed-thin" + | "ph:folder-dotted" + | "ph:folder-dotted-bold" + | "ph:folder-dotted-duotone" + | "ph:folder-dotted-fill" + | "ph:folder-dotted-light" + | "ph:folder-dotted-thin" + | "ph:folder-duotone" + | "ph:folder-fill" + | "ph:folder-light" + | "ph:folder-lock" + | "ph:folder-lock-bold" + | "ph:folder-lock-duotone" + | "ph:folder-lock-fill" + | "ph:folder-lock-light" + | "ph:folder-lock-thin" + | "ph:folder-minus" + | "ph:folder-minus-bold" + | "ph:folder-minus-duotone" + | "ph:folder-minus-fill" + | "ph:folder-minus-light" + | "ph:folder-minus-thin" + | "ph:folder-notch" + | "ph:folder-notch-bold" + | "ph:folder-notch-duotone" + | "ph:folder-notch-fill" + | "ph:folder-notch-light" + | "ph:folder-notch-minus" + | "ph:folder-notch-minus-bold" + | "ph:folder-notch-minus-duotone" + | "ph:folder-notch-minus-fill" + | "ph:folder-notch-minus-light" + | "ph:folder-notch-minus-thin" + | "ph:folder-notch-open" + | "ph:folder-notch-open-bold" + | "ph:folder-notch-open-duotone" + | "ph:folder-notch-open-fill" + | "ph:folder-notch-open-light" + | "ph:folder-notch-open-thin" + | "ph:folder-notch-plus" + | "ph:folder-notch-plus-bold" + | "ph:folder-notch-plus-duotone" + | "ph:folder-notch-plus-fill" + | "ph:folder-notch-plus-light" + | "ph:folder-notch-plus-thin" + | "ph:folder-notch-thin" + | "ph:folder-open" + | "ph:folder-open-bold" + | "ph:folder-open-duotone" + | "ph:folder-open-fill" + | "ph:folder-open-light" + | "ph:folder-open-thin" + | "ph:folder-plus" + | "ph:folder-plus-bold" + | "ph:folder-plus-duotone" + | "ph:folder-plus-fill" + | "ph:folder-plus-light" + | "ph:folder-plus-thin" + | "ph:folder-simple" + | "ph:folder-simple-bold" + | "ph:folder-simple-dashed" + | "ph:folder-simple-dashed-bold" + | "ph:folder-simple-dashed-duotone" + | "ph:folder-simple-dashed-fill" + | "ph:folder-simple-dashed-light" + | "ph:folder-simple-dashed-thin" + | "ph:folder-simple-dotted" + | "ph:folder-simple-dotted-bold" + | "ph:folder-simple-dotted-duotone" + | "ph:folder-simple-dotted-fill" + | "ph:folder-simple-dotted-light" + | "ph:folder-simple-dotted-thin" + | "ph:folder-simple-duotone" + | "ph:folder-simple-fill" + | "ph:folder-simple-light" + | "ph:folder-simple-lock" + | "ph:folder-simple-lock-bold" + | "ph:folder-simple-lock-duotone" + | "ph:folder-simple-lock-fill" + | "ph:folder-simple-lock-light" + | "ph:folder-simple-lock-thin" + | "ph:folder-simple-minus" + | "ph:folder-simple-minus-bold" + | "ph:folder-simple-minus-duotone" + | "ph:folder-simple-minus-fill" + | "ph:folder-simple-minus-light" + | "ph:folder-simple-minus-thin" + | "ph:folder-simple-plus" + | "ph:folder-simple-plus-bold" + | "ph:folder-simple-plus-duotone" + | "ph:folder-simple-plus-fill" + | "ph:folder-simple-plus-light" + | "ph:folder-simple-plus-thin" + | "ph:folder-simple-star" + | "ph:folder-simple-star-bold" + | "ph:folder-simple-star-duotone" + | "ph:folder-simple-star-fill" + | "ph:folder-simple-star-light" + | "ph:folder-simple-star-thin" + | "ph:folder-simple-thin" + | "ph:folder-simple-user" + | "ph:folder-simple-user-bold" + | "ph:folder-simple-user-duotone" + | "ph:folder-simple-user-fill" + | "ph:folder-simple-user-light" + | "ph:folder-simple-user-thin" + | "ph:folder-star" + | "ph:folder-star-bold" + | "ph:folder-star-duotone" + | "ph:folder-star-fill" + | "ph:folder-star-light" + | "ph:folder-star-thin" + | "ph:folder-thin" + | "ph:folder-user" + | "ph:folder-user-bold" + | "ph:folder-user-duotone" + | "ph:folder-user-fill" + | "ph:folder-user-light" + | "ph:folder-user-thin" + | "ph:folders" + | "ph:folders-bold" + | "ph:folders-duotone" + | "ph:folders-fill" + | "ph:folders-light" + | "ph:folders-thin" + | "ph:football" + | "ph:football-bold" + | "ph:football-duotone" + | "ph:football-fill" + | "ph:football-helmet" + | "ph:football-helmet-bold" + | "ph:football-helmet-duotone" + | "ph:football-helmet-fill" + | "ph:football-helmet-light" + | "ph:football-helmet-thin" + | "ph:football-light" + | "ph:football-thin" + | "ph:footprints" + | "ph:footprints-bold" + | "ph:footprints-duotone" + | "ph:footprints-fill" + | "ph:footprints-light" + | "ph:footprints-thin" + | "ph:fork-knife" + | "ph:fork-knife-bold" + | "ph:fork-knife-duotone" + | "ph:fork-knife-fill" + | "ph:fork-knife-light" + | "ph:fork-knife-thin" + | "ph:four-k" + | "ph:four-k-bold" + | "ph:four-k-duotone" + | "ph:four-k-fill" + | "ph:four-k-light" + | "ph:four-k-thin" + | "ph:frame-corners" + | "ph:frame-corners-bold" + | "ph:frame-corners-duotone" + | "ph:frame-corners-fill" + | "ph:frame-corners-light" + | "ph:frame-corners-thin" + | "ph:framer-logo" + | "ph:framer-logo-bold" + | "ph:framer-logo-duotone" + | "ph:framer-logo-fill" + | "ph:framer-logo-light" + | "ph:framer-logo-thin" + | "ph:function" + | "ph:function-bold" + | "ph:function-duotone" + | "ph:function-fill" + | "ph:function-light" + | "ph:function-thin" + | "ph:funnel" + | "ph:funnel-bold" + | "ph:funnel-duotone" + | "ph:funnel-fill" + | "ph:funnel-light" + | "ph:funnel-simple" + | "ph:funnel-simple-bold" + | "ph:funnel-simple-duotone" + | "ph:funnel-simple-fill" + | "ph:funnel-simple-light" + | "ph:funnel-simple-thin" + | "ph:funnel-simple-x" + | "ph:funnel-simple-x-bold" + | "ph:funnel-simple-x-duotone" + | "ph:funnel-simple-x-fill" + | "ph:funnel-simple-x-light" + | "ph:funnel-simple-x-thin" + | "ph:funnel-thin" + | "ph:funnel-x" + | "ph:funnel-x-bold" + | "ph:funnel-x-duotone" + | "ph:funnel-x-fill" + | "ph:funnel-x-light" + | "ph:funnel-x-thin" + | "ph:game-controller" + | "ph:game-controller-bold" + | "ph:game-controller-duotone" + | "ph:game-controller-fill" + | "ph:game-controller-light" + | "ph:game-controller-thin" + | "ph:garage" + | "ph:garage-bold" + | "ph:garage-duotone" + | "ph:garage-fill" + | "ph:garage-light" + | "ph:garage-thin" + | "ph:gas-can" + | "ph:gas-can-bold" + | "ph:gas-can-duotone" + | "ph:gas-can-fill" + | "ph:gas-can-light" + | "ph:gas-can-thin" + | "ph:gas-pump" + | "ph:gas-pump-bold" + | "ph:gas-pump-duotone" + | "ph:gas-pump-fill" + | "ph:gas-pump-light" + | "ph:gas-pump-thin" + | "ph:gauge" + | "ph:gauge-bold" + | "ph:gauge-duotone" + | "ph:gauge-fill" + | "ph:gauge-light" + | "ph:gauge-thin" + | "ph:gavel" + | "ph:gavel-bold" + | "ph:gavel-duotone" + | "ph:gavel-fill" + | "ph:gavel-light" + | "ph:gavel-thin" + | "ph:gear" + | "ph:gear-bold" + | "ph:gear-duotone" + | "ph:gear-fill" + | "ph:gear-fine" + | "ph:gear-fine-bold" + | "ph:gear-fine-duotone" + | "ph:gear-fine-fill" + | "ph:gear-fine-light" + | "ph:gear-fine-thin" + | "ph:gear-light" + | "ph:gear-six" + | "ph:gear-six-bold" + | "ph:gear-six-duotone" + | "ph:gear-six-fill" + | "ph:gear-six-light" + | "ph:gear-six-thin" + | "ph:gear-thin" + | "ph:gender-female" + | "ph:gender-female-bold" + | "ph:gender-female-duotone" + | "ph:gender-female-fill" + | "ph:gender-female-light" + | "ph:gender-female-thin" + | "ph:gender-intersex" + | "ph:gender-intersex-bold" + | "ph:gender-intersex-duotone" + | "ph:gender-intersex-fill" + | "ph:gender-intersex-light" + | "ph:gender-intersex-thin" + | "ph:gender-male" + | "ph:gender-male-bold" + | "ph:gender-male-duotone" + | "ph:gender-male-fill" + | "ph:gender-male-light" + | "ph:gender-male-thin" + | "ph:gender-neuter" + | "ph:gender-neuter-bold" + | "ph:gender-neuter-duotone" + | "ph:gender-neuter-fill" + | "ph:gender-neuter-light" + | "ph:gender-neuter-thin" + | "ph:gender-nonbinary" + | "ph:gender-nonbinary-bold" + | "ph:gender-nonbinary-duotone" + | "ph:gender-nonbinary-fill" + | "ph:gender-nonbinary-light" + | "ph:gender-nonbinary-thin" + | "ph:gender-transgender" + | "ph:gender-transgender-bold" + | "ph:gender-transgender-duotone" + | "ph:gender-transgender-fill" + | "ph:gender-transgender-light" + | "ph:gender-transgender-thin" + | "ph:ghost" + | "ph:ghost-bold" + | "ph:ghost-duotone" + | "ph:ghost-fill" + | "ph:ghost-light" + | "ph:ghost-thin" + | "ph:gif" + | "ph:gif-bold" + | "ph:gif-duotone" + | "ph:gif-fill" + | "ph:gif-light" + | "ph:gif-thin" + | "ph:gift" + | "ph:gift-bold" + | "ph:gift-duotone" + | "ph:gift-fill" + | "ph:gift-light" + | "ph:gift-thin" + | "ph:git-branch" + | "ph:git-branch-bold" + | "ph:git-branch-duotone" + | "ph:git-branch-fill" + | "ph:git-branch-light" + | "ph:git-branch-thin" + | "ph:git-commit" + | "ph:git-commit-bold" + | "ph:git-commit-duotone" + | "ph:git-commit-fill" + | "ph:git-commit-light" + | "ph:git-commit-thin" + | "ph:git-diff" + | "ph:git-diff-bold" + | "ph:git-diff-duotone" + | "ph:git-diff-fill" + | "ph:git-diff-light" + | "ph:git-diff-thin" + | "ph:git-fork" + | "ph:git-fork-bold" + | "ph:git-fork-duotone" + | "ph:git-fork-fill" + | "ph:git-fork-light" + | "ph:git-fork-thin" + | "ph:git-merge" + | "ph:git-merge-bold" + | "ph:git-merge-duotone" + | "ph:git-merge-fill" + | "ph:git-merge-light" + | "ph:git-merge-thin" + | "ph:git-pull-request" + | "ph:git-pull-request-bold" + | "ph:git-pull-request-duotone" + | "ph:git-pull-request-fill" + | "ph:git-pull-request-light" + | "ph:git-pull-request-thin" + | "ph:github-logo" + | "ph:github-logo-bold" + | "ph:github-logo-duotone" + | "ph:github-logo-fill" + | "ph:github-logo-light" + | "ph:github-logo-thin" + | "ph:gitlab-logo" + | "ph:gitlab-logo-bold" + | "ph:gitlab-logo-duotone" + | "ph:gitlab-logo-fill" + | "ph:gitlab-logo-light" + | "ph:gitlab-logo-simple" + | "ph:gitlab-logo-simple-bold" + | "ph:gitlab-logo-simple-duotone" + | "ph:gitlab-logo-simple-fill" + | "ph:gitlab-logo-simple-light" + | "ph:gitlab-logo-simple-thin" + | "ph:gitlab-logo-thin" + | "ph:globe" + | "ph:globe-bold" + | "ph:globe-duotone" + | "ph:globe-fill" + | "ph:globe-hemisphere-east" + | "ph:globe-hemisphere-east-bold" + | "ph:globe-hemisphere-east-duotone" + | "ph:globe-hemisphere-east-fill" + | "ph:globe-hemisphere-east-light" + | "ph:globe-hemisphere-east-thin" + | "ph:globe-hemisphere-west" + | "ph:globe-hemisphere-west-bold" + | "ph:globe-hemisphere-west-duotone" + | "ph:globe-hemisphere-west-fill" + | "ph:globe-hemisphere-west-light" + | "ph:globe-hemisphere-west-thin" + | "ph:globe-light" + | "ph:globe-simple" + | "ph:globe-simple-bold" + | "ph:globe-simple-duotone" + | "ph:globe-simple-fill" + | "ph:globe-simple-light" + | "ph:globe-simple-thin" + | "ph:globe-simple-x" + | "ph:globe-simple-x-bold" + | "ph:globe-simple-x-duotone" + | "ph:globe-simple-x-fill" + | "ph:globe-simple-x-light" + | "ph:globe-simple-x-thin" + | "ph:globe-stand" + | "ph:globe-stand-bold" + | "ph:globe-stand-duotone" + | "ph:globe-stand-fill" + | "ph:globe-stand-light" + | "ph:globe-stand-thin" + | "ph:globe-thin" + | "ph:globe-x" + | "ph:globe-x-bold" + | "ph:globe-x-duotone" + | "ph:globe-x-fill" + | "ph:globe-x-light" + | "ph:globe-x-thin" + | "ph:goggles" + | "ph:goggles-bold" + | "ph:goggles-duotone" + | "ph:goggles-fill" + | "ph:goggles-light" + | "ph:goggles-thin" + | "ph:golf" + | "ph:golf-bold" + | "ph:golf-duotone" + | "ph:golf-fill" + | "ph:golf-light" + | "ph:golf-thin" + | "ph:goodreads-logo" + | "ph:goodreads-logo-bold" + | "ph:goodreads-logo-duotone" + | "ph:goodreads-logo-fill" + | "ph:goodreads-logo-light" + | "ph:goodreads-logo-thin" + | "ph:google-cardboard-logo" + | "ph:google-cardboard-logo-bold" + | "ph:google-cardboard-logo-duotone" + | "ph:google-cardboard-logo-fill" + | "ph:google-cardboard-logo-light" + | "ph:google-cardboard-logo-thin" + | "ph:google-chrome-logo" + | "ph:google-chrome-logo-bold" + | "ph:google-chrome-logo-duotone" + | "ph:google-chrome-logo-fill" + | "ph:google-chrome-logo-light" + | "ph:google-chrome-logo-thin" + | "ph:google-drive-logo" + | "ph:google-drive-logo-bold" + | "ph:google-drive-logo-duotone" + | "ph:google-drive-logo-fill" + | "ph:google-drive-logo-light" + | "ph:google-drive-logo-thin" + | "ph:google-logo" + | "ph:google-logo-bold" + | "ph:google-logo-duotone" + | "ph:google-logo-fill" + | "ph:google-logo-light" + | "ph:google-logo-thin" + | "ph:google-photos-logo" + | "ph:google-photos-logo-bold" + | "ph:google-photos-logo-duotone" + | "ph:google-photos-logo-fill" + | "ph:google-photos-logo-light" + | "ph:google-photos-logo-thin" + | "ph:google-play-logo" + | "ph:google-play-logo-bold" + | "ph:google-play-logo-duotone" + | "ph:google-play-logo-fill" + | "ph:google-play-logo-light" + | "ph:google-play-logo-thin" + | "ph:google-podcasts-logo" + | "ph:google-podcasts-logo-bold" + | "ph:google-podcasts-logo-duotone" + | "ph:google-podcasts-logo-fill" + | "ph:google-podcasts-logo-light" + | "ph:google-podcasts-logo-thin" + | "ph:gps" + | "ph:gps-bold" + | "ph:gps-duotone" + | "ph:gps-fill" + | "ph:gps-fix" + | "ph:gps-fix-bold" + | "ph:gps-fix-duotone" + | "ph:gps-fix-fill" + | "ph:gps-fix-light" + | "ph:gps-fix-thin" + | "ph:gps-light" + | "ph:gps-slash" + | "ph:gps-slash-bold" + | "ph:gps-slash-duotone" + | "ph:gps-slash-fill" + | "ph:gps-slash-light" + | "ph:gps-slash-thin" + | "ph:gps-thin" + | "ph:gradient" + | "ph:gradient-bold" + | "ph:gradient-duotone" + | "ph:gradient-fill" + | "ph:gradient-light" + | "ph:gradient-thin" + | "ph:graduation-cap" + | "ph:graduation-cap-bold" + | "ph:graduation-cap-duotone" + | "ph:graduation-cap-fill" + | "ph:graduation-cap-light" + | "ph:graduation-cap-thin" + | "ph:grains" + | "ph:grains-bold" + | "ph:grains-duotone" + | "ph:grains-fill" + | "ph:grains-light" + | "ph:grains-slash" + | "ph:grains-slash-bold" + | "ph:grains-slash-duotone" + | "ph:grains-slash-fill" + | "ph:grains-slash-light" + | "ph:grains-slash-thin" + | "ph:grains-thin" + | "ph:graph" + | "ph:graph-bold" + | "ph:graph-duotone" + | "ph:graph-fill" + | "ph:graph-light" + | "ph:graph-thin" + | "ph:graphics-card" + | "ph:graphics-card-bold" + | "ph:graphics-card-duotone" + | "ph:graphics-card-fill" + | "ph:graphics-card-light" + | "ph:graphics-card-thin" + | "ph:greater-than" + | "ph:greater-than-bold" + | "ph:greater-than-duotone" + | "ph:greater-than-fill" + | "ph:greater-than-light" + | "ph:greater-than-or-equal" + | "ph:greater-than-or-equal-bold" + | "ph:greater-than-or-equal-duotone" + | "ph:greater-than-or-equal-fill" + | "ph:greater-than-or-equal-light" + | "ph:greater-than-or-equal-thin" + | "ph:greater-than-thin" + | "ph:grid-four" + | "ph:grid-four-bold" + | "ph:grid-four-duotone" + | "ph:grid-four-fill" + | "ph:grid-four-light" + | "ph:grid-four-thin" + | "ph:grid-nine" + | "ph:grid-nine-bold" + | "ph:grid-nine-duotone" + | "ph:grid-nine-fill" + | "ph:grid-nine-light" + | "ph:grid-nine-thin" + | "ph:guitar" + | "ph:guitar-bold" + | "ph:guitar-duotone" + | "ph:guitar-fill" + | "ph:guitar-light" + | "ph:guitar-thin" + | "ph:hair-dryer" + | "ph:hair-dryer-bold" + | "ph:hair-dryer-duotone" + | "ph:hair-dryer-fill" + | "ph:hair-dryer-light" + | "ph:hair-dryer-thin" + | "ph:hamburger" + | "ph:hamburger-bold" + | "ph:hamburger-duotone" + | "ph:hamburger-fill" + | "ph:hamburger-light" + | "ph:hamburger-thin" + | "ph:hammer" + | "ph:hammer-bold" + | "ph:hammer-duotone" + | "ph:hammer-fill" + | "ph:hammer-light" + | "ph:hammer-thin" + | "ph:hand" + | "ph:hand-arrow-down" + | "ph:hand-arrow-down-bold" + | "ph:hand-arrow-down-duotone" + | "ph:hand-arrow-down-fill" + | "ph:hand-arrow-down-light" + | "ph:hand-arrow-down-thin" + | "ph:hand-arrow-up" + | "ph:hand-arrow-up-bold" + | "ph:hand-arrow-up-duotone" + | "ph:hand-arrow-up-fill" + | "ph:hand-arrow-up-light" + | "ph:hand-arrow-up-thin" + | "ph:hand-bold" + | "ph:hand-coins" + | "ph:hand-coins-bold" + | "ph:hand-coins-duotone" + | "ph:hand-coins-fill" + | "ph:hand-coins-light" + | "ph:hand-coins-thin" + | "ph:hand-deposit" + | "ph:hand-deposit-bold" + | "ph:hand-deposit-duotone" + | "ph:hand-deposit-fill" + | "ph:hand-deposit-light" + | "ph:hand-deposit-thin" + | "ph:hand-duotone" + | "ph:hand-eye" + | "ph:hand-eye-bold" + | "ph:hand-eye-duotone" + | "ph:hand-eye-fill" + | "ph:hand-eye-light" + | "ph:hand-eye-thin" + | "ph:hand-fill" + | "ph:hand-fist" + | "ph:hand-fist-bold" + | "ph:hand-fist-duotone" + | "ph:hand-fist-fill" + | "ph:hand-fist-light" + | "ph:hand-fist-thin" + | "ph:hand-grabbing" + | "ph:hand-grabbing-bold" + | "ph:hand-grabbing-duotone" + | "ph:hand-grabbing-fill" + | "ph:hand-grabbing-light" + | "ph:hand-grabbing-thin" + | "ph:hand-heart" + | "ph:hand-heart-bold" + | "ph:hand-heart-duotone" + | "ph:hand-heart-fill" + | "ph:hand-heart-light" + | "ph:hand-heart-thin" + | "ph:hand-light" + | "ph:hand-palm" + | "ph:hand-palm-bold" + | "ph:hand-palm-duotone" + | "ph:hand-palm-fill" + | "ph:hand-palm-light" + | "ph:hand-palm-thin" + | "ph:hand-peace" + | "ph:hand-peace-bold" + | "ph:hand-peace-duotone" + | "ph:hand-peace-fill" + | "ph:hand-peace-light" + | "ph:hand-peace-thin" + | "ph:hand-pointing" + | "ph:hand-pointing-bold" + | "ph:hand-pointing-duotone" + | "ph:hand-pointing-fill" + | "ph:hand-pointing-light" + | "ph:hand-pointing-thin" + | "ph:hand-soap" + | "ph:hand-soap-bold" + | "ph:hand-soap-duotone" + | "ph:hand-soap-fill" + | "ph:hand-soap-light" + | "ph:hand-soap-thin" + | "ph:hand-swipe-left" + | "ph:hand-swipe-left-bold" + | "ph:hand-swipe-left-duotone" + | "ph:hand-swipe-left-fill" + | "ph:hand-swipe-left-light" + | "ph:hand-swipe-left-thin" + | "ph:hand-swipe-right" + | "ph:hand-swipe-right-bold" + | "ph:hand-swipe-right-duotone" + | "ph:hand-swipe-right-fill" + | "ph:hand-swipe-right-light" + | "ph:hand-swipe-right-thin" + | "ph:hand-tap" + | "ph:hand-tap-bold" + | "ph:hand-tap-duotone" + | "ph:hand-tap-fill" + | "ph:hand-tap-light" + | "ph:hand-tap-thin" + | "ph:hand-thin" + | "ph:hand-waving" + | "ph:hand-waving-bold" + | "ph:hand-waving-duotone" + | "ph:hand-waving-fill" + | "ph:hand-waving-light" + | "ph:hand-waving-thin" + | "ph:hand-withdraw" + | "ph:hand-withdraw-bold" + | "ph:hand-withdraw-duotone" + | "ph:hand-withdraw-fill" + | "ph:hand-withdraw-light" + | "ph:hand-withdraw-thin" + | "ph:handbag" + | "ph:handbag-bold" + | "ph:handbag-duotone" + | "ph:handbag-fill" + | "ph:handbag-light" + | "ph:handbag-simple" + | "ph:handbag-simple-bold" + | "ph:handbag-simple-duotone" + | "ph:handbag-simple-fill" + | "ph:handbag-simple-light" + | "ph:handbag-simple-thin" + | "ph:handbag-thin" + | "ph:hands-clapping" + | "ph:hands-clapping-bold" + | "ph:hands-clapping-duotone" + | "ph:hands-clapping-fill" + | "ph:hands-clapping-light" + | "ph:hands-clapping-thin" + | "ph:hands-praying" + | "ph:hands-praying-bold" + | "ph:hands-praying-duotone" + | "ph:hands-praying-fill" + | "ph:hands-praying-light" + | "ph:hands-praying-thin" + | "ph:handshake" + | "ph:handshake-bold" + | "ph:handshake-duotone" + | "ph:handshake-fill" + | "ph:handshake-light" + | "ph:handshake-thin" + | "ph:hard-drive" + | "ph:hard-drive-bold" + | "ph:hard-drive-duotone" + | "ph:hard-drive-fill" + | "ph:hard-drive-light" + | "ph:hard-drive-thin" + | "ph:hard-drives" + | "ph:hard-drives-bold" + | "ph:hard-drives-duotone" + | "ph:hard-drives-fill" + | "ph:hard-drives-light" + | "ph:hard-drives-thin" + | "ph:hard-hat" + | "ph:hard-hat-bold" + | "ph:hard-hat-duotone" + | "ph:hard-hat-fill" + | "ph:hard-hat-light" + | "ph:hard-hat-thin" + | "ph:hash" + | "ph:hash-bold" + | "ph:hash-duotone" + | "ph:hash-fill" + | "ph:hash-light" + | "ph:hash-straight" + | "ph:hash-straight-bold" + | "ph:hash-straight-duotone" + | "ph:hash-straight-fill" + | "ph:hash-straight-light" + | "ph:hash-straight-thin" + | "ph:hash-thin" + | "ph:head-circuit" + | "ph:head-circuit-bold" + | "ph:head-circuit-duotone" + | "ph:head-circuit-fill" + | "ph:head-circuit-light" + | "ph:head-circuit-thin" + | "ph:headlights" + | "ph:headlights-bold" + | "ph:headlights-duotone" + | "ph:headlights-fill" + | "ph:headlights-light" + | "ph:headlights-thin" + | "ph:headphones" + | "ph:headphones-bold" + | "ph:headphones-duotone" + | "ph:headphones-fill" + | "ph:headphones-light" + | "ph:headphones-thin" + | "ph:headset" + | "ph:headset-bold" + | "ph:headset-duotone" + | "ph:headset-fill" + | "ph:headset-light" + | "ph:headset-thin" + | "ph:heart" + | "ph:heart-bold" + | "ph:heart-break" + | "ph:heart-break-bold" + | "ph:heart-break-duotone" + | "ph:heart-break-fill" + | "ph:heart-break-light" + | "ph:heart-break-thin" + | "ph:heart-duotone" + | "ph:heart-fill" + | "ph:heart-half" + | "ph:heart-half-bold" + | "ph:heart-half-duotone" + | "ph:heart-half-fill" + | "ph:heart-half-light" + | "ph:heart-half-thin" + | "ph:heart-light" + | "ph:heart-straight" + | "ph:heart-straight-bold" + | "ph:heart-straight-break" + | "ph:heart-straight-break-bold" + | "ph:heart-straight-break-duotone" + | "ph:heart-straight-break-fill" + | "ph:heart-straight-break-light" + | "ph:heart-straight-break-thin" + | "ph:heart-straight-duotone" + | "ph:heart-straight-fill" + | "ph:heart-straight-light" + | "ph:heart-straight-thin" + | "ph:heart-thin" + | "ph:heartbeat" + | "ph:heartbeat-bold" + | "ph:heartbeat-duotone" + | "ph:heartbeat-fill" + | "ph:heartbeat-light" + | "ph:heartbeat-thin" + | "ph:hexagon" + | "ph:hexagon-bold" + | "ph:hexagon-duotone" + | "ph:hexagon-fill" + | "ph:hexagon-light" + | "ph:hexagon-thin" + | "ph:high-definition" + | "ph:high-definition-bold" + | "ph:high-definition-duotone" + | "ph:high-definition-fill" + | "ph:high-definition-light" + | "ph:high-definition-thin" + | "ph:high-heel" + | "ph:high-heel-bold" + | "ph:high-heel-duotone" + | "ph:high-heel-fill" + | "ph:high-heel-light" + | "ph:high-heel-thin" + | "ph:highlighter" + | "ph:highlighter-bold" + | "ph:highlighter-circle" + | "ph:highlighter-circle-bold" + | "ph:highlighter-circle-duotone" + | "ph:highlighter-circle-fill" + | "ph:highlighter-circle-light" + | "ph:highlighter-circle-thin" + | "ph:highlighter-duotone" + | "ph:highlighter-fill" + | "ph:highlighter-light" + | "ph:highlighter-thin" + | "ph:hockey" + | "ph:hockey-bold" + | "ph:hockey-duotone" + | "ph:hockey-fill" + | "ph:hockey-light" + | "ph:hockey-thin" + | "ph:hoodie" + | "ph:hoodie-bold" + | "ph:hoodie-duotone" + | "ph:hoodie-fill" + | "ph:hoodie-light" + | "ph:hoodie-thin" + | "ph:horse" + | "ph:horse-bold" + | "ph:horse-duotone" + | "ph:horse-fill" + | "ph:horse-light" + | "ph:horse-thin" + | "ph:hospital" + | "ph:hospital-bold" + | "ph:hospital-duotone" + | "ph:hospital-fill" + | "ph:hospital-light" + | "ph:hospital-thin" + | "ph:hourglass" + | "ph:hourglass-bold" + | "ph:hourglass-duotone" + | "ph:hourglass-fill" + | "ph:hourglass-high" + | "ph:hourglass-high-bold" + | "ph:hourglass-high-duotone" + | "ph:hourglass-high-fill" + | "ph:hourglass-high-light" + | "ph:hourglass-high-thin" + | "ph:hourglass-light" + | "ph:hourglass-low" + | "ph:hourglass-low-bold" + | "ph:hourglass-low-duotone" + | "ph:hourglass-low-fill" + | "ph:hourglass-low-light" + | "ph:hourglass-low-thin" + | "ph:hourglass-medium" + | "ph:hourglass-medium-bold" + | "ph:hourglass-medium-duotone" + | "ph:hourglass-medium-fill" + | "ph:hourglass-medium-light" + | "ph:hourglass-medium-thin" + | "ph:hourglass-simple" + | "ph:hourglass-simple-bold" + | "ph:hourglass-simple-duotone" + | "ph:hourglass-simple-fill" + | "ph:hourglass-simple-high" + | "ph:hourglass-simple-high-bold" + | "ph:hourglass-simple-high-duotone" + | "ph:hourglass-simple-high-fill" + | "ph:hourglass-simple-high-light" + | "ph:hourglass-simple-high-thin" + | "ph:hourglass-simple-light" + | "ph:hourglass-simple-low" + | "ph:hourglass-simple-low-bold" + | "ph:hourglass-simple-low-duotone" + | "ph:hourglass-simple-low-fill" + | "ph:hourglass-simple-low-light" + | "ph:hourglass-simple-low-thin" + | "ph:hourglass-simple-medium" + | "ph:hourglass-simple-medium-bold" + | "ph:hourglass-simple-medium-duotone" + | "ph:hourglass-simple-medium-fill" + | "ph:hourglass-simple-medium-light" + | "ph:hourglass-simple-medium-thin" + | "ph:hourglass-simple-thin" + | "ph:hourglass-thin" + | "ph:house" + | "ph:house-bold" + | "ph:house-duotone" + | "ph:house-fill" + | "ph:house-light" + | "ph:house-line" + | "ph:house-line-bold" + | "ph:house-line-duotone" + | "ph:house-line-fill" + | "ph:house-line-light" + | "ph:house-line-thin" + | "ph:house-simple" + | "ph:house-simple-bold" + | "ph:house-simple-duotone" + | "ph:house-simple-fill" + | "ph:house-simple-light" + | "ph:house-simple-thin" + | "ph:house-thin" + | "ph:hurricane" + | "ph:hurricane-bold" + | "ph:hurricane-duotone" + | "ph:hurricane-fill" + | "ph:hurricane-light" + | "ph:hurricane-thin" + | "ph:ice-cream" + | "ph:ice-cream-bold" + | "ph:ice-cream-duotone" + | "ph:ice-cream-fill" + | "ph:ice-cream-light" + | "ph:ice-cream-thin" + | "ph:identification-badge" + | "ph:identification-badge-bold" + | "ph:identification-badge-duotone" + | "ph:identification-badge-fill" + | "ph:identification-badge-light" + | "ph:identification-badge-thin" + | "ph:identification-card" + | "ph:identification-card-bold" + | "ph:identification-card-duotone" + | "ph:identification-card-fill" + | "ph:identification-card-light" + | "ph:identification-card-thin" + | "ph:image" + | "ph:image-bold" + | "ph:image-broken" + | "ph:image-broken-bold" + | "ph:image-broken-duotone" + | "ph:image-broken-fill" + | "ph:image-broken-light" + | "ph:image-broken-thin" + | "ph:image-duotone" + | "ph:image-fill" + | "ph:image-light" + | "ph:image-square" + | "ph:image-square-bold" + | "ph:image-square-duotone" + | "ph:image-square-fill" + | "ph:image-square-light" + | "ph:image-square-thin" + | "ph:image-thin" + | "ph:images" + | "ph:images-bold" + | "ph:images-duotone" + | "ph:images-fill" + | "ph:images-light" + | "ph:images-square" + | "ph:images-square-bold" + | "ph:images-square-duotone" + | "ph:images-square-fill" + | "ph:images-square-light" + | "ph:images-square-thin" + | "ph:images-thin" + | "ph:infinity" + | "ph:infinity-bold" + | "ph:infinity-duotone" + | "ph:infinity-fill" + | "ph:infinity-light" + | "ph:infinity-thin" + | "ph:info" + | "ph:info-bold" + | "ph:info-duotone" + | "ph:info-fill" + | "ph:info-light" + | "ph:info-thin" + | "ph:instagram-logo" + | "ph:instagram-logo-bold" + | "ph:instagram-logo-duotone" + | "ph:instagram-logo-fill" + | "ph:instagram-logo-light" + | "ph:instagram-logo-thin" + | "ph:intersect" + | "ph:intersect-bold" + | "ph:intersect-duotone" + | "ph:intersect-fill" + | "ph:intersect-light" + | "ph:intersect-square" + | "ph:intersect-square-bold" + | "ph:intersect-square-duotone" + | "ph:intersect-square-fill" + | "ph:intersect-square-light" + | "ph:intersect-square-thin" + | "ph:intersect-thin" + | "ph:intersect-three" + | "ph:intersect-three-bold" + | "ph:intersect-three-duotone" + | "ph:intersect-three-fill" + | "ph:intersect-three-light" + | "ph:intersect-three-thin" + | "ph:intersection" + | "ph:intersection-bold" + | "ph:intersection-duotone" + | "ph:intersection-fill" + | "ph:intersection-light" + | "ph:intersection-thin" + | "ph:invoice" + | "ph:invoice-bold" + | "ph:invoice-duotone" + | "ph:invoice-fill" + | "ph:invoice-light" + | "ph:invoice-thin" + | "ph:island" + | "ph:island-bold" + | "ph:island-duotone" + | "ph:island-fill" + | "ph:island-light" + | "ph:island-thin" + | "ph:jar" + | "ph:jar-bold" + | "ph:jar-duotone" + | "ph:jar-fill" + | "ph:jar-label" + | "ph:jar-label-bold" + | "ph:jar-label-duotone" + | "ph:jar-label-fill" + | "ph:jar-label-light" + | "ph:jar-label-thin" + | "ph:jar-light" + | "ph:jar-thin" + | "ph:jeep" + | "ph:jeep-bold" + | "ph:jeep-duotone" + | "ph:jeep-fill" + | "ph:jeep-light" + | "ph:jeep-thin" + | "ph:joystick" + | "ph:joystick-bold" + | "ph:joystick-duotone" + | "ph:joystick-fill" + | "ph:joystick-light" + | "ph:joystick-thin" + | "ph:kanban" + | "ph:kanban-bold" + | "ph:kanban-duotone" + | "ph:kanban-fill" + | "ph:kanban-light" + | "ph:kanban-thin" + | "ph:key" + | "ph:key-bold" + | "ph:key-duotone" + | "ph:key-fill" + | "ph:key-light" + | "ph:key-return" + | "ph:key-return-bold" + | "ph:key-return-duotone" + | "ph:key-return-fill" + | "ph:key-return-light" + | "ph:key-return-thin" + | "ph:key-thin" + | "ph:keyboard" + | "ph:keyboard-bold" + | "ph:keyboard-duotone" + | "ph:keyboard-fill" + | "ph:keyboard-light" + | "ph:keyboard-thin" + | "ph:keyhole" + | "ph:keyhole-bold" + | "ph:keyhole-duotone" + | "ph:keyhole-fill" + | "ph:keyhole-light" + | "ph:keyhole-thin" + | "ph:knife" + | "ph:knife-bold" + | "ph:knife-duotone" + | "ph:knife-fill" + | "ph:knife-light" + | "ph:knife-thin" + | "ph:ladder" + | "ph:ladder-bold" + | "ph:ladder-duotone" + | "ph:ladder-fill" + | "ph:ladder-light" + | "ph:ladder-simple" + | "ph:ladder-simple-bold" + | "ph:ladder-simple-duotone" + | "ph:ladder-simple-fill" + | "ph:ladder-simple-light" + | "ph:ladder-simple-thin" + | "ph:ladder-thin" + | "ph:lamp" + | "ph:lamp-bold" + | "ph:lamp-duotone" + | "ph:lamp-fill" + | "ph:lamp-light" + | "ph:lamp-pendant" + | "ph:lamp-pendant-bold" + | "ph:lamp-pendant-duotone" + | "ph:lamp-pendant-fill" + | "ph:lamp-pendant-light" + | "ph:lamp-pendant-thin" + | "ph:lamp-thin" + | "ph:laptop" + | "ph:laptop-bold" + | "ph:laptop-duotone" + | "ph:laptop-fill" + | "ph:laptop-light" + | "ph:laptop-thin" + | "ph:lasso" + | "ph:lasso-bold" + | "ph:lasso-duotone" + | "ph:lasso-fill" + | "ph:lasso-light" + | "ph:lasso-thin" + | "ph:lastfm-logo" + | "ph:lastfm-logo-bold" + | "ph:lastfm-logo-duotone" + | "ph:lastfm-logo-fill" + | "ph:lastfm-logo-light" + | "ph:lastfm-logo-thin" + | "ph:layout" + | "ph:layout-bold" + | "ph:layout-duotone" + | "ph:layout-fill" + | "ph:layout-light" + | "ph:layout-thin" + | "ph:leaf" + | "ph:leaf-bold" + | "ph:leaf-duotone" + | "ph:leaf-fill" + | "ph:leaf-light" + | "ph:leaf-thin" + | "ph:lectern" + | "ph:lectern-bold" + | "ph:lectern-duotone" + | "ph:lectern-fill" + | "ph:lectern-light" + | "ph:lectern-thin" + | "ph:lego" + | "ph:lego-bold" + | "ph:lego-duotone" + | "ph:lego-fill" + | "ph:lego-light" + | "ph:lego-smiley" + | "ph:lego-smiley-bold" + | "ph:lego-smiley-duotone" + | "ph:lego-smiley-fill" + | "ph:lego-smiley-light" + | "ph:lego-smiley-thin" + | "ph:lego-thin" + | "ph:less-than" + | "ph:less-than-bold" + | "ph:less-than-duotone" + | "ph:less-than-fill" + | "ph:less-than-light" + | "ph:less-than-or-equal" + | "ph:less-than-or-equal-bold" + | "ph:less-than-or-equal-duotone" + | "ph:less-than-or-equal-fill" + | "ph:less-than-or-equal-light" + | "ph:less-than-or-equal-thin" + | "ph:less-than-thin" + | "ph:letter-circle-h" + | "ph:letter-circle-h-bold" + | "ph:letter-circle-h-duotone" + | "ph:letter-circle-h-fill" + | "ph:letter-circle-h-light" + | "ph:letter-circle-h-thin" + | "ph:letter-circle-p" + | "ph:letter-circle-p-bold" + | "ph:letter-circle-p-duotone" + | "ph:letter-circle-p-fill" + | "ph:letter-circle-p-light" + | "ph:letter-circle-p-thin" + | "ph:letter-circle-v" + | "ph:letter-circle-v-bold" + | "ph:letter-circle-v-duotone" + | "ph:letter-circle-v-fill" + | "ph:letter-circle-v-light" + | "ph:letter-circle-v-thin" + | "ph:lifebuoy" + | "ph:lifebuoy-bold" + | "ph:lifebuoy-duotone" + | "ph:lifebuoy-fill" + | "ph:lifebuoy-light" + | "ph:lifebuoy-thin" + | "ph:lightbulb" + | "ph:lightbulb-bold" + | "ph:lightbulb-duotone" + | "ph:lightbulb-filament" + | "ph:lightbulb-filament-bold" + | "ph:lightbulb-filament-duotone" + | "ph:lightbulb-filament-fill" + | "ph:lightbulb-filament-light" + | "ph:lightbulb-filament-thin" + | "ph:lightbulb-fill" + | "ph:lightbulb-light" + | "ph:lightbulb-thin" + | "ph:lighthouse" + | "ph:lighthouse-bold" + | "ph:lighthouse-duotone" + | "ph:lighthouse-fill" + | "ph:lighthouse-light" + | "ph:lighthouse-thin" + | "ph:lightning" + | "ph:lightning-a" + | "ph:lightning-a-bold" + | "ph:lightning-a-duotone" + | "ph:lightning-a-fill" + | "ph:lightning-a-light" + | "ph:lightning-a-thin" + | "ph:lightning-bold" + | "ph:lightning-duotone" + | "ph:lightning-fill" + | "ph:lightning-light" + | "ph:lightning-slash" + | "ph:lightning-slash-bold" + | "ph:lightning-slash-duotone" + | "ph:lightning-slash-fill" + | "ph:lightning-slash-light" + | "ph:lightning-slash-thin" + | "ph:lightning-thin" + | "ph:line-segment" + | "ph:line-segment-bold" + | "ph:line-segment-duotone" + | "ph:line-segment-fill" + | "ph:line-segment-light" + | "ph:line-segment-thin" + | "ph:line-segments" + | "ph:line-segments-bold" + | "ph:line-segments-duotone" + | "ph:line-segments-fill" + | "ph:line-segments-light" + | "ph:line-segments-thin" + | "ph:line-vertical" + | "ph:line-vertical-bold" + | "ph:line-vertical-duotone" + | "ph:line-vertical-fill" + | "ph:line-vertical-light" + | "ph:line-vertical-thin" + | "ph:link" + | "ph:link-bold" + | "ph:link-break" + | "ph:link-break-bold" + | "ph:link-break-duotone" + | "ph:link-break-fill" + | "ph:link-break-light" + | "ph:link-break-thin" + | "ph:link-duotone" + | "ph:link-fill" + | "ph:link-light" + | "ph:link-simple" + | "ph:link-simple-bold" + | "ph:link-simple-break" + | "ph:link-simple-break-bold" + | "ph:link-simple-break-duotone" + | "ph:link-simple-break-fill" + | "ph:link-simple-break-light" + | "ph:link-simple-break-thin" + | "ph:link-simple-duotone" + | "ph:link-simple-fill" + | "ph:link-simple-horizontal" + | "ph:link-simple-horizontal-bold" + | "ph:link-simple-horizontal-break" + | "ph:link-simple-horizontal-break-bold" + | "ph:link-simple-horizontal-break-duotone" + | "ph:link-simple-horizontal-break-fill" + | "ph:link-simple-horizontal-break-light" + | "ph:link-simple-horizontal-break-thin" + | "ph:link-simple-horizontal-duotone" + | "ph:link-simple-horizontal-fill" + | "ph:link-simple-horizontal-light" + | "ph:link-simple-horizontal-thin" + | "ph:link-simple-light" + | "ph:link-simple-thin" + | "ph:link-thin" + | "ph:linkedin-logo" + | "ph:linkedin-logo-bold" + | "ph:linkedin-logo-duotone" + | "ph:linkedin-logo-fill" + | "ph:linkedin-logo-light" + | "ph:linkedin-logo-thin" + | "ph:linktree-logo" + | "ph:linktree-logo-bold" + | "ph:linktree-logo-duotone" + | "ph:linktree-logo-fill" + | "ph:linktree-logo-light" + | "ph:linktree-logo-thin" + | "ph:linux-logo" + | "ph:linux-logo-bold" + | "ph:linux-logo-duotone" + | "ph:linux-logo-fill" + | "ph:linux-logo-light" + | "ph:linux-logo-thin" + | "ph:list" + | "ph:list-bold" + | "ph:list-bullets" + | "ph:list-bullets-bold" + | "ph:list-bullets-duotone" + | "ph:list-bullets-fill" + | "ph:list-bullets-light" + | "ph:list-bullets-thin" + | "ph:list-checks" + | "ph:list-checks-bold" + | "ph:list-checks-duotone" + | "ph:list-checks-fill" + | "ph:list-checks-light" + | "ph:list-checks-thin" + | "ph:list-dashes" + | "ph:list-dashes-bold" + | "ph:list-dashes-duotone" + | "ph:list-dashes-fill" + | "ph:list-dashes-light" + | "ph:list-dashes-thin" + | "ph:list-duotone" + | "ph:list-fill" + | "ph:list-heart" + | "ph:list-heart-bold" + | "ph:list-heart-duotone" + | "ph:list-heart-fill" + | "ph:list-heart-light" + | "ph:list-heart-thin" + | "ph:list-light" + | "ph:list-magnifying-glass" + | "ph:list-magnifying-glass-bold" + | "ph:list-magnifying-glass-duotone" + | "ph:list-magnifying-glass-fill" + | "ph:list-magnifying-glass-light" + | "ph:list-magnifying-glass-thin" + | "ph:list-numbers" + | "ph:list-numbers-bold" + | "ph:list-numbers-duotone" + | "ph:list-numbers-fill" + | "ph:list-numbers-light" + | "ph:list-numbers-thin" + | "ph:list-plus" + | "ph:list-plus-bold" + | "ph:list-plus-duotone" + | "ph:list-plus-fill" + | "ph:list-plus-light" + | "ph:list-plus-thin" + | "ph:list-star" + | "ph:list-star-bold" + | "ph:list-star-duotone" + | "ph:list-star-fill" + | "ph:list-star-light" + | "ph:list-star-thin" + | "ph:list-thin" + | "ph:lock" + | "ph:lock-bold" + | "ph:lock-duotone" + | "ph:lock-fill" + | "ph:lock-key" + | "ph:lock-key-bold" + | "ph:lock-key-duotone" + | "ph:lock-key-fill" + | "ph:lock-key-light" + | "ph:lock-key-open" + | "ph:lock-key-open-bold" + | "ph:lock-key-open-duotone" + | "ph:lock-key-open-fill" + | "ph:lock-key-open-light" + | "ph:lock-key-open-thin" + | "ph:lock-key-thin" + | "ph:lock-laminated" + | "ph:lock-laminated-bold" + | "ph:lock-laminated-duotone" + | "ph:lock-laminated-fill" + | "ph:lock-laminated-light" + | "ph:lock-laminated-open" + | "ph:lock-laminated-open-bold" + | "ph:lock-laminated-open-duotone" + | "ph:lock-laminated-open-fill" + | "ph:lock-laminated-open-light" + | "ph:lock-laminated-open-thin" + | "ph:lock-laminated-thin" + | "ph:lock-light" + | "ph:lock-open" + | "ph:lock-open-bold" + | "ph:lock-open-duotone" + | "ph:lock-open-fill" + | "ph:lock-open-light" + | "ph:lock-open-thin" + | "ph:lock-simple" + | "ph:lock-simple-bold" + | "ph:lock-simple-duotone" + | "ph:lock-simple-fill" + | "ph:lock-simple-light" + | "ph:lock-simple-open" + | "ph:lock-simple-open-bold" + | "ph:lock-simple-open-duotone" + | "ph:lock-simple-open-fill" + | "ph:lock-simple-open-light" + | "ph:lock-simple-open-thin" + | "ph:lock-simple-thin" + | "ph:lock-thin" + | "ph:lockers" + | "ph:lockers-bold" + | "ph:lockers-duotone" + | "ph:lockers-fill" + | "ph:lockers-light" + | "ph:lockers-thin" + | "ph:log" + | "ph:log-bold" + | "ph:log-duotone" + | "ph:log-fill" + | "ph:log-light" + | "ph:log-thin" + | "ph:magic-wand" + | "ph:magic-wand-bold" + | "ph:magic-wand-duotone" + | "ph:magic-wand-fill" + | "ph:magic-wand-light" + | "ph:magic-wand-thin" + | "ph:magnet" + | "ph:magnet-bold" + | "ph:magnet-duotone" + | "ph:magnet-fill" + | "ph:magnet-light" + | "ph:magnet-straight" + | "ph:magnet-straight-bold" + | "ph:magnet-straight-duotone" + | "ph:magnet-straight-fill" + | "ph:magnet-straight-light" + | "ph:magnet-straight-thin" + | "ph:magnet-thin" + | "ph:magnifying-glass" + | "ph:magnifying-glass-bold" + | "ph:magnifying-glass-duotone" + | "ph:magnifying-glass-fill" + | "ph:magnifying-glass-light" + | "ph:magnifying-glass-minus" + | "ph:magnifying-glass-minus-bold" + | "ph:magnifying-glass-minus-duotone" + | "ph:magnifying-glass-minus-fill" + | "ph:magnifying-glass-minus-light" + | "ph:magnifying-glass-minus-thin" + | "ph:magnifying-glass-plus" + | "ph:magnifying-glass-plus-bold" + | "ph:magnifying-glass-plus-duotone" + | "ph:magnifying-glass-plus-fill" + | "ph:magnifying-glass-plus-light" + | "ph:magnifying-glass-plus-thin" + | "ph:magnifying-glass-thin" + | "ph:mailbox" + | "ph:mailbox-bold" + | "ph:mailbox-duotone" + | "ph:mailbox-fill" + | "ph:mailbox-light" + | "ph:mailbox-thin" + | "ph:map-pin" + | "ph:map-pin-area" + | "ph:map-pin-area-bold" + | "ph:map-pin-area-duotone" + | "ph:map-pin-area-fill" + | "ph:map-pin-area-light" + | "ph:map-pin-area-thin" + | "ph:map-pin-bold" + | "ph:map-pin-duotone" + | "ph:map-pin-fill" + | "ph:map-pin-light" + | "ph:map-pin-line" + | "ph:map-pin-line-bold" + | "ph:map-pin-line-duotone" + | "ph:map-pin-line-fill" + | "ph:map-pin-line-light" + | "ph:map-pin-line-thin" + | "ph:map-pin-plus" + | "ph:map-pin-plus-bold" + | "ph:map-pin-plus-duotone" + | "ph:map-pin-plus-fill" + | "ph:map-pin-plus-light" + | "ph:map-pin-plus-thin" + | "ph:map-pin-simple" + | "ph:map-pin-simple-area" + | "ph:map-pin-simple-area-bold" + | "ph:map-pin-simple-area-duotone" + | "ph:map-pin-simple-area-fill" + | "ph:map-pin-simple-area-light" + | "ph:map-pin-simple-area-thin" + | "ph:map-pin-simple-bold" + | "ph:map-pin-simple-duotone" + | "ph:map-pin-simple-fill" + | "ph:map-pin-simple-light" + | "ph:map-pin-simple-line" + | "ph:map-pin-simple-line-bold" + | "ph:map-pin-simple-line-duotone" + | "ph:map-pin-simple-line-fill" + | "ph:map-pin-simple-line-light" + | "ph:map-pin-simple-line-thin" + | "ph:map-pin-simple-thin" + | "ph:map-pin-thin" + | "ph:map-trifold" + | "ph:map-trifold-bold" + | "ph:map-trifold-duotone" + | "ph:map-trifold-fill" + | "ph:map-trifold-light" + | "ph:map-trifold-thin" + | "ph:markdown-logo" + | "ph:markdown-logo-bold" + | "ph:markdown-logo-duotone" + | "ph:markdown-logo-fill" + | "ph:markdown-logo-light" + | "ph:markdown-logo-thin" + | "ph:marker-circle" + | "ph:marker-circle-bold" + | "ph:marker-circle-duotone" + | "ph:marker-circle-fill" + | "ph:marker-circle-light" + | "ph:marker-circle-thin" + | "ph:martini" + | "ph:martini-bold" + | "ph:martini-duotone" + | "ph:martini-fill" + | "ph:martini-light" + | "ph:martini-thin" + | "ph:mask-happy" + | "ph:mask-happy-bold" + | "ph:mask-happy-duotone" + | "ph:mask-happy-fill" + | "ph:mask-happy-light" + | "ph:mask-happy-thin" + | "ph:mask-sad" + | "ph:mask-sad-bold" + | "ph:mask-sad-duotone" + | "ph:mask-sad-fill" + | "ph:mask-sad-light" + | "ph:mask-sad-thin" + | "ph:mastodon-logo" + | "ph:mastodon-logo-bold" + | "ph:mastodon-logo-duotone" + | "ph:mastodon-logo-fill" + | "ph:mastodon-logo-light" + | "ph:mastodon-logo-thin" + | "ph:math-operations" + | "ph:math-operations-bold" + | "ph:math-operations-duotone" + | "ph:math-operations-fill" + | "ph:math-operations-light" + | "ph:math-operations-thin" + | "ph:matrix-logo" + | "ph:matrix-logo-bold" + | "ph:matrix-logo-duotone" + | "ph:matrix-logo-fill" + | "ph:matrix-logo-light" + | "ph:matrix-logo-thin" + | "ph:medal" + | "ph:medal-bold" + | "ph:medal-duotone" + | "ph:medal-fill" + | "ph:medal-light" + | "ph:medal-military" + | "ph:medal-military-bold" + | "ph:medal-military-duotone" + | "ph:medal-military-fill" + | "ph:medal-military-light" + | "ph:medal-military-thin" + | "ph:medal-thin" + | "ph:medium-logo" + | "ph:medium-logo-bold" + | "ph:medium-logo-duotone" + | "ph:medium-logo-fill" + | "ph:medium-logo-light" + | "ph:medium-logo-thin" + | "ph:megaphone" + | "ph:megaphone-bold" + | "ph:megaphone-duotone" + | "ph:megaphone-fill" + | "ph:megaphone-light" + | "ph:megaphone-simple" + | "ph:megaphone-simple-bold" + | "ph:megaphone-simple-duotone" + | "ph:megaphone-simple-fill" + | "ph:megaphone-simple-light" + | "ph:megaphone-simple-thin" + | "ph:megaphone-thin" + | "ph:member-of" + | "ph:member-of-bold" + | "ph:member-of-duotone" + | "ph:member-of-fill" + | "ph:member-of-light" + | "ph:member-of-thin" + | "ph:memory" + | "ph:memory-bold" + | "ph:memory-duotone" + | "ph:memory-fill" + | "ph:memory-light" + | "ph:memory-thin" + | "ph:messenger-logo" + | "ph:messenger-logo-bold" + | "ph:messenger-logo-duotone" + | "ph:messenger-logo-fill" + | "ph:messenger-logo-light" + | "ph:messenger-logo-thin" + | "ph:meta-logo" + | "ph:meta-logo-bold" + | "ph:meta-logo-duotone" + | "ph:meta-logo-fill" + | "ph:meta-logo-light" + | "ph:meta-logo-thin" + | "ph:meteor" + | "ph:meteor-bold" + | "ph:meteor-duotone" + | "ph:meteor-fill" + | "ph:meteor-light" + | "ph:meteor-thin" + | "ph:metronome" + | "ph:metronome-bold" + | "ph:metronome-duotone" + | "ph:metronome-fill" + | "ph:metronome-light" + | "ph:metronome-thin" + | "ph:microphone" + | "ph:microphone-bold" + | "ph:microphone-duotone" + | "ph:microphone-fill" + | "ph:microphone-light" + | "ph:microphone-slash" + | "ph:microphone-slash-bold" + | "ph:microphone-slash-duotone" + | "ph:microphone-slash-fill" + | "ph:microphone-slash-light" + | "ph:microphone-slash-thin" + | "ph:microphone-stage" + | "ph:microphone-stage-bold" + | "ph:microphone-stage-duotone" + | "ph:microphone-stage-fill" + | "ph:microphone-stage-light" + | "ph:microphone-stage-thin" + | "ph:microphone-thin" + | "ph:microscope" + | "ph:microscope-bold" + | "ph:microscope-duotone" + | "ph:microscope-fill" + | "ph:microscope-light" + | "ph:microscope-thin" + | "ph:microsoft-excel-logo" + | "ph:microsoft-excel-logo-bold" + | "ph:microsoft-excel-logo-duotone" + | "ph:microsoft-excel-logo-fill" + | "ph:microsoft-excel-logo-light" + | "ph:microsoft-excel-logo-thin" + | "ph:microsoft-outlook-logo" + | "ph:microsoft-outlook-logo-bold" + | "ph:microsoft-outlook-logo-duotone" + | "ph:microsoft-outlook-logo-fill" + | "ph:microsoft-outlook-logo-light" + | "ph:microsoft-outlook-logo-thin" + | "ph:microsoft-powerpoint-logo" + | "ph:microsoft-powerpoint-logo-bold" + | "ph:microsoft-powerpoint-logo-duotone" + | "ph:microsoft-powerpoint-logo-fill" + | "ph:microsoft-powerpoint-logo-light" + | "ph:microsoft-powerpoint-logo-thin" + | "ph:microsoft-teams-logo" + | "ph:microsoft-teams-logo-bold" + | "ph:microsoft-teams-logo-duotone" + | "ph:microsoft-teams-logo-fill" + | "ph:microsoft-teams-logo-light" + | "ph:microsoft-teams-logo-thin" + | "ph:microsoft-word-logo" + | "ph:microsoft-word-logo-bold" + | "ph:microsoft-word-logo-duotone" + | "ph:microsoft-word-logo-fill" + | "ph:microsoft-word-logo-light" + | "ph:microsoft-word-logo-thin" + | "ph:minus" + | "ph:minus-bold" + | "ph:minus-circle" + | "ph:minus-circle-bold" + | "ph:minus-circle-duotone" + | "ph:minus-circle-fill" + | "ph:minus-circle-light" + | "ph:minus-circle-thin" + | "ph:minus-duotone" + | "ph:minus-fill" + | "ph:minus-light" + | "ph:minus-square" + | "ph:minus-square-bold" + | "ph:minus-square-duotone" + | "ph:minus-square-fill" + | "ph:minus-square-light" + | "ph:minus-square-thin" + | "ph:minus-thin" + | "ph:money" + | "ph:money-bold" + | "ph:money-duotone" + | "ph:money-fill" + | "ph:money-light" + | "ph:money-thin" + | "ph:money-wavy" + | "ph:money-wavy-bold" + | "ph:money-wavy-duotone" + | "ph:money-wavy-fill" + | "ph:money-wavy-light" + | "ph:money-wavy-thin" + | "ph:monitor" + | "ph:monitor-arrow-up" + | "ph:monitor-arrow-up-bold" + | "ph:monitor-arrow-up-duotone" + | "ph:monitor-arrow-up-fill" + | "ph:monitor-arrow-up-light" + | "ph:monitor-arrow-up-thin" + | "ph:monitor-bold" + | "ph:monitor-duotone" + | "ph:monitor-fill" + | "ph:monitor-light" + | "ph:monitor-play" + | "ph:monitor-play-bold" + | "ph:monitor-play-duotone" + | "ph:monitor-play-fill" + | "ph:monitor-play-light" + | "ph:monitor-play-thin" + | "ph:monitor-thin" + | "ph:moon" + | "ph:moon-bold" + | "ph:moon-duotone" + | "ph:moon-fill" + | "ph:moon-light" + | "ph:moon-stars" + | "ph:moon-stars-bold" + | "ph:moon-stars-duotone" + | "ph:moon-stars-fill" + | "ph:moon-stars-light" + | "ph:moon-stars-thin" + | "ph:moon-thin" + | "ph:moped" + | "ph:moped-bold" + | "ph:moped-duotone" + | "ph:moped-fill" + | "ph:moped-front" + | "ph:moped-front-bold" + | "ph:moped-front-duotone" + | "ph:moped-front-fill" + | "ph:moped-front-light" + | "ph:moped-front-thin" + | "ph:moped-light" + | "ph:moped-thin" + | "ph:mosque" + | "ph:mosque-bold" + | "ph:mosque-duotone" + | "ph:mosque-fill" + | "ph:mosque-light" + | "ph:mosque-thin" + | "ph:motorcycle" + | "ph:motorcycle-bold" + | "ph:motorcycle-duotone" + | "ph:motorcycle-fill" + | "ph:motorcycle-light" + | "ph:motorcycle-thin" + | "ph:mountains" + | "ph:mountains-bold" + | "ph:mountains-duotone" + | "ph:mountains-fill" + | "ph:mountains-light" + | "ph:mountains-thin" + | "ph:mouse" + | "ph:mouse-bold" + | "ph:mouse-duotone" + | "ph:mouse-fill" + | "ph:mouse-left-click" + | "ph:mouse-left-click-bold" + | "ph:mouse-left-click-duotone" + | "ph:mouse-left-click-fill" + | "ph:mouse-left-click-light" + | "ph:mouse-left-click-thin" + | "ph:mouse-light" + | "ph:mouse-middle-click" + | "ph:mouse-middle-click-bold" + | "ph:mouse-middle-click-duotone" + | "ph:mouse-middle-click-fill" + | "ph:mouse-middle-click-light" + | "ph:mouse-middle-click-thin" + | "ph:mouse-right-click" + | "ph:mouse-right-click-bold" + | "ph:mouse-right-click-duotone" + | "ph:mouse-right-click-fill" + | "ph:mouse-right-click-light" + | "ph:mouse-right-click-thin" + | "ph:mouse-scroll" + | "ph:mouse-scroll-bold" + | "ph:mouse-scroll-duotone" + | "ph:mouse-scroll-fill" + | "ph:mouse-scroll-light" + | "ph:mouse-scroll-thin" + | "ph:mouse-simple" + | "ph:mouse-simple-bold" + | "ph:mouse-simple-duotone" + | "ph:mouse-simple-fill" + | "ph:mouse-simple-light" + | "ph:mouse-simple-thin" + | "ph:mouse-thin" + | "ph:music-note" + | "ph:music-note-bold" + | "ph:music-note-duotone" + | "ph:music-note-fill" + | "ph:music-note-light" + | "ph:music-note-simple" + | "ph:music-note-simple-bold" + | "ph:music-note-simple-duotone" + | "ph:music-note-simple-fill" + | "ph:music-note-simple-light" + | "ph:music-note-simple-thin" + | "ph:music-note-thin" + | "ph:music-notes" + | "ph:music-notes-bold" + | "ph:music-notes-duotone" + | "ph:music-notes-fill" + | "ph:music-notes-light" + | "ph:music-notes-minus" + | "ph:music-notes-minus-bold" + | "ph:music-notes-minus-duotone" + | "ph:music-notes-minus-fill" + | "ph:music-notes-minus-light" + | "ph:music-notes-minus-thin" + | "ph:music-notes-plus" + | "ph:music-notes-plus-bold" + | "ph:music-notes-plus-duotone" + | "ph:music-notes-plus-fill" + | "ph:music-notes-plus-light" + | "ph:music-notes-plus-thin" + | "ph:music-notes-simple" + | "ph:music-notes-simple-bold" + | "ph:music-notes-simple-duotone" + | "ph:music-notes-simple-fill" + | "ph:music-notes-simple-light" + | "ph:music-notes-simple-thin" + | "ph:music-notes-thin" + | "ph:navigation-arrow" + | "ph:navigation-arrow-bold" + | "ph:navigation-arrow-duotone" + | "ph:navigation-arrow-fill" + | "ph:navigation-arrow-light" + | "ph:navigation-arrow-thin" + | "ph:needle" + | "ph:needle-bold" + | "ph:needle-duotone" + | "ph:needle-fill" + | "ph:needle-light" + | "ph:needle-thin" + | "ph:network" + | "ph:network-bold" + | "ph:network-duotone" + | "ph:network-fill" + | "ph:network-light" + | "ph:network-slash" + | "ph:network-slash-bold" + | "ph:network-slash-duotone" + | "ph:network-slash-fill" + | "ph:network-slash-light" + | "ph:network-slash-thin" + | "ph:network-thin" + | "ph:network-x" + | "ph:network-x-bold" + | "ph:network-x-duotone" + | "ph:network-x-fill" + | "ph:network-x-light" + | "ph:network-x-thin" + | "ph:newspaper" + | "ph:newspaper-bold" + | "ph:newspaper-clipping" + | "ph:newspaper-clipping-bold" + | "ph:newspaper-clipping-duotone" + | "ph:newspaper-clipping-fill" + | "ph:newspaper-clipping-light" + | "ph:newspaper-clipping-thin" + | "ph:newspaper-duotone" + | "ph:newspaper-fill" + | "ph:newspaper-light" + | "ph:newspaper-thin" + | "ph:not-equals" + | "ph:not-equals-bold" + | "ph:not-equals-duotone" + | "ph:not-equals-fill" + | "ph:not-equals-light" + | "ph:not-equals-thin" + | "ph:not-member-of" + | "ph:not-member-of-bold" + | "ph:not-member-of-duotone" + | "ph:not-member-of-fill" + | "ph:not-member-of-light" + | "ph:not-member-of-thin" + | "ph:not-subset-of" + | "ph:not-subset-of-bold" + | "ph:not-subset-of-duotone" + | "ph:not-subset-of-fill" + | "ph:not-subset-of-light" + | "ph:not-subset-of-thin" + | "ph:not-superset-of" + | "ph:not-superset-of-bold" + | "ph:not-superset-of-duotone" + | "ph:not-superset-of-fill" + | "ph:not-superset-of-light" + | "ph:not-superset-of-thin" + | "ph:notches" + | "ph:notches-bold" + | "ph:notches-duotone" + | "ph:notches-fill" + | "ph:notches-light" + | "ph:notches-thin" + | "ph:note" + | "ph:note-blank" + | "ph:note-blank-bold" + | "ph:note-blank-duotone" + | "ph:note-blank-fill" + | "ph:note-blank-light" + | "ph:note-blank-thin" + | "ph:note-bold" + | "ph:note-duotone" + | "ph:note-fill" + | "ph:note-light" + | "ph:note-pencil" + | "ph:note-pencil-bold" + | "ph:note-pencil-duotone" + | "ph:note-pencil-fill" + | "ph:note-pencil-light" + | "ph:note-pencil-thin" + | "ph:note-thin" + | "ph:notebook" + | "ph:notebook-bold" + | "ph:notebook-duotone" + | "ph:notebook-fill" + | "ph:notebook-light" + | "ph:notebook-thin" + | "ph:notepad" + | "ph:notepad-bold" + | "ph:notepad-duotone" + | "ph:notepad-fill" + | "ph:notepad-light" + | "ph:notepad-thin" + | "ph:notification" + | "ph:notification-bold" + | "ph:notification-duotone" + | "ph:notification-fill" + | "ph:notification-light" + | "ph:notification-thin" + | "ph:notion-logo" + | "ph:notion-logo-bold" + | "ph:notion-logo-duotone" + | "ph:notion-logo-fill" + | "ph:notion-logo-light" + | "ph:notion-logo-thin" + | "ph:nuclear-plant" + | "ph:nuclear-plant-bold" + | "ph:nuclear-plant-duotone" + | "ph:nuclear-plant-fill" + | "ph:nuclear-plant-light" + | "ph:nuclear-plant-thin" + | "ph:number-circle-eight" + | "ph:number-circle-eight-bold" + | "ph:number-circle-eight-duotone" + | "ph:number-circle-eight-fill" + | "ph:number-circle-eight-light" + | "ph:number-circle-eight-thin" + | "ph:number-circle-five" + | "ph:number-circle-five-bold" + | "ph:number-circle-five-duotone" + | "ph:number-circle-five-fill" + | "ph:number-circle-five-light" + | "ph:number-circle-five-thin" + | "ph:number-circle-four" + | "ph:number-circle-four-bold" + | "ph:number-circle-four-duotone" + | "ph:number-circle-four-fill" + | "ph:number-circle-four-light" + | "ph:number-circle-four-thin" + | "ph:number-circle-nine" + | "ph:number-circle-nine-bold" + | "ph:number-circle-nine-duotone" + | "ph:number-circle-nine-fill" + | "ph:number-circle-nine-light" + | "ph:number-circle-nine-thin" + | "ph:number-circle-one" + | "ph:number-circle-one-bold" + | "ph:number-circle-one-duotone" + | "ph:number-circle-one-fill" + | "ph:number-circle-one-light" + | "ph:number-circle-one-thin" + | "ph:number-circle-seven" + | "ph:number-circle-seven-bold" + | "ph:number-circle-seven-duotone" + | "ph:number-circle-seven-fill" + | "ph:number-circle-seven-light" + | "ph:number-circle-seven-thin" + | "ph:number-circle-six" + | "ph:number-circle-six-bold" + | "ph:number-circle-six-duotone" + | "ph:number-circle-six-fill" + | "ph:number-circle-six-light" + | "ph:number-circle-six-thin" + | "ph:number-circle-three" + | "ph:number-circle-three-bold" + | "ph:number-circle-three-duotone" + | "ph:number-circle-three-fill" + | "ph:number-circle-three-light" + | "ph:number-circle-three-thin" + | "ph:number-circle-two" + | "ph:number-circle-two-bold" + | "ph:number-circle-two-duotone" + | "ph:number-circle-two-fill" + | "ph:number-circle-two-light" + | "ph:number-circle-two-thin" + | "ph:number-circle-zero" + | "ph:number-circle-zero-bold" + | "ph:number-circle-zero-duotone" + | "ph:number-circle-zero-fill" + | "ph:number-circle-zero-light" + | "ph:number-circle-zero-thin" + | "ph:number-eight" + | "ph:number-eight-bold" + | "ph:number-eight-duotone" + | "ph:number-eight-fill" + | "ph:number-eight-light" + | "ph:number-eight-thin" + | "ph:number-five" + | "ph:number-five-bold" + | "ph:number-five-duotone" + | "ph:number-five-fill" + | "ph:number-five-light" + | "ph:number-five-thin" + | "ph:number-four" + | "ph:number-four-bold" + | "ph:number-four-duotone" + | "ph:number-four-fill" + | "ph:number-four-light" + | "ph:number-four-thin" + | "ph:number-nine" + | "ph:number-nine-bold" + | "ph:number-nine-duotone" + | "ph:number-nine-fill" + | "ph:number-nine-light" + | "ph:number-nine-thin" + | "ph:number-one" + | "ph:number-one-bold" + | "ph:number-one-duotone" + | "ph:number-one-fill" + | "ph:number-one-light" + | "ph:number-one-thin" + | "ph:number-seven" + | "ph:number-seven-bold" + | "ph:number-seven-duotone" + | "ph:number-seven-fill" + | "ph:number-seven-light" + | "ph:number-seven-thin" + | "ph:number-six" + | "ph:number-six-bold" + | "ph:number-six-duotone" + | "ph:number-six-fill" + | "ph:number-six-light" + | "ph:number-six-thin" + | "ph:number-square-eight" + | "ph:number-square-eight-bold" + | "ph:number-square-eight-duotone" + | "ph:number-square-eight-fill" + | "ph:number-square-eight-light" + | "ph:number-square-eight-thin" + | "ph:number-square-five" + | "ph:number-square-five-bold" + | "ph:number-square-five-duotone" + | "ph:number-square-five-fill" + | "ph:number-square-five-light" + | "ph:number-square-five-thin" + | "ph:number-square-four" + | "ph:number-square-four-bold" + | "ph:number-square-four-duotone" + | "ph:number-square-four-fill" + | "ph:number-square-four-light" + | "ph:number-square-four-thin" + | "ph:number-square-nine" + | "ph:number-square-nine-bold" + | "ph:number-square-nine-duotone" + | "ph:number-square-nine-fill" + | "ph:number-square-nine-light" + | "ph:number-square-nine-thin" + | "ph:number-square-one" + | "ph:number-square-one-bold" + | "ph:number-square-one-duotone" + | "ph:number-square-one-fill" + | "ph:number-square-one-light" + | "ph:number-square-one-thin" + | "ph:number-square-seven" + | "ph:number-square-seven-bold" + | "ph:number-square-seven-duotone" + | "ph:number-square-seven-fill" + | "ph:number-square-seven-light" + | "ph:number-square-seven-thin" + | "ph:number-square-six" + | "ph:number-square-six-bold" + | "ph:number-square-six-duotone" + | "ph:number-square-six-fill" + | "ph:number-square-six-light" + | "ph:number-square-six-thin" + | "ph:number-square-three" + | "ph:number-square-three-bold" + | "ph:number-square-three-duotone" + | "ph:number-square-three-fill" + | "ph:number-square-three-light" + | "ph:number-square-three-thin" + | "ph:number-square-two" + | "ph:number-square-two-bold" + | "ph:number-square-two-duotone" + | "ph:number-square-two-fill" + | "ph:number-square-two-light" + | "ph:number-square-two-thin" + | "ph:number-square-zero" + | "ph:number-square-zero-bold" + | "ph:number-square-zero-duotone" + | "ph:number-square-zero-fill" + | "ph:number-square-zero-light" + | "ph:number-square-zero-thin" + | "ph:number-three" + | "ph:number-three-bold" + | "ph:number-three-duotone" + | "ph:number-three-fill" + | "ph:number-three-light" + | "ph:number-three-thin" + | "ph:number-two" + | "ph:number-two-bold" + | "ph:number-two-duotone" + | "ph:number-two-fill" + | "ph:number-two-light" + | "ph:number-two-thin" + | "ph:number-zero" + | "ph:number-zero-bold" + | "ph:number-zero-duotone" + | "ph:number-zero-fill" + | "ph:number-zero-light" + | "ph:number-zero-thin" + | "ph:numpad" + | "ph:numpad-bold" + | "ph:numpad-duotone" + | "ph:numpad-fill" + | "ph:numpad-light" + | "ph:numpad-thin" + | "ph:nut" + | "ph:nut-bold" + | "ph:nut-duotone" + | "ph:nut-fill" + | "ph:nut-light" + | "ph:nut-thin" + | "ph:ny-times-logo" + | "ph:ny-times-logo-bold" + | "ph:ny-times-logo-duotone" + | "ph:ny-times-logo-fill" + | "ph:ny-times-logo-light" + | "ph:ny-times-logo-thin" + | "ph:octagon" + | "ph:octagon-bold" + | "ph:octagon-duotone" + | "ph:octagon-fill" + | "ph:octagon-light" + | "ph:octagon-thin" + | "ph:office-chair" + | "ph:office-chair-bold" + | "ph:office-chair-duotone" + | "ph:office-chair-fill" + | "ph:office-chair-light" + | "ph:office-chair-thin" + | "ph:onigiri" + | "ph:onigiri-bold" + | "ph:onigiri-duotone" + | "ph:onigiri-fill" + | "ph:onigiri-light" + | "ph:onigiri-thin" + | "ph:open-ai-logo" + | "ph:open-ai-logo-bold" + | "ph:open-ai-logo-duotone" + | "ph:open-ai-logo-fill" + | "ph:open-ai-logo-light" + | "ph:open-ai-logo-thin" + | "ph:option" + | "ph:option-bold" + | "ph:option-duotone" + | "ph:option-fill" + | "ph:option-light" + | "ph:option-thin" + | "ph:orange" + | "ph:orange-bold" + | "ph:orange-duotone" + | "ph:orange-fill" + | "ph:orange-light" + | "ph:orange-slice" + | "ph:orange-slice-bold" + | "ph:orange-slice-duotone" + | "ph:orange-slice-fill" + | "ph:orange-slice-light" + | "ph:orange-slice-thin" + | "ph:orange-thin" + | "ph:oven" + | "ph:oven-bold" + | "ph:oven-duotone" + | "ph:oven-fill" + | "ph:oven-light" + | "ph:oven-thin" + | "ph:package" + | "ph:package-bold" + | "ph:package-duotone" + | "ph:package-fill" + | "ph:package-light" + | "ph:package-thin" + | "ph:paint-brush" + | "ph:paint-brush-bold" + | "ph:paint-brush-broad" + | "ph:paint-brush-broad-bold" + | "ph:paint-brush-broad-duotone" + | "ph:paint-brush-broad-fill" + | "ph:paint-brush-broad-light" + | "ph:paint-brush-broad-thin" + | "ph:paint-brush-duotone" + | "ph:paint-brush-fill" + | "ph:paint-brush-household" + | "ph:paint-brush-household-bold" + | "ph:paint-brush-household-duotone" + | "ph:paint-brush-household-fill" + | "ph:paint-brush-household-light" + | "ph:paint-brush-household-thin" + | "ph:paint-brush-light" + | "ph:paint-brush-thin" + | "ph:paint-bucket" + | "ph:paint-bucket-bold" + | "ph:paint-bucket-duotone" + | "ph:paint-bucket-fill" + | "ph:paint-bucket-light" + | "ph:paint-bucket-thin" + | "ph:paint-roller" + | "ph:paint-roller-bold" + | "ph:paint-roller-duotone" + | "ph:paint-roller-fill" + | "ph:paint-roller-light" + | "ph:paint-roller-thin" + | "ph:palette" + | "ph:palette-bold" + | "ph:palette-duotone" + | "ph:palette-fill" + | "ph:palette-light" + | "ph:palette-thin" + | "ph:panorama" + | "ph:panorama-bold" + | "ph:panorama-duotone" + | "ph:panorama-fill" + | "ph:panorama-light" + | "ph:panorama-thin" + | "ph:pants" + | "ph:pants-bold" + | "ph:pants-duotone" + | "ph:pants-fill" + | "ph:pants-light" + | "ph:pants-thin" + | "ph:paper-plane" + | "ph:paper-plane-bold" + | "ph:paper-plane-duotone" + | "ph:paper-plane-fill" + | "ph:paper-plane-light" + | "ph:paper-plane-right" + | "ph:paper-plane-right-bold" + | "ph:paper-plane-right-duotone" + | "ph:paper-plane-right-fill" + | "ph:paper-plane-right-light" + | "ph:paper-plane-right-thin" + | "ph:paper-plane-thin" + | "ph:paper-plane-tilt" + | "ph:paper-plane-tilt-bold" + | "ph:paper-plane-tilt-duotone" + | "ph:paper-plane-tilt-fill" + | "ph:paper-plane-tilt-light" + | "ph:paper-plane-tilt-thin" + | "ph:paperclip" + | "ph:paperclip-bold" + | "ph:paperclip-duotone" + | "ph:paperclip-fill" + | "ph:paperclip-horizontal" + | "ph:paperclip-horizontal-bold" + | "ph:paperclip-horizontal-duotone" + | "ph:paperclip-horizontal-fill" + | "ph:paperclip-horizontal-light" + | "ph:paperclip-horizontal-thin" + | "ph:paperclip-light" + | "ph:paperclip-thin" + | "ph:parachute" + | "ph:parachute-bold" + | "ph:parachute-duotone" + | "ph:parachute-fill" + | "ph:parachute-light" + | "ph:parachute-thin" + | "ph:paragraph" + | "ph:paragraph-bold" + | "ph:paragraph-duotone" + | "ph:paragraph-fill" + | "ph:paragraph-light" + | "ph:paragraph-thin" + | "ph:parallelogram" + | "ph:parallelogram-bold" + | "ph:parallelogram-duotone" + | "ph:parallelogram-fill" + | "ph:parallelogram-light" + | "ph:parallelogram-thin" + | "ph:park" + | "ph:park-bold" + | "ph:park-duotone" + | "ph:park-fill" + | "ph:park-light" + | "ph:park-thin" + | "ph:password" + | "ph:password-bold" + | "ph:password-duotone" + | "ph:password-fill" + | "ph:password-light" + | "ph:password-thin" + | "ph:path" + | "ph:path-bold" + | "ph:path-duotone" + | "ph:path-fill" + | "ph:path-light" + | "ph:path-thin" + | "ph:patreon-logo" + | "ph:patreon-logo-bold" + | "ph:patreon-logo-duotone" + | "ph:patreon-logo-fill" + | "ph:patreon-logo-light" + | "ph:patreon-logo-thin" + | "ph:pause" + | "ph:pause-bold" + | "ph:pause-circle" + | "ph:pause-circle-bold" + | "ph:pause-circle-duotone" + | "ph:pause-circle-fill" + | "ph:pause-circle-light" + | "ph:pause-circle-thin" + | "ph:pause-duotone" + | "ph:pause-fill" + | "ph:pause-light" + | "ph:pause-thin" + | "ph:paw-print" + | "ph:paw-print-bold" + | "ph:paw-print-duotone" + | "ph:paw-print-fill" + | "ph:paw-print-light" + | "ph:paw-print-thin" + | "ph:paypal-logo" + | "ph:paypal-logo-bold" + | "ph:paypal-logo-duotone" + | "ph:paypal-logo-fill" + | "ph:paypal-logo-light" + | "ph:paypal-logo-thin" + | "ph:peace" + | "ph:peace-bold" + | "ph:peace-duotone" + | "ph:peace-fill" + | "ph:peace-light" + | "ph:peace-thin" + | "ph:pedestrian-duotone" + | "ph:pen" + | "ph:pen-bold" + | "ph:pen-duotone" + | "ph:pen-fill" + | "ph:pen-light" + | "ph:pen-nib" + | "ph:pen-nib-bold" + | "ph:pen-nib-duotone" + | "ph:pen-nib-fill" + | "ph:pen-nib-light" + | "ph:pen-nib-straight" + | "ph:pen-nib-straight-bold" + | "ph:pen-nib-straight-duotone" + | "ph:pen-nib-straight-fill" + | "ph:pen-nib-straight-light" + | "ph:pen-nib-straight-thin" + | "ph:pen-nib-thin" + | "ph:pen-thin" + | "ph:pencil" + | "ph:pencil-bold" + | "ph:pencil-circle" + | "ph:pencil-circle-bold" + | "ph:pencil-circle-duotone" + | "ph:pencil-circle-fill" + | "ph:pencil-circle-light" + | "ph:pencil-circle-thin" + | "ph:pencil-duotone" + | "ph:pencil-fill" + | "ph:pencil-light" + | "ph:pencil-line" + | "ph:pencil-line-bold" + | "ph:pencil-line-duotone" + | "ph:pencil-line-fill" + | "ph:pencil-line-light" + | "ph:pencil-line-thin" + | "ph:pencil-ruler" + | "ph:pencil-ruler-bold" + | "ph:pencil-ruler-duotone" + | "ph:pencil-ruler-fill" + | "ph:pencil-ruler-light" + | "ph:pencil-ruler-thin" + | "ph:pencil-simple" + | "ph:pencil-simple-bold" + | "ph:pencil-simple-duotone" + | "ph:pencil-simple-fill" + | "ph:pencil-simple-light" + | "ph:pencil-simple-line" + | "ph:pencil-simple-line-bold" + | "ph:pencil-simple-line-duotone" + | "ph:pencil-simple-line-fill" + | "ph:pencil-simple-line-light" + | "ph:pencil-simple-line-thin" + | "ph:pencil-simple-slash" + | "ph:pencil-simple-slash-bold" + | "ph:pencil-simple-slash-duotone" + | "ph:pencil-simple-slash-fill" + | "ph:pencil-simple-slash-light" + | "ph:pencil-simple-slash-thin" + | "ph:pencil-simple-thin" + | "ph:pencil-slash" + | "ph:pencil-slash-bold" + | "ph:pencil-slash-duotone" + | "ph:pencil-slash-fill" + | "ph:pencil-slash-light" + | "ph:pencil-slash-thin" + | "ph:pencil-thin" + | "ph:pentagon" + | "ph:pentagon-bold" + | "ph:pentagon-duotone" + | "ph:pentagon-fill" + | "ph:pentagon-light" + | "ph:pentagon-thin" + | "ph:pentagram" + | "ph:pentagram-bold" + | "ph:pentagram-duotone" + | "ph:pentagram-fill" + | "ph:pentagram-light" + | "ph:pentagram-thin" + | "ph:pepper" + | "ph:pepper-bold" + | "ph:pepper-duotone" + | "ph:pepper-fill" + | "ph:pepper-light" + | "ph:pepper-thin" + | "ph:percent" + | "ph:percent-bold" + | "ph:percent-duotone" + | "ph:percent-fill" + | "ph:percent-light" + | "ph:percent-thin" + | "ph:person" + | "ph:person-arms-spread" + | "ph:person-arms-spread-bold" + | "ph:person-arms-spread-duotone" + | "ph:person-arms-spread-fill" + | "ph:person-arms-spread-light" + | "ph:person-arms-spread-thin" + | "ph:person-bold" + | "ph:person-duotone" + | "ph:person-fill" + | "ph:person-light" + | "ph:person-simple" + | "ph:person-simple-bike" + | "ph:person-simple-bike-bold" + | "ph:person-simple-bike-duotone" + | "ph:person-simple-bike-fill" + | "ph:person-simple-bike-light" + | "ph:person-simple-bike-thin" + | "ph:person-simple-bold" + | "ph:person-simple-circle" + | "ph:person-simple-circle-bold" + | "ph:person-simple-circle-duotone" + | "ph:person-simple-circle-fill" + | "ph:person-simple-circle-light" + | "ph:person-simple-circle-thin" + | "ph:person-simple-duotone" + | "ph:person-simple-fill" + | "ph:person-simple-hike" + | "ph:person-simple-hike-bold" + | "ph:person-simple-hike-duotone" + | "ph:person-simple-hike-fill" + | "ph:person-simple-hike-light" + | "ph:person-simple-hike-thin" + | "ph:person-simple-light" + | "ph:person-simple-run" + | "ph:person-simple-run-bold" + | "ph:person-simple-run-duotone" + | "ph:person-simple-run-fill" + | "ph:person-simple-run-light" + | "ph:person-simple-run-thin" + | "ph:person-simple-ski" + | "ph:person-simple-ski-bold" + | "ph:person-simple-ski-duotone" + | "ph:person-simple-ski-fill" + | "ph:person-simple-ski-light" + | "ph:person-simple-ski-thin" + | "ph:person-simple-snowboard" + | "ph:person-simple-snowboard-bold" + | "ph:person-simple-snowboard-duotone" + | "ph:person-simple-snowboard-fill" + | "ph:person-simple-snowboard-light" + | "ph:person-simple-snowboard-thin" + | "ph:person-simple-swim" + | "ph:person-simple-swim-bold" + | "ph:person-simple-swim-duotone" + | "ph:person-simple-swim-fill" + | "ph:person-simple-swim-light" + | "ph:person-simple-swim-thin" + | "ph:person-simple-tai-chi" + | "ph:person-simple-tai-chi-bold" + | "ph:person-simple-tai-chi-duotone" + | "ph:person-simple-tai-chi-fill" + | "ph:person-simple-tai-chi-light" + | "ph:person-simple-tai-chi-thin" + | "ph:person-simple-thin" + | "ph:person-simple-throw" + | "ph:person-simple-throw-bold" + | "ph:person-simple-throw-duotone" + | "ph:person-simple-throw-fill" + | "ph:person-simple-throw-light" + | "ph:person-simple-throw-thin" + | "ph:person-simple-walk" + | "ph:person-simple-walk-bold" + | "ph:person-simple-walk-duotone" + | "ph:person-simple-walk-fill" + | "ph:person-simple-walk-light" + | "ph:person-simple-walk-thin" + | "ph:person-thin" + | "ph:perspective" + | "ph:perspective-bold" + | "ph:perspective-duotone" + | "ph:perspective-fill" + | "ph:perspective-light" + | "ph:perspective-thin" + | "ph:phone" + | "ph:phone-bold" + | "ph:phone-call" + | "ph:phone-call-bold" + | "ph:phone-call-duotone" + | "ph:phone-call-fill" + | "ph:phone-call-light" + | "ph:phone-call-thin" + | "ph:phone-disconnect" + | "ph:phone-disconnect-bold" + | "ph:phone-disconnect-duotone" + | "ph:phone-disconnect-fill" + | "ph:phone-disconnect-light" + | "ph:phone-disconnect-thin" + | "ph:phone-duotone" + | "ph:phone-fill" + | "ph:phone-incoming" + | "ph:phone-incoming-bold" + | "ph:phone-incoming-duotone" + | "ph:phone-incoming-fill" + | "ph:phone-incoming-light" + | "ph:phone-incoming-thin" + | "ph:phone-light" + | "ph:phone-list" + | "ph:phone-list-bold" + | "ph:phone-list-duotone" + | "ph:phone-list-fill" + | "ph:phone-list-light" + | "ph:phone-list-thin" + | "ph:phone-outgoing" + | "ph:phone-outgoing-bold" + | "ph:phone-outgoing-duotone" + | "ph:phone-outgoing-fill" + | "ph:phone-outgoing-light" + | "ph:phone-outgoing-thin" + | "ph:phone-pause" + | "ph:phone-pause-bold" + | "ph:phone-pause-duotone" + | "ph:phone-pause-fill" + | "ph:phone-pause-light" + | "ph:phone-pause-thin" + | "ph:phone-plus" + | "ph:phone-plus-bold" + | "ph:phone-plus-duotone" + | "ph:phone-plus-fill" + | "ph:phone-plus-light" + | "ph:phone-plus-thin" + | "ph:phone-slash" + | "ph:phone-slash-bold" + | "ph:phone-slash-duotone" + | "ph:phone-slash-fill" + | "ph:phone-slash-light" + | "ph:phone-slash-thin" + | "ph:phone-thin" + | "ph:phone-transfer" + | "ph:phone-transfer-bold" + | "ph:phone-transfer-duotone" + | "ph:phone-transfer-fill" + | "ph:phone-transfer-light" + | "ph:phone-transfer-thin" + | "ph:phone-x" + | "ph:phone-x-bold" + | "ph:phone-x-duotone" + | "ph:phone-x-fill" + | "ph:phone-x-light" + | "ph:phone-x-thin" + | "ph:phosphor-logo" + | "ph:phosphor-logo-bold" + | "ph:phosphor-logo-duotone" + | "ph:phosphor-logo-fill" + | "ph:phosphor-logo-light" + | "ph:phosphor-logo-thin" + | "ph:pi" + | "ph:pi-bold" + | "ph:pi-duotone" + | "ph:pi-fill" + | "ph:pi-light" + | "ph:pi-thin" + | "ph:piano-keys" + | "ph:piano-keys-bold" + | "ph:piano-keys-duotone" + | "ph:piano-keys-fill" + | "ph:piano-keys-light" + | "ph:piano-keys-thin" + | "ph:picnic-table" + | "ph:picnic-table-bold" + | "ph:picnic-table-duotone" + | "ph:picnic-table-fill" + | "ph:picnic-table-light" + | "ph:picnic-table-thin" + | "ph:picture-in-picture" + | "ph:picture-in-picture-bold" + | "ph:picture-in-picture-duotone" + | "ph:picture-in-picture-fill" + | "ph:picture-in-picture-light" + | "ph:picture-in-picture-thin" + | "ph:piggy-bank" + | "ph:piggy-bank-bold" + | "ph:piggy-bank-duotone" + | "ph:piggy-bank-fill" + | "ph:piggy-bank-light" + | "ph:piggy-bank-thin" + | "ph:pill" + | "ph:pill-bold" + | "ph:pill-duotone" + | "ph:pill-fill" + | "ph:pill-light" + | "ph:pill-thin" + | "ph:ping-pong" + | "ph:ping-pong-bold" + | "ph:ping-pong-duotone" + | "ph:ping-pong-fill" + | "ph:ping-pong-light" + | "ph:ping-pong-thin" + | "ph:pint-glass" + | "ph:pint-glass-bold" + | "ph:pint-glass-duotone" + | "ph:pint-glass-fill" + | "ph:pint-glass-light" + | "ph:pint-glass-thin" + | "ph:pinterest-logo" + | "ph:pinterest-logo-bold" + | "ph:pinterest-logo-duotone" + | "ph:pinterest-logo-fill" + | "ph:pinterest-logo-light" + | "ph:pinterest-logo-thin" + | "ph:pinwheel" + | "ph:pinwheel-bold" + | "ph:pinwheel-duotone" + | "ph:pinwheel-fill" + | "ph:pinwheel-light" + | "ph:pinwheel-thin" + | "ph:pipe" + | "ph:pipe-bold" + | "ph:pipe-duotone" + | "ph:pipe-fill" + | "ph:pipe-light" + | "ph:pipe-thin" + | "ph:pipe-wrench" + | "ph:pipe-wrench-bold" + | "ph:pipe-wrench-duotone" + | "ph:pipe-wrench-fill" + | "ph:pipe-wrench-light" + | "ph:pipe-wrench-thin" + | "ph:pix-logo" + | "ph:pix-logo-bold" + | "ph:pix-logo-duotone" + | "ph:pix-logo-fill" + | "ph:pix-logo-light" + | "ph:pix-logo-thin" + | "ph:pizza" + | "ph:pizza-bold" + | "ph:pizza-duotone" + | "ph:pizza-fill" + | "ph:pizza-light" + | "ph:pizza-thin" + | "ph:placeholder" + | "ph:placeholder-bold" + | "ph:placeholder-duotone" + | "ph:placeholder-fill" + | "ph:placeholder-light" + | "ph:placeholder-thin" + | "ph:planet" + | "ph:planet-bold" + | "ph:planet-duotone" + | "ph:planet-fill" + | "ph:planet-light" + | "ph:planet-thin" + | "ph:plant" + | "ph:plant-bold" + | "ph:plant-duotone" + | "ph:plant-fill" + | "ph:plant-light" + | "ph:plant-thin" + | "ph:play" + | "ph:play-bold" + | "ph:play-circle" + | "ph:play-circle-bold" + | "ph:play-circle-duotone" + | "ph:play-circle-fill" + | "ph:play-circle-light" + | "ph:play-circle-thin" + | "ph:play-duotone" + | "ph:play-fill" + | "ph:play-light" + | "ph:play-pause" + | "ph:play-pause-bold" + | "ph:play-pause-duotone" + | "ph:play-pause-fill" + | "ph:play-pause-light" + | "ph:play-pause-thin" + | "ph:play-thin" + | "ph:playlist" + | "ph:playlist-bold" + | "ph:playlist-duotone" + | "ph:playlist-fill" + | "ph:playlist-light" + | "ph:playlist-thin" + | "ph:plug" + | "ph:plug-bold" + | "ph:plug-charging" + | "ph:plug-charging-bold" + | "ph:plug-charging-duotone" + | "ph:plug-charging-fill" + | "ph:plug-charging-light" + | "ph:plug-charging-thin" + | "ph:plug-duotone" + | "ph:plug-fill" + | "ph:plug-light" + | "ph:plug-thin" + | "ph:plugs" + | "ph:plugs-bold" + | "ph:plugs-connected" + | "ph:plugs-connected-bold" + | "ph:plugs-connected-duotone" + | "ph:plugs-connected-fill" + | "ph:plugs-connected-light" + | "ph:plugs-connected-thin" + | "ph:plugs-duotone" + | "ph:plugs-fill" + | "ph:plugs-light" + | "ph:plugs-thin" + | "ph:plus" + | "ph:plus-bold" + | "ph:plus-circle" + | "ph:plus-circle-bold" + | "ph:plus-circle-duotone" + | "ph:plus-circle-fill" + | "ph:plus-circle-light" + | "ph:plus-circle-thin" + | "ph:plus-duotone" + | "ph:plus-fill" + | "ph:plus-light" + | "ph:plus-minus" + | "ph:plus-minus-bold" + | "ph:plus-minus-duotone" + | "ph:plus-minus-fill" + | "ph:plus-minus-light" + | "ph:plus-minus-thin" + | "ph:plus-square" + | "ph:plus-square-bold" + | "ph:plus-square-duotone" + | "ph:plus-square-fill" + | "ph:plus-square-light" + | "ph:plus-square-thin" + | "ph:plus-thin" + | "ph:poker-chip" + | "ph:poker-chip-bold" + | "ph:poker-chip-duotone" + | "ph:poker-chip-fill" + | "ph:poker-chip-light" + | "ph:poker-chip-thin" + | "ph:police-car" + | "ph:police-car-bold" + | "ph:police-car-duotone" + | "ph:police-car-fill" + | "ph:police-car-light" + | "ph:police-car-thin" + | "ph:polygon" + | "ph:polygon-bold" + | "ph:polygon-duotone" + | "ph:polygon-fill" + | "ph:polygon-light" + | "ph:polygon-thin" + | "ph:popcorn" + | "ph:popcorn-bold" + | "ph:popcorn-duotone" + | "ph:popcorn-fill" + | "ph:popcorn-light" + | "ph:popcorn-thin" + | "ph:popsicle" + | "ph:popsicle-bold" + | "ph:popsicle-duotone" + | "ph:popsicle-fill" + | "ph:popsicle-light" + | "ph:popsicle-thin" + | "ph:potted-plant" + | "ph:potted-plant-bold" + | "ph:potted-plant-duotone" + | "ph:potted-plant-fill" + | "ph:potted-plant-light" + | "ph:potted-plant-thin" + | "ph:power" + | "ph:power-bold" + | "ph:power-duotone" + | "ph:power-fill" + | "ph:power-light" + | "ph:power-thin" + | "ph:prescription" + | "ph:prescription-bold" + | "ph:prescription-duotone" + | "ph:prescription-fill" + | "ph:prescription-light" + | "ph:prescription-thin" + | "ph:presentation" + | "ph:presentation-bold" + | "ph:presentation-chart" + | "ph:presentation-chart-bold" + | "ph:presentation-chart-duotone" + | "ph:presentation-chart-fill" + | "ph:presentation-chart-light" + | "ph:presentation-chart-thin" + | "ph:presentation-duotone" + | "ph:presentation-fill" + | "ph:presentation-light" + | "ph:presentation-thin" + | "ph:printer" + | "ph:printer-bold" + | "ph:printer-duotone" + | "ph:printer-fill" + | "ph:printer-light" + | "ph:printer-thin" + | "ph:prohibit" + | "ph:prohibit-bold" + | "ph:prohibit-duotone" + | "ph:prohibit-fill" + | "ph:prohibit-inset" + | "ph:prohibit-inset-bold" + | "ph:prohibit-inset-duotone" + | "ph:prohibit-inset-fill" + | "ph:prohibit-inset-light" + | "ph:prohibit-inset-thin" + | "ph:prohibit-light" + | "ph:prohibit-thin" + | "ph:projector-screen" + | "ph:projector-screen-bold" + | "ph:projector-screen-chart" + | "ph:projector-screen-chart-bold" + | "ph:projector-screen-chart-duotone" + | "ph:projector-screen-chart-fill" + | "ph:projector-screen-chart-light" + | "ph:projector-screen-chart-thin" + | "ph:projector-screen-duotone" + | "ph:projector-screen-fill" + | "ph:projector-screen-light" + | "ph:projector-screen-thin" + | "ph:pulse" + | "ph:pulse-bold" + | "ph:pulse-duotone" + | "ph:pulse-fill" + | "ph:pulse-light" + | "ph:pulse-thin" + | "ph:push-pin" + | "ph:push-pin-bold" + | "ph:push-pin-duotone" + | "ph:push-pin-fill" + | "ph:push-pin-light" + | "ph:push-pin-simple" + | "ph:push-pin-simple-bold" + | "ph:push-pin-simple-duotone" + | "ph:push-pin-simple-fill" + | "ph:push-pin-simple-light" + | "ph:push-pin-simple-slash" + | "ph:push-pin-simple-slash-bold" + | "ph:push-pin-simple-slash-duotone" + | "ph:push-pin-simple-slash-fill" + | "ph:push-pin-simple-slash-light" + | "ph:push-pin-simple-slash-thin" + | "ph:push-pin-simple-thin" + | "ph:push-pin-slash" + | "ph:push-pin-slash-bold" + | "ph:push-pin-slash-duotone" + | "ph:push-pin-slash-fill" + | "ph:push-pin-slash-light" + | "ph:push-pin-slash-thin" + | "ph:push-pin-thin" + | "ph:puzzle-piece" + | "ph:puzzle-piece-bold" + | "ph:puzzle-piece-duotone" + | "ph:puzzle-piece-fill" + | "ph:puzzle-piece-light" + | "ph:puzzle-piece-thin" + | "ph:qr-code" + | "ph:qr-code-bold" + | "ph:qr-code-duotone" + | "ph:qr-code-fill" + | "ph:qr-code-light" + | "ph:qr-code-thin" + | "ph:question" + | "ph:question-bold" + | "ph:question-duotone" + | "ph:question-fill" + | "ph:question-light" + | "ph:question-mark" + | "ph:question-mark-bold" + | "ph:question-mark-duotone" + | "ph:question-mark-fill" + | "ph:question-mark-light" + | "ph:question-mark-thin" + | "ph:question-thin" + | "ph:queue" + | "ph:queue-bold" + | "ph:queue-duotone" + | "ph:queue-fill" + | "ph:queue-light" + | "ph:queue-thin" + | "ph:quotes" + | "ph:quotes-bold" + | "ph:quotes-duotone" + | "ph:quotes-fill" + | "ph:quotes-light" + | "ph:quotes-thin" + | "ph:rabbit" + | "ph:rabbit-bold" + | "ph:rabbit-duotone" + | "ph:rabbit-fill" + | "ph:rabbit-light" + | "ph:rabbit-thin" + | "ph:racquet" + | "ph:racquet-bold" + | "ph:racquet-duotone" + | "ph:racquet-fill" + | "ph:racquet-light" + | "ph:racquet-thin" + | "ph:radical" + | "ph:radical-bold" + | "ph:radical-duotone" + | "ph:radical-fill" + | "ph:radical-light" + | "ph:radical-thin" + | "ph:radio" + | "ph:radio-bold" + | "ph:radio-button" + | "ph:radio-button-bold" + | "ph:radio-button-duotone" + | "ph:radio-button-fill" + | "ph:radio-button-light" + | "ph:radio-button-thin" + | "ph:radio-duotone" + | "ph:radio-fill" + | "ph:radio-light" + | "ph:radio-thin" + | "ph:radioactive" + | "ph:radioactive-bold" + | "ph:radioactive-duotone" + | "ph:radioactive-fill" + | "ph:radioactive-light" + | "ph:radioactive-thin" + | "ph:rainbow" + | "ph:rainbow-bold" + | "ph:rainbow-cloud" + | "ph:rainbow-cloud-bold" + | "ph:rainbow-cloud-duotone" + | "ph:rainbow-cloud-fill" + | "ph:rainbow-cloud-light" + | "ph:rainbow-cloud-thin" + | "ph:rainbow-duotone" + | "ph:rainbow-fill" + | "ph:rainbow-light" + | "ph:rainbow-thin" + | "ph:ranking" + | "ph:ranking-bold" + | "ph:ranking-duotone" + | "ph:ranking-fill" + | "ph:ranking-light" + | "ph:ranking-thin" + | "ph:read-cv-logo" + | "ph:read-cv-logo-bold" + | "ph:read-cv-logo-duotone" + | "ph:read-cv-logo-fill" + | "ph:read-cv-logo-light" + | "ph:read-cv-logo-thin" + | "ph:receipt" + | "ph:receipt-bold" + | "ph:receipt-duotone" + | "ph:receipt-fill" + | "ph:receipt-light" + | "ph:receipt-thin" + | "ph:receipt-x" + | "ph:receipt-x-bold" + | "ph:receipt-x-duotone" + | "ph:receipt-x-fill" + | "ph:receipt-x-light" + | "ph:receipt-x-thin" + | "ph:record" + | "ph:record-bold" + | "ph:record-duotone" + | "ph:record-fill" + | "ph:record-light" + | "ph:record-thin" + | "ph:rectangle" + | "ph:rectangle-bold" + | "ph:rectangle-dashed" + | "ph:rectangle-dashed-bold" + | "ph:rectangle-dashed-duotone" + | "ph:rectangle-dashed-fill" + | "ph:rectangle-dashed-light" + | "ph:rectangle-dashed-thin" + | "ph:rectangle-duotone" + | "ph:rectangle-fill" + | "ph:rectangle-light" + | "ph:rectangle-thin" + | "ph:rectangles-two-bold" + | "ph:recycle" + | "ph:recycle-bold" + | "ph:recycle-duotone" + | "ph:recycle-fill" + | "ph:recycle-light" + | "ph:recycle-thin" + | "ph:reddit-logo" + | "ph:reddit-logo-bold" + | "ph:reddit-logo-duotone" + | "ph:reddit-logo-fill" + | "ph:reddit-logo-light" + | "ph:reddit-logo-thin" + | "ph:repeat" + | "ph:repeat-bold" + | "ph:repeat-duotone" + | "ph:repeat-fill" + | "ph:repeat-light" + | "ph:repeat-once" + | "ph:repeat-once-bold" + | "ph:repeat-once-duotone" + | "ph:repeat-once-fill" + | "ph:repeat-once-light" + | "ph:repeat-once-thin" + | "ph:repeat-thin" + | "ph:replit-logo" + | "ph:replit-logo-bold" + | "ph:replit-logo-duotone" + | "ph:replit-logo-fill" + | "ph:replit-logo-light" + | "ph:replit-logo-thin" + | "ph:resize" + | "ph:resize-bold" + | "ph:resize-duotone" + | "ph:resize-fill" + | "ph:resize-light" + | "ph:resize-thin" + | "ph:rewind" + | "ph:rewind-bold" + | "ph:rewind-circle" + | "ph:rewind-circle-bold" + | "ph:rewind-circle-duotone" + | "ph:rewind-circle-fill" + | "ph:rewind-circle-light" + | "ph:rewind-circle-thin" + | "ph:rewind-duotone" + | "ph:rewind-fill" + | "ph:rewind-light" + | "ph:rewind-thin" + | "ph:road-horizon" + | "ph:road-horizon-bold" + | "ph:road-horizon-duotone" + | "ph:road-horizon-fill" + | "ph:road-horizon-light" + | "ph:road-horizon-thin" + | "ph:robot" + | "ph:robot-bold" + | "ph:robot-duotone" + | "ph:robot-fill" + | "ph:robot-light" + | "ph:robot-thin" + | "ph:rocket" + | "ph:rocket-bold" + | "ph:rocket-duotone" + | "ph:rocket-fill" + | "ph:rocket-launch" + | "ph:rocket-launch-bold" + | "ph:rocket-launch-duotone" + | "ph:rocket-launch-fill" + | "ph:rocket-launch-light" + | "ph:rocket-launch-thin" + | "ph:rocket-light" + | "ph:rocket-thin" + | "ph:rows" + | "ph:rows-bold" + | "ph:rows-duotone" + | "ph:rows-fill" + | "ph:rows-light" + | "ph:rows-plus-bottom" + | "ph:rows-plus-bottom-bold" + | "ph:rows-plus-bottom-duotone" + | "ph:rows-plus-bottom-fill" + | "ph:rows-plus-bottom-light" + | "ph:rows-plus-bottom-thin" + | "ph:rows-plus-top" + | "ph:rows-plus-top-bold" + | "ph:rows-plus-top-duotone" + | "ph:rows-plus-top-fill" + | "ph:rows-plus-top-light" + | "ph:rows-plus-top-thin" + | "ph:rows-thin" + | "ph:rss" + | "ph:rss-bold" + | "ph:rss-duotone" + | "ph:rss-fill" + | "ph:rss-light" + | "ph:rss-simple" + | "ph:rss-simple-bold" + | "ph:rss-simple-duotone" + | "ph:rss-simple-fill" + | "ph:rss-simple-light" + | "ph:rss-simple-thin" + | "ph:rss-thin" + | "ph:rug" + | "ph:rug-bold" + | "ph:rug-duotone" + | "ph:rug-fill" + | "ph:rug-light" + | "ph:rug-thin" + | "ph:ruler" + | "ph:ruler-bold" + | "ph:ruler-duotone" + | "ph:ruler-fill" + | "ph:ruler-light" + | "ph:ruler-thin" + | "ph:sailboat" + | "ph:sailboat-bold" + | "ph:sailboat-duotone" + | "ph:sailboat-fill" + | "ph:sailboat-light" + | "ph:sailboat-thin" + | "ph:scales" + | "ph:scales-bold" + | "ph:scales-duotone" + | "ph:scales-fill" + | "ph:scales-light" + | "ph:scales-thin" + | "ph:scan" + | "ph:scan-bold" + | "ph:scan-duotone" + | "ph:scan-fill" + | "ph:scan-light" + | "ph:scan-smiley" + | "ph:scan-smiley-bold" + | "ph:scan-smiley-duotone" + | "ph:scan-smiley-fill" + | "ph:scan-smiley-light" + | "ph:scan-smiley-thin" + | "ph:scan-thin" + | "ph:scissors" + | "ph:scissors-bold" + | "ph:scissors-duotone" + | "ph:scissors-fill" + | "ph:scissors-light" + | "ph:scissors-thin" + | "ph:scooter" + | "ph:scooter-bold" + | "ph:scooter-duotone" + | "ph:scooter-fill" + | "ph:scooter-light" + | "ph:scooter-thin" + | "ph:screencast" + | "ph:screencast-bold" + | "ph:screencast-duotone" + | "ph:screencast-fill" + | "ph:screencast-light" + | "ph:screencast-thin" + | "ph:screwdriver" + | "ph:screwdriver-bold" + | "ph:screwdriver-duotone" + | "ph:screwdriver-fill" + | "ph:screwdriver-light" + | "ph:screwdriver-thin" + | "ph:scribble" + | "ph:scribble-bold" + | "ph:scribble-duotone" + | "ph:scribble-fill" + | "ph:scribble-light" + | "ph:scribble-loop" + | "ph:scribble-loop-bold" + | "ph:scribble-loop-duotone" + | "ph:scribble-loop-fill" + | "ph:scribble-loop-light" + | "ph:scribble-loop-thin" + | "ph:scribble-thin" + | "ph:scroll" + | "ph:scroll-bold" + | "ph:scroll-duotone" + | "ph:scroll-fill" + | "ph:scroll-light" + | "ph:scroll-thin" + | "ph:seal" + | "ph:seal-bold" + | "ph:seal-check" + | "ph:seal-check-bold" + | "ph:seal-check-duotone" + | "ph:seal-check-fill" + | "ph:seal-check-light" + | "ph:seal-check-thin" + | "ph:seal-duotone" + | "ph:seal-fill" + | "ph:seal-light" + | "ph:seal-percent" + | "ph:seal-percent-bold" + | "ph:seal-percent-duotone" + | "ph:seal-percent-fill" + | "ph:seal-percent-light" + | "ph:seal-percent-thin" + | "ph:seal-question" + | "ph:seal-question-bold" + | "ph:seal-question-duotone" + | "ph:seal-question-fill" + | "ph:seal-question-light" + | "ph:seal-question-thin" + | "ph:seal-thin" + | "ph:seal-warning" + | "ph:seal-warning-bold" + | "ph:seal-warning-duotone" + | "ph:seal-warning-fill" + | "ph:seal-warning-light" + | "ph:seal-warning-thin" + | "ph:seat" + | "ph:seat-bold" + | "ph:seat-duotone" + | "ph:seat-fill" + | "ph:seat-light" + | "ph:seat-thin" + | "ph:seatbelt" + | "ph:seatbelt-bold" + | "ph:seatbelt-duotone" + | "ph:seatbelt-fill" + | "ph:seatbelt-light" + | "ph:seatbelt-thin" + | "ph:security-camera" + | "ph:security-camera-bold" + | "ph:security-camera-duotone" + | "ph:security-camera-fill" + | "ph:security-camera-light" + | "ph:security-camera-thin" + | "ph:selection" + | "ph:selection-all" + | "ph:selection-all-bold" + | "ph:selection-all-duotone" + | "ph:selection-all-fill" + | "ph:selection-all-light" + | "ph:selection-all-thin" + | "ph:selection-background" + | "ph:selection-background-bold" + | "ph:selection-background-duotone" + | "ph:selection-background-fill" + | "ph:selection-background-light" + | "ph:selection-background-thin" + | "ph:selection-bold" + | "ph:selection-duotone" + | "ph:selection-fill" + | "ph:selection-foreground" + | "ph:selection-foreground-bold" + | "ph:selection-foreground-duotone" + | "ph:selection-foreground-fill" + | "ph:selection-foreground-light" + | "ph:selection-foreground-thin" + | "ph:selection-inverse" + | "ph:selection-inverse-bold" + | "ph:selection-inverse-duotone" + | "ph:selection-inverse-fill" + | "ph:selection-inverse-light" + | "ph:selection-inverse-thin" + | "ph:selection-light" + | "ph:selection-plus" + | "ph:selection-plus-bold" + | "ph:selection-plus-duotone" + | "ph:selection-plus-fill" + | "ph:selection-plus-light" + | "ph:selection-plus-thin" + | "ph:selection-slash" + | "ph:selection-slash-bold" + | "ph:selection-slash-duotone" + | "ph:selection-slash-fill" + | "ph:selection-slash-light" + | "ph:selection-slash-thin" + | "ph:selection-thin" + | "ph:shapes" + | "ph:shapes-bold" + | "ph:shapes-duotone" + | "ph:shapes-fill" + | "ph:shapes-light" + | "ph:shapes-thin" + | "ph:share" + | "ph:share-bold" + | "ph:share-duotone" + | "ph:share-fat" + | "ph:share-fat-bold" + | "ph:share-fat-duotone" + | "ph:share-fat-fill" + | "ph:share-fat-light" + | "ph:share-fat-thin" + | "ph:share-fill" + | "ph:share-light" + | "ph:share-network" + | "ph:share-network-bold" + | "ph:share-network-duotone" + | "ph:share-network-fill" + | "ph:share-network-light" + | "ph:share-network-thin" + | "ph:share-thin" + | "ph:shield" + | "ph:shield-bold" + | "ph:shield-check" + | "ph:shield-check-bold" + | "ph:shield-check-duotone" + | "ph:shield-check-fill" + | "ph:shield-check-light" + | "ph:shield-check-thin" + | "ph:shield-checkered" + | "ph:shield-checkered-bold" + | "ph:shield-checkered-duotone" + | "ph:shield-checkered-fill" + | "ph:shield-checkered-light" + | "ph:shield-checkered-thin" + | "ph:shield-chevron" + | "ph:shield-chevron-bold" + | "ph:shield-chevron-duotone" + | "ph:shield-chevron-fill" + | "ph:shield-chevron-light" + | "ph:shield-chevron-thin" + | "ph:shield-duotone" + | "ph:shield-fill" + | "ph:shield-light" + | "ph:shield-plus" + | "ph:shield-plus-bold" + | "ph:shield-plus-duotone" + | "ph:shield-plus-fill" + | "ph:shield-plus-light" + | "ph:shield-plus-thin" + | "ph:shield-slash" + | "ph:shield-slash-bold" + | "ph:shield-slash-duotone" + | "ph:shield-slash-fill" + | "ph:shield-slash-light" + | "ph:shield-slash-thin" + | "ph:shield-star" + | "ph:shield-star-bold" + | "ph:shield-star-duotone" + | "ph:shield-star-fill" + | "ph:shield-star-light" + | "ph:shield-star-thin" + | "ph:shield-thin" + | "ph:shield-warning" + | "ph:shield-warning-bold" + | "ph:shield-warning-duotone" + | "ph:shield-warning-fill" + | "ph:shield-warning-light" + | "ph:shield-warning-thin" + | "ph:shipping-container" + | "ph:shipping-container-bold" + | "ph:shipping-container-duotone" + | "ph:shipping-container-fill" + | "ph:shipping-container-light" + | "ph:shipping-container-thin" + | "ph:shirt-folded" + | "ph:shirt-folded-bold" + | "ph:shirt-folded-duotone" + | "ph:shirt-folded-fill" + | "ph:shirt-folded-light" + | "ph:shirt-folded-thin" + | "ph:shooting-star" + | "ph:shooting-star-bold" + | "ph:shooting-star-duotone" + | "ph:shooting-star-fill" + | "ph:shooting-star-light" + | "ph:shooting-star-thin" + | "ph:shopping-bag" + | "ph:shopping-bag-bold" + | "ph:shopping-bag-duotone" + | "ph:shopping-bag-fill" + | "ph:shopping-bag-light" + | "ph:shopping-bag-open" + | "ph:shopping-bag-open-bold" + | "ph:shopping-bag-open-duotone" + | "ph:shopping-bag-open-fill" + | "ph:shopping-bag-open-light" + | "ph:shopping-bag-open-thin" + | "ph:shopping-bag-thin" + | "ph:shopping-cart" + | "ph:shopping-cart-bold" + | "ph:shopping-cart-duotone" + | "ph:shopping-cart-fill" + | "ph:shopping-cart-light" + | "ph:shopping-cart-simple" + | "ph:shopping-cart-simple-bold" + | "ph:shopping-cart-simple-duotone" + | "ph:shopping-cart-simple-fill" + | "ph:shopping-cart-simple-light" + | "ph:shopping-cart-simple-thin" + | "ph:shopping-cart-thin" + | "ph:shovel" + | "ph:shovel-bold" + | "ph:shovel-duotone" + | "ph:shovel-fill" + | "ph:shovel-light" + | "ph:shovel-thin" + | "ph:shower" + | "ph:shower-bold" + | "ph:shower-duotone" + | "ph:shower-fill" + | "ph:shower-light" + | "ph:shower-thin" + | "ph:shrimp" + | "ph:shrimp-bold" + | "ph:shrimp-duotone" + | "ph:shrimp-fill" + | "ph:shrimp-light" + | "ph:shrimp-thin" + | "ph:shuffle" + | "ph:shuffle-angular" + | "ph:shuffle-angular-bold" + | "ph:shuffle-angular-duotone" + | "ph:shuffle-angular-fill" + | "ph:shuffle-angular-light" + | "ph:shuffle-angular-thin" + | "ph:shuffle-bold" + | "ph:shuffle-duotone" + | "ph:shuffle-fill" + | "ph:shuffle-light" + | "ph:shuffle-simple" + | "ph:shuffle-simple-bold" + | "ph:shuffle-simple-duotone" + | "ph:shuffle-simple-fill" + | "ph:shuffle-simple-light" + | "ph:shuffle-simple-thin" + | "ph:shuffle-thin" + | "ph:sidebar" + | "ph:sidebar-bold" + | "ph:sidebar-duotone" + | "ph:sidebar-fill" + | "ph:sidebar-light" + | "ph:sidebar-simple" + | "ph:sidebar-simple-bold" + | "ph:sidebar-simple-duotone" + | "ph:sidebar-simple-fill" + | "ph:sidebar-simple-light" + | "ph:sidebar-simple-thin" + | "ph:sidebar-thin" + | "ph:sigma" + | "ph:sigma-bold" + | "ph:sigma-duotone" + | "ph:sigma-fill" + | "ph:sigma-light" + | "ph:sigma-thin" + | "ph:sign-in" + | "ph:sign-in-bold" + | "ph:sign-in-duotone" + | "ph:sign-in-fill" + | "ph:sign-in-light" + | "ph:sign-in-thin" + | "ph:sign-out" + | "ph:sign-out-bold" + | "ph:sign-out-duotone" + | "ph:sign-out-fill" + | "ph:sign-out-light" + | "ph:sign-out-thin" + | "ph:signature" + | "ph:signature-bold" + | "ph:signature-duotone" + | "ph:signature-fill" + | "ph:signature-light" + | "ph:signature-thin" + | "ph:signpost" + | "ph:signpost-bold" + | "ph:signpost-duotone" + | "ph:signpost-fill" + | "ph:signpost-light" + | "ph:signpost-thin" + | "ph:sim-card" + | "ph:sim-card-bold" + | "ph:sim-card-duotone" + | "ph:sim-card-fill" + | "ph:sim-card-light" + | "ph:sim-card-thin" + | "ph:siren" + | "ph:siren-bold" + | "ph:siren-duotone" + | "ph:siren-fill" + | "ph:siren-light" + | "ph:siren-thin" + | "ph:sketch-logo" + | "ph:sketch-logo-bold" + | "ph:sketch-logo-duotone" + | "ph:sketch-logo-fill" + | "ph:sketch-logo-light" + | "ph:sketch-logo-thin" + | "ph:skip-back" + | "ph:skip-back-bold" + | "ph:skip-back-circle" + | "ph:skip-back-circle-bold" + | "ph:skip-back-circle-duotone" + | "ph:skip-back-circle-fill" + | "ph:skip-back-circle-light" + | "ph:skip-back-circle-thin" + | "ph:skip-back-duotone" + | "ph:skip-back-fill" + | "ph:skip-back-light" + | "ph:skip-back-thin" + | "ph:skip-forward" + | "ph:skip-forward-bold" + | "ph:skip-forward-circle" + | "ph:skip-forward-circle-bold" + | "ph:skip-forward-circle-duotone" + | "ph:skip-forward-circle-fill" + | "ph:skip-forward-circle-light" + | "ph:skip-forward-circle-thin" + | "ph:skip-forward-duotone" + | "ph:skip-forward-fill" + | "ph:skip-forward-light" + | "ph:skip-forward-thin" + | "ph:skull" + | "ph:skull-bold" + | "ph:skull-duotone" + | "ph:skull-fill" + | "ph:skull-light" + | "ph:skull-thin" + | "ph:skype-logo" + | "ph:skype-logo-bold" + | "ph:skype-logo-duotone" + | "ph:skype-logo-fill" + | "ph:skype-logo-light" + | "ph:skype-logo-thin" + | "ph:slack-logo" + | "ph:slack-logo-bold" + | "ph:slack-logo-duotone" + | "ph:slack-logo-fill" + | "ph:slack-logo-light" + | "ph:slack-logo-thin" + | "ph:sliders" + | "ph:sliders-bold" + | "ph:sliders-duotone" + | "ph:sliders-fill" + | "ph:sliders-horizontal" + | "ph:sliders-horizontal-bold" + | "ph:sliders-horizontal-duotone" + | "ph:sliders-horizontal-fill" + | "ph:sliders-horizontal-light" + | "ph:sliders-horizontal-thin" + | "ph:sliders-light" + | "ph:sliders-thin" + | "ph:slideshow" + | "ph:slideshow-bold" + | "ph:slideshow-duotone" + | "ph:slideshow-fill" + | "ph:slideshow-light" + | "ph:slideshow-thin" + | "ph:smiley" + | "ph:smiley-angry" + | "ph:smiley-angry-bold" + | "ph:smiley-angry-duotone" + | "ph:smiley-angry-fill" + | "ph:smiley-angry-light" + | "ph:smiley-angry-thin" + | "ph:smiley-blank" + | "ph:smiley-blank-bold" + | "ph:smiley-blank-duotone" + | "ph:smiley-blank-fill" + | "ph:smiley-blank-light" + | "ph:smiley-blank-thin" + | "ph:smiley-bold" + | "ph:smiley-duotone" + | "ph:smiley-fill" + | "ph:smiley-light" + | "ph:smiley-meh" + | "ph:smiley-meh-bold" + | "ph:smiley-meh-duotone" + | "ph:smiley-meh-fill" + | "ph:smiley-meh-light" + | "ph:smiley-meh-thin" + | "ph:smiley-melting" + | "ph:smiley-melting-bold" + | "ph:smiley-melting-duotone" + | "ph:smiley-melting-fill" + | "ph:smiley-melting-light" + | "ph:smiley-melting-thin" + | "ph:smiley-nervous" + | "ph:smiley-nervous-bold" + | "ph:smiley-nervous-duotone" + | "ph:smiley-nervous-fill" + | "ph:smiley-nervous-light" + | "ph:smiley-nervous-thin" + | "ph:smiley-sad" + | "ph:smiley-sad-bold" + | "ph:smiley-sad-duotone" + | "ph:smiley-sad-fill" + | "ph:smiley-sad-light" + | "ph:smiley-sad-thin" + | "ph:smiley-sticker" + | "ph:smiley-sticker-bold" + | "ph:smiley-sticker-duotone" + | "ph:smiley-sticker-fill" + | "ph:smiley-sticker-light" + | "ph:smiley-sticker-thin" + | "ph:smiley-thin" + | "ph:smiley-wink" + | "ph:smiley-wink-bold" + | "ph:smiley-wink-duotone" + | "ph:smiley-wink-fill" + | "ph:smiley-wink-light" + | "ph:smiley-wink-thin" + | "ph:smiley-x-eyes" + | "ph:smiley-x-eyes-bold" + | "ph:smiley-x-eyes-duotone" + | "ph:smiley-x-eyes-fill" + | "ph:smiley-x-eyes-light" + | "ph:smiley-x-eyes-thin" + | "ph:snapchat-logo" + | "ph:snapchat-logo-bold" + | "ph:snapchat-logo-duotone" + | "ph:snapchat-logo-fill" + | "ph:snapchat-logo-light" + | "ph:snapchat-logo-thin" + | "ph:sneaker" + | "ph:sneaker-bold" + | "ph:sneaker-duotone" + | "ph:sneaker-fill" + | "ph:sneaker-light" + | "ph:sneaker-move" + | "ph:sneaker-move-bold" + | "ph:sneaker-move-duotone" + | "ph:sneaker-move-fill" + | "ph:sneaker-move-light" + | "ph:sneaker-move-thin" + | "ph:sneaker-thin" + | "ph:snowflake" + | "ph:snowflake-bold" + | "ph:snowflake-duotone" + | "ph:snowflake-fill" + | "ph:snowflake-light" + | "ph:snowflake-thin" + | "ph:soccer-ball" + | "ph:soccer-ball-bold" + | "ph:soccer-ball-duotone" + | "ph:soccer-ball-fill" + | "ph:soccer-ball-light" + | "ph:soccer-ball-thin" + | "ph:sock" + | "ph:sock-bold" + | "ph:sock-duotone" + | "ph:sock-fill" + | "ph:sock-light" + | "ph:sock-thin" + | "ph:solar-panel" + | "ph:solar-panel-bold" + | "ph:solar-panel-duotone" + | "ph:solar-panel-fill" + | "ph:solar-panel-light" + | "ph:solar-panel-thin" + | "ph:solar-roof" + | "ph:solar-roof-bold" + | "ph:solar-roof-duotone" + | "ph:solar-roof-fill" + | "ph:solar-roof-light" + | "ph:solar-roof-thin" + | "ph:sort-ascending" + | "ph:sort-ascending-bold" + | "ph:sort-ascending-duotone" + | "ph:sort-ascending-fill" + | "ph:sort-ascending-light" + | "ph:sort-ascending-thin" + | "ph:sort-descending" + | "ph:sort-descending-bold" + | "ph:sort-descending-duotone" + | "ph:sort-descending-fill" + | "ph:sort-descending-light" + | "ph:sort-descending-thin" + | "ph:soundcloud-logo" + | "ph:soundcloud-logo-bold" + | "ph:soundcloud-logo-duotone" + | "ph:soundcloud-logo-fill" + | "ph:soundcloud-logo-light" + | "ph:soundcloud-logo-thin" + | "ph:spade" + | "ph:spade-bold" + | "ph:spade-duotone" + | "ph:spade-fill" + | "ph:spade-light" + | "ph:spade-thin" + | "ph:sparkle" + | "ph:sparkle-bold" + | "ph:sparkle-duotone" + | "ph:sparkle-fill" + | "ph:sparkle-light" + | "ph:sparkle-thin" + | "ph:speaker-hifi" + | "ph:speaker-hifi-bold" + | "ph:speaker-hifi-duotone" + | "ph:speaker-hifi-fill" + | "ph:speaker-hifi-light" + | "ph:speaker-hifi-thin" + | "ph:speaker-high" + | "ph:speaker-high-bold" + | "ph:speaker-high-duotone" + | "ph:speaker-high-fill" + | "ph:speaker-high-light" + | "ph:speaker-high-thin" + | "ph:speaker-low" + | "ph:speaker-low-bold" + | "ph:speaker-low-duotone" + | "ph:speaker-low-fill" + | "ph:speaker-low-light" + | "ph:speaker-low-thin" + | "ph:speaker-none" + | "ph:speaker-none-bold" + | "ph:speaker-none-duotone" + | "ph:speaker-none-fill" + | "ph:speaker-none-light" + | "ph:speaker-none-thin" + | "ph:speaker-simple-high" + | "ph:speaker-simple-high-bold" + | "ph:speaker-simple-high-duotone" + | "ph:speaker-simple-high-fill" + | "ph:speaker-simple-high-light" + | "ph:speaker-simple-high-thin" + | "ph:speaker-simple-low" + | "ph:speaker-simple-low-bold" + | "ph:speaker-simple-low-duotone" + | "ph:speaker-simple-low-fill" + | "ph:speaker-simple-low-light" + | "ph:speaker-simple-low-thin" + | "ph:speaker-simple-none" + | "ph:speaker-simple-none-bold" + | "ph:speaker-simple-none-duotone" + | "ph:speaker-simple-none-fill" + | "ph:speaker-simple-none-light" + | "ph:speaker-simple-none-thin" + | "ph:speaker-simple-slash" + | "ph:speaker-simple-slash-bold" + | "ph:speaker-simple-slash-duotone" + | "ph:speaker-simple-slash-fill" + | "ph:speaker-simple-slash-light" + | "ph:speaker-simple-slash-thin" + | "ph:speaker-simple-x" + | "ph:speaker-simple-x-bold" + | "ph:speaker-simple-x-duotone" + | "ph:speaker-simple-x-fill" + | "ph:speaker-simple-x-light" + | "ph:speaker-simple-x-thin" + | "ph:speaker-slash" + | "ph:speaker-slash-bold" + | "ph:speaker-slash-duotone" + | "ph:speaker-slash-fill" + | "ph:speaker-slash-light" + | "ph:speaker-slash-thin" + | "ph:speaker-x" + | "ph:speaker-x-bold" + | "ph:speaker-x-duotone" + | "ph:speaker-x-fill" + | "ph:speaker-x-light" + | "ph:speaker-x-thin" + | "ph:speedometer" + | "ph:speedometer-bold" + | "ph:speedometer-duotone" + | "ph:speedometer-fill" + | "ph:speedometer-light" + | "ph:speedometer-thin" + | "ph:sphere" + | "ph:sphere-bold" + | "ph:sphere-duotone" + | "ph:sphere-fill" + | "ph:sphere-light" + | "ph:sphere-thin" + | "ph:spinner" + | "ph:spinner-ball" + | "ph:spinner-ball-bold" + | "ph:spinner-ball-duotone" + | "ph:spinner-ball-fill" + | "ph:spinner-ball-light" + | "ph:spinner-ball-thin" + | "ph:spinner-bold" + | "ph:spinner-duotone" + | "ph:spinner-fill" + | "ph:spinner-gap" + | "ph:spinner-gap-bold" + | "ph:spinner-gap-duotone" + | "ph:spinner-gap-fill" + | "ph:spinner-gap-light" + | "ph:spinner-gap-thin" + | "ph:spinner-light" + | "ph:spinner-thin" + | "ph:spiral" + | "ph:spiral-bold" + | "ph:spiral-duotone" + | "ph:spiral-fill" + | "ph:spiral-light" + | "ph:spiral-thin" + | "ph:split-horizontal" + | "ph:split-horizontal-bold" + | "ph:split-horizontal-duotone" + | "ph:split-horizontal-fill" + | "ph:split-horizontal-light" + | "ph:split-horizontal-thin" + | "ph:split-vertical" + | "ph:split-vertical-bold" + | "ph:split-vertical-duotone" + | "ph:split-vertical-fill" + | "ph:split-vertical-light" + | "ph:split-vertical-thin" + | "ph:spotify-logo" + | "ph:spotify-logo-bold" + | "ph:spotify-logo-duotone" + | "ph:spotify-logo-fill" + | "ph:spotify-logo-light" + | "ph:spotify-logo-thin" + | "ph:spray-bottle" + | "ph:spray-bottle-bold" + | "ph:spray-bottle-duotone" + | "ph:spray-bottle-fill" + | "ph:spray-bottle-light" + | "ph:spray-bottle-thin" + | "ph:square" + | "ph:square-bold" + | "ph:square-duotone" + | "ph:square-fill" + | "ph:square-half" + | "ph:square-half-bold" + | "ph:square-half-bottom" + | "ph:square-half-bottom-bold" + | "ph:square-half-bottom-duotone" + | "ph:square-half-bottom-fill" + | "ph:square-half-bottom-light" + | "ph:square-half-bottom-thin" + | "ph:square-half-duotone" + | "ph:square-half-fill" + | "ph:square-half-light" + | "ph:square-half-thin" + | "ph:square-light" + | "ph:square-logo" + | "ph:square-logo-bold" + | "ph:square-logo-duotone" + | "ph:square-logo-fill" + | "ph:square-logo-light" + | "ph:square-logo-thin" + | "ph:square-split-horizontal" + | "ph:square-split-horizontal-bold" + | "ph:square-split-horizontal-duotone" + | "ph:square-split-horizontal-fill" + | "ph:square-split-horizontal-light" + | "ph:square-split-horizontal-thin" + | "ph:square-split-vertical" + | "ph:square-split-vertical-bold" + | "ph:square-split-vertical-duotone" + | "ph:square-split-vertical-fill" + | "ph:square-split-vertical-light" + | "ph:square-split-vertical-thin" + | "ph:square-thin" + | "ph:squares-four" + | "ph:squares-four-bold" + | "ph:squares-four-duotone" + | "ph:squares-four-fill" + | "ph:squares-four-light" + | "ph:squares-four-thin" + | "ph:stack" + | "ph:stack-bold" + | "ph:stack-duotone" + | "ph:stack-fill" + | "ph:stack-light" + | "ph:stack-minus" + | "ph:stack-minus-bold" + | "ph:stack-minus-duotone" + | "ph:stack-minus-fill" + | "ph:stack-minus-light" + | "ph:stack-minus-thin" + | "ph:stack-overflow-logo" + | "ph:stack-overflow-logo-bold" + | "ph:stack-overflow-logo-duotone" + | "ph:stack-overflow-logo-fill" + | "ph:stack-overflow-logo-light" + | "ph:stack-overflow-logo-thin" + | "ph:stack-plus" + | "ph:stack-plus-bold" + | "ph:stack-plus-duotone" + | "ph:stack-plus-fill" + | "ph:stack-plus-light" + | "ph:stack-plus-thin" + | "ph:stack-simple" + | "ph:stack-simple-bold" + | "ph:stack-simple-duotone" + | "ph:stack-simple-fill" + | "ph:stack-simple-light" + | "ph:stack-simple-thin" + | "ph:stack-thin" + | "ph:stairs" + | "ph:stairs-bold" + | "ph:stairs-duotone" + | "ph:stairs-fill" + | "ph:stairs-light" + | "ph:stairs-thin" + | "ph:stamp" + | "ph:stamp-bold" + | "ph:stamp-duotone" + | "ph:stamp-fill" + | "ph:stamp-light" + | "ph:stamp-thin" + | "ph:standard-definition" + | "ph:standard-definition-bold" + | "ph:standard-definition-duotone" + | "ph:standard-definition-fill" + | "ph:standard-definition-light" + | "ph:standard-definition-thin" + | "ph:star" + | "ph:star-and-crescent" + | "ph:star-and-crescent-bold" + | "ph:star-and-crescent-duotone" + | "ph:star-and-crescent-fill" + | "ph:star-and-crescent-light" + | "ph:star-and-crescent-thin" + | "ph:star-bold" + | "ph:star-duotone" + | "ph:star-fill" + | "ph:star-four" + | "ph:star-four-bold" + | "ph:star-four-duotone" + | "ph:star-four-fill" + | "ph:star-four-light" + | "ph:star-four-thin" + | "ph:star-half" + | "ph:star-half-bold" + | "ph:star-half-duotone" + | "ph:star-half-fill" + | "ph:star-half-light" + | "ph:star-half-thin" + | "ph:star-light" + | "ph:star-of-david" + | "ph:star-of-david-bold" + | "ph:star-of-david-duotone" + | "ph:star-of-david-fill" + | "ph:star-of-david-light" + | "ph:star-of-david-thin" + | "ph:star-thin" + | "ph:steam-logo" + | "ph:steam-logo-bold" + | "ph:steam-logo-duotone" + | "ph:steam-logo-fill" + | "ph:steam-logo-light" + | "ph:steam-logo-thin" + | "ph:steering-wheel" + | "ph:steering-wheel-bold" + | "ph:steering-wheel-duotone" + | "ph:steering-wheel-fill" + | "ph:steering-wheel-light" + | "ph:steering-wheel-thin" + | "ph:steps" + | "ph:steps-bold" + | "ph:steps-duotone" + | "ph:steps-fill" + | "ph:steps-light" + | "ph:steps-thin" + | "ph:stethoscope" + | "ph:stethoscope-bold" + | "ph:stethoscope-duotone" + | "ph:stethoscope-fill" + | "ph:stethoscope-light" + | "ph:stethoscope-thin" + | "ph:sticker" + | "ph:sticker-bold" + | "ph:sticker-duotone" + | "ph:sticker-fill" + | "ph:sticker-light" + | "ph:sticker-thin" + | "ph:stool" + | "ph:stool-bold" + | "ph:stool-duotone" + | "ph:stool-fill" + | "ph:stool-light" + | "ph:stool-thin" + | "ph:stop" + | "ph:stop-bold" + | "ph:stop-circle" + | "ph:stop-circle-bold" + | "ph:stop-circle-duotone" + | "ph:stop-circle-fill" + | "ph:stop-circle-light" + | "ph:stop-circle-thin" + | "ph:stop-duotone" + | "ph:stop-fill" + | "ph:stop-light" + | "ph:stop-thin" + | "ph:storefront" + | "ph:storefront-bold" + | "ph:storefront-duotone" + | "ph:storefront-fill" + | "ph:storefront-light" + | "ph:storefront-thin" + | "ph:strategy" + | "ph:strategy-bold" + | "ph:strategy-duotone" + | "ph:strategy-fill" + | "ph:strategy-light" + | "ph:strategy-thin" + | "ph:stripe-logo" + | "ph:stripe-logo-bold" + | "ph:stripe-logo-duotone" + | "ph:stripe-logo-fill" + | "ph:stripe-logo-light" + | "ph:stripe-logo-thin" + | "ph:student" + | "ph:student-bold" + | "ph:student-duotone" + | "ph:student-fill" + | "ph:student-light" + | "ph:student-thin" + | "ph:subset-of" + | "ph:subset-of-bold" + | "ph:subset-of-duotone" + | "ph:subset-of-fill" + | "ph:subset-of-light" + | "ph:subset-of-thin" + | "ph:subset-proper-of" + | "ph:subset-proper-of-bold" + | "ph:subset-proper-of-duotone" + | "ph:subset-proper-of-fill" + | "ph:subset-proper-of-light" + | "ph:subset-proper-of-thin" + | "ph:subtitles" + | "ph:subtitles-bold" + | "ph:subtitles-duotone" + | "ph:subtitles-fill" + | "ph:subtitles-light" + | "ph:subtitles-slash" + | "ph:subtitles-slash-bold" + | "ph:subtitles-slash-duotone" + | "ph:subtitles-slash-fill" + | "ph:subtitles-slash-light" + | "ph:subtitles-slash-thin" + | "ph:subtitles-thin" + | "ph:subtract" + | "ph:subtract-bold" + | "ph:subtract-duotone" + | "ph:subtract-fill" + | "ph:subtract-light" + | "ph:subtract-square" + | "ph:subtract-square-bold" + | "ph:subtract-square-duotone" + | "ph:subtract-square-fill" + | "ph:subtract-square-light" + | "ph:subtract-square-thin" + | "ph:subtract-thin" + | "ph:subway" + | "ph:subway-bold" + | "ph:subway-duotone" + | "ph:subway-fill" + | "ph:subway-light" + | "ph:subway-thin" + | "ph:suitcase" + | "ph:suitcase-bold" + | "ph:suitcase-duotone" + | "ph:suitcase-fill" + | "ph:suitcase-light" + | "ph:suitcase-rolling" + | "ph:suitcase-rolling-bold" + | "ph:suitcase-rolling-duotone" + | "ph:suitcase-rolling-fill" + | "ph:suitcase-rolling-light" + | "ph:suitcase-rolling-thin" + | "ph:suitcase-simple" + | "ph:suitcase-simple-bold" + | "ph:suitcase-simple-duotone" + | "ph:suitcase-simple-fill" + | "ph:suitcase-simple-light" + | "ph:suitcase-simple-thin" + | "ph:suitcase-thin" + | "ph:sun" + | "ph:sun-bold" + | "ph:sun-dim" + | "ph:sun-dim-bold" + | "ph:sun-dim-duotone" + | "ph:sun-dim-fill" + | "ph:sun-dim-light" + | "ph:sun-dim-thin" + | "ph:sun-duotone" + | "ph:sun-fill" + | "ph:sun-horizon" + | "ph:sun-horizon-bold" + | "ph:sun-horizon-duotone" + | "ph:sun-horizon-fill" + | "ph:sun-horizon-light" + | "ph:sun-horizon-thin" + | "ph:sun-light" + | "ph:sun-thin" + | "ph:sunglasses" + | "ph:sunglasses-bold" + | "ph:sunglasses-duotone" + | "ph:sunglasses-fill" + | "ph:sunglasses-light" + | "ph:sunglasses-thin" + | "ph:superset-of" + | "ph:superset-of-bold" + | "ph:superset-of-duotone" + | "ph:superset-of-fill" + | "ph:superset-of-light" + | "ph:superset-of-thin" + | "ph:superset-proper-of" + | "ph:superset-proper-of-bold" + | "ph:superset-proper-of-duotone" + | "ph:superset-proper-of-fill" + | "ph:superset-proper-of-light" + | "ph:superset-proper-of-thin" + | "ph:swap" + | "ph:swap-bold" + | "ph:swap-duotone" + | "ph:swap-fill" + | "ph:swap-light" + | "ph:swap-thin" + | "ph:swatches" + | "ph:swatches-bold" + | "ph:swatches-duotone" + | "ph:swatches-fill" + | "ph:swatches-light" + | "ph:swatches-thin" + | "ph:swimming-pool" + | "ph:swimming-pool-bold" + | "ph:swimming-pool-duotone" + | "ph:swimming-pool-fill" + | "ph:swimming-pool-light" + | "ph:swimming-pool-thin" + | "ph:sword" + | "ph:sword-bold" + | "ph:sword-duotone" + | "ph:sword-fill" + | "ph:sword-light" + | "ph:sword-thin" + | "ph:synagogue" + | "ph:synagogue-bold" + | "ph:synagogue-duotone" + | "ph:synagogue-fill" + | "ph:synagogue-light" + | "ph:synagogue-thin" + | "ph:syringe" + | "ph:syringe-bold" + | "ph:syringe-duotone" + | "ph:syringe-fill" + | "ph:syringe-light" + | "ph:syringe-thin" + | "ph:t-shirt" + | "ph:t-shirt-bold" + | "ph:t-shirt-duotone" + | "ph:t-shirt-fill" + | "ph:t-shirt-light" + | "ph:t-shirt-thin" + | "ph:table" + | "ph:table-bold" + | "ph:table-duotone" + | "ph:table-fill" + | "ph:table-light" + | "ph:table-thin" + | "ph:tabs" + | "ph:tabs-bold" + | "ph:tabs-duotone" + | "ph:tabs-fill" + | "ph:tabs-light" + | "ph:tabs-thin" + | "ph:tag" + | "ph:tag-bold" + | "ph:tag-chevron" + | "ph:tag-chevron-bold" + | "ph:tag-chevron-duotone" + | "ph:tag-chevron-fill" + | "ph:tag-chevron-light" + | "ph:tag-chevron-thin" + | "ph:tag-duotone" + | "ph:tag-fill" + | "ph:tag-light" + | "ph:tag-simple" + | "ph:tag-simple-bold" + | "ph:tag-simple-duotone" + | "ph:tag-simple-fill" + | "ph:tag-simple-light" + | "ph:tag-simple-thin" + | "ph:tag-thin" + | "ph:target" + | "ph:target-bold" + | "ph:target-duotone" + | "ph:target-fill" + | "ph:target-light" + | "ph:target-thin" + | "ph:taxi" + | "ph:taxi-bold" + | "ph:taxi-duotone" + | "ph:taxi-fill" + | "ph:taxi-light" + | "ph:taxi-thin" + | "ph:tea-bag" + | "ph:tea-bag-bold" + | "ph:tea-bag-duotone" + | "ph:tea-bag-fill" + | "ph:tea-bag-light" + | "ph:tea-bag-thin" + | "ph:telegram-logo" + | "ph:telegram-logo-bold" + | "ph:telegram-logo-duotone" + | "ph:telegram-logo-fill" + | "ph:telegram-logo-light" + | "ph:telegram-logo-thin" + | "ph:television" + | "ph:television-bold" + | "ph:television-duotone" + | "ph:television-fill" + | "ph:television-light" + | "ph:television-simple" + | "ph:television-simple-bold" + | "ph:television-simple-duotone" + | "ph:television-simple-fill" + | "ph:television-simple-light" + | "ph:television-simple-thin" + | "ph:television-thin" + | "ph:tennis-ball" + | "ph:tennis-ball-bold" + | "ph:tennis-ball-duotone" + | "ph:tennis-ball-fill" + | "ph:tennis-ball-light" + | "ph:tennis-ball-thin" + | "ph:tent" + | "ph:tent-bold" + | "ph:tent-duotone" + | "ph:tent-fill" + | "ph:tent-light" + | "ph:tent-thin" + | "ph:terminal" + | "ph:terminal-bold" + | "ph:terminal-duotone" + | "ph:terminal-fill" + | "ph:terminal-light" + | "ph:terminal-thin" + | "ph:terminal-window" + | "ph:terminal-window-bold" + | "ph:terminal-window-duotone" + | "ph:terminal-window-fill" + | "ph:terminal-window-light" + | "ph:terminal-window-thin" + | "ph:test-tube" + | "ph:test-tube-bold" + | "ph:test-tube-duotone" + | "ph:test-tube-fill" + | "ph:test-tube-light" + | "ph:test-tube-thin" + | "ph:text-a-underline" + | "ph:text-a-underline-bold" + | "ph:text-a-underline-duotone" + | "ph:text-a-underline-fill" + | "ph:text-a-underline-light" + | "ph:text-a-underline-thin" + | "ph:text-aa" + | "ph:text-aa-bold" + | "ph:text-aa-duotone" + | "ph:text-aa-fill" + | "ph:text-aa-light" + | "ph:text-aa-thin" + | "ph:text-align-center" + | "ph:text-align-center-bold" + | "ph:text-align-center-duotone" + | "ph:text-align-center-fill" + | "ph:text-align-center-light" + | "ph:text-align-center-thin" + | "ph:text-align-justify" + | "ph:text-align-justify-bold" + | "ph:text-align-justify-duotone" + | "ph:text-align-justify-fill" + | "ph:text-align-justify-light" + | "ph:text-align-justify-thin" + | "ph:text-align-left" + | "ph:text-align-left-bold" + | "ph:text-align-left-duotone" + | "ph:text-align-left-fill" + | "ph:text-align-left-light" + | "ph:text-align-left-thin" + | "ph:text-align-right" + | "ph:text-align-right-bold" + | "ph:text-align-right-duotone" + | "ph:text-align-right-fill" + | "ph:text-align-right-light" + | "ph:text-align-right-thin" + | "ph:text-b" + | "ph:text-b-bold" + | "ph:text-b-duotone" + | "ph:text-b-fill" + | "ph:text-b-light" + | "ph:text-b-thin" + | "ph:text-bolder" + | "ph:text-bolder-bold" + | "ph:text-bolder-light" + | "ph:text-bolder-thin" + | "ph:text-columns" + | "ph:text-columns-bold" + | "ph:text-columns-duotone" + | "ph:text-columns-fill" + | "ph:text-columns-light" + | "ph:text-columns-thin" + | "ph:text-h" + | "ph:text-h-bold" + | "ph:text-h-duotone" + | "ph:text-h-fill" + | "ph:text-h-five" + | "ph:text-h-five-bold" + | "ph:text-h-five-duotone" + | "ph:text-h-five-fill" + | "ph:text-h-five-light" + | "ph:text-h-five-thin" + | "ph:text-h-four" + | "ph:text-h-four-bold" + | "ph:text-h-four-duotone" + | "ph:text-h-four-fill" + | "ph:text-h-four-light" + | "ph:text-h-four-thin" + | "ph:text-h-light" + | "ph:text-h-one" + | "ph:text-h-one-bold" + | "ph:text-h-one-duotone" + | "ph:text-h-one-fill" + | "ph:text-h-one-light" + | "ph:text-h-one-thin" + | "ph:text-h-six" + | "ph:text-h-six-bold" + | "ph:text-h-six-duotone" + | "ph:text-h-six-fill" + | "ph:text-h-six-light" + | "ph:text-h-six-thin" + | "ph:text-h-thin" + | "ph:text-h-three" + | "ph:text-h-three-bold" + | "ph:text-h-three-duotone" + | "ph:text-h-three-fill" + | "ph:text-h-three-light" + | "ph:text-h-three-thin" + | "ph:text-h-two" + | "ph:text-h-two-bold" + | "ph:text-h-two-duotone" + | "ph:text-h-two-fill" + | "ph:text-h-two-light" + | "ph:text-h-two-thin" + | "ph:text-indent" + | "ph:text-indent-bold" + | "ph:text-indent-duotone" + | "ph:text-indent-fill" + | "ph:text-indent-light" + | "ph:text-indent-thin" + | "ph:text-italic" + | "ph:text-italic-bold" + | "ph:text-italic-duotone" + | "ph:text-italic-fill" + | "ph:text-italic-light" + | "ph:text-italic-thin" + | "ph:text-outdent" + | "ph:text-outdent-bold" + | "ph:text-outdent-duotone" + | "ph:text-outdent-fill" + | "ph:text-outdent-light" + | "ph:text-outdent-thin" + | "ph:text-strikethrough" + | "ph:text-strikethrough-bold" + | "ph:text-strikethrough-duotone" + | "ph:text-strikethrough-fill" + | "ph:text-strikethrough-light" + | "ph:text-strikethrough-thin" + | "ph:text-subscript" + | "ph:text-subscript-bold" + | "ph:text-subscript-duotone" + | "ph:text-subscript-fill" + | "ph:text-subscript-light" + | "ph:text-subscript-thin" + | "ph:text-superscript" + | "ph:text-superscript-bold" + | "ph:text-superscript-duotone" + | "ph:text-superscript-fill" + | "ph:text-superscript-light" + | "ph:text-superscript-thin" + | "ph:text-t" + | "ph:text-t-bold" + | "ph:text-t-duotone" + | "ph:text-t-fill" + | "ph:text-t-light" + | "ph:text-t-slash" + | "ph:text-t-slash-bold" + | "ph:text-t-slash-duotone" + | "ph:text-t-slash-fill" + | "ph:text-t-slash-light" + | "ph:text-t-slash-thin" + | "ph:text-t-thin" + | "ph:text-underline" + | "ph:text-underline-bold" + | "ph:text-underline-duotone" + | "ph:text-underline-fill" + | "ph:text-underline-light" + | "ph:text-underline-thin" + | "ph:textbox" + | "ph:textbox-bold" + | "ph:textbox-duotone" + | "ph:textbox-fill" + | "ph:textbox-light" + | "ph:textbox-thin" + | "ph:thermometer" + | "ph:thermometer-bold" + | "ph:thermometer-cold" + | "ph:thermometer-cold-bold" + | "ph:thermometer-cold-duotone" + | "ph:thermometer-cold-fill" + | "ph:thermometer-cold-light" + | "ph:thermometer-cold-thin" + | "ph:thermometer-duotone" + | "ph:thermometer-fill" + | "ph:thermometer-hot" + | "ph:thermometer-hot-bold" + | "ph:thermometer-hot-duotone" + | "ph:thermometer-hot-fill" + | "ph:thermometer-hot-light" + | "ph:thermometer-hot-thin" + | "ph:thermometer-light" + | "ph:thermometer-simple" + | "ph:thermometer-simple-bold" + | "ph:thermometer-simple-duotone" + | "ph:thermometer-simple-fill" + | "ph:thermometer-simple-light" + | "ph:thermometer-simple-thin" + | "ph:thermometer-thin" + | "ph:threads-logo" + | "ph:threads-logo-bold" + | "ph:threads-logo-duotone" + | "ph:threads-logo-fill" + | "ph:threads-logo-light" + | "ph:threads-logo-thin" + | "ph:three-d" + | "ph:three-d-bold" + | "ph:three-d-duotone" + | "ph:three-d-fill" + | "ph:three-d-light" + | "ph:three-d-thin" + | "ph:thumbs-down" + | "ph:thumbs-down-bold" + | "ph:thumbs-down-duotone" + | "ph:thumbs-down-fill" + | "ph:thumbs-down-light" + | "ph:thumbs-down-thin" + | "ph:thumbs-up" + | "ph:thumbs-up-bold" + | "ph:thumbs-up-duotone" + | "ph:thumbs-up-fill" + | "ph:thumbs-up-light" + | "ph:thumbs-up-thin" + | "ph:ticket" + | "ph:ticket-bold" + | "ph:ticket-duotone" + | "ph:ticket-fill" + | "ph:ticket-light" + | "ph:ticket-thin" + | "ph:tidal-logo" + | "ph:tidal-logo-bold" + | "ph:tidal-logo-duotone" + | "ph:tidal-logo-fill" + | "ph:tidal-logo-light" + | "ph:tidal-logo-thin" + | "ph:tiktok-logo" + | "ph:tiktok-logo-bold" + | "ph:tiktok-logo-duotone" + | "ph:tiktok-logo-fill" + | "ph:tiktok-logo-light" + | "ph:tiktok-logo-thin" + | "ph:tilde" + | "ph:tilde-bold" + | "ph:tilde-duotone" + | "ph:tilde-fill" + | "ph:tilde-light" + | "ph:tilde-thin" + | "ph:timer" + | "ph:timer-bold" + | "ph:timer-duotone" + | "ph:timer-fill" + | "ph:timer-light" + | "ph:timer-thin" + | "ph:tip-jar" + | "ph:tip-jar-bold" + | "ph:tip-jar-duotone" + | "ph:tip-jar-fill" + | "ph:tip-jar-light" + | "ph:tip-jar-thin" + | "ph:tipi" + | "ph:tipi-bold" + | "ph:tipi-duotone" + | "ph:tipi-fill" + | "ph:tipi-light" + | "ph:tipi-thin" + | "ph:tire" + | "ph:tire-bold" + | "ph:tire-duotone" + | "ph:tire-fill" + | "ph:tire-light" + | "ph:tire-thin" + | "ph:toggle-left" + | "ph:toggle-left-bold" + | "ph:toggle-left-duotone" + | "ph:toggle-left-fill" + | "ph:toggle-left-light" + | "ph:toggle-left-thin" + | "ph:toggle-right" + | "ph:toggle-right-bold" + | "ph:toggle-right-duotone" + | "ph:toggle-right-fill" + | "ph:toggle-right-light" + | "ph:toggle-right-thin" + | "ph:toilet" + | "ph:toilet-bold" + | "ph:toilet-duotone" + | "ph:toilet-fill" + | "ph:toilet-light" + | "ph:toilet-paper" + | "ph:toilet-paper-bold" + | "ph:toilet-paper-duotone" + | "ph:toilet-paper-fill" + | "ph:toilet-paper-light" + | "ph:toilet-paper-thin" + | "ph:toilet-thin" + | "ph:toolbox" + | "ph:toolbox-bold" + | "ph:toolbox-duotone" + | "ph:toolbox-fill" + | "ph:toolbox-light" + | "ph:toolbox-thin" + | "ph:tooth" + | "ph:tooth-bold" + | "ph:tooth-duotone" + | "ph:tooth-fill" + | "ph:tooth-light" + | "ph:tooth-thin" + | "ph:tornado" + | "ph:tornado-bold" + | "ph:tornado-duotone" + | "ph:tornado-fill" + | "ph:tornado-light" + | "ph:tornado-thin" + | "ph:tote" + | "ph:tote-bold" + | "ph:tote-duotone" + | "ph:tote-fill" + | "ph:tote-light" + | "ph:tote-simple" + | "ph:tote-simple-bold" + | "ph:tote-simple-duotone" + | "ph:tote-simple-fill" + | "ph:tote-simple-light" + | "ph:tote-simple-thin" + | "ph:tote-thin" + | "ph:towel" + | "ph:towel-bold" + | "ph:towel-duotone" + | "ph:towel-fill" + | "ph:towel-light" + | "ph:towel-thin" + | "ph:tractor" + | "ph:tractor-bold" + | "ph:tractor-duotone" + | "ph:tractor-fill" + | "ph:tractor-light" + | "ph:tractor-thin" + | "ph:trademark" + | "ph:trademark-bold" + | "ph:trademark-duotone" + | "ph:trademark-fill" + | "ph:trademark-light" + | "ph:trademark-registered" + | "ph:trademark-registered-bold" + | "ph:trademark-registered-duotone" + | "ph:trademark-registered-fill" + | "ph:trademark-registered-light" + | "ph:trademark-registered-thin" + | "ph:trademark-thin" + | "ph:traffic-cone" + | "ph:traffic-cone-bold" + | "ph:traffic-cone-duotone" + | "ph:traffic-cone-fill" + | "ph:traffic-cone-light" + | "ph:traffic-cone-thin" + | "ph:traffic-sign" + | "ph:traffic-sign-bold" + | "ph:traffic-sign-duotone" + | "ph:traffic-sign-fill" + | "ph:traffic-sign-light" + | "ph:traffic-sign-thin" + | "ph:traffic-signal" + | "ph:traffic-signal-bold" + | "ph:traffic-signal-duotone" + | "ph:traffic-signal-fill" + | "ph:traffic-signal-light" + | "ph:traffic-signal-thin" + | "ph:train" + | "ph:train-bold" + | "ph:train-duotone" + | "ph:train-fill" + | "ph:train-light" + | "ph:train-regional" + | "ph:train-regional-bold" + | "ph:train-regional-duotone" + | "ph:train-regional-fill" + | "ph:train-regional-light" + | "ph:train-regional-thin" + | "ph:train-simple" + | "ph:train-simple-bold" + | "ph:train-simple-duotone" + | "ph:train-simple-fill" + | "ph:train-simple-light" + | "ph:train-simple-thin" + | "ph:train-thin" + | "ph:tram" + | "ph:tram-bold" + | "ph:tram-duotone" + | "ph:tram-fill" + | "ph:tram-light" + | "ph:tram-thin" + | "ph:translate" + | "ph:translate-bold" + | "ph:translate-duotone" + | "ph:translate-fill" + | "ph:translate-light" + | "ph:translate-thin" + | "ph:trash" + | "ph:trash-bold" + | "ph:trash-duotone" + | "ph:trash-fill" + | "ph:trash-light" + | "ph:trash-simple" + | "ph:trash-simple-bold" + | "ph:trash-simple-duotone" + | "ph:trash-simple-fill" + | "ph:trash-simple-light" + | "ph:trash-simple-thin" + | "ph:trash-thin" + | "ph:tray" + | "ph:tray-arrow-down" + | "ph:tray-arrow-down-bold" + | "ph:tray-arrow-down-duotone" + | "ph:tray-arrow-down-fill" + | "ph:tray-arrow-down-light" + | "ph:tray-arrow-down-thin" + | "ph:tray-arrow-up" + | "ph:tray-arrow-up-bold" + | "ph:tray-arrow-up-duotone" + | "ph:tray-arrow-up-fill" + | "ph:tray-arrow-up-light" + | "ph:tray-arrow-up-thin" + | "ph:tray-bold" + | "ph:tray-duotone" + | "ph:tray-fill" + | "ph:tray-light" + | "ph:tray-thin" + | "ph:treasure-chest" + | "ph:treasure-chest-bold" + | "ph:treasure-chest-duotone" + | "ph:treasure-chest-fill" + | "ph:treasure-chest-light" + | "ph:treasure-chest-thin" + | "ph:tree" + | "ph:tree-bold" + | "ph:tree-duotone" + | "ph:tree-evergreen" + | "ph:tree-evergreen-bold" + | "ph:tree-evergreen-duotone" + | "ph:tree-evergreen-fill" + | "ph:tree-evergreen-light" + | "ph:tree-evergreen-thin" + | "ph:tree-fill" + | "ph:tree-light" + | "ph:tree-palm" + | "ph:tree-palm-bold" + | "ph:tree-palm-duotone" + | "ph:tree-palm-fill" + | "ph:tree-palm-light" + | "ph:tree-palm-thin" + | "ph:tree-structure" + | "ph:tree-structure-bold" + | "ph:tree-structure-duotone" + | "ph:tree-structure-fill" + | "ph:tree-structure-light" + | "ph:tree-structure-thin" + | "ph:tree-thin" + | "ph:tree-view" + | "ph:tree-view-bold" + | "ph:tree-view-duotone" + | "ph:tree-view-fill" + | "ph:tree-view-light" + | "ph:tree-view-thin" + | "ph:trend-down" + | "ph:trend-down-bold" + | "ph:trend-down-duotone" + | "ph:trend-down-fill" + | "ph:trend-down-light" + | "ph:trend-down-thin" + | "ph:trend-up" + | "ph:trend-up-bold" + | "ph:trend-up-duotone" + | "ph:trend-up-fill" + | "ph:trend-up-light" + | "ph:trend-up-thin" + | "ph:triangle" + | "ph:triangle-bold" + | "ph:triangle-dashed" + | "ph:triangle-dashed-bold" + | "ph:triangle-dashed-duotone" + | "ph:triangle-dashed-fill" + | "ph:triangle-dashed-light" + | "ph:triangle-dashed-thin" + | "ph:triangle-duotone" + | "ph:triangle-fill" + | "ph:triangle-light" + | "ph:triangle-thin" + | "ph:trolley" + | "ph:trolley-bold" + | "ph:trolley-duotone" + | "ph:trolley-fill" + | "ph:trolley-light" + | "ph:trolley-suitcase" + | "ph:trolley-suitcase-bold" + | "ph:trolley-suitcase-duotone" + | "ph:trolley-suitcase-fill" + | "ph:trolley-suitcase-light" + | "ph:trolley-suitcase-thin" + | "ph:trolley-thin" + | "ph:trophy" + | "ph:trophy-bold" + | "ph:trophy-duotone" + | "ph:trophy-fill" + | "ph:trophy-light" + | "ph:trophy-thin" + | "ph:truck" + | "ph:truck-bold" + | "ph:truck-duotone" + | "ph:truck-fill" + | "ph:truck-light" + | "ph:truck-thin" + | "ph:truck-trailer" + | "ph:truck-trailer-bold" + | "ph:truck-trailer-duotone" + | "ph:truck-trailer-fill" + | "ph:truck-trailer-light" + | "ph:truck-trailer-thin" + | "ph:tumblr-logo" + | "ph:tumblr-logo-bold" + | "ph:tumblr-logo-duotone" + | "ph:tumblr-logo-fill" + | "ph:tumblr-logo-light" + | "ph:tumblr-logo-thin" + | "ph:twitch-logo" + | "ph:twitch-logo-bold" + | "ph:twitch-logo-duotone" + | "ph:twitch-logo-fill" + | "ph:twitch-logo-light" + | "ph:twitch-logo-thin" + | "ph:twitter-logo" + | "ph:twitter-logo-bold" + | "ph:twitter-logo-duotone" + | "ph:twitter-logo-fill" + | "ph:twitter-logo-light" + | "ph:twitter-logo-thin" + | "ph:umbrella" + | "ph:umbrella-bold" + | "ph:umbrella-duotone" + | "ph:umbrella-fill" + | "ph:umbrella-light" + | "ph:umbrella-simple" + | "ph:umbrella-simple-bold" + | "ph:umbrella-simple-duotone" + | "ph:umbrella-simple-fill" + | "ph:umbrella-simple-light" + | "ph:umbrella-simple-thin" + | "ph:umbrella-thin" + | "ph:union" + | "ph:union-bold" + | "ph:union-duotone" + | "ph:union-fill" + | "ph:union-light" + | "ph:union-thin" + | "ph:unite" + | "ph:unite-bold" + | "ph:unite-duotone" + | "ph:unite-fill" + | "ph:unite-light" + | "ph:unite-square" + | "ph:unite-square-bold" + | "ph:unite-square-duotone" + | "ph:unite-square-fill" + | "ph:unite-square-light" + | "ph:unite-square-thin" + | "ph:unite-thin" + | "ph:upload" + | "ph:upload-bold" + | "ph:upload-duotone" + | "ph:upload-fill" + | "ph:upload-light" + | "ph:upload-simple" + | "ph:upload-simple-bold" + | "ph:upload-simple-duotone" + | "ph:upload-simple-fill" + | "ph:upload-simple-light" + | "ph:upload-simple-thin" + | "ph:upload-thin" + | "ph:usb" + | "ph:usb-bold" + | "ph:usb-duotone" + | "ph:usb-fill" + | "ph:usb-light" + | "ph:usb-thin" + | "ph:user" + | "ph:user-bold" + | "ph:user-check" + | "ph:user-check-bold" + | "ph:user-check-duotone" + | "ph:user-check-fill" + | "ph:user-check-light" + | "ph:user-check-thin" + | "ph:user-circle" + | "ph:user-circle-bold" + | "ph:user-circle-check" + | "ph:user-circle-check-bold" + | "ph:user-circle-check-duotone" + | "ph:user-circle-check-fill" + | "ph:user-circle-check-light" + | "ph:user-circle-check-thin" + | "ph:user-circle-dashed" + | "ph:user-circle-dashed-bold" + | "ph:user-circle-dashed-duotone" + | "ph:user-circle-dashed-fill" + | "ph:user-circle-dashed-light" + | "ph:user-circle-dashed-thin" + | "ph:user-circle-duotone" + | "ph:user-circle-fill" + | "ph:user-circle-gear" + | "ph:user-circle-gear-bold" + | "ph:user-circle-gear-duotone" + | "ph:user-circle-gear-fill" + | "ph:user-circle-gear-light" + | "ph:user-circle-gear-thin" + | "ph:user-circle-light" + | "ph:user-circle-minus" + | "ph:user-circle-minus-bold" + | "ph:user-circle-minus-duotone" + | "ph:user-circle-minus-fill" + | "ph:user-circle-minus-light" + | "ph:user-circle-minus-thin" + | "ph:user-circle-plus" + | "ph:user-circle-plus-bold" + | "ph:user-circle-plus-duotone" + | "ph:user-circle-plus-fill" + | "ph:user-circle-plus-light" + | "ph:user-circle-plus-thin" + | "ph:user-circle-thin" + | "ph:user-duotone" + | "ph:user-fill" + | "ph:user-focus" + | "ph:user-focus-bold" + | "ph:user-focus-duotone" + | "ph:user-focus-fill" + | "ph:user-focus-light" + | "ph:user-focus-thin" + | "ph:user-gear" + | "ph:user-gear-bold" + | "ph:user-gear-duotone" + | "ph:user-gear-fill" + | "ph:user-gear-light" + | "ph:user-gear-thin" + | "ph:user-light" + | "ph:user-list" + | "ph:user-list-bold" + | "ph:user-list-duotone" + | "ph:user-list-fill" + | "ph:user-list-light" + | "ph:user-list-thin" + | "ph:user-minus" + | "ph:user-minus-bold" + | "ph:user-minus-duotone" + | "ph:user-minus-fill" + | "ph:user-minus-light" + | "ph:user-minus-thin" + | "ph:user-plus" + | "ph:user-plus-bold" + | "ph:user-plus-duotone" + | "ph:user-plus-fill" + | "ph:user-plus-light" + | "ph:user-plus-thin" + | "ph:user-rectangle" + | "ph:user-rectangle-bold" + | "ph:user-rectangle-duotone" + | "ph:user-rectangle-fill" + | "ph:user-rectangle-light" + | "ph:user-rectangle-thin" + | "ph:user-sound" + | "ph:user-sound-bold" + | "ph:user-sound-duotone" + | "ph:user-sound-fill" + | "ph:user-sound-light" + | "ph:user-sound-thin" + | "ph:user-square" + | "ph:user-square-bold" + | "ph:user-square-duotone" + | "ph:user-square-fill" + | "ph:user-square-light" + | "ph:user-square-thin" + | "ph:user-switch" + | "ph:user-switch-bold" + | "ph:user-switch-duotone" + | "ph:user-switch-fill" + | "ph:user-switch-light" + | "ph:user-switch-thin" + | "ph:user-thin" + | "ph:users" + | "ph:users-bold" + | "ph:users-duotone" + | "ph:users-fill" + | "ph:users-four" + | "ph:users-four-bold" + | "ph:users-four-duotone" + | "ph:users-four-fill" + | "ph:users-four-light" + | "ph:users-four-thin" + | "ph:users-light" + | "ph:users-thin" + | "ph:users-three" + | "ph:users-three-bold" + | "ph:users-three-duotone" + | "ph:users-three-fill" + | "ph:users-three-light" + | "ph:users-three-thin" + | "ph:van" + | "ph:van-bold" + | "ph:van-duotone" + | "ph:van-fill" + | "ph:van-light" + | "ph:van-thin" + | "ph:vault" + | "ph:vault-bold" + | "ph:vault-duotone" + | "ph:vault-fill" + | "ph:vault-light" + | "ph:vault-thin" + | "ph:vector-three" + | "ph:vector-three-bold" + | "ph:vector-three-duotone" + | "ph:vector-three-fill" + | "ph:vector-three-light" + | "ph:vector-three-thin" + | "ph:vector-two" + | "ph:vector-two-bold" + | "ph:vector-two-duotone" + | "ph:vector-two-fill" + | "ph:vector-two-light" + | "ph:vector-two-thin" + | "ph:vibrate" + | "ph:vibrate-bold" + | "ph:vibrate-duotone" + | "ph:vibrate-fill" + | "ph:vibrate-light" + | "ph:vibrate-thin" + | "ph:video" + | "ph:video-bold" + | "ph:video-camera" + | "ph:video-camera-bold" + | "ph:video-camera-duotone" + | "ph:video-camera-fill" + | "ph:video-camera-light" + | "ph:video-camera-slash" + | "ph:video-camera-slash-bold" + | "ph:video-camera-slash-duotone" + | "ph:video-camera-slash-fill" + | "ph:video-camera-slash-light" + | "ph:video-camera-slash-thin" + | "ph:video-camera-thin" + | "ph:video-conference" + | "ph:video-conference-bold" + | "ph:video-conference-duotone" + | "ph:video-conference-fill" + | "ph:video-conference-light" + | "ph:video-conference-thin" + | "ph:video-duotone" + | "ph:video-fill" + | "ph:video-light" + | "ph:video-thin" + | "ph:vignette" + | "ph:vignette-bold" + | "ph:vignette-duotone" + | "ph:vignette-fill" + | "ph:vignette-light" + | "ph:vignette-thin" + | "ph:vinyl-record" + | "ph:vinyl-record-bold" + | "ph:vinyl-record-duotone" + | "ph:vinyl-record-fill" + | "ph:vinyl-record-light" + | "ph:vinyl-record-thin" + | "ph:virtual-reality" + | "ph:virtual-reality-bold" + | "ph:virtual-reality-duotone" + | "ph:virtual-reality-fill" + | "ph:virtual-reality-light" + | "ph:virtual-reality-thin" + | "ph:virus" + | "ph:virus-bold" + | "ph:virus-duotone" + | "ph:virus-fill" + | "ph:virus-light" + | "ph:virus-thin" + | "ph:visor" + | "ph:visor-bold" + | "ph:visor-duotone" + | "ph:visor-fill" + | "ph:visor-light" + | "ph:visor-thin" + | "ph:voicemail" + | "ph:voicemail-bold" + | "ph:voicemail-duotone" + | "ph:voicemail-fill" + | "ph:voicemail-light" + | "ph:voicemail-thin" + | "ph:volleyball" + | "ph:volleyball-bold" + | "ph:volleyball-duotone" + | "ph:volleyball-fill" + | "ph:volleyball-light" + | "ph:volleyball-thin" + | "ph:wall" + | "ph:wall-bold" + | "ph:wall-duotone" + | "ph:wall-fill" + | "ph:wall-light" + | "ph:wall-thin" + | "ph:wallet" + | "ph:wallet-bold" + | "ph:wallet-duotone" + | "ph:wallet-fill" + | "ph:wallet-light" + | "ph:wallet-thin" + | "ph:warehouse" + | "ph:warehouse-bold" + | "ph:warehouse-duotone" + | "ph:warehouse-fill" + | "ph:warehouse-light" + | "ph:warehouse-thin" + | "ph:warning" + | "ph:warning-bold" + | "ph:warning-circle" + | "ph:warning-circle-bold" + | "ph:warning-circle-duotone" + | "ph:warning-circle-fill" + | "ph:warning-circle-light" + | "ph:warning-circle-thin" + | "ph:warning-diamond" + | "ph:warning-diamond-bold" + | "ph:warning-diamond-duotone" + | "ph:warning-diamond-fill" + | "ph:warning-diamond-light" + | "ph:warning-diamond-thin" + | "ph:warning-duotone" + | "ph:warning-fill" + | "ph:warning-light" + | "ph:warning-octagon" + | "ph:warning-octagon-bold" + | "ph:warning-octagon-duotone" + | "ph:warning-octagon-fill" + | "ph:warning-octagon-light" + | "ph:warning-octagon-thin" + | "ph:warning-thin" + | "ph:washing-machine" + | "ph:washing-machine-bold" + | "ph:washing-machine-duotone" + | "ph:washing-machine-fill" + | "ph:washing-machine-light" + | "ph:washing-machine-thin" + | "ph:watch" + | "ph:watch-bold" + | "ph:watch-duotone" + | "ph:watch-fill" + | "ph:watch-light" + | "ph:watch-thin" + | "ph:wave-sawtooth" + | "ph:wave-sawtooth-bold" + | "ph:wave-sawtooth-duotone" + | "ph:wave-sawtooth-fill" + | "ph:wave-sawtooth-light" + | "ph:wave-sawtooth-thin" + | "ph:wave-sine" + | "ph:wave-sine-bold" + | "ph:wave-sine-duotone" + | "ph:wave-sine-fill" + | "ph:wave-sine-light" + | "ph:wave-sine-thin" + | "ph:wave-square" + | "ph:wave-square-bold" + | "ph:wave-square-duotone" + | "ph:wave-square-fill" + | "ph:wave-square-light" + | "ph:wave-square-thin" + | "ph:wave-triangle" + | "ph:wave-triangle-bold" + | "ph:wave-triangle-duotone" + | "ph:wave-triangle-fill" + | "ph:wave-triangle-light" + | "ph:wave-triangle-thin" + | "ph:waveform" + | "ph:waveform-bold" + | "ph:waveform-duotone" + | "ph:waveform-fill" + | "ph:waveform-light" + | "ph:waveform-slash" + | "ph:waveform-slash-bold" + | "ph:waveform-slash-duotone" + | "ph:waveform-slash-fill" + | "ph:waveform-slash-light" + | "ph:waveform-slash-thin" + | "ph:waveform-thin" + | "ph:waves" + | "ph:waves-bold" + | "ph:waves-duotone" + | "ph:waves-fill" + | "ph:waves-light" + | "ph:waves-thin" + | "ph:webcam" + | "ph:webcam-bold" + | "ph:webcam-duotone" + | "ph:webcam-fill" + | "ph:webcam-light" + | "ph:webcam-slash" + | "ph:webcam-slash-bold" + | "ph:webcam-slash-duotone" + | "ph:webcam-slash-fill" + | "ph:webcam-slash-light" + | "ph:webcam-slash-thin" + | "ph:webcam-thin" + | "ph:webhooks-logo" + | "ph:webhooks-logo-bold" + | "ph:webhooks-logo-duotone" + | "ph:webhooks-logo-fill" + | "ph:webhooks-logo-light" + | "ph:webhooks-logo-thin" + | "ph:wechat-logo" + | "ph:wechat-logo-bold" + | "ph:wechat-logo-duotone" + | "ph:wechat-logo-fill" + | "ph:wechat-logo-light" + | "ph:wechat-logo-thin" + | "ph:whatsapp-logo" + | "ph:whatsapp-logo-bold" + | "ph:whatsapp-logo-duotone" + | "ph:whatsapp-logo-fill" + | "ph:whatsapp-logo-light" + | "ph:whatsapp-logo-thin" + | "ph:wheelchair" + | "ph:wheelchair-bold" + | "ph:wheelchair-duotone" + | "ph:wheelchair-fill" + | "ph:wheelchair-light" + | "ph:wheelchair-motion" + | "ph:wheelchair-motion-bold" + | "ph:wheelchair-motion-duotone" + | "ph:wheelchair-motion-fill" + | "ph:wheelchair-motion-light" + | "ph:wheelchair-motion-thin" + | "ph:wheelchair-thin" + | "ph:wifi-high" + | "ph:wifi-high-bold" + | "ph:wifi-high-duotone" + | "ph:wifi-high-fill" + | "ph:wifi-high-light" + | "ph:wifi-high-thin" + | "ph:wifi-low" + | "ph:wifi-low-bold" + | "ph:wifi-low-duotone" + | "ph:wifi-low-fill" + | "ph:wifi-low-light" + | "ph:wifi-low-thin" + | "ph:wifi-medium" + | "ph:wifi-medium-bold" + | "ph:wifi-medium-duotone" + | "ph:wifi-medium-fill" + | "ph:wifi-medium-light" + | "ph:wifi-medium-thin" + | "ph:wifi-none" + | "ph:wifi-none-bold" + | "ph:wifi-none-duotone" + | "ph:wifi-none-fill" + | "ph:wifi-none-light" + | "ph:wifi-none-thin" + | "ph:wifi-slash" + | "ph:wifi-slash-bold" + | "ph:wifi-slash-duotone" + | "ph:wifi-slash-fill" + | "ph:wifi-slash-light" + | "ph:wifi-slash-thin" + | "ph:wifi-x" + | "ph:wifi-x-bold" + | "ph:wifi-x-duotone" + | "ph:wifi-x-fill" + | "ph:wifi-x-light" + | "ph:wifi-x-thin" + | "ph:wind" + | "ph:wind-bold" + | "ph:wind-duotone" + | "ph:wind-fill" + | "ph:wind-light" + | "ph:wind-thin" + | "ph:windmill" + | "ph:windmill-bold" + | "ph:windmill-duotone" + | "ph:windmill-fill" + | "ph:windmill-light" + | "ph:windmill-thin" + | "ph:windows-logo" + | "ph:windows-logo-bold" + | "ph:windows-logo-duotone" + | "ph:windows-logo-fill" + | "ph:windows-logo-light" + | "ph:windows-logo-thin" + | "ph:wine" + | "ph:wine-bold" + | "ph:wine-duotone" + | "ph:wine-fill" + | "ph:wine-light" + | "ph:wine-thin" + | "ph:wrench" + | "ph:wrench-bold" + | "ph:wrench-duotone" + | "ph:wrench-fill" + | "ph:wrench-light" + | "ph:wrench-thin" + | "ph:x" + | "ph:x-bold" + | "ph:x-circle" + | "ph:x-circle-bold" + | "ph:x-circle-duotone" + | "ph:x-circle-fill" + | "ph:x-circle-light" + | "ph:x-circle-thin" + | "ph:x-duotone" + | "ph:x-fill" + | "ph:x-light" + | "ph:x-logo" + | "ph:x-logo-bold" + | "ph:x-logo-duotone" + | "ph:x-logo-fill" + | "ph:x-logo-light" + | "ph:x-logo-thin" + | "ph:x-square" + | "ph:x-square-bold" + | "ph:x-square-duotone" + | "ph:x-square-fill" + | "ph:x-square-light" + | "ph:x-square-thin" + | "ph:x-thin" + | "ph:yarn" + | "ph:yarn-bold" + | "ph:yarn-duotone" + | "ph:yarn-fill" + | "ph:yarn-light" + | "ph:yarn-thin" + | "ph:yin-yang" + | "ph:yin-yang-bold" + | "ph:yin-yang-duotone" + | "ph:yin-yang-fill" + | "ph:yin-yang-light" + | "ph:yin-yang-thin" + | "ph:youtube-logo" + | "ph:youtube-logo-bold" + | "ph:youtube-logo-duotone" + | "ph:youtube-logo-fill" + | "ph:youtube-logo-light" + | "ph:youtube-logo-thin"; +} diff --git a/.astro/settings.json b/.astro/settings.json new file mode 100644 index 0000000..f4ba46c --- /dev/null +++ b/.astro/settings.json @@ -0,0 +1,5 @@ +{ + "_variables": { + "lastUpdateCheck": 1736496310589 + } +} \ No newline at end of file diff --git a/.astro/types.d.ts b/.astro/types.d.ts new file mode 100644 index 0000000..24a12e7 --- /dev/null +++ b/.astro/types.d.ts @@ -0,0 +1,3 @@ +/// +/// +/// \ No newline at end of file diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..6a8d06b --- /dev/null +++ b/config.toml @@ -0,0 +1,23 @@ +[marketplace] +enabled = true # Turn on or off the marketplace entirely +psk = "CHANGEME" # Change this to something more secure. +level = 1 + +[db] +name = "database" # Your databsae name +username = "username" # The username of your DB (SQLITE just ignores this) +password = "password" # The password to your DB (SQLITE ignores this) +postgres = false # Enable to use postgres over sqlite (recommended for large prod instances) + +[postgres] # Set the "domain" to either and ip address or a actual domain +domain = "" +port = 5432 + +[seo] +enabled = true # Disabled by default as you probably don't want it +domain = "http://localhost:4321" # Set to YOUR domain. Make sure to include http or https:// + +[server.server] +port = 8080 +wisp = true +logging = false # Disable for the tons & tons of logs to go away (useful for debugging but otherwise eh) diff --git a/database.sqlite b/database.sqlite new file mode 100644 index 0000000..313eb4c Binary files /dev/null and b/database.sqlite differ diff --git a/database_assets/com.nebula.gruvbox/gruvbox.jpg b/database_assets/com.nebula.gruvbox/gruvbox.jpg new file mode 100644 index 0000000..3d79448 Binary files /dev/null and b/database_assets/com.nebula.gruvbox/gruvbox.jpg differ diff --git a/database_assets/gyatt/gyatt.js b/database_assets/gyatt/gyatt.js new file mode 100644 index 0000000..e69de29 diff --git a/server/config.js b/server/config.js new file mode 100644 index 0000000..aa9f340 --- /dev/null +++ b/server/config.js @@ -0,0 +1,55 @@ +import { readFileSync } from "node:fs"; +import { fileURLToPath } from "node:url"; +import chalk from "chalk"; +import { parse } from "smol-toml"; +let doc = readFileSync(fileURLToPath(new URL("../config.toml", import.meta.url))).toString(); +const parsedDoc = parse(doc); +function verify(t) { + for (let i = 0; i !== t.length; i++) { + if (typeof t[i].typeOF !== t[i].type) { + throw new Error(`Invalid structure: "${t[i].name}" should be a(n) ${t[i].type}`); + } + if (t[i].verifyExtras) { + const extra = t[i].verifyExtras(); + if (extra !== true) { + throw extra; + } + } + } +} +verify([ + { name: "marketplace", typeOF: parsedDoc.marketplace, type: "object" }, + { name: "marketplace.enabled", typeOF: parsedDoc.marketplace.enabled, type: "boolean" }, + { name: "marketplace.psk", typeOF: parsedDoc.marketplace.psk, type: "string" }, + { name: "server", typeOF: parsedDoc.server, type: "object" }, + { name: "server.server", typeOF: parsedDoc.server.server, type: "object" }, + { name: "server.server.port", typeOF: parsedDoc.server.server.port, type: "number" }, + { name: "server.server.wisp", typeOF: parsedDoc.server.server.wisp, type: "boolean" }, + { name: "server.server.logging", typeOF: parsedDoc.server.server.logging, type: "boolean" }, + { name: "seo", typeOF: parsedDoc.seo, type: "object" }, + { name: "seo.enabled", typeOF: parsedDoc.seo.enabled, type: "boolean" }, + { name: "seo.domain", typeOF: parsedDoc.seo.domain, type: "string", verifyExtras: () => { + try { + new URL(parsedDoc.seo.domain); + } + catch (e) { + return Error(e); + } + return true; + } }, + { name: "db", typeOF: parsedDoc.db, type: "object" }, + { name: "db.name", typeOF: parsedDoc.db.name, type: "string" }, + { name: "db.username", typeOF: parsedDoc.db.username, type: "string" }, + { name: "db.password", typeOF: parsedDoc.db.password, type: "string" }, + { name: "db.postgres", typeOF: parsedDoc.db.postgres, type: "boolean" }, + { name: "postgres", typeOF: parsedDoc.postgres, type: "object" }, + { name: "postgres.domain", typeOF: parsedDoc.postgres.domain, type: "string" }, + { name: "postgres.port", typeOF: parsedDoc.postgres.port, type: "number" } +]); +if (parsedDoc.marketplace.psk === "CHANGEME") { + console.warn(chalk.yellow.bold('PSK should be changed from "CHANGEME"')); +} +if (parsedDoc.db.password === "password") { + console.warn(chalk.red.bold("You should change your DB password!!")); +} +export { parsedDoc }; diff --git a/server/dbSetup.js b/server/dbSetup.js new file mode 100644 index 0000000..0b80b1e --- /dev/null +++ b/server/dbSetup.js @@ -0,0 +1,87 @@ +import chalk from "chalk"; +import ora from "ora"; +async function installItems(db, items) { + items.forEach(async (item) => { + await db.create({ + package_name: item.package_name, + title: item.title, + image: item.image, + author: item.author, + version: item.version, + description: item.description, + tags: item.tags, + payload: item.payload, + background_video: item.background_video, + background_image: item.background_image, + type: item.type + }); + }); +} +async function setupDB(db) { + //We have some packages that need to be installed if they aren't. + const items = [ + { + package_name: "com.nebula.gruvbox", + title: "Gruvbox", + image: "gruvbox.jpg", + author: "Nebula Services", + version: "1.0.0", + description: "The gruvbox theme", + tags: ["Theme", "Simple"], + payload: "gruvbox.css", + type: "theme" + }, + { + package_name: "com.nebula.oled", + title: "Oled theme", + image: "oled.jpg", + author: "Nebula Services", + version: "1.0.0", + description: "A sleek & simple Oled theme for Nebula", + tags: ["Theme", "Simple", "Sleek"], + payload: "oled.css", + type: "theme" + }, + { + package_name: "com.nebula.lightTheme", + title: "Light Theme", + image: "light.png", + author: "Nebula Services", + version: "1.0.0", + description: "A sleek light theme for Nebula", + tags: ["Theme", "Simple", "Light"], + payload: "light.css", + type: "theme" + }, + { + package_name: "com.nebula.retro", + title: "Retro Theme", + image: "retro.png", + author: "Nebula Services", + version: "1.0.0", + description: "Give a retro look to Nebula", + tags: ["Theme", "Simple", "Dark", "Retro"], + payload: "retro.css", + type: "theme" + }, + { + package_name: 'gyatt', + title: 'gyatt', + image: 'gyatt', + author: "nebuka", + version: "2", + description: "e", + tags: ["e"], + payload: "gyatt.js", + type: "plugin-page" + } + //To add plugins: plugin types consist of plugin-sw (workerware) & plugin-page (uv.config.inject) + ]; + const dbItems = await db.findAll(); + if (dbItems.length === 0) { + const spinner = ora(chalk.hex("#7967dd")("Performing DB setup...")).start(); + await installItems(db, items); + spinner.succeed(chalk.hex("#eb6f92")("DB setup complete!")); + } +} +export { setupDB }; diff --git a/server/marketplace.js b/server/marketplace.js new file mode 100644 index 0000000..0160c44 --- /dev/null +++ b/server/marketplace.js @@ -0,0 +1,169 @@ +import { createWriteStream } from "node:fs"; +import { constants, access, mkdir } from "node:fs/promises"; +import { pipeline } from "node:stream/promises"; +import { fileURLToPath } from "node:url"; +import { DataTypes, Sequelize } from "sequelize"; +import { parsedDoc } from "./config.js"; +const db = new Sequelize(parsedDoc.db.name, parsedDoc.db.username, parsedDoc.db.password, { + host: parsedDoc.db.postgres ? `${parsedDoc.postgres.domain}` : "localhost", + port: parsedDoc.db.postgres ? parsedDoc.postgres.port : undefined, + dialect: parsedDoc.db.postgres ? "postgres" : "sqlite", + logging: parsedDoc.server.server.logging, + storage: "database.sqlite" //this is sqlite only +}); +const catalogAssets = db.define("catalog_assets", { + package_name: { type: DataTypes.STRING, unique: true }, + title: { type: DataTypes.TEXT }, + description: { type: DataTypes.TEXT }, + author: { type: DataTypes.TEXT }, + image: { type: DataTypes.TEXT }, + tags: { type: DataTypes.JSON, allowNull: true }, + version: { type: DataTypes.TEXT }, + background_image: { type: DataTypes.TEXT, allowNull: true }, + background_video: { type: DataTypes.TEXT, allowNull: true }, + payload: { type: DataTypes.TEXT }, + type: { type: DataTypes.TEXT } +}); +function marketplaceAPI(app) { + app.get("/api/catalog-stats/", (request, reply) => { + reply.send({ + version: "1.0.0", + spec: "Nebula Services", + enabled: true + }); + }); + app.get("/api/catalog-assets/", async (request, reply) => { + try { + const { page } = request.query; + const pageNum = parseInt(page, 10) || 1; + if (pageNum < 1) { + reply.status(400).send({ error: "Page must be a positive number!" }); + } + const offset = (pageNum - 1) * 20; + const totalItems = await catalogAssets.count(); + const dbAssets = await catalogAssets.findAll({ offset: offset, limit: 20 }); + const assets = dbAssets.reduce((acc, asset) => { + acc[asset.package_name] = { + title: asset.title, + description: asset.description, + author: asset.author, + image: asset.image, + tags: asset.tags, + version: asset.version, + background_image: asset.background_image, + background_video: asset.background_video, + payload: asset.payload, + type: asset.type + }; + return acc; + }, {}); + return reply.send({ assets, pages: Math.ceil(totalItems / 20) }); + } + catch (error) { + return reply.status(500).send({ error: "An error occured" }); + } + }); + app.get("/api/packages/:package", async (request, reply) => { + try { + const packageRow = await catalogAssets.findOne({ + where: { package_name: request.params.package } + }); + if (!packageRow) + return reply.status(404).send({ error: "Package not found!" }); + const details = { + title: packageRow.get("title"), + description: packageRow.get("description"), + image: packageRow.get("image"), + author: packageRow.get("author"), + tags: packageRow.get("tags"), + version: packageRow.get("version"), + background_image: packageRow.get("background_image"), + background_video: packageRow.get("background_video"), + payload: packageRow.get("payload"), + type: packageRow.get("type") + }; + reply.send(details); + } + catch (error) { + reply.status(500).send({ error: "An unexpected error occured" }); + } + }); + async function verifyReq(request, upload, data) { + if (request.headers.psk !== parsedDoc.marketplace.psk) { + return { status: 403, error: new Error("PSK isn't correct!") }; + } + else if (upload && !request.headers.packagename) { + return { status: 500, error: new Error("No packagename defined!") }; + } + else if (upload && !data) { + return { status: 400, error: new Error("No file uploaded!") }; + } + else { + return { status: 200 }; + } + } + app.post("/api/upload-asset", async (request, reply) => { + const data = await request.file(); + const verify = await verifyReq(request, true, data); + if (verify.error !== undefined) { + reply.status(verify.status).send({ status: verify.error.message }); + } + else { + try { + await pipeline(data.file, createWriteStream(fileURLToPath(new URL(`../database_assets/${request.headers.packagename}/${data.filename}`, import.meta.url)))); + } + catch (error) { + return reply.status(500).send({ + status: `File couldn't be uploaded! (Package most likely doesn't exist)` + }); + } + return reply.status(verify.status).send({ status: "File uploaded successfully!" }); + } + }); + app.post("/api/create-package", async (request, reply) => { + const verify = await verifyReq(request, false, undefined); + if (verify.error !== undefined) { + reply.status(verify.status).send({ status: verify.error.message }); + } + else { + const body = { + package_name: request.body.uuid, + title: request.body.title, + image: request.body.image, + author: request.body.author, + version: request.body.version, + description: request.body.description, + tags: request.body.tags, + payload: request.body.payload, + background_video: request.body.background_video, + background_image: request.body.background_image, + type: request.body.type + }; + await catalogAssets.create({ + package_name: body.package_name, + title: body.title, + image: body.image, + author: body.author, + version: body.version, + description: body.description, + tags: body.tags, + payload: body.payload, + background_video: body.background_video, + background_image: body.background_image, + type: body.type + }); + const assets = fileURLToPath(new URL("../database_assets", import.meta.url)); + try { + await access(`${assets}/${body.package_name}/`, constants.F_OK); + return reply.status(500).send({ status: "Package already exists!" }); + } + catch (err) { + await mkdir(`${assets}/${body.package_name}/`); + return reply + .status(verify.status) + .send({ status: "Package created successfully!" }); + } + } + }); +} +export { marketplaceAPI, db, catalogAssets }; diff --git a/server/server.js b/server/server.js new file mode 100644 index 0000000..ed2310e --- /dev/null +++ b/server/server.js @@ -0,0 +1,71 @@ +import { fileURLToPath } from "node:url"; +import fastifyCompress from "@fastify/compress"; +import fastifyHelmet from "@fastify/helmet"; +import fastifyMiddie from "@fastify/middie"; +import fastifyMultipart from "@fastify/multipart"; +import fastifyStatic from "@fastify/static"; +import chalk from "chalk"; +import Fastify from "fastify"; +import gradient from "gradient-string"; +//@ts-ignore WHY would I want this typechecked AT ALL +import { handler as ssrHandler } from "../dist/server/entry.mjs"; +import { parsedDoc } from "./config.js"; +import { setupDB } from "./dbSetup.js"; +import { catalogAssets, marketplaceAPI } from "./marketplace.js"; +import { serverFactory } from "./serverFactory.js"; +const app = Fastify({ + logger: parsedDoc.server.server.logging, + ignoreDuplicateSlashes: true, + ignoreTrailingSlash: true, + serverFactory: serverFactory +}); +await app.register(fastifyCompress, { + encodings: ["br", "gzip", "deflate"] +}); +await app.register(fastifyMultipart, { + limits: { + fileSize: 25 * 1024 * 1024, + parts: Infinity + }, +}); +await app.register(fastifyHelmet, { + xPoweredBy: false, + crossOriginEmbedderPolicy: true, + crossOriginOpenerPolicy: true, + contentSecurityPolicy: false //Disabled because astro DOES NOT LIKE IT +}); +await app.register(fastifyStatic, { + root: fileURLToPath(new URL("../dist/client", import.meta.url)) +}); +//Our marketplace API. Not middleware as I don't want to deal with that LOL. Just a function that passes our app to it. +if (parsedDoc.marketplace.enabled) { + await app.register(fastifyStatic, { + root: fileURLToPath(new URL("../database_assets", import.meta.url)), + prefix: "/packages/", + decorateReply: false + }); + marketplaceAPI(app); +} +await app.register(fastifyMiddie); +app.use(ssrHandler); +const port = parseInt(process.env.PORT) || parsedDoc.server.server.port || parseInt("8080"); +const titleText = ` + _ _ _ _ ____ _ +| \\ | | ___| |__ _ _| | __ _ / ___| ___ _ ____ _(_) ___ ___ ___ +| \\| |/ _ \\ '_ \\| | | | |/ _' | \\___ \\ / _ \\ '__\\ \\ / / |/ __/ _ \\/ __| +| |\\ | __/ |_) | |_| | | (_| | ___) | __/ | \\ V /| | (_| __/\\__ \\ +|_| \\_|\\___|_.__/ \\__,_|_|\\__,_| |____/ \\___|_| \\_/ |_|\\___\\___||___/ +`; +const titleColors = { + purple: "#7967dd", + pink: "#eb6f92" +}; +console.log(gradient(Object.values(titleColors)).multiline(titleText)); +app.listen({ port: port, host: "0.0.0.0" }).then(async () => { + console.log(chalk.hex("#7967dd")(`Server listening on ${chalk.hex("#eb6f92").bold("http://localhost:" + port + "/")}`)); + console.log(chalk.hex("#7967dd")(`Server also listening on ${chalk.hex("#eb6f92").bold("http://0.0.0.0:" + port + "/")}`)); + if (parsedDoc.marketplace.enabled) { + await catalogAssets.sync(); + await setupDB(catalogAssets); + } +}); diff --git a/server/serverFactory.js b/server/serverFactory.js new file mode 100644 index 0000000..1471641 --- /dev/null +++ b/server/serverFactory.js @@ -0,0 +1,23 @@ +import { createServer } from "node:http"; +import wisp from "wisp-server-node"; +import { LOG_LEVEL } from "wisp-server-node/dist/Types.js"; +import { parsedDoc } from "./config.js"; +const wispOptions = { + logLevel: parsedDoc.server.server.logging ? LOG_LEVEL.DEBUG : LOG_LEVEL.NONE, + pingInterval: 30 +}; +const serverFactory = (handler) => { + const httpServer = createServer(); + httpServer.on("request", (req, res) => { + handler(req, res); + }); + httpServer.on("upgrade", (req, socket, head) => { + if (parsedDoc.server.server.wisp) { + if (req.url?.endsWith("/wisp/")) { + wisp.routeRequest(req, socket, head, wispOptions); + } + } + }); + return httpServer; +}; +export { serverFactory };