12 lines
389 B
HTML
Executable File
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}}
|