dreamstack/registry/components/alert.ds

12 lines
255 B
Text
Raw Normal View History

-- DreamStack Alert Component
-- Dismissable alert with icon and variant support
-- Variants: info, warning, error, success
export component Alert(message, variant, title) =
column [
row [
text message
]
slot
] { variant: variant }