/** * 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 (
{ icon }
{ name } { pills }
{ description }
{ button }
); };