ant-design/components/_util/colors.ts
QingLance 3ddc3a267a feat: Preset status color into Tag (#19399)
* feat: Tag add status props

* feat: change solution for status tag

* fix: fix coding specification issues

* fix coding specification issues in demo
2019-10-25 23:17:25 +08:00

23 lines
522 B
TypeScript

import { tuple } from './type';
export const PresetStatusColorTypes = tuple('success', 'processing', 'error', 'default', 'warning');
// eslint-disable-next-line import/prefer-default-export
export const PresetColorTypes = tuple(
'pink',
'red',
'yellow',
'orange',
'cyan',
'green',
'blue',
'purple',
'geekblue',
'magenta',
'volcano',
'gold',
'lime',
);
export type PresetColorType = (typeof PresetColorTypes)[number];
export type PresetStatusColorType = (typeof PresetStatusColorTypes)[number];