orchidmap-front/src/constants/logos.ts
2019-07-24 13:09:50 +07:00

16 lines
829 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export interface ILogos {
[x: string]: [string, string, string],
}
export const LOGOS = {
default: ['Без лого', null, 'bottom-right'],
nvs: ['НВС', require('../sprites/logos/lgo.png'), 'bottom-right'],
pinmix: ['Пин-Микс', require('../sprites/logos/pin-mix.png'), 'top-right'],
jolly: ['Пин-Микс + JW', require('../sprites/logos/jw.png'), 'top-right'],
pedals: ['Усталые Педальки', require('../sprites/logos/pedals.png'), 'bottom-right'],
rider: ['Райдер', require('../sprites/logos/rider.png'), 'bottom-right'],
rider_evening: ['Вечерние городские', require('../sprites/logos/rider_evening.png'), 'top-right'],
prokatimsya: ['PRO_КАТИМСЯ?!', require('../sprites/logos/prokatimsya.png'), 'top-right'],
};
export const DEFAULT_LOGO = 'nvs';