29 lines
821 B
PHP
29 lines
821 B
PHP
@props([
|
|
'name' => null,
|
|
'variant' => null,
|
|
'size' => null,
|
|
])
|
|
|
|
@php
|
|
// We only want to show the name attribute on the checkbox if it has been set
|
|
// manually, but not if it has been set from the wire:model attribute...
|
|
$showName = isset($name);
|
|
|
|
if (! isset($name)) {
|
|
$name = $attributes->whereStartsWith('wire:model')->first();
|
|
}
|
|
|
|
$classes = Flux::classes()
|
|
->add('block flex p-1')
|
|
->add('rounded-lg bg-zinc-800/5 dark:bg-white/10')
|
|
->add($size === 'sm' ? 'h-8 py-[3px] px-[3px]' : 'h-10 p-1')
|
|
->add($size === 'sm' ? '-my-px h-[calc(2rem+2px)]' : '')
|
|
;
|
|
@endphp
|
|
|
|
<flux:with-field :$attributes>
|
|
<ui-radio-group {{ $attributes->class($classes) }} @if($showName) name="{{ $name }}" @endif data-flux-radio-group-segmented>
|
|
{{ $slot }}
|
|
</ui-radio-group>
|
|
</flux:with-field>
|