48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { CardBody } from '~/marketing/components';
|
|
import './PluginCardBody.scss';
|
|
|
|
type PluginCardBodyProps = {
|
|
icon: JSX.Element;
|
|
name: string;
|
|
|
|
/**
|
|
* WooCommerce's Pill component to be rendered beside the name.
|
|
*/
|
|
pills?: Array< JSX.Element >;
|
|
|
|
description: string;
|
|
button?: JSX.Element;
|
|
};
|
|
|
|
/**
|
|
* Renders a CardBody layout component to display plugin info and button.
|
|
*/
|
|
export const PluginCardBody: React.FC< PluginCardBodyProps > = ( {
|
|
icon,
|
|
name,
|
|
pills,
|
|
description,
|
|
button,
|
|
} ) => {
|
|
return (
|
|
<CardBody className="woocommerce_marketing_plugin_card_body">
|
|
<div className="woocommerce_marketing_plugin_card_body__icon">
|
|
{ icon }
|
|
</div>
|
|
<div className="woocommerce_marketing_plugin_card_body__details">
|
|
<div className="woocommerce_marketing_plugin_card_body__details-name">
|
|
{ name }
|
|
{ pills }
|
|
</div>
|
|
<div className="woocommerce_marketing_plugin_card_body__details-description">
|
|
{ description }
|
|
</div>
|
|
</div>
|
|
{ button }
|
|
</CardBody>
|
|
);
|
|
};
|