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' ) }
{ 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 );