|
1
|
import edit from './edit'; |
|
2
|
import GiveIcon from '@givewp/components/GiveIcon'; |
|
3
|
import schema from './block.json'; |
|
4
|
|
|
5
|
/** |
|
6
|
* @since 4.0.0
|
|
7
|
*/ |
|
8
|
export default { |
|
9
|
schema, |
|
10
|
settings: { |
|
11
|
icon: <GiveIcon color="grey" />, |
|
12
|
edit, |
|
13
|
}, |
|
14
|
}; |
|
15
|
|
|
16
|
|