dreamstack/registry/components/card.ds

9 lines
235 B
Text
Raw Normal View History

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