import { upperFirst } from 'lodash/string';
import { ApiEntity } from '@/views/entity/demoentity';
const sizes = ['small', '', 'large'];
const base: ApiEntity = {
title: '按钮尺寸',
desc:
'按钮分大中小三种尺寸。通过属性 size 进行设置,可选值有 large 或 small 。',
code: sizes.reduce(
(acc: string, size: string, index: number) =>
`${acc}${upperFirst(size) ||
'Default'}${index < sizes.length - 1 ? '\n' : ''}`,
''
),
};
export default base;