PHPackages                             momenoor/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. momenoor/filament-font-awesome-icons

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

momenoor/filament-font-awesome-icons
====================================

Font Awesome icon pack for Filament Icons

01PHP

Since Apr 26Pushed 2mo agoCompare

[ Source](https://github.com/Momenoor/filament-font-awesome-icons)[ Packagist](https://packagist.org/packages/momenoor/filament-font-awesome-icons)[ RSS](/packages/momenoor-filament-font-awesome-icons/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (1)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

19

—

LowBetter than 9% of packages

Maintenance55

Moderate activity, may be stable

Popularity1

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 84.6% 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5836882?v=4)[Momen Noor](/maintainers/momenoor)[@Momenoor](https://github.com/Momenoor)

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[magestore/module-bannerslider

N/A

8269.9k](/packages/magestore-module-bannerslider)[mestrona/magento-module-categoryredirect

Magento 2 Module to simply customize the menu with additional URLs: Create a category, enter the redirect, done.

2144.7k](/packages/mestrona-magento-module-categoryredirect)

PHPackages © 2026

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