app.tsx
1 year ago
block.json
7 months ago
edit.tsx
1 year ago
index.tsx
1 year ago
render.php
1 year ago
styles.scss
1 year ago
index.tsx
18 lines
| 1 | import schema from './block.json'; |
| 2 | import Edit from './edit'; |
| 3 | import GiveIcon from '@givewp/components/GiveIcon'; |
| 4 | |
| 5 | /** |
| 6 | * @since 4.0.0 |
| 7 | */ |
| 8 | const settings = { |
| 9 | icon: <GiveIcon color="grey" />, |
| 10 | edit: Edit, |
| 11 | save: () => null, |
| 12 | }; |
| 13 | |
| 14 | export default { |
| 15 | schema, |
| 16 | settings, |
| 17 | }; |
| 18 |