whoami7 - Manager
:
/
home
/
rattkxnv
/
byattorney.com
/
wp-content
/
plugins
/
generateblocks
/
src
/
blocks
/
shape
/
Upload File:
files >> /home/rattkxnv/byattorney.com/wp-content/plugins/generateblocks/src/blocks/shape/save.js
/** * WordPress dependencies */ import { useBlockProps } from '@wordpress/block-editor'; import sanitizeSVG from '../../utils/sanitize-svg'; import { getBlockClasses } from '@utils/getBlockClasses'; export function Save( { attributes } ) { const { html, htmlAttributes = {}, } = attributes; const classNames = getBlockClasses( 'gb-shape', attributes, true ); const blockProps = useBlockProps.save( { className: classNames.join( ' ' ).trim(), ...htmlAttributes, } ); return ( <span { ...blockProps } dangerouslySetInnerHTML={ { __html: sanitizeSVG( html ) } } /> ); }
Copyright ©2021 || Defacer Indonesia