anvil/striker-ui/lib/consts/ICONS.ts

48 lines
895 B
TypeScript
Raw Normal View History

export const ICONS = [
{
text: 'Anvil',
image: '/pngs/anvil_icon_on.png',
uri: '/manage-element',
},
{
text: 'Files',
image: '/pngs/files_on.png',
uri: '/file-manager',
},
{
text: 'Configure',
image: '/pngs/configure_icon_on.png',
uri: '/config',
},
{
text: 'Mail',
image: '/pngs/email_on.png',
uri: '/mail-config',
},
// {
// text: 'Tasks',
// image: '/pngs/tasks_no-jobs_icon.png',
// uri: '/striker?jobs=true',
// },
// {
// text: 'Striker',
// image: '/pngs/striker_icon_on.png',
// uri: '/config',
// },
// {
// text: 'Logout',
// image: '/pngs/users_icon_on.png',
// uri: '/striker?logout=true',
// },
{
text: 'Help',
image: '/pngs/help_icon_on.png',
uri: 'https://alteeve.com/w/Support',
},
];
export const ICON_SIZE = {
2021-05-13 22:24:31 +00:00
width: '40em',
height: '40em',
};