woocommerce/plugins/woocommerce-admin/client/marketing/coupons/card
Patricia Hillebrandt 5dd7713346
[Performance]: Replace `classnames` usage with `clsx` (#47760)
* Replace classnames with clsx within woocommerce-blocks.

* Undo unnecessary change to getClassnames const.

* Replace classnames with clsx within woocommerce-admin.

* Add changelog.

* Update the pnpm lock file

* Address lint.

* Address lint errors for the block-library.
2024-05-31 05:49:36 +02:00
..
test Move card and slider into coupons directory. 2023-03-27 19:56:40 +08:00
README.md Move card and slider into coupons directory. 2023-03-27 19:56:40 +08:00
index.js [Performance]: Replace `classnames` usage with `clsx` (#47760) 2024-05-31 05:49:36 +02:00
style.scss Move card and slider into coupons directory. 2023-03-27 19:56:40 +08:00

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>