10 lines
178 B
Text
10 lines
178 B
Text
package ui
|
|
|
|
type BadgeProps struct {
|
|
Label string
|
|
Variant BadgeVariant
|
|
}
|
|
|
|
templ Badge(props BadgeProps) {
|
|
<span class={ badgeClass(props.Variant) }>{ props.Label }</span>
|
|
}
|