diff --git a/resources/views/filaments/index.blade.php b/resources/views/filaments/index.blade.php
index 09f8ec0..cc586a2 100644
--- a/resources/views/filaments/index.blade.php
+++ b/resources/views/filaments/index.blade.php
@@ -12,16 +12,35 @@
-
- ID
Name
Options
- @foreach ($filaments as $filament)
- -
-
{{ $filament->id }}
-
-
-
- @endforeach
-
+
diff --git a/resources/views/flux/icon/euro.blade.php b/resources/views/flux/icon/euro.blade.php
new file mode 100644
index 0000000..26d70a3
--- /dev/null
+++ b/resources/views/flux/icon/euro.blade.php
@@ -0,0 +1,43 @@
+{{-- Credit: Lucide (https://lucide.dev) --}}
+
+@props([
+ 'variant' => 'outline',
+])
+
+@php
+if ($variant === 'solid') {
+ throw new \Exception('The "solid" variant is not supported in Lucide.');
+}
+
+$classes = Flux::classes('shrink-0')
+ ->add(match($variant) {
+ 'outline' => '[:where(&)]:size-6',
+ 'solid' => '[:where(&)]:size-6',
+ 'mini' => '[:where(&)]:size-5',
+ 'micro' => '[:where(&)]:size-4',
+ });
+
+$strokeWidth = match ($variant) {
+ 'outline' => 2,
+ 'mini' => 2.25,
+ 'micro' => 2.5,
+};
+@endphp
+
+