@holokit/icons
Version:
Components, fonts, icons, and css files for creating and displaying icons.
43 lines (40 loc) • 1.39 kB
JavaScript
import AdminWhite from './adminwhite'
import Airplane from './airplane'
import BillingWhite from './billingwhite'
import ChevronWhite from './chevronswhite'
import ConsoleIcon from './console'
import HomeWhite from './homewhite'
import LogoWhite from './logo'
import MessageOutbound from './message-outbound'
import RainbowLogo from './rainbowlogo'
import RoutesWhite from './routeswhite'
import SettingsWhite from './settingswhite'
import UsageWhite from './usagewhite'
export const iconNames = {
RAINBOW_LOGO_TEXT: 'rainbow-logo-text',
HOME_WHITE: 'home-white',
USAGE_WHITE: 'usage-white',
BILLING_WHITE: 'billing-white',
ROUTES_WHITE: 'routes-white',
SETTINGS_WHITE: 'settings-white',
ADMIN_WHITE: 'admin-white',
CHEVRONS_WHITE: 'chevrons-white',
LOGO_WHITE: 'logo',
AIRPLANE: 'airplane',
CONSOLE: 'console',
MESSAGE_OUTBOUND: 'message-outbound',
}
export const icons = {
[]: RainbowLogo,
[]: HomeWhite,
[]: UsageWhite,
[]: BillingWhite,
[]: RoutesWhite,
[]: SettingsWhite,
[]: AdminWhite,
[]: ChevronWhite,
[]: LogoWhite,
[]: Airplane,
[]: ConsoleIcon,
[]: MessageOutbound,
}