9 lines
248 B
Text
9 lines
248 B
Text
|
|
-- DreamStack Card Component
|
||
|
|
-- Glassmorphism container with title and subtitle
|
||
|
|
|
||
|
|
export component Card(title, subtitle) =
|
||
|
|
column [
|
||
|
|
text title { class: "ds-card-title" }
|
||
|
|
text subtitle { class: "ds-card-subtitle" }
|
||
|
|
] { class: "ds-card" }
|