@wordpress/components
Version:
UI components for WordPress.
18 lines (13 loc) • 291 B
Markdown
# CardDivider
CardDivider renders an optional divider within a [`<Card />`](../).
## Usage
```jsx
import { Card, CardBody, CardDivider } from '@wordpress/components';
const Example = () => (
<Card>
<CardBody>...</CardBody>
<CardDivider />
<CardBody>...</CardBody>
</Card>
);
```