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>
21 lines
620 B
TypeScript
21 lines
620 B
TypeScript
import * as React from 'react';
|
|
|
|
export const ElipsSVG: FCWithChildren = () => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none">
|
|
<circle cx="12" cy="12.5" r="10" fill="url(#paint0_angular_2549_7570)" />
|
|
<defs>
|
|
<radialGradient
|
|
id="paint0_angular_2549_7570"
|
|
cx="0"
|
|
cy="0"
|
|
r="1"
|
|
gradientUnits="userSpaceOnUse"
|
|
gradientTransform="translate(12 12.5) rotate(90) scale(12)"
|
|
>
|
|
<stop stopColor="#22D27E" />
|
|
<stop offset="1" stopColor="#9002FF" />
|
|
</radialGradient>
|
|
</defs>
|
|
</svg>
|
|
);
|