mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
21 lines
344 B
TypeScript
21 lines
344 B
TypeScript
import { tuple } from './type';
|
|
|
|
// 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];
|