File "Icon.jsx"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/blocks/text/components/Icon.jsx
File size: 162 B (162 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

export function Icon( { icon } ) {
	if ( ! icon ) {
		return null;
	}

	return <span
		className="gb-shape"
		dangerouslySetInnerHTML={ { __html: icon } }
	/>;
}