72486d8ba0bb57b610327c43002db8d78fe2031f
Phosphor Icons
Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really.
- 1,248 icons and counting
- 6 weights: Thin, Light, Regular, Bold, Fill, and Duotone
- Designed at 16 x 16px to read well small and scale up big
- Raw stroke information retained to fine-tune the style
More ways to use at phosphoricons.com.
For developers
Phosphor is available for web, React, Vue, Flutter, Elm, and other frameworks and platforms.
Vanilla Web
- Simple to use – We use a similar approach as many other icon sets out there, providing icons as a webfont that uses Unicode's Private Use Area character codes to map normally non-rendering characters to icons. But you don't need to know that. All you need to do is add the script to the document
<head>, and drop in icons with an<i/>tag and the appropriate class:
<!doctype html>
<html>
<head>
<script src="https://unpkg.com/@phosphor-icons/web@2.1.1"></script>
</head>
<body>
<i class="ph ph-smiley"></i>
<i class="ph-fill ph-heart" style="color: hotpink"></i>
<i class="ph-thin ph-cube"></i>
</body>
</html>
Check out the full documentation on the @phosphor-icons/web repo page.
React
- Powerful – Phosphor's intuitive but powerful API can style the
color,size, andweightof an icon with a few keystrokes, provide default styles to all icons via the Context API, or directly manipulate the SVG at runtime through render props to do some amazing things! Check out the full documentation on the @phosphor-icons/react repo page.
import React from "react";
import ReactDOM from "react-dom";
import { Smiley, Heart, Horse } from "@phosphor-icons/react";
const App = () => {
return (
<div>
<Smiley />
<Heart size={32} color="hotpink" weight="fill" />
<Horse weight="duotone" />
</div>
);
};
ReactDOM.render(<App />, document.getElementById("root"));
- Lightweight – Supports tree-shaking, so your bundle only includes code for the icons you use.
- Flexible – Icon Components are a transparent wrapper around SVG elements, so feel free to add your own inline
styleobjects,onClickhandler functions, and a multitude of other props you're used to using on SVGs.
Vue
- Parity – As with React, you can manipulate the
color,size, andweightof an icon with a few keystrokes, or provide default styles to all icons via theprovide/injectAPI. It is fully tree-shakable and ready to use right away. Check out the full documentation on the @phosphor-icons/vue repo page.
<template>
<div>
<PhHorse />
<PhHeart :size="32" color="hotpink" weight="fill" />
<PhCube />
</div>
</template>
<script>
import { PhHorse, PhHeart, PhCube } from "@phosphor-icons/vue";
export default {
name: "App",
components: {
PhHorse,
PhHeart,
PhCube,
},
};
</script>
Note
Due to possible namespace collisions with built-in HTML elements, compononent names in the Vue library are prefixed with
Ph, but otherwise follow the same naming conventions. Both Pascal and kebab-case conventions can be used in templates.
Our Projects
- @phosphor-icons/homepage ▲ Phosphor homepage and general info
- @phosphor-icons/core ▲ Phosphor icon assets and catalog
- @phosphor-icons/elm ▲ Phosphor icons for Elm
- @phosphor-icons/figma ▲ Phosphor icons Figma plugin
- @phosphor-icons/flutter ▲ Phosphor IconData library for Flutter
- @phosphor-icons/pack ▲ Phosphor web font stripper to generate minimal icon bundles
- @phosphor-icons/penpot ▲ Phosphor icons Penpot plugin
- @phosphor-icons/react ▲ Phosphor icon component library for React
- @phosphor-icons/sketch ▲ Phosphor icons Sketch plugin
- @phosphor-icons/swift ▲ Phosphor icon component library for SwiftUI
- @phosphor-icons/theme ▲ A VS Code (and other IDE) theme with the Phosphor color palette
- @phosphor-icons/unplugin ▲ A framework-agnostic bundler plugin for generating Phosphor scripte sheets in web apps
- @phosphor-icons/vue ▲ Phosphor icon component library for Vue
- @phosphor-icons/web ▲ Phosphor icons for Vanilla JS
- @phosphor-icons/webcomponents ▲ Phosphor icons as Web Components
Community Projects
- blade-phosphor-icons ▲ Phosphor icons in your Laravel Blade views
- compose-phosphor-icons ▲ Phosphor icons for Compose Multiplatform
- eleventy-plugin-phosphoricons ▲ An Eleventy plugin for add shortcode, allows Phosphor icons to be embedded as inline svg into templates
- ember-phosphor-icons ▲ Phosphor icons for Ember apps
- phosphor-css ▲ CSS wrapper for Phosphor SVG icons
- phosphor-icons-tailwindcss ▲ TailwindCSS plugin for Phosphor icons
- phosphor-leptos ▲ Phosphor icon component library for Leptos apps (rust)
- phosphor-r ▲ Phosphor icon wrapper for R documents and applications
- phosphor-react-native ▲ Phosphor icon component library for React Native
- phosphor-svelte ▲ Phosphor icons for Svelte apps
- phosphor-uikit ▲ Xcode asset catalog generator for Swift/UIKit
- ruby-phosphor-icons ▲ Phosphor icons for Ruby and Rails applications
- wireui/phosphoricons ▲ Phosphor icons for Laravel
- wordpress-phosphor-icons-block ▲ Phosphor icon block for use in WordPress v5.8+
If you've made a port of Phosphor and you want to see it here, just open a PR here!
License
MIT © Phosphor Icons
Languages
TypeScript
81.3%
CSS
16.1%
HTML
2.6%