| 1 |
/** |
| 2 |
* Smart Post Show Pro - Module Icon |
| 3 |
* |
| 4 |
* Custom icon for the Divi 5 Visual Builder module. |
| 5 |
* |
| 6 |
* Divi's icon library expects an icon object of the shape |
| 7 |
* { name, viewBox, component } where `component` is a React component that |
| 8 |
* returns the inner SVG nodes only — Divi provides the wrapping <svg> element |
| 9 |
* and applies the viewBox. (A raw SVG string is not rendered.) |
| 10 |
* |
| 11 |
* @package Smart_Post_Show_Pro |
| 12 |
*/ |
| 13 |
|
| 14 |
export const spspIcon = { |
| 15 |
name: "spsp/smart-post-show", |
| 16 |
viewBox: "0 0 16 16", |
| 17 |
component: () => { |
| 18 |
// React is provided by Divi in the global scope. |
| 19 |
const React = window?.vendor?.React; |
| 20 |
|
| 21 |
return React.createElement("path", { |
| 22 |
d: "M6.2002 8.7998C6.75233 8.7999 7.20009 9.24767 7.2002 9.7998V15C7.2002 15.5522 6.7524 15.9999 6.2002 16H1C0.447726 16 0 15.5523 0 15V9.7998C0.000105566 9.24762 0.447791 8.79982 1 8.7998H6.2002ZM15.4668 14.4111C15.7613 14.4112 16 14.6498 16 14.9443C15.9998 15.2387 15.7612 15.4775 15.4668 15.4775H9.33301C9.0387 15.4774 8.79996 15.2386 8.7998 14.9443C8.7998 14.6499 9.0386 14.4113 9.33301 14.4111H15.4668ZM15.4668 11.8721C15.7612 11.8722 15.9999 12.1108 16 12.4053C16 12.6998 15.7613 12.9384 15.4668 12.9385H9.33301C9.0386 12.9383 8.7998 12.6997 8.7998 12.4053C8.79986 12.1109 9.03863 11.8722 9.33301 11.8721H15.4668ZM15.4668 9.33301C15.7613 9.33309 16 9.57269 16 9.86719C15.9997 10.1615 15.7611 10.4003 15.4668 10.4004H9.33301C9.03876 10.4002 8.80006 10.1614 8.7998 9.86719C8.7998 9.57274 9.0386 9.33318 9.33301 9.33301H15.4668ZM6.2002 0C6.75239 0.000110232 7.2002 0.447783 7.2002 1V6.2002C7.20009 6.75232 6.75232 7.20009 6.2002 7.2002H1C0.447781 7.2002 0.000105521 6.75239 0 6.2002V1C3.01994e-09 0.447715 0.447716 0 1 0H6.2002ZM12.4004 0C14.3883 0.000208215 15.9998 1.61169 16 3.59961C16 5.58771 14.3884 7.19999 12.4004 7.2002C10.4122 7.2002 8.7998 5.58783 8.7998 3.59961C8.80002 1.61156 10.4123 0 12.4004 0Z", |
| 23 |
}); |
| 24 |
}, |
| 25 |
}; |
| 26 |
|