|
1
|
/** |
|
2
|
* Block Attributes
|
|
3
|
*/ |
|
4
|
|
|
5
|
const blockAttributes = { |
|
6
|
align: { |
|
7
|
type: 'string', |
|
8
|
default: 'wide', |
|
9
|
}, |
|
10
|
// eslint-disable-next-line camelcase |
|
11
|
accent_color: { |
|
12
|
type: 'string', |
|
13
|
default: '#68bb6c', |
|
14
|
}, |
|
15
|
}; |
|
16
|
|
|
17
|
export default blockAttributes; |
|
18
|
|