-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqp-memory.images.js
More file actions
51 lines (44 loc) · 1.83 KB
/
qp-memory.images.js
File metadata and controls
51 lines (44 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// public/js/components-web/qp-memory/qp-memory.images.js
const base = import.meta.url;
const resolve = (path) => new URL(path, base).href;
const images = {
// Zodiac signs
pisces: resolve('./images/pisces.svg'),
aries: resolve('./images/aries.svg'),
taurus: resolve('./images/taurus.svg'),
gemini: resolve('./images/gemini.svg'),
cancer: resolve('./images/cancer.svg'),
leo: resolve('./images/leo.svg'),
virgo: resolve('./images/virgo.svg'),
libra: resolve('./images/libra.svg'),
scorpio: resolve('./images/scorpio.svg'),
sagittarius: resolve('./images/sagittarius.svg'),
capricorn: resolve('./images/capricorn.svg'),
aquarius: resolve('./images/aquarius.svg'),
// Traffic signs
rightOfWay: resolve('./images/right-of-way.svg'),
construction: resolve('./images/construction.svg'),
greenArrow: resolve('./images/green-arrow.svg'),
yield: resolve('./images/yield.svg'),
stop: resolve('./images/stop.svg'),
playStreet: resolve('./images/play-street.svg'),
pedestrianBikePath: resolve('./images/pedestrian-bike-path.svg'),
// Misc
musicNote: resolve('./images/music-note.svg'),
musicNotes: resolve('./images/music-notes.svg'),
footprint01: resolve('./images/footprint_01.svg'),
footprint02: resolve('./images/footprint_02.svg'),
butterfly: resolve('./images/butterfly.svg'),
snowflake: resolve('./images/snowflake.svg'),
starStroked: resolve('./images/star-stroked.svg'),
starFilled: resolve('./images/star-filled.svg'),
starRotated: resolve('./images/star-rotated.svg'),
starRotatedFilled: resolve('./images/star-rotated-filled.svg'),
// Playing card suits
spades: resolve('./images/spades.png'),
hearts: resolve('./images/hearts.png'),
diamonds: resolve('./images/diamonds.png'),
clubs: resolve('./images/clubs.png'),
};
export const imageList = Object.values(images);
export default images;