codewithdennis/filament-lucide-icons
A Filament plugin that integrates Lucide icons, allowing you to use them seamlessly across Filament forms, tables, actions, and more.
90,631
48
| Install | |
|---|---|
composer require codewithdennis/filament-lucide-icons |
|
| Latest Version: | v4.1.2 |
| PHP: | ^8.2 |
| License: | MIT |
| Last Updated: | Jul 31, 2026 |
| Links: | GitHub · Packagist |
Maintainer: CodeWithDennis
Filament Lucide Icons
A Filament 4.x plugin that integrates 1800 Lucide icons, allowing you to use them seamlessly across Filament forms, tables, actions, and more.
![]()
Installation
You can install the package via composer:
composer require codewithdennis/filament-lucide-icons
Usage
use CodeWithDennis\FilamentLucideIcons\Enums\LucideIcon;
public static function configure(Schema $schema): Schema
{
return $schema
->components([
Forms\Components\TextInput::make('email')
->prefixIcon(LucideIcon::Mail)
->email()
->required();
]);
final class UserResource extends Resource
{
protected static string|BackedEnum|null $navigationIcon = LucideIcon::UsersRound;
}
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
Related Packages
daljo25/filament-tabler-icons
A Filament plugin that integrates tabler icons, allowing you to use them seamles...
5,219
5
leek/filament-right-click
Right-click table row menus for Filament panels that trigger native Filament act...
2,303
39
codeat3/blade-coolicons
A package to easily make use of Coolicons in your Laravel Blade views.
52,865
3
codeat3/blade-clarity-icons
A package to easily make use of Clarity Icons in your Laravel Blade views.
165,070
1