UNPKG

@wordpress/components

Version:
18 lines (13 loc) 291 B
# 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> ); ```