diff --git a/icon.tsx b/icon.tsx index bfd17fd..c43fbe8 100644 --- a/icon.tsx +++ b/icon.tsx @@ -2,5 +2,9 @@ import React from 'react'; import CurrencyBitcoinIcon from '@mui/icons-material/CurrencyBitcoin'; export const AppIcon = () => { - return -} + return ; +}; + +export const NotificationIcon = () => { + return ; +}; diff --git a/npwd.config.ts b/npwd.config.ts index e218b74..b56c3e3 100644 --- a/npwd.config.ts +++ b/npwd.config.ts @@ -1,5 +1,5 @@ import App from './src/App'; -import { AppIcon } from './icon'; +import { AppIcon, NotificationIcon } from './icon'; const defaultLanguage = 'en'; const localizedAppName = { @@ -17,5 +17,6 @@ export default (settings: Settings) => ({ backgroundColor: '#ff7300', path: '/crypto', icon: AppIcon, + notificationIcon: NotificationIcon, app: App, });