| 1 |
/** |
| 2 |
* External dependencies |
| 3 |
*/ |
| 4 |
import ApplyFilters from '../../gutenberg/components/apply-filters'; |
| 5 |
|
| 6 |
/** |
| 7 |
* WordPress dependencies |
| 8 |
*/ |
| 9 |
const { Component } = wp.element; |
| 10 |
|
| 11 |
const { ExternalLink } = wp.components; |
| 12 |
|
| 13 |
const { __ } = wp.i18n; |
| 14 |
|
| 15 |
export default class BreakpointSettings extends Component { |
| 16 |
render() { |
| 17 |
return ( |
| 18 |
<ApplyFilters name="ghostkit.breakpoints.settings" props={this.props}> |
| 19 |
<div className="ghostkit-settings-content-wrapper ghostkit-settings-breakpoints"> |
| 20 |
{__( |
| 21 |
'Breakpoints available for Pro users only. Read more about Ghost Kit Pro plugin here - ', |
| 22 |
'ghostkit' |
| 23 |
)} |
| 24 |
<ExternalLink href="https://ghostkit.io/pricing/?utm_source=plugin&utm_medium=settings&utm_campaign=breakpoints&utm_content=2.25.0"> |
| 25 |
https://ghostkit.io/pricing/ |
| 26 |
</ExternalLink> |
| 27 |
</div> |
| 28 |
</ApplyFilters> |
| 29 |
); |
| 30 |
} |
| 31 |
} |
| 32 |
|