index.js
40 lines
| 1 | import save1_109_1 from './1.109.1/save'; |
| 2 | |
| 3 | const blockAttributes = { |
| 4 | iconSize: { |
| 5 | type: 'number', |
| 6 | default: 36, |
| 7 | }, |
| 8 | iconSizeUnit: { |
| 9 | type: 'string', |
| 10 | default: 'px', |
| 11 | }, |
| 12 | iconMargin: { |
| 13 | type: 'number', |
| 14 | default: 22, |
| 15 | }, |
| 16 | iconMarginUnit: { |
| 17 | type: 'string', |
| 18 | default: 'px', |
| 19 | }, |
| 20 | iconRadius: { |
| 21 | type: 'number', |
| 22 | default: 50, |
| 23 | }, |
| 24 | iconsJustify: { |
| 25 | type: 'string', |
| 26 | default: 'left', |
| 27 | }, |
| 28 | iconType: { |
| 29 | type: 'string', |
| 30 | default: '0' |
| 31 | }, |
| 32 | }; |
| 33 | |
| 34 | export const deprecated = [ |
| 35 | { |
| 36 | attributes: blockAttributes, |
| 37 | save: save1_109_1, |
| 38 | }, |
| 39 | ]; |
| 40 |