| import { localize } from 'i18n-calypso'; | |
| import updatesImage from 'calypso/assets/images/illustrations/updates.svg'; | |
| import PurchaseDetail from 'calypso/components/purchase-detail'; | |
| export default localize( ( { selectedSite, translate } ) => { | |
| return ( | |
| <div className="product-purchase-features-list__item"> | |
| <PurchaseDetail | |
| icon={ <img alt="" src={ updatesImage } /> } | |
| title={ translate( 'Add a Plugin' ) } | |
| description={ translate( | |
| 'Search and add plugins right from your dashboard, or upload a plugin ' + | |
| 'from your computer with a drag-and-drop interface.' | |
| ) } | |
| buttonText={ translate( 'Upload a plugin now' ) } | |
| href={ '/plugins/manage/' + selectedSite.slug } | |
| /> | |
| </div> | |
| ); | |
| } ); | |