PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.4.1
Block Animations, Motion & Scroll Effects – Ghost Kit v3.4.1
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / settings / pages / breakpoints.js

breakpoints.js in Block Animations, Motion & Scroll Effects – Ghost Kit 3.4.1, at settings/pages/breakpoints.js

25 lines 801 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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