Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 9x | import appLogo from '@assets/bootsplash/logo.png';
import coffeeMascot from '@assets/images/coffee-mascot.png';
import flashText from '@assets/images/flash.png';
import flashTextV2 from '@assets/images/flashV2.png';
import heartMascot from '@assets/images/heart-mascot.png';
import homeMascotCoffee from '@assets/images/home-mascot-coffee.png';
import homeMascotPatin from '@assets/images/home-mascot-patin.png';
import homeMascotRelax from '@assets/images/home-mascot-relax.png';
import lazyMascot from '@assets/images/lazy-mascot.png';
import patinMascot from '@assets/images/patin-mascot.png';
import profileMascotCoffee from '@assets/images/profile-mascot-coffee.png';
import sleepingMascot from '@assets/images/sleeping-mascot.png';
export const ASSETS = {
IMAGES: {
HOME: {
PATIN: homeMascotPatin,
COFFEE: homeMascotCoffee,
RELAX: homeMascotRelax,
},
PROFILE: {
COFFEE: profileMascotCoffee,
RELAX: lazyMascot,
},
COFFEE_MASCOT: coffeeMascot,
SLEEPING_MASCOT: sleepingMascot,
HEART_MASCOT: heartMascot,
APP_LOGO: appLogo,
PATIN_MASCOT: patinMascot,
FLASH_TEXT: flashText,
FLASH_TEXT_V2: flashTextV2,
},
} as const;
|