d821d392/html_components/toast.go
1970-01-01 00:00:00 +00:00

21 lines
445 B
Go

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"
)