Card
A Card organize content.
Content
import { Card } from 'react-breeze';
<Card>
<p>Content</p>
</Card>;
Title
A Card can be given a defined title through Card.Title
:
Title
Content
import { Card } from 'react-breeze';
<Card>
<Card.Title>Title</Card.Title>
<p>Content</p>
</Card>;
Properties
Card
takes the same properties as a div
., but can also be given:
Name | Type | Default | Required | Description |
---|---|---|---|---|
Card.Title
takes the same properties as a Title.