mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
13 lines
345 B
PHP
13 lines
345 B
PHP
<button
|
|
type="{{ isset($submit) && $submit ? 'submit' : 'button' }}"
|
|
@class([
|
|
'comments-button',
|
|
'is-small' => isset($small) && $small,
|
|
'is-danger' => isset($danger) && $danger,
|
|
'is-link' => isset($link) && $link,
|
|
])
|
|
{{ $attributes->except('type', 'size', 'submit') }}
|
|
>
|
|
{{ $slot }}
|
|
</button>
|