@wordpress/components
Version:
UI components for WordPress.
18 lines • 494 B
TypeScript
export default ConnectedCardBody;
/**
* `CardBody` is a layout component, rendering the contents of a `Card`.
* Multiple `CardBody` components can be used within `Card` if needed.
*
* @example
* ```jsx
* import { Card, CardBody } from `@wordpress/components/ui`;
*
* <Card>
* <CardBody>
* ...
* </CardBody>
* </Card>
* ```
*/
declare const ConnectedCardBody: import("../context").PolymorphicComponent<"div", import("./types").CardBodyProps>;
//# sourceMappingURL=body.d.ts.map