Font Awesome 6 Solid

Browse 1402 free Font Awesome 6 Solid SVG icons. Download SVG, copy as JSX, PNG or Base64. CC BY 4.0 licensed. Designed by Dave Gandy. Styles: Precise Shapes.

1402 icons • Archive / Unmaintained • 32px

+F

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.

Created By

Dave Gandy Visit Website

License

CC BY 4.0 View License

Features & Tags

Precise Shapes

Pack Details

Version

6.7.2

v6.7.2

Color Support

Monochrome

Category

Archive / Unmaintained

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

bash
npm install @fortawesome/react-fontawesome @fortawesome/free-solid-svg-icons

React

tsx
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

html
<!-- 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

tsx
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 Mar 26, 2026

@fortawesome/react-fontawesome

Official React component for Font Awesome

v3.3.0
Score 66%
Popularity 49%
Quality 85%
Maintenance 67%

License

MIT

Weekly downloads

1.8M

Monthly downloads

7.8M

Total downloads

100.7M

Unpacked size

100 KB

Last published

Mar 20, 2026

Registry updated

Mar 20, 2026

@fortawesome/free-solid-svg-icons

The iconic font, CSS, and SVG framework

v7.2.0
Score 66%
Popularity 68%
Quality 62%
Maintenance 66%

License

(CC-BY-4.0 AND MIT)

Weekly downloads

2.5M

Monthly downloads

11M

Total downloads

145.9M

Unpacked size

4.9 MB

Last published

Feb 10, 2026

Registry updated

Feb 10, 2026

Compare Font Awesome 6 Solid with similar icon packs

Frequently Asked Questions

The solid, regular, and brands sets in Font Awesome 6 are free under CC BY 4.0. Font Awesome Pro adds Thin, Light, Sharp, and Duotone styles as a paid product.

FA6 redesigned icons for consistency, added Thin and Sharp weights, expanded the set, and improved the SVG package. Some icon names changed — consult the official migration guide.

Install 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";.