import { Gridicon } from '@automattic/components'; import { localize } from 'i18n-calypso'; import { Component } from 'react'; import ButtonsPreviewAction from './preview-action'; class SharingButtonsPreviewPlaceholder extends Component { static displayName = 'SharingButtonsPreviewPlaceholder'; render() { return (
{ this.props.translate( 'Edit label text', { context: 'Sharing: Buttons edit label', } ) }

{ this.props.translate( 'Preview' ) }

{ /* eslint-disable-next-line jsx-a11y/anchor-is-valid */ } { /* eslint-disable wpcalypso/jsx-gridicon-size */ } { /* 16 is used in the preview to match the buttons on the frontend of the website. */ } { /* eslint-disable wpcalypso/jsx-gridicon-size */ } { this.props.translate( 'Like' ) }
{ /* eslint-disable-next-line jsx-a11y/alt-text */ }
{ this.props.translate( 'One blogger likes this' ) }
{ this.props.translate( 'Edit visible buttons', { context: 'Sharing: Buttons edit label', } ) } { this.props.translate( 'Edit “More” buttons', { context: 'Sharing: Buttons edit label', } ) }
); } } export default localize( SharingButtonsPreviewPlaceholder );