move resources around

This commit is contained in:
austinried
2021-07-08 15:37:05 +09:00
parent ea4421b7af
commit 3460b4014f
88 changed files with 91 additions and 32 deletions

View File

@@ -8,20 +8,20 @@ import NowPlayingBar from '@app/components/NowPlayingBar'
const icons: { [key: string]: any } = {
home: {
regular: require('../../res/home.png'),
fill: require('../../res/home-fill.png'),
regular: require('@res/icons/home.png'),
fill: require('@res/icons/home-fill.png'),
},
library: {
regular: require('../../res/library.png'),
fill: require('../../res/library-fill.png'),
regular: require('@res/icons/library.png'),
fill: require('@res/icons/library-fill.png'),
},
search: {
regular: require('../../res/search.png'),
fill: require('../../res/search-fill.png'),
regular: require('@res/icons/search.png'),
fill: require('@res/icons/search-fill.png'),
},
settings: {
regular: require('../../res/settings.png'),
fill: require('../../res/settings-fill.png'),
regular: require('@res/icons/settings.png'),
fill: require('@res/icons/settings-fill.png'),
},
}