| 1 |
import { ExternalLink } from '@wordpress/components'; |
| 2 |
import { __ } from '@wordpress/i18n'; |
| 3 |
|
| 4 |
import ApplyFilters from '../../gutenberg/components/apply-filters'; |
| 5 |
|
| 6 |
const { version } = window.ghostkitVariables; |
| 7 |
|
| 8 |
export default function BreakpointSettings(props) { |
| 9 |
return ( |
| 10 |
<ApplyFilters name="ghostkit.breakpoints.settings" props={props}> |
| 11 |
<div className="ghostkit-settings-content-wrapper ghostkit-settings-breakpoints"> |
| 12 |
{__( |
| 13 |
'Breakpoints available for Pro users only. Read more about Ghost Kit Pro plugin here - ', |
| 14 |
'ghostkit' |
| 15 |
)} |
| 16 |
<ExternalLink |
| 17 |
href={`https://www.ghostkit.io/pricing/?utm_source=plugin&utm_medium=settings&utm_campaign=breakpoints&utm_content=${version}`} |
| 18 |
> |
| 19 |
https://www.ghostkit.io/pricing/ |
| 20 |
</ExternalLink> |
| 21 |
</div> |
| 22 |
</ApplyFilters> |
| 23 |
); |
| 24 |
} |
| 25 |
|