forked from b00tc4mp/isdi-parttime-202403
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added assets and refactored asset structure b00tc4mp#175
- Loading branch information
1 parent
4a72a89
commit fca81f9
Showing
10 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
staff/daniel-hernandez/project/app/assets/images/icons/control/index.js
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,5 @@ | ||
import playIcon from './play.png'; | ||
import pauseIcon from './pause.png'; | ||
import loadingIcon from './loading.png'; | ||
|
||
export { playIcon, pauseIcon, loadingIcon }; |
Binary file added
BIN
+2.67 KB
staff/daniel-hernandez/project/app/assets/images/icons/control/loading.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+341 Bytes
staff/daniel-hernandez/project/app/assets/images/icons/control/pause.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+368 Bytes
staff/daniel-hernandez/project/app/assets/images/icons/control/play.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion
4
staff/daniel-hernandez/project/app/assets/images/icons/index.js
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
import * as TabIcons from './tab'; | ||
import * as InputIcons from './input'; | ||
import * as ControlIcons from './control'; | ||
import * as ItemIcons from './item'; | ||
|
||
export { TabIcons, InputIcons }; | ||
export { TabIcons, InputIcons, ControlIcons, ItemIcons }; |
4 changes: 2 additions & 2 deletions
4
staff/daniel-hernandez/project/app/assets/images/icons/input/index.js
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import eyeIcon from './eye.png'; | ||
import eyeIconActive from './eyeActive.png'; | ||
import clear from './clear.png'; | ||
import clearIcon from './clear.png'; | ||
|
||
export { eyeIcon, eyeIconActive, clear }; | ||
export { eyeIcon, eyeIconActive, clearIcon }; |
File renamed without changes
File renamed without changes
5 changes: 5 additions & 0 deletions
5
staff/daniel-hernandez/project/app/assets/images/icons/item/index.js
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,5 @@ | ||
import addIcon from './add.png'; | ||
import checkIcon from './check.png'; | ||
import moreIcon from './more.png'; | ||
|
||
export { addIcon, checkIcon, moreIcon }; |
File renamed without changes