11 lines
239 B
Plaintext
11 lines
239 B
Plaintext
package bootstrap
|
|
|
|
const (
|
|
ButtonTypeSubmit = "submit"
|
|
ButtonTypeDefault = "button"
|
|
)
|
|
|
|
templ BootstrapButton(message, variant, buttonType string) {
|
|
<button type={ buttonType } class={ getButtonVariant(variant) }>{ message }</button>
|
|
}
|