filafly/filament-carbon-icons

Carbon icon pack for Filament Icons

v1.0.0-beta1 2025-07-25 22:02 UTC

This package is auto-updated.

Last update: 2025-07-25 22:09:15 UTC


README

Banner

Filament Carbon Icons

A Carbon icon set implementation for Filament 4.x, providing the full set of Carbon icons integrated with Filament's interface.

Installation

You can install the package via composer:

composer require filafly/filament-carbon-icons

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

use Filafly\Icons\Carbon\CarbonIcons;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugin(CarbonIcons::make());
}

Icon Styles

Carbon icons come in a single style.

  • Regular (default)

You can change the style using the following methods:

CarbonIcons::make()->regular();

Override Specific Icons

Since Carbon does not have multiple styles, there is no need to alter the style.

License

The MIT License (MIT). Please see License for more information.