package bulma
// This creates a button that accepts children under it.
templ Button() {
}
// Used to create a button and lets you define the color.
// Accepts children.
templ ButtonColor(color string) {
}
templ ButtonNewTab(url, text string) {
}
templ ALink(url, title string) {
{ title }
}
templ ANewTab(url, text string) {
{ text }
}