@piste-icons/react
Version:
React components for ski trail difficulty symbols
11 lines (10 loc) • 323 B
TypeScript
export declare const COLORS: {
readonly black: "#000000";
readonly blue: "#006699";
readonly green: "#339933";
readonly orange: "#ff9900";
readonly red: "#ed1c24";
readonly yellow: "#ffd502";
};
export type Color = keyof typeof COLORS;
export type ColorExtract<U extends Color> = Extract<Color, U>;