Files
portfolio2023/build/resources/views/components/form/button.edge
T
Tutur33 977386f605 build
2023-12-06 22:34:07 +01:00

12 lines
323 B
Plaintext

<button
id="{{ name }}"
name="{{ name }}"
type="{{ type ? type : 'submit' }}"
@if(style)
class="{{ style }}"
@else
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50"
@end
>
{{ text }}
</button>