File "tablet-only.js"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/blocks/grid/css/tablet-only.js
File
size: 397 B (397 B bytes)
MIME-type: text/html
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
import buildCSS from '../../../utils/build-css';
import {
Component,
} from '@wordpress/element';
import {
applyFilters,
} from '@wordpress/hooks';
export default class TabletOnlyCSS extends Component {
render() {
let cssObj = [];
cssObj = applyFilters( 'generateblocks.editor.tabletOnlyCSS', cssObj, this.props, 'grid' );
return (
<style>{ buildCSS( cssObj ) }</style>
);
}
}