Font Awesome 6 Solid Icons
Get any Font Awesome 6 Solid icon as a standalone SVG, no kit or CDN setup. Search the full free set, copy SVG or JSX, download PNG.
Accessibility
audio-description
braille
closed-captioning
phone-volume
tty
universal-access
wheelchair
Accessibility
audio-description
braille
closed-captioning
phone-volume
tty
universal-access
wheelchair
Copy & download Font Awesome 6 Solid icons
Click any icon above to open the detail panel. Four export formats are available instantly, no sign-up required.
Raw vector markup. Paste directly into HTML or React components. Scales to any size without quality loss.
React-ready component. Drop into any React or Next.js project. Works with shadcn/ui, Radix, and Tailwind CSS.
Raster export at 1×, 2× and 3× for email templates, Figma imports, app assets, and Open Graph images.
Inline data URI, embed icons in CSS background-image, email HTML, or anywhere an image URL is needed.
Works with shadcn/ui
Copy the JSX format and paste directly into any shadcn/ui component. Alternatively, install
@fortawesome/react-fontawesome
and use via @iconify/react,
fully tree-shakeable, no icon font loading required.
About Font Awesome 6 Solid
Font Awesome is the world's most-used icon toolkit, deployed on more websites than any other icon library. Font Awesome 6 Free includes three styles (Solid, Regular, and Brands) with 2,000+ icons under a CC BY 4.0 license (free for all uses, attribution required for free tier). Font Awesome 6 redesigned icons for cross-style consistency, added Thin and Sharp weights (Pro tier), and cleaned up naming conventions from version 5. The @fortawesome/react-fontawesome package provides a React component wrapper; vanilla JS and CDN options cover HTML-first projects. Browse Font Awesome SVG icons here, copy SVG paths, export as JSX components, or download as PNG. FA6 vs Lucide for new projects: Font Awesome's ecosystem is larger and more familiar to WordPress and HTML developers, while Lucide ships a smaller modern set without attribution requirements. Ideal for WordPress themes, HTML templates, email design, and projects where maximum developer familiarity is a priority.
Pack Details
Version
6.7.2
Color Support
Monochrome
Category
Archive / Unmaintained
In 1 collection
How to use Font Awesome 6 Solid icons
Icon Set Version
v6.7.2
Package
@fortawesome/react-fontawesome, @fortawesome/free-solid-svg-icons
License SPDX
CC-BY-4.0
Grid Size
32px
Display Size
16px
Sample Icons
location-pin, gem, folder
Install
npm install @fortawesome/react-fontawesome @fortawesome/free-solid-svg-icons React
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faMagnifyingGlass, faHome } from '@fortawesome/free-solid-svg-icons';
export default function App() {
return <FontAwesomeIcon icon={faMagnifyingGlass} />;
} HTML / CDN
<!-- CDN (all-in-one) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" />
<i class="fa-solid fa-magnifying-glass"></i> Via Iconify · any framework
import { Icon } from '@iconify/react';
export default function App() {
return <Icon icon="fa6-solid:icon-name" width={24} />;
} Package stats
Build-time npm metadata cached weekly • Last refresh Aug 13, 2026
@fortawesome/react-fontawesome
Official React component for Font Awesome
License
MIT
Weekly downloads
2.2M
Monthly downloads
8.8M
Total downloads
120.1M
Unpacked size
109 KB
Last published
Jul 20, 2026
Registry updated
Jul 20, 2026
@fortawesome/free-solid-svg-icons
The iconic font, CSS, and SVG framework
License
(CC-BY-4.0 AND MIT)
Weekly downloads
2.9M
Monthly downloads
11.7M
Total downloads
167.8M
Unpacked size
4.9 MB
Last published
Jul 15, 2026
Registry updated
Jul 15, 2026
Font Awesome 6 Solid version history
Based on the last 10 releases, Font Awesome 6 Solid typically ships a new version every ~5 weeks. The latest release, v3.5.0, landed on Jul 20, 2026.
| Version | Released |
|---|---|
| v3.5.0 | Jul 20, 2026 |
| v3.4.0 | Jul 8, 2026 |
| v3.3.1 | Apr 20, 2026 |
| v3.3.0 | Mar 20, 2026 |
| v3.2.0 | Feb 6, 2026 |
| v3.1.1 | Nov 28, 2025 |
| v3.1.0 | Oct 3, 2025 |
| v3.0.2 | Sep 1, 2025 |
| v3.0.1 | Aug 27, 2025 |
| v3.0.0 | Aug 22, 2025 |
| v0.2.6 | Aug 22, 2025 |
| v0.2.5 | Aug 19, 2025 |
| v0.2.3 | Jul 23, 2025 |
| v0.2.2 | May 22, 2024 |
| v0.2.1 | May 16, 2024 |
| v0.2.0 | Jun 29, 2022 |
| v0.1.19 | Jun 29, 2022 |
| v0.1.18 | Mar 16, 2022 |
| v0.1.17 | Jan 28, 2022 |
| v0.1.16 | Oct 18, 2021 |
Source: npm registry data for @fortawesome/react-fontawesome, refreshed weekly.
Compare Font Awesome 6 Solid with similar icon packs
Frequently Asked Questions
Is Font Awesome 6 free to use?
What's new in Font Awesome 6 vs 5?
How do I use Font Awesome 6 SVG icons in React?
npm install @fortawesome/react-fontawesome @fortawesome/free-solid-svg-icons, then: import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faSearch } from "@fortawesome/free-solid-svg-icons";.