dreamstack/registry/components/card.ds

10 lines
274 B
Text
Raw Normal View History

-- DreamStack Card Component with Slot
-- Glassmorphism container with title, subtitle, and slot for children
export component Card(title, subtitle) =
column [
text title { variant: "title" }
text subtitle { variant: "subtitle" }
slot
] { variant: "card" }