Files
soft_usite/resources/views/partials/ui/button.html
T
2025-04-24 02:07:47 +00:00

12 lines
389 B
HTML
Executable File

{{define "PrimaryButton"}}
<button type="{{.Type}}" class="primary-button py-2 px-5 bg-[#284c91] text-white font-medium rounded shadow-sm">
{{.Label}}
</button>
{{end}}
{{define "SecondaryButton"}}
<button type="{{.Type}}" class="secondary-button w-full py-2 px-5 bg-[#beda75] text-[#284c91] font-medium rounded shadow-sm hover:bg-[#aecc5b] my-auto">
{{.Label}}
</button>
{{end}}