3b7c05a845
* Add appropriate text props to supplement variant revamp * Add font styles to navigation title since its removed in wp.components * Add more missing styles * Accidental change * Add changelog * Fix lint * Update jest snapshots |
||
---|---|---|
.. | ||
test | ||
README.md | ||
index.js | ||
style.scss |
README.md
Card
This component is a simple wrapper around the Card component from @wordpress/components
. It supports title
and description
props to be displayed in the card header.
Usage
<Card
title="Title"
description="Description goes here."
className="className"
>
<div>
Any card content goes here.
</div>
</Card>