mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-09 18:43:23 +08:00
7 lines
223 B
TypeScript
7 lines
223 B
TypeScript
import { PresetColorTypes } from '../_util/colors';
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
export function isPresetColor(color?: string): boolean {
|
|
return (PresetColorTypes as any[]).includes(color);
|
|
}
|