diff --git a/src/components/Icons.ts b/src/components/Icons.ts index c5581780..d5eaddd2 100644 --- a/src/components/Icons.ts +++ b/src/components/Icons.ts @@ -48,9 +48,6 @@ import Transfer from '@nimiq/style/src/icons/transfer.svg'; import ViewOff from '@nimiq/style/src/icons/view-off.svg'; import View from '@nimiq/style/src/icons/view.svg'; -/** - * Comment out any unused icons here - */ // tslint:disable:variable-name export const AlertTriangleIcon = IconBase(AlertTriangle); export const ArrowLeftSmallIcon = IconBase(ArrowLeftSmall); diff --git a/src/main.ts b/src/main.ts index fe38ef3d..e08e2727 100644 --- a/src/main.ts +++ b/src/main.ts @@ -25,5 +25,40 @@ export { default as Wallet } from './components/Wallet.vue'; export { default as WalletList } from './components/WalletList.vue'; export { default as WalletMenu } from './components/WalletMenu.vue'; -// Comment out unused icons in the components/Icons.ts file -export * from './components/Icons'; +export { + AlertTriangleIcon, + ArrowLeftSmallIcon, + ArrowLeftIcon, + ArrowRightSmallIcon, + ArrowRightIcon, + BrowserLoginIcon, + CaretRightSmallIcon, + CheckmarkIcon, + CloseIcon, + ContactsIcon, + CopyIcon, + DownloadIcon, + FaceNeutralIcon, + FaceSadIcon, + FireIcon, + GearIcon, + HexagonIcon, + InfoCircleIcon, + KeysIcon, + LedgerIcon, + LockLockedIcon, + LockUnlockedIcon, + LoginIcon, + MenuDotsIcon, + PaperEditIcon, + PlusCircleIcon, + QrCodeIcon, + QuestionmarkIcon, + ScanQrCodeIcon, + SettingsIcon, + ShredderIcon, + SkullIcon, + TransferIcon, + ViewOffIcon, + ViewIcon, +} from './components/Icons';