Files
soft_usite/resources/views/partials/ui/button.html
T
2025-02-06 14:22:29 -05:00

12 lines
389 B
HTML

{{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}}