export default [ { title: '主按钮', screenshot: require('../../assets/button-primary.png'), schema: { componentName: 'AMButton', props: { color: 'primary', children: '主按钮', }, }, }, { title: '圆角按钮', screenshot: require('../../assets/button-round.png'), schema: { componentName: 'AMButton', props: { color: 'primary', children: '圆角按钮', shape: 'rounded', }, }, }, { title: '危险按钮', screenshot: require('../../assets/button-danger.png'), schema: { componentName: 'AMButton', props: { color: 'danger', children: '危险按钮', }, }, }, ];