1 2 3 4 5 6 7 8 9
Component FeatureCard (title: String, description: String) { Card(elevated, scaleIn) { Card.Body { Heading(title, h2) Spacer(sm) Text(description, muted) } } }