package html_components
type Toast struct {
Url string
HasTarget bool
Target string
Label string
LinkLabel string
TimeoutMs int
ToastPosition ToastPosition
}
type ToastPosition string
const (
ToastTopLeft ToastPosition = "top-5 left-5"
ToastTopRight ToastPosition = "top-5 right-5"
ToastBottomLeft ToastPosition = "right-5 bottom-5"
ToastBottomRight ToastPosition = "bottom-5 left-5"
)