PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 2.25.0
Block Animations, Motion & Scroll Effects – Ghost Kit v2.25.0
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 2.25.0, at settings/pages/breakpoints.js

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