@props([ 'size' => null, 'variant' => null, ]) @php $classes = Flux::classes() ->add(match ($size) { 'xl' => 'text-lg', 'lg' => 'text-base', default => 'text-sm', 'sm' => 'text-xs', }) ->add(match ($variant) { 'strong' => '[:where(&)]:text-zinc-800 [:where(&)]:dark:text-white', default => '[:where(&)]:text-zinc-500 [:where(&)]:dark:text-white/70', }) ; @endphp {{-- NOTE: It's important that this file has NO newline at the end of the file. --}}