PHPackages                             filafly/filament-font-awesome-icons - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. filafly/filament-font-awesome-icons

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

filafly/filament-font-awesome-icons
===================================

Font Awesome icon pack for Filament Icons

v1.1.0(4mo ago)43.2k↑39.8%2[3 issues](https://github.com/filafly/filament-font-awesome-icons/issues)MITPHPPHP ^8.2

Since May 2Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/filafly/filament-font-awesome-icons)[ Packagist](https://packagist.org/packages/filafly/filament-font-awesome-icons)[ Docs](https://filafly.com/packages/filament-icons)[ RSS](/packages/filafly-filament-font-awesome-icons/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (4)Dependencies (4)Versions (9)Used By (0)

 [![Banner](images/filafly-filament-font-awesome-icons.png)](images/filafly-filament-font-awesome-icons.png)

Filament FontAwesome Icons
==========================

[](#filament-fontawesome-icons)

A Font Awesome icon set implementation for [Filament Icons](https://github.com/filafly/filament-icons), providing a comprehensive set of Font Awesome icons that seamlessly integrate with Filament's interface.

This package extends the base Filament Icons package to replace Filament's default Heroicons with Font Awesome icons.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require filafly/filament-font-awesome-icons
```

> **Note:** This package automatically installs the required `filafly/filament-icons` base package.

After the package is installed, you must register the plugin in your Filament Panel provider:

```
use Filafly\Icons\FontAwesomeIcons;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FontAwesomeIcons::make(),
        ]);
}
```

Icon Styles
-----------

[](#icon-styles)

Font Awesome icons come in multiple styles that you can switch between. Available styles include:

- Classic Solid (default)
- Classic Regular
- Classic Light
- Classic Thin
- Duotone Solid
- Sharp Solid
- Sharp Regular
- Sharp Light
- Sharp Thin
- Sharp Duotone Solid
- Brands

You can change the style using the following methods:

```
FontAwesomeIcons::make()->classicSolid(); // (default)
FontAwesomeIcons::make()->classicRegular();
FontAwesomeIcons::make()->classicLight();
FontAwesomeIcons::make()->classicThin();
FontAwesomeIcons::make()->duotoneSolid();
FontAwesomeIcons::make()->sharpSolid();
FontAwesomeIcons::make()->sharpRegular();
FontAwesomeIcons::make()->sharpLight();
FontAwesomeIcons::make()->sharpThin();
FontAwesomeIcons::make()->sharpDuotoneSolid();
FontAwesomeIcons::make()->brands();
```

Override Specific Icons
-----------------------

[](#override-specific-icons)

If you need to override certain icons to use a different style, you can use either icon aliases or direct icon names.

### Using Icon Aliases

[](#using-icon-aliases)

Use the `overrideStyleForAlias` method with a [Filament Icon Alias](https://filamentphp.com/docs/3.x/support/icons#available-icon-aliases). This method works with either a single icon key (string) or multiple icon keys (array).

```
// Override a single icon key
FontAwesomeIcons::make()->overrideStyleForAlias('tables::actions.filter', 'classicThin');

// Override multiple icon keys at once
FontAwesomeIcons::make()->overrideStyleForAlias([
    'tables::actions.filter',
    'actions::delete-action',
], 'classicThin');
```

### Using Icon Names

[](#using-icon-names)

Use the `overrideStyleForIcon` method with the actual FontAwesome icon name. Like the alias method, this works with either a single icon name or multiple names.

```
// Override a single icon
FontAwesomeIcons::make()->overrideStyleForIcon('font-awesome-user', 'classicThin');

// Override multiple icons at once
FontAwesomeIcons::make()->overrideStyleForIcon([
    'font-awesome-user',
    'font-awesome-caret-up',
], 'classicThin');
```

Free vs Paid
------------

[](#free-vs-paid)

If you are using the free version of Font Awesome, you'll be limited in your style choices since the free version only includes a limited number of icons. To handle this gracefully, you can add the `free()` method to the plugin which will automatically fallback to Classic Solid for any icons that don't exist in Classic Regular style:

```
...
->plugin(
    FontAwesomeIcons::make()->classicRegular()->free()
)
...
```

If you are using a paid version of Font Awesome, be sure to follow the additional steps listed in the [blade-fontawesome](https://github.com/owenvoke/blade-fontawesome) repo.

License
-------

[](#license)

The MIT License (MIT). Please see [License](LICENSE.md) for more information.

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance61

Regular maintenance activity

Popularity28

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~75 days

Total

5

Last Release

128d ago

Major Versions

v0.1.1 → 2.x-dev2025-05-25

PHP version history (2 changes)v0.1.0PHP ^8.0

v1.1.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/e8e5241b3b450ab4c64dd7ad1a868a00c3eef90731d0a6024385ec4246d4b3dd?d=identicon)[filafly](/maintainers/filafly)

---

Top Contributors

[![nolannordlund](https://avatars.githubusercontent.com/u/11064008?v=4)](https://github.com/nolannordlund "nolannordlund (11 commits)")

---

Tags

laraveliconsfont-awesomefilamentreplaceswap

###  Code Quality

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/filafly-filament-font-awesome-icons/health.svg)

```
[![Health](https://phpackages.com/badges/filafly-filament-font-awesome-icons/health.svg)](https://phpackages.com/packages/filafly-filament-font-awesome-icons)
```

###  Alternatives

[filafly/filament-phosphor-icons

Phosphor icon pack for Filament Icons

1241.5k3](/packages/filafly-filament-phosphor-icons)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[wsmallnews/filament-nestedset

Filament nestedset tree builder powered by kalnoy/nestedset with Filament v4 and v5 support

197.8k19](/packages/wsmallnews-filament-nestedset)[tapp/filament-form-builder

User facing form builder using Filament components

132.4k3](/packages/tapp-filament-form-builder)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
