package bulma
templ Button(color string, isLight, isDark bool) {
if isLight {
}
if isDark {
}
if !isLight && !isDark {
}
}
templ ButtonNewTab(url, text string) {
}
templ ALink(url, title string) {
{ title }
}
templ ANewTab(url, text string) {
{ text }
}