import { Card } from 'welcome-ui/Card'
import { Icon } from 'welcome-ui/Icon'
const Example = () => {
return (
<>
<p className="mb-16">
A card doesn't have padding by default. To add padding to a card, you should wrap your
content in a <strong>Card.Body</strong> which has default padding.
</p>
<Card className="max-w-2/3">
<Card.Body>
<h3 className="flex items-center gap-4">
<Icon name="book-alt" size="lg" />
The Jungle Book
</h3>
<p>
After a threat from the tiger Shere Khan forces him to flee the jungle, a man-cub named
Mowgli embarks on a journey of self discovery with the help of panther Bagheera and
free-spirited bear Baloo.
</p>
</Card.Body>
</Card>
</>
)
}
export default Example