8 lines
367 B
Twig
8 lines
367 B
Twig
<button
|
|
class="h-6 bg-{{ color|default('orange') }}-500/80 hover:bg-{{ color|default('orange') }}-600/80 px-2 text-{{ text_color|default('white') }} rounded text-sm font-semibold"
|
|
{{ attributes.defaults(stimulus_controller('action_button')) }}
|
|
{{ stimulus_action('action_button', action|default('default')) }}
|
|
>
|
|
{{ text|default('button') }}
|
|
</button>
|