Browse Source

💄 update code style

pull/16343/head
afc163 6 years ago
parent
commit
04001a06ea
No known key found for this signature in database GPG Key ID: 738F973FCE5C6B48
  1. 27
      components/_util/colors.ts

27
components/_util/colors.ts

@ -1,18 +1,19 @@
import { tuple } from './type'; import { tuple } from './type';
export const PresetColorTypes = tuple( export const PresetColorTypes = tuple(
'pink', 'pink',
'red', 'red',
'yellow', 'yellow',
'orange', 'orange',
'cyan', 'cyan',
'green', 'green',
'blue', 'blue',
'purple', 'purple',
'geekblue', 'geekblue',
'magenta', 'magenta',
'volcano', 'volcano',
'gold', 'gold',
'lime' 'lime',
); );
export type PresetColorType = (typeof PresetColorTypes)[number]; export type PresetColorType = (typeof PresetColorTypes)[number];

Loading…
Cancel
Save