export default [ { title: '指标卡片', screenshot: '', schema: { componentName: 'PisellMetricCard', props: { title: 'Total Sales', value: 1580, format: { showCurrencySymbol: true, currencySymbol: '$', }, }, }, }, { title: '带环比的指标卡片', screenshot: '', schema: { componentName: 'PisellMetricCard', props: { title: 'Total Orders', value: 50, comparison: { value: 12, }, }, }, }, { title: '完整配置的指标卡片', screenshot: '', schema: { componentName: 'PisellMetricCard', props: { title: 'Revenue', subtitle: 'Last 30 days', value: 125000, showSubtitle: true, format: { showCurrencySymbol: true, currencySymbol: '$', useGrouping: true, precision: 2, }, comparison: { value: 15000, text: 'v.s. pre', }, }, }, }, ];