g4b0rdev/filament-solar-icons

Solar icon pack for Filament Icons

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/g4b0rdev/filament-solar-icons

v1.0.0 2025-10-10 21:15 UTC

This package is auto-updated.

Last update: 2025-10-10 21:17:20 UTC


README

Filament Solar Icons

Filament Solar Icons

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

Important

The Solar icon set by 480 Design is licensed under CC BY 4.0. See Icon License section below for attribution requirements.

Index

> Installation..................................................................... 
> Icon Styles...................................................................... 
> Override Specific Icons.......................................................... 
> Icon License..................................................................... 
> Credits.......................................................................... 
> License.......................................................................... 

Installation

Install via Composer:

composer require g4b0rdev/filament-solar-icons

Register the plugin in your Filament Panel provider:

use G4b0rDev\Icons\Solar\SolarIcons;

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

Icon Styles

Solar icons come in seven styles: bold, broken, duotone, linear, outline, bold-duotone, and line-duotone.

By default, the package uses the outline style. You can change the global style:

SolarIcons::make()
    ->style('bold');

Override Specific Icons

Override Icon Aliases

SolarIcons::make()
    ->overrideAlias(PanelsIconAlias::SIDEBAR_EXPAND_BUTTON, SolarBold::AltArrowRight)
    ->overrideAlias(TablesIconAlias::SEARCH_FIELD, SolarOutline::Magnifer);

Or override multiple aliases:

SolarIcons::make()
    ->overrideAliases([
        PanelsIconAlias::SIDEBAR_EXPAND_BUTTON => SolarBold::AltArrowRight,
        TablesIconAlias::SEARCH_FIELD => SolarOutline::Magnifer,
        ActionsIconAlias::CREATE_ACTION_GROUPED => SolarBold::AddCircle,
    ]);

Override Individual Icons

SolarIcons::make()
    ->overrideIcon(SolarOutline::MinimalisticMagnifer, SolarBold::Magnifer)
    ->overrideIcon(SolarOutline::AddCircle, SolarBold::AddSquare);

Or override multiple icons:

SolarIcons::make()
    ->overrideIcons([
        SolarOutline::MinimalisticMagnifer->value => SolarOutline::Magnifer,
        SolarOutline::AddCircle->value => SolarOutline::AddSquare,
        SolarOutline::Pen->value => SolarOutline::PenNewSquare,
    ]);

Override Styles for Specific Aliases

SolarIcons::make()
    ->style('outline')
    ->overrideStyleForAlias(PanelsIconAlias::SIDEBAR_EXPAND_BUTTON, 'bold')
    ->overrideStyleForAlias([
        TablesIconAlias::SEARCH_FIELD,
        TablesIconAlias::ACTIONS_FILTER,
    ], 'broken');

Override Styles for Specific Icons

SolarIcons::make()
    ->style('outline')
    ->overrideStyleForIcon(SolarOutline::Magnifer, 'bold')
    ->overrideStyleForIcon([
        SolarOutline::Home,
        SolarOutline::User,
    ], 'broken');

Icon License

Important: The Solar icon set by 480 Design is licensed under CC BY 4.0.

CC BY 4.0 Requirements

When using Solar icons, you must:

  1. Give appropriate credit to 480 Design
  2. Provide a link to the license: https://creativecommons.org/licenses/by/4.0/
  3. Indicate if changes were made to the icons (if applicable)

You may satisfy the attribution requirement by including a notice in your application's credits, about page, or documentation. Example:

Icons by Solar Icon Set (480 Design) - CC BY 4.0
https://github.com/480-Design/Solar-Icon-Set

Credits

License

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