PATH:
home
/
sparklp6
/
public_html
/
website_356c8563
/
wp-content
/
plugins
/
essential-blocks
/
src
/
blocks
/
icon
/
src
/** * WordPress dependencies */ import { useBlockProps } from "@wordpress/block-editor"; import { EBDisplayIcon } from "@essential-blocks/controls"; import attributes from "./attributes"; const deprecated = [ { attributes: { ...attributes }, supports: { align: ["full"], }, save: ({ attributes }) => { const { blockId, icon, iconView, iconShape, classHook } = attributes; const viewClass = iconView !== "default" ? " eb-icon-view-" + iconView : ""; const shapeClass = iconView !== "default" ? " eb-icon-shape-" + iconShape : ""; return ( <div {...useBlockProps.save()}> <div className={`eb-parent-wrapper eb-parent-${blockId} ${classHook}`} > <div className={`eb-icon-wrapper ${blockId}${` eb-icon-view-${iconView}`}${shapeClass}`} data-id={blockId} > <div className="eb-icon-container"> <EBDisplayIcon icon={icon} /> </div> </div> </div> </div> ); }, }, { attributes: { ...attributes }, supports: { align: ["full"], }, save: ({ attributes }) => { const { blockId, icon, iconView, iconShape, classHook } = attributes; const viewClass = iconView !== "default" ? " eb-icon-view-" + iconView : ""; const shapeClass = iconView !== "default" ? " eb-icon-shape-" + iconShape : ""; return ( <div {...useBlockProps.save()}> <div className={`eb-parent-wrapper eb-parent-${blockId} ${classHook}`} > <div className={`eb-icon-wrapper ${blockId}${` eb-icon-view-${iconView}`}${shapeClass}`} data-id={blockId} > <div className="eb-icon-container"> <i className={icon}></i> </div> </div> </div> </div> ); }, }, ]; export default deprecated;
[-] example.js
[edit]
[-] edit.js
[edit]
[-] deprecated.js
[edit]
[-] .htaccess
[edit]
[-] style.js
[edit]
[+]
constants
[-] save.js
[edit]
[-] style.scss
[edit]
[-] index.js
[edit]
[-] icon.svg
[edit]
[-] inspector.js
[edit]
[+]
..
[-] attributes.js
[edit]