export default [ { title: '主按钮', screenshot: require('./__screenshots__/button-1.png'), schema: { componentName: 'Button', props: { color: 'primary', type: 'button', children: '主按钮', }, }, isH5Mode: true, }, { title: '次按钮', screenshot: require('./__screenshots__/button-2.png'), schema: { componentName: 'Button', props: { color: 'default', type: 'button', children: '次按钮', }, }, isH5Mode: true, }, { title: '危险按钮', screenshot: require('./__screenshots__/button-3.png'), schema: { componentName: 'Button', props: { color: 'danger', type: 'button', children: '危险按钮', }, }, isH5Mode: true, }, ];