This repository hosts the raw SVGs and catalog data – including tags, categories, and release versions – of all icons in the Phosphor Icons family. It serves as the basis for our fuzzy-search on our website and other tools, and as a dev dependency in the build process in some of our framework-specific libraries. You may find this package is useful to you in implementing a port of Phosphor to your preferred framework, or as a source of truth for our current SVG assets.
pnpm add @phosphor-icons/core
#^ or whatever package manager you use
This package exposes all icons as SVG assets, grouped by weight, under the /assets
directory (i.e. /assets/<weight>/<kebab-name>-<weight>.svg
), and also aliased so that /assets
can be omitted from the path in projects that support import maps. These files can be used as needed for custom implementations or ports. Your framework and build tooling may require custom type declarations to recognize and transform "*.svg"
files into modules.
import ghostDuotone from "@phosphor-icons/core/duotone/ghost-duotone.svg";
Using SVGR (includes create-react-app
projects):
import { ReactComponent as GhostDuotone } from "@phosphor-icons/core/duotone/ghost-duotone.svg";
This package exposes a named export icons
, which is an array of IconEntry
objects represententing each icon, its name in both kebab-case
and PascalCase
, the catergories and tags associated with it, as well as the version it was published in and the most recent version it was updated in.
It also includes an optional alias
field, which if present, contains deprecated names for the icon for backwards-compatibility purposes, and a codepoint
field, which is a stable decimal representation of its Unicode code point in font implementations such as @phosphor-icons/web and @phosphor-icons/flutter.
interface IconEntry {
name: string; // "cloud-lightning"
pascal_name: string; // "CloudLightning"
alias?: {
name: string;
pascal_name: string;
};
codepoint: number;
categories: readonly IconCategory[]; // ["weather"]
tags: readonly string[]; // ["*updated*", "meteorology", "cloudy", "overcast", "stormy", "thunderstorm"]
published_in: number; // 1.0
updated_in: number; // 1.4
}
Note
Duotone icons rely on overlaying two glyphs (a background and foreground layer), and thus use 2 codepoints. All codepoint bases are even numbers, so the codepoints associated with duotone icons are codepoint
and codepoint + 1
. The codepoint
feature is not yet stabilized, and should only be relied upon in versions >=2.1.0
.
An additional type export, PhosphorIcon
, represents the literal type of the icons
list. You can use it to extract narrowed types such as valid icon names, which can be useful for constraining parameter types in ports:
type IconName = PhosphorIcon["name"];
/* type IconName = "function" | "address-book" | "air-traffic-control" | "buildings" | "airplane" |
* "airplane-in-flight" | "airplane-landing" | "airplane-takeoff" | "airplane-tilt" |
* "airplay" | ... 1237 more ... | "youtube-logo"
*/
- @phosphor-icons/homepage ▲ Phosphor homepage and general info
- @phosphor-icons/core ▲ Phosphor icon assets and catalog
- @phosphor-icons/react ▲ Phosphor icon component library for React
- @phosphor-icons/web ▲ Phosphor icons for Vanilla JS
- @phosphor-icons/vue ▲ Phosphor icon component library for Vue
- @phosphor-icons/swift ▲ Phosphor icon component library for SwiftUI
- @phosphor-icons/elm ▲ Phosphor icons for Elm
- @phosphor-icons/flutter ▲ Phosphor IconData library for Flutter
- @phosphor-icons/webcomponents ▲ Phosphor icons as Web Components
- @phosphor-icons/figma ▲ Phosphor icons Figma plugin
- @phosphor-icons/sketch ▲ Phosphor icons Sketch plugin
- @phosphor-icons/pack ▲ Phosphor web font stripper to generate minimal icon bundles
- @phosphor-icons/theme ▲ A VS Code (and other IDE) theme with the Phosphor color palette
- phosphor-react-native ▲ Phosphor icon component library for React Native
- phosphor-svelte ▲ Phosphor icons for Svelte apps
- phosphor-r ▲ Phosphor icon wrapper for R documents and applications
- blade-phosphor-icons ▲ Phosphor icons in your Laravel Blade views
- wireui/phosphoricons ▲ Phosphor icons for Laravel
- phosphor-css ▲ CSS wrapper for Phosphor SVG icons
- ruby-phosphor-icons ▲ Phosphor icons for Ruby and Rails applications
- eleventy-plugin-phosphoricons ▲ An Eleventy plugin for add shortcode, allows Phosphor icons to be embedded as inline svg into templates
- phosphor-leptos ▲ Phosphor icon component library for Leptos apps (rust)
- wordpress-phosphor-icons-block ▲ Phosphor icon block for use in WordPress v5.8+
- ember-phosphor-icons ▲ Phosphor icons for Ember apps
If you've made a port of Phosphor and you want to see it here, just open a PR here!
MIT © Phosphor Icons