Lucide Icons
Integrates Lucide icons, allowing you to use them seamlessly across Filament forms, tables, actions, and more.
Author:
CodeWithDennis
Documentation
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.
The author
From the same author
Advanced Choice
A beautifully styled, fully customizable set of radio group components for FilamentPHP 4.
Author:
CodeWithDennis
Larament
Kickstart your project and save time with Larament! This time-saving starter kit includes a Laravel project with FilamentPHP already installed and set up, along with extra features.
Author:
CodeWithDennis
Simple Alert
A plugin for adding straightforward alerts to your Filament pages.
Author:
CodeWithDennis
Simple Map
This package provides a simple and user-friendly map display action component for your Filament application.
Author:
CodeWithDennis