/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; /** * Internal dependencies */ import { Bullet } from './bullet'; import './partner-card.scss'; export const PartnerCard: React.FC< { name: string; logo: string; description: string; benefits: string[]; terms: string; actionText: string; onClick: () => void; isBusy?: boolean; } > = ( { name, logo, description, benefits, terms, actionText, onClick, isBusy, } ) => { return (
{
{ description }
{ terms }
); };