button-container.js
2 years ago
button.js
2 years ago
container.js
2 years ago
default.js
2 years ago
grid.js
3 years ago
headline.js
2 years ago
image.js
2 years ago
index.js
2 years ago
button-container.js
18 lines
| 1 | import defaultContext from './default'; |
| 2 | import { defaultsDeep } from 'lodash'; |
| 3 | |
| 4 | const buttonContainerContext = defaultsDeep( { |
| 5 | id: 'buttonContainer', |
| 6 | supports: { |
| 7 | responsiveTabs: true, |
| 8 | spacing: { |
| 9 | enabled: true, |
| 10 | margin: true, |
| 11 | stackVertically: true, |
| 12 | fillHorizontalSpace: true, |
| 13 | }, |
| 14 | }, |
| 15 | }, defaultContext ); |
| 16 | |
| 17 | export default buttonContainerContext; |
| 18 |