-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include icons/images in dist by importing them explicitly
- Loading branch information
1 parent
1c3b705
commit 9499f3b
Showing
11 changed files
with
91 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import gmail from '@assets/images/gmail.png'; | ||
import meet from '@assets/images/meet.png'; | ||
import drive from '@assets/images/drive.png'; | ||
import calendar from '@assets/images/calendar.png'; | ||
import photos from '@assets/images/photos.png'; | ||
|
||
export const icons = { | ||
gmail, | ||
meet, | ||
drive, | ||
calendar, | ||
photos, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import chevronLeftDark from '@assets/icons/chevron-left-dark.svg'; | ||
import chevronLeftLight from '@assets/icons/chevron-left-light.svg'; | ||
import chevronRightDark from '@assets/icons/chevron-right-dark.svg'; | ||
import chevronRightLight from '@assets/icons/chevron-right-light.svg'; | ||
import closeDark from '@assets/icons/close-dark.svg'; | ||
import closeLight from '@assets/icons/close-light.svg'; | ||
import remove from '@assets/icons/delete.svg'; | ||
import dots from '@assets/icons/dots.svg'; | ||
import drag from '@assets/icons/drag.svg'; | ||
import edit from '@assets/icons/edit.svg'; | ||
import launchDark from '@assets/icons/launch-dark.svg'; | ||
import launchLight from '@assets/icons/launch-light.svg'; | ||
import refreshDark from '@assets/icons/refresh-dark.svg'; | ||
import refreshLight from '@assets/icons/refresh-light.svg'; | ||
import restore from '@assets/icons/restore.svg'; | ||
import settingsDark from '@assets/icons/settings-dark.svg'; | ||
import settingsLight from '@assets/icons/settings-light.svg'; | ||
|
||
export const icons = { | ||
chevronLeftDark, | ||
chevronLeftLight, | ||
chevronRightDark, | ||
chevronRightLight, | ||
closeDark, | ||
closeLight, | ||
remove, | ||
dots, | ||
drag, | ||
edit, | ||
launchDark, | ||
launchLight, | ||
refreshDark, | ||
refreshLight, | ||
restore, | ||
settingsDark, | ||
settingsLight, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters