e5f41731ae
* bootstrap next app + add overview page * fix AssetList type * fix up nav stuff * Refactor Nav component and add network components pages * Refactor WorldMap component and update TelegramIcon, GitHubIcon, NymVpnIcon, DiscordIcon, and TwitterIcon components * add service providers page * mixnodes page * delegations page + use material react table for all tables * nodes map page * Refactor StyledLink component and remove unnecessary console.log statements * Refactor ESLint configuration, remove unused dependencies, and update component imports * update deps * Refactor imports and update dependencies * fix dark mode * build single mixnode page * build single gateway page * Refactor handleOnDelegate function to use useCallback in mixnodes page.tsx * Add defaults for constants --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
13 lines
521 B
TypeScript
13 lines
521 B
TypeScript
import React from 'react';
|
|
import { SvgIcon, SvgIconProps } from '@mui/material';
|
|
|
|
export const DelegateIcon = (props: SvgIconProps) => (
|
|
<SvgIcon {...props}>
|
|
<path d="M4 12V15H6V12H4ZM16 7L14.59 5.59L13 7.17V2H11V7.19L9.39 5.61L8 7L12 11L16 7ZM4 17H20V15H4V17Z" />
|
|
<path d="M20 21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V20H20V21Z" />
|
|
<rect x="18" y="12" width="2" height="3" />
|
|
<rect x="18" y="17" width="2" height="3" />
|
|
<rect x="4" y="17" width="2" height="3" />
|
|
</SvgIcon>
|
|
);
|