Skip to content

Commit

Permalink
added assets and refactored asset structure b00tc4mp#175
Browse files Browse the repository at this point in the history
  • Loading branch information
breadislife committed Sep 23, 2024
1 parent 4a72a89 commit fca81f9
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 3 deletions.
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 };
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 };
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 };
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 };

0 comments on commit fca81f9

Please sign in to comment.