40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import {ChartPie as ChartPieIcon} from '@phosphor-icons/react/dist/ssr/ChartPie';
|
|
import {GearSix as GearSixIcon} from '@phosphor-icons/react/dist/ssr/GearSix';
|
|
import {PlugsConnected as PlugsConnectedIcon} from '@phosphor-icons/react/dist/ssr/PlugsConnected';
|
|
import {User as UserIcon} from '@phosphor-icons/react/dist/ssr/User';
|
|
import {Users as UsersIcon} from '@phosphor-icons/react/dist/ssr/Users';
|
|
import {XSquare} from '@phosphor-icons/react/dist/ssr/XSquare';
|
|
import {
|
|
Basket,
|
|
BookOpen,
|
|
Books,
|
|
Cheers,
|
|
CoffeeBean,
|
|
Coins,
|
|
Martini,
|
|
Storefront,
|
|
Users,
|
|
Wallet,
|
|
Calculator
|
|
} from "@phosphor-icons/react";
|
|
|
|
export const navIcons = {
|
|
'menu': BookOpen,
|
|
'list': Books,
|
|
'storefront': Storefront,
|
|
'wallet': Wallet,
|
|
'cocktail': Martini,
|
|
'visitors': Users,
|
|
'orders': Cheers,
|
|
'basket': Basket,
|
|
'coins': Coins,
|
|
'ingredients': CoffeeBean,
|
|
'chart-pie': ChartPieIcon,
|
|
'gear-six': GearSixIcon,
|
|
'plugs-connected': PlugsConnectedIcon,
|
|
'calc': Calculator,
|
|
'x-square': XSquare,
|
|
user: UserIcon,
|
|
users: UsersIcon,
|
|
}
|