🎨 Add new Flux icons: implement multiple reusable icon components (e.g., hand-raised, hand-thumb-up, heart, hashtag, home) with variant support for improved UI consistency.

This commit is contained in:
HolgerHatGarKeineNode
2026-01-23 23:00:02 +01:00
parent 578e4f13fc
commit b30fec150c
792 changed files with 307541 additions and 117 deletions

View File

@@ -0,0 +1,14 @@
@blaze
@props([
'name' => $attributes->whereStartsWith('wire:model')->first(),
])
<flux:with-inline-field variant="inline" :$attributes>
{{-- We have to put tabindex="-1" here because otherwise, Livewire requests will wipe out tabindex state, --}}
{{-- even with durable attributes for some reason... --}}
{{-- We are redundantly setting the size of this container to 1.125rem so that the focus outline isn't oblong. --}}
<ui-radio {{ $attributes->class('flex size-[1.125rem] rounded-full mt-px outline-offset-2') }} data-flux-control data-flux-radio tabindex="-1">
<flux:radio.indicator />
</ui-radio>
</flux:with-inline-field>