Spaces:
Running
Running
File size: 297 Bytes
8b9f7d9 |
1 2 3 4 5 6 7 8 9 10 11 |
import { RACE_KEY } from './consts';
export function getAssetPath(path: string, theme: RACE_KEY | 'any' = 'any'): string {
return `${ASSETS_PATH}${theme}/${path}`;
}
export function getAssetUrl(path: string, theme?: RACE_KEY | 'any'): string {
return `url(${getAssetPath(path, theme)})`;
}
|