block-template-panel.js
5 years ago
block.js
5 years ago
default-templates.js
6 years ago
helper.js
6 years ago
index.js
5 years ago
sidebar.js
5 years ago
index.js
27 lines
| 1 | import Sidebar from "./sidebar"; |
| 2 | |
| 3 | const icon = ( |
| 4 | <svg |
| 5 | xmlns="http://www.w3.org/2000/svg" |
| 6 | width="20" |
| 7 | height="19.31564" |
| 8 | viewBox="0 0 20 19.31564" |
| 9 | > |
| 10 | <path |
| 11 | d="M19.801,3.465l-5.93675.01494a.19492.19492,0,0,0-.18428.12949l-.45323,1.26505a.19767.19767,0,0,0,.18428.264h2.311a.19794.19794,0,0,1,.14444.3337l-3.67562,3.83h.01494l1.8926,5.95668a.19867.19867,0,0,1-.18926.259H12.05132a.19722.19722,0,0,1-.18926-.13946l-.95626-3.058a.197.197,0,0,0-.37353-.01l-.777,2.14162a.19642.19642,0,0,0-.005.11953l.70225,2.6048a.19724.19724,0,0,0,.18926.14443h5.97162a.19866.19866,0,0,0,.18926-.259L14.41208,9.56607a.199.199,0,0,1,.0498-.19922l5.48354-5.5682A.19793.19793,0,0,0,19.801,3.465Z" |
| 12 | transform="translate(0 -0.34218)" |
| 13 | /> |
| 14 | <path |
| 15 | d="M12.76851.34218l-3.61584.01a.18849.18849,0,0,0-.18428.12949L8.5052,1.74668a.19768.19768,0,0,0,.18428.264h1.51407a.19364.19364,0,0,1,.18428.264L6.0797,14.06845a.19878.19878,0,0,1-.37354,0L2.62323,5.56673a.19767.19767,0,0,1,.18428-.264H4.3664a.18849.18849,0,0,1,.18428.1295l1.11563,3.068a.19878.19878,0,0,0,.37354,0L7.77307,3.72892a.19767.19767,0,0,0-.18428-.264H.19772a.19364.19364,0,0,0-.18428.264L5.70118,19.52708a.19878.19878,0,0,0,.37354,0L12.94781.59619A.186.186,0,0,0,12.76851.34218Z" |
| 16 | transform="translate(0 -0.34218)" |
| 17 | /> |
| 18 | </svg> |
| 19 | ); |
| 20 | |
| 21 | export const name = "vk-blocks"; |
| 22 | |
| 23 | export const settings = { |
| 24 | icon, |
| 25 | render: Sidebar |
| 26 | }; |
| 27 |