diff --git a/packages/nextjs/app/debug/_components/portfolio/bundlCard.tsx b/packages/nextjs/app/debug/_components/portfolio/bundlCard.tsx index e994830..1932c5a 100644 --- a/packages/nextjs/app/debug/_components/portfolio/bundlCard.tsx +++ b/packages/nextjs/app/debug/_components/portfolio/bundlCard.tsx @@ -1,6 +1,9 @@ "use client"; +// @ts-ignore import React, { ChangeEvent, useEffect, useState } from "react"; +import Image from "next/image"; +import Jazzicon, { jsNumberForAddress } from "react-jazzicon"; import { formatEther, parseEther } from "viem"; import { useScaffoldContractWrite } from "~~/hooks/scaffold-eth"; import { useScaffoldContractRead } from "~~/hooks/scaffold-eth"; @@ -20,22 +23,53 @@ export const BundlCard = ({ tokenId }: BundlCardProps) => { const [isModalOpen, setIsModalOpen] = useState(false); const [fundAmount, setFundAmount] = useState(""); + const bagNames = ["Alpha", "Beta", "Gamma", "Delta", "Epsilon", "Zeta", "Eta", "Theta", "Iota", "Kappa"]; + const openModal = () => setIsModalOpen(true); const closeModal = () => setIsModalOpen(false); const handleFundInput = (e: ChangeEvent) => setFundAmount(e.target.value); // UTILS - - const formatAddress = (address: string | null) => { + // @ts-ignore + /* const formatAddress = (address: string | null) => { if (!address) return "No Address"; const first = address.slice(0, 6); // First 6 characters const last = address.slice(-4); // Last 4 characters return `${first}...${last}`; // Concatenated with ellipsis - }; + }; */ + // @ts-ignore const balanceInDecimals = (balance: bigint) => { - return formatEther(balance); + return Number(formatEther(balance)); + }; + + // Function to generate a random Ethereum address + const generateRandomAddress = () => { + const characters = "0123456789abcdef"; + let address = "0x"; + for (let i = 0; i < 40; i++) { + address += characters[Math.floor(Math.random() * characters.length)]; + } + return address; + }; + + // Render Jazzicon directly where needed + const renderTokenImage = (token: any) => { + if (!token || !token.symbol) return null; + const imagePath = `/cryptocurrency-icons/128/color/${token.symbol.toLowerCase()}.png`; + + try { + console.log("path: ", imagePath); + return {token.symbol}; + } catch (error) { + console.log("Image not found, error:", error); + // Generate a random Ethereum address + const address = generateRandomAddress(); + // Generate a Jazzicon using the random address + // @ts-ignore + return ; + } }; // This function fetches token prices from the API, ID is the token ID @@ -69,6 +103,7 @@ export const BundlCard = ({ tokenId }: BundlCardProps) => { args: [BigInt(tokenId)], }); + // @ts-ignore const { data: getAllocationBalances } = useScaffoldContractRead({ contractName: "BundlrNft", functionName: "getAllocationBalances", @@ -112,41 +147,50 @@ export const BundlCard = ({ tokenId }: BundlCardProps) => { return ( <> -
-
Name
-
Id: {tokenId}
+
+
{bagNames[Number(tokenId) - 1]}
- {getAllocations?.map((allocation, index) => ( -
-
Symbol: {allocation.symbol}
-
Address: {formatAddress(allocation.token)}
-
Weight: {allocation?.percentage}
-
- Balance:{" "} - {getAllocationBalances?.[index]?.balance - ? balanceInDecimals(getAllocationBalances[index].balance) - : "No balance available"} + {getAllocations?.map((allocation, index) => { + console.log("allo:", allocation); + // Calculate the index of the next bag name + return ( +
+
+
+
+ {renderTokenImage(allocation)} +
{allocation?.symbol}
+
+ {getAllocationBalances?.[index]?.balance + ? balanceInDecimals(getAllocationBalances[index].balance) + : "No balance available"} +
+
+
{allocation?.percentage}%
+
+
- {/*
- USD Values: {usdBalances[index] !== undefined ? `$${usdBalances[index]?.toFixed(2)} USD` : "Loading..."} -
*/} -
- ))} + ); + })}
{isModalOpen && (
-

Enter the amount to fund

+

Funding amount

+

+ Specify the ETH amount you wish to invest, and we will automatically exchange it to rebalance your + portfolio according to predetermined token weights. +

)} -
-
- Fund +
Total Volume Locked (TVL)
+
{Math.floor(Math.random() * 10000) + 1}$
+
+
+
+ Fund +
-
unbundleNftAssets()} - > - Liquidate +
+
unbundleNftAssets()} + > + Liquidate +
diff --git a/packages/nextjs/app/page.tsx b/packages/nextjs/app/page.tsx index 74dd55a..a96dbda 100644 --- a/packages/nextjs/app/page.tsx +++ b/packages/nextjs/app/page.tsx @@ -1,14 +1,17 @@ "use client"; -import { useState } from "react"; +import { useEffect, useRef, useState } from "react"; +import Image from "next/image"; import { BundlCard } from "./debug/_components/portfolio/bundlCard"; import { ApolloClient, InMemoryCache, gql } from "@apollo/client"; import type { NextPage } from "next"; +import Jazzicon, { jsNumberForAddress } from "react-jazzicon"; import { useAccount, useChainId } from "wagmi"; import { useScaffoldContractRead, useScaffoldContractWrite } from "~~/hooks/scaffold-eth"; const Home: NextPage = () => { const { address: connectedAddress } = useAccount(); + const modalRef = useRef(null); // READ FUNCTIONS const { data: tokenlist } = useScaffoldContractRead({ @@ -153,19 +156,51 @@ const Home: NextPage = () => { const symbol = tokenObject ? tokenObject.symbol : ""; return ( -
- +
+ handlePercentageChange(e, index)} - className="border px-2 py-1 rounded" + className="border px-2 py-1 rounded w-full" + style={{ maxWidth: "calc(100% - 100px)" }} // Adjust based on the width of the label />
); }); }; + // Function to generate a random Ethereum address + const generateRandomAddress = () => { + const characters = "0123456789abcdef"; + let address = "0x"; + for (let i = 0; i < 40; i++) { + address += characters[Math.floor(Math.random() * characters.length)]; + } + return address; + }; + + // Render Jazzicon directly where needed + const renderTokenImage = (token: any) => { + console.log("token", token); + const imagePath = `/cryptocurrency-icons/svg/color/${token.symbol.toLowerCase()}.svg`; + + try { + require(imagePath); + console.log("path: ", imagePath); + return {token.symbol}; + } catch (error) { + console.log("Image not found, error:", error); + // Generate a random Ethereum address + const address = generateRandomAddress(); + // Generate a Jazzicon using the random address + // @ts-ignore + return ; + } + }; + const handlePercentageChange = (e: React.ChangeEvent, index: number) => { const newPercentage = parseInt(e.target.value); if (!isNaN(newPercentage) || e.target.value === "") { @@ -182,6 +217,25 @@ const Home: NextPage = () => { } } }; + + // EFFECTS + + useEffect(() => { + const handleClickOutside = (event: MouseEvent) => { + console.log("modalRef", modalRef.current); + if (modalRef.current && !modalRef.current.contains(event.target as Node)) { + console.log("detected"); + closeModal(); // Close the modal if clicked outside + } + }; + + document.addEventListener("mousedown", handleClickOutside); + + return () => { + document.removeEventListener("mousedown", handleClickOutside); + }; + }, [modalRef, closeModal]); + // WRITE FUNCTIONS const { writeAsync: mintNFT, @@ -200,49 +254,50 @@ const Home: NextPage = () => { <>
-
-
Portfolio
- {isModalOpen && ( -
-
-

Select Tokens

-
- {Object.values(pairingTokens).length > 0 ? ( - Object.values(pairingTokens) - .sort((a: any, b: any) => a.symbol.localeCompare(b.symbol)) - .map((token: any, index: number) => ( -
handleTokenSelect(token.symbol, token.id, token.pools[0].feeTier)} - > - -
- )) - ) : ( -
Loading...
- )} -
- {renderInputFields()} -
- - -
+ {isModalOpen && ( +
+
+

Select Tokens

+

Tailor your bag to suit your preferences.

+
+ {Object.values(pairingTokens).length > 0 ? ( + Object.values(pairingTokens).map((token: any, index: number) => ( +
handleTokenSelect(token.symbol, token.id, token.pools[0].feeTier)} + > +
+
{renderTokenImage(token)}
+
{token.symbol}
+
+
+ )) + ) : ( +
Loading...
+ )} +
+
Select Weight
+
+ You provide funds, and we diversify your investment based on your chosen weight distribution. +
+ {renderInputFields()} +
+
- )} +
+ )} +
+
Portfolio
+
- + {/* */}
-
- -
); }; diff --git a/packages/nextjs/components/Header.tsx b/packages/nextjs/components/Header.tsx index f24a1de..a88216b 100644 --- a/packages/nextjs/components/Header.tsx +++ b/packages/nextjs/components/Header.tsx @@ -4,8 +4,7 @@ import React, { useCallback, useRef, useState } from "react"; import Image from "next/image"; import Link from "next/link"; import { usePathname } from "next/navigation"; -import { Bars3Icon, BugAntIcon } from "@heroicons/react/24/outline"; -import { FaucetButton, RainbowKitCustomConnectButton } from "~~/components/scaffold-eth"; +import { RainbowKitCustomConnectButton } from "~~/components/scaffold-eth"; import { useOutsideClick } from "~~/hooks/scaffold-eth"; type HeaderMenuLink = { @@ -14,17 +13,7 @@ type HeaderMenuLink = { icon?: React.ReactNode; }; -export const menuLinks: HeaderMenuLink[] = [ - { - label: "Home", - href: "/", - }, - { - label: "Debug Contracts", - href: "/debug", - icon: , - }, -]; +export const menuLinks: HeaderMenuLink[] = []; export const HeaderMenuLinks = () => { const pathname = usePathname(); @@ -74,7 +63,7 @@ export const Header = () => { setIsDrawerOpen(prevIsOpenState => !prevIsOpenState); }} > - + {/* */} {isDrawerOpen && (
    {
- SE2 logo -
-
- Scaffold-ETH - Ethereum dev stack + SE2 logo
+
Bags
    @@ -103,7 +89,6 @@ export const Header = () => {
-
); diff --git a/packages/nextjs/components/scaffold-eth/Balance.tsx b/packages/nextjs/components/scaffold-eth/Balance.tsx index d778cb4..accc48c 100644 --- a/packages/nextjs/components/scaffold-eth/Balance.tsx +++ b/packages/nextjs/components/scaffold-eth/Balance.tsx @@ -1,24 +1,17 @@ "use client"; -import { useState } from "react"; import { Address } from "viem"; import { useBalance } from "wagmi"; -import { useTargetNetwork } from "~~/hooks/scaffold-eth/useTargetNetwork"; -import { useGlobalState } from "~~/services/store/store"; type BalanceProps = { address?: Address; className?: string; - usdMode?: boolean; }; /** * Display (ETH & USD) balance of an ETH address. */ -export const Balance = ({ address, className = "", usdMode }: BalanceProps) => { - const { targetNetwork } = useTargetNetwork(); - - const price = useGlobalState(state => state.nativeCurrencyPrice); +export const Balance = ({ address, className = "" }: BalanceProps) => { const { data: balance, isError, @@ -28,14 +21,6 @@ export const Balance = ({ address, className = "", usdMode }: BalanceProps) => { watch: true, }); - const [displayUsdMode, setDisplayUsdMode] = useState(price > 0 ? Boolean(usdMode) : false); - - const toggleBalanceMode = () => { - if (price > 0) { - setDisplayUsdMode(prevMode => !prevMode); - } - }; - if (!address || isLoading || balance === null) { return (
@@ -55,14 +40,9 @@ export const Balance = ({ address, className = "", usdMode }: BalanceProps) => { ); } - const formattedBalance = balance ? Number(balance.formatted) : 0; - return ( -
*/} ); }; diff --git a/packages/nextjs/components/scaffold-eth/RainbowKitCustomConnectButton/index.tsx b/packages/nextjs/components/scaffold-eth/RainbowKitCustomConnectButton/index.tsx index d0d6040..0289ff3 100644 --- a/packages/nextjs/components/scaffold-eth/RainbowKitCustomConnectButton/index.tsx +++ b/packages/nextjs/components/scaffold-eth/RainbowKitCustomConnectButton/index.tsx @@ -7,7 +7,7 @@ import { AddressQRCodeModal } from "./AddressQRCodeModal"; import { WrongNetworkDropdown } from "./WrongNetworkDropdown"; import { ConnectButton } from "@rainbow-me/rainbowkit"; import { Address } from "viem"; -import { useAutoConnect, useNetworkColor } from "~~/hooks/scaffold-eth"; +import { useAutoConnect } from "~~/hooks/scaffold-eth"; import { useTargetNetwork } from "~~/hooks/scaffold-eth/useTargetNetwork"; import { getBlockExplorerAddressLink } from "~~/utils/scaffold-eth"; @@ -16,7 +16,6 @@ import { getBlockExplorerAddressLink } from "~~/utils/scaffold-eth"; */ export const RainbowKitCustomConnectButton = () => { useAutoConnect(); - const networkColor = useNetworkColor(); const { targetNetwork } = useTargetNetwork(); return ( @@ -46,9 +45,9 @@ export const RainbowKitCustomConnectButton = () => { <>
- + {/* {chain.name} - + */}
(We don't accept pull request contributions for new or updated icons at this time. Open an issue and we'll do the icon for you.) + + +## Install 🚀 + +``` +$ npm install cryptocurrency-icons +``` + +You can then import the icons from `./node_modules/cryptocurrency-icons`, for example `./node_modules/cryptocurrency-icons/svg/color/kmd.svg`. + +There's also a `manifest.json` file included in the package with a list of the currency symbol, the name of the icons and the associated colors. + + +## Special Thanks 👏 + +Thanks to [Christopher Downer](https://github.com/cjdowner) for starting this project and all our wonderful [contributors](https://github.com/spothq/cryptocurrency-icons/graphs/contributors). + + +## Used By + +- [vue-cryptoicon](https://github.com/man15h/vue-cryptoicon) - Cryptocurrency icons for Vue apps +- [svelte-cryptoicon](https://github.com/alepop/svelte-cryptoicon) - Cryptocurrency icons for Svelte apps +- [Crypto Tools](http://bunchoftext.com/apps/crypto-calculator) - Cryptocurrency icons for Crypto Tools macOS app +- [Cryptocurrency Ticker](https://cryptocurrencyticker.xyz) - Cryptocurrency ticker for Windows and Linux Mint - Cinnamon +- [Spot](http://spot-bitcoin.com) - Cryptocurrency wallet + +We're always happy to see where, and how these icons are used. Feel free to share your creations with us, and we will put you in this list. \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/manifest.json b/packages/nextjs/public/cryptocurrency-icons/manifest.json new file mode 100644 index 0000000..31dde8e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/manifest.json @@ -0,0 +1,2437 @@ +[ + { + "symbol": "$PAC", + "name": "PACcoin", + "color": "#f5eb16" + }, + { + "symbol": "0XBTC", + "name": "0xBitcoin", + "color": "#ff914d" + }, + { + "symbol": "1INCH", + "name": "1inch Network", + "color": "#d82122" + }, + { + "symbol": "2GIVE", + "name": "2Give", + "color": "#f1cb60" + }, + { + "symbol": "AAVE", + "name": "AAVE", + "color": "#2ebac6" + }, + { + "symbol": "ABT", + "name": "Arcblock", + "color": "#3effff" + }, + { + "symbol": "ACT", + "name": "Achain", + "color": "#767dff" + }, + { + "symbol": "ACTN", + "name": "Action Coin", + "color": "#ffffff" + }, + { + "symbol": "ADA", + "name": "Cardano", + "color": "#0d1e30" + }, + { + "symbol": "ADD", + "name": "ADD Token", + "color": "#fec807" + }, + { + "symbol": "ADX", + "name": "AdEx", + "color": "#1b75bc" + }, + { + "symbol": "AE", + "name": "Aeternity", + "color": "#de3f6b" + }, + { + "symbol": "AEON", + "name": "Aeon", + "color": "#134451" + }, + { + "symbol": "AEUR", + "name": "Augmint Euro Token", + "color": "#051d2d" + }, + { + "symbol": "AGI", + "name": "SingularityNET", + "color": "#6916ff" + }, + { + "symbol": "AGRS", + "name": "Agoras Tauchain", + "color": "#f49e00" + }, + { + "symbol": "AION", + "name": "Aion", + "color": "#00bfec" + }, + { + "symbol": "ALGO", + "name": "Algorand", + "color": "#000000" + }, + { + "symbol": "AMB", + "name": "Ambrosus", + "color": "#3c5be0" + }, + { + "symbol": "AMP", + "name": "HyperSpace (Synereo)", + "color": "#2daee4" + }, + { + "symbol": "AMPL", + "name": "Ampleforth", + "color": "#000000" + }, + { + "symbol": "ANKR", + "name": "Ankr Network", + "color": "#2e6bf6" + }, + { + "symbol": "ANT", + "name": "Aragon", + "color": "#2cd3e1" + }, + { + "symbol": "APE", + "name": "ApeCoin", + "color": "#0054f9" + }, + { + "symbol": "APPC", + "name": "AppCoins", + "color": "#fd875e" + }, + { + "symbol": "ARDR", + "name": "Ardor", + "color": "#3c87c7" + }, + { + "symbol": "ARG", + "name": "Argentum", + "color": "#a71435" + }, + { + "symbol": "ARK", + "name": "Ark", + "color": "#f70000" + }, + { + "symbol": "ARN", + "name": "Aeron", + "color": "#0092b5" + }, + { + "symbol": "ARNX", + "name": "Aeron", + "color": "#436697" + }, + { + "symbol": "ARY", + "name": "Block Array", + "color": "#343434" + }, + { + "symbol": "AST", + "name": "AirSwap", + "color": "#0061ff" + }, + { + "symbol": "ATLAS", + "name": "Star Atlas", + "color": "#31fafb" + }, + { + "symbol": "ATM", + "name": "ATMChain", + "color": "#346fce" + }, + { + "symbol": "ATOM", + "name": "Cosmos", + "color": "#2e3148" + }, + { + "symbol": "AUDR", + "name": "AUDRamp", + "color": "#34318a" + }, + { + "symbol": "AURY", + "name": "Aurory", + "color": "#e756cc" + }, + { + "symbol": "AUTO", + "name": "Cube", + "color": "#fab431" + }, + { + "symbol": "AVAX", + "name": "Avalanche", + "color": "#e84142" + }, + { + "symbol": "AYWA", + "name": "Aywa", + "color": "#3355b5" + }, + { + "symbol": "BAB", + "name": "Bitcoin Cash ABC", + "color": "#f19f13" + }, + { + "symbol": "BAL", + "name": "Balancer", + "color": "#1e1e1e" + }, + { + "symbol": "BAND", + "name": "Band Protocol", + "color": "#516aff" + }, + { + "symbol": "BAT", + "name": "Basic Attention Token", + "color": "#ff5000" + }, + { + "symbol": "BAY", + "name": "BitBay", + "color": "#6356ab" + }, + { + "symbol": "BCBC", + "name": "BCBC", + "color": "#004ab5" + }, + { + "symbol": "BCC", + "name": "BCC", + "color": "#f7931c" + }, + { + "symbol": "BCD", + "name": "Bitcoin Diamond", + "color": "#fcc339" + }, + { + "symbol": "BCH", + "name": "Bitcoin Cash", + "color": "#8dc351" + }, + { + "symbol": "BCIO", + "name": "Blockchain.io", + "color": "#3f43ad" + }, + { + "symbol": "BCN", + "name": "Bytecoin", + "color": "#f04086" + }, + { + "symbol": "BCO", + "name": "BananaCoin", + "color": "#2c76b7" + }, + { + "symbol": "BCPT", + "name": "BlockMason Credit Protocol", + "color": "#404040" + }, + { + "symbol": "BDL", + "name": "Bitdeal", + "color": "#e54c40" + }, + { + "symbol": "BEAM", + "name": "Beam", + "color": "#0b76ff" + }, + { + "symbol": "BELA", + "name": "Belacoin", + "color": "#13a0f6" + }, + { + "symbol": "BIX", + "name": "Bibox Token", + "color": "#000000" + }, + { + "symbol": "BLCN", + "name": "BLCN", + "color": "#2aabe4" + }, + { + "symbol": "BLK", + "name": "BlackCoin", + "color": "#181818" + }, + { + "symbol": "BLOCK", + "name": "Blocknet", + "color": "#101341" + }, + { + "symbol": "BLZ", + "name": "Blazecoin", + "color": "#18578c" + }, + { + "symbol": "BNB", + "name": "Binance Coin", + "color": "#f3ba2f" + }, + { + "symbol": "BNT", + "name": "Bancor Network Token", + "color": "#000d2b" + }, + { + "symbol": "BNTY", + "name": "Bounty0x", + "color": "#fd7a3d" + }, + { + "symbol": "BOOTY", + "name": "Booty", + "color": "#00b4f4" + }, + { + "symbol": "BOS", + "name": "BOScoin", + "color": "#00a8d6" + }, + { + "symbol": "BPT", + "name": "Blockport", + "color": "#0f63d8" + }, + { + "symbol": "BQ", + "name": "bitqy", + "color": "#1d1d1d" + }, + { + "symbol": "BRD", + "name": "Bread", + "color": "#fe5d86" + }, + { + "symbol": "BSD", + "name": "BitSend", + "color": "#000000" + }, + { + "symbol": "BSV", + "name": "BitcoinSV", + "color": "#eab304" + }, + { + "symbol": "BTC", + "name": "Bitcoin", + "color": "#f7931a" + }, + { + "symbol": "BTCD", + "name": "BitcoinDark", + "color": "#ff6600" + }, + { + "symbol": "BTCH", + "name": "Bitcoin Hush", + "color": "#4700c2" + }, + { + "symbol": "BTCP", + "name": "Bitcoin Private", + "color": "#272d63" + }, + { + "symbol": "BTCZ", + "name": "BitcoinZ", + "color": "#f8c24a" + }, + { + "symbol": "BTDX", + "name": "Bitcloud", + "color": "#00aaff" + }, + { + "symbol": "BTG", + "name": "Bitcoin Gold", + "color": "#eba809" + }, + { + "symbol": "BTM", + "name": "Bytom", + "color": "#504c4c" + }, + { + "symbol": "BTS", + "name": "BitShares", + "color": "#35baeb" + }, + { + "symbol": "BTT", + "name": "BitTorrent", + "color": "#000000" + }, + { + "symbol": "BTX", + "name": "Bitcore", + "color": "#fb2ea3" + }, + { + "symbol": "BURST", + "name": "Burst", + "color": "#2d2d2d" + }, + { + "symbol": "BZE", + "name": "BZEdge", + "color": "#00aeef" + }, + { + "symbol": "CALL", + "name": "Capital", + "color": "#fbb413" + }, + { + "symbol": "CC", + "name": "CoinCollect", + "color": "#36b0f3" + }, + { + "symbol": "CDN", + "name": "Canada eCoin", + "color": "#f70808" + }, + { + "symbol": "CDT", + "name": "Blox", + "color": "#272731" + }, + { + "symbol": "CHAIN", + "name": "Chainmakers", + "color": "#00aced" + }, + { + "symbol": "CHAT", + "name": "ChatCoin", + "color": "#1c98f7" + }, + { + "symbol": "CHIPS", + "name": "CHIPS", + "color": "#598182" + }, + { + "symbol": "CHSB", + "name": "SwissBorg", + "color": "#01c38d" + }, + { + "symbol": "CHZ", + "name": "Chiliz", + "color": "#cd0124" + }, + { + "symbol": "CIX", + "name": "Cryptonetix", + "color": "#0576b4" + }, + { + "symbol": "CLAM", + "name": "Clams", + "color": "#20c5d3" + }, + { + "symbol": "CLOAK", + "name": "Cloakcoin", + "color": "#ff3a00" + }, + { + "symbol": "CMM", + "name": "Commercium", + "color": "#2fd2e5" + }, + { + "symbol": "CMT", + "name": "Comet", + "color": "#c1a05c" + }, + { + "symbol": "CND", + "name": "Cindicator", + "color": "#383939" + }, + { + "symbol": "CNX", + "name": "Cryptonex", + "color": "#4c6bae" + }, + { + "symbol": "CNY", + "name": "CNY", + "color": "#ff4314" + }, + { + "symbol": "COB", + "name": "Cobinhood", + "color": "#13bf99" + }, + { + "symbol": "COLX", + "name": "ColossusXT", + "color": "#77c3b0" + }, + { + "symbol": "COMP", + "name": "Compound", + "color": "#00d395" + }, + { + "symbol": "COQUI", + "name": "COQUI Cash", + "color": "#71c800" + }, + { + "symbol": "CRED", + "name": "Verify", + "color": "#37e8a3" + }, + { + "symbol": "CRPT", + "name": "Crypterium", + "color": "#00bdcd" + }, + { + "symbol": "CRV", + "name": "Curve DAO Token", + "color": "#40649f" + }, + { + "symbol": "CRW", + "name": "Crown", + "color": "#0f1529" + }, + { + "symbol": "CS", + "name": "CREDITS", + "color": "#262626" + }, + { + "symbol": "CTR", + "name": "Centra", + "color": "#fdde6c" + }, + { + "symbol": "CTXC", + "name": "Cortex", + "color": "#000000" + }, + { + "symbol": "CVC", + "name": "Civic", + "color": "#3ab03e" + }, + { + "symbol": "D", + "name": "Denarius", + "color": "#b8b8b8" + }, + { + "symbol": "DAI", + "name": "Dai", + "color": "#f4b731" + }, + { + "symbol": "DASH", + "name": "Dash", + "color": "#008ce7" + }, + { + "symbol": "DASH", + "name": "Dash", + "color": "#008ce7" + }, + { + "symbol": "DAT", + "name": "Datum", + "color": "#2d9cdb" + }, + { + "symbol": "DATA", + "name": "Streamr DATAcoin", + "color": "#e9570f" + }, + { + "symbol": "DBC", + "name": "DeepBrain Chain", + "color": "#5bc1d4" + }, + { + "symbol": "DCN", + "name": "Dentacoin", + "color": "#136485" + }, + { + "symbol": "DCR", + "name": "Decred", + "color": "#2ed6a1" + }, + { + "symbol": "DEEZ", + "name": "DeezNuts", + "color": "#939393" + }, + { + "symbol": "DENT", + "name": "Dent", + "color": "#666666" + }, + { + "symbol": "DEW", + "name": "DEW", + "color": "#fec907" + }, + { + "symbol": "DGB", + "name": "DigiByte", + "color": "#006ad2" + }, + { + "symbol": "DGD", + "name": "DigixDAO", + "color": "#f4d029" + }, + { + "symbol": "DLT", + "name": "Agrello", + "color": "#f4ae95" + }, + { + "symbol": "DNT", + "name": "district0x", + "color": "#2c398f" + }, + { + "symbol": "DOCK", + "name": "Dock", + "color": "#786dbc" + }, + { + "symbol": "DOGE", + "name": "Dogecoin", + "color": "#c3a634" + }, + { + "symbol": "DOT", + "name": "Polkadot", + "color": "#e6007a" + }, + { + "symbol": "DRGN", + "name": "Dragonchain", + "color": "#c91111" + }, + { + "symbol": "DROP", + "name": "Dropil", + "color": "#242d3d" + }, + { + "symbol": "DTA", + "name": "DATA", + "color": "#74d269" + }, + { + "symbol": "DTH", + "name": "Dether", + "color": "#3c80f1" + }, + { + "symbol": "DTR", + "name": "Dynamic Trading Rights", + "color": "#121747" + }, + { + "symbol": "EBST", + "name": "eBoost", + "color": "#1693d4" + }, + { + "symbol": "ECA", + "name": "Electra", + "color": "#aa15dd" + }, + { + "symbol": "EDG", + "name": "Edgeless", + "color": "#2b1544" + }, + { + "symbol": "EDO", + "name": "Eidoo", + "color": "#242424" + }, + { + "symbol": "EDOGE", + "name": "EtherDoge", + "color": "#0facf3" + }, + { + "symbol": "ELA", + "name": "Elastos", + "color": "#3fbadf" + }, + { + "symbol": "ELEC", + "name": "Electrify.Asia", + "color": "#ff9900" + }, + { + "symbol": "ELF", + "name": "aelf", + "color": "#2b5ebb" + }, + { + "symbol": "ELIX", + "name": "Elixir", + "color": "#00aded" + }, + { + "symbol": "ELLA", + "name": "Ellaism", + "color": "#396a28" + }, + { + "symbol": "EMB", + "name": "Emblem", + "color": "#f6c054" + }, + { + "symbol": "EMC", + "name": "EmerCoin", + "color": "#b49ffc" + }, + { + "symbol": "EMC2", + "name": "Einsteinium", + "color": "#00ccff" + }, + { + "symbol": "ENG", + "name": "Enigma", + "color": "#2f2f2f" + }, + { + "symbol": "ENJ", + "name": "Enjin Coin", + "color": "#624dbf" + }, + { + "symbol": "ENTRP", + "name": "Hut34 Entropy", + "color": "#fa5836" + }, + { + "symbol": "EON", + "name": "EOS Network", + "color": "#443f54" + }, + { + "symbol": "EOP", + "name": "EOP", + "color": "#35a7df" + }, + { + "symbol": "EOS", + "name": "EOS", + "color": "#000000" + }, + { + "symbol": "EQLI", + "name": "Equaliser", + "color": "#c9a35e" + }, + { + "symbol": "EQUA", + "name": "EQUA", + "color": "#f68922" + }, + { + "symbol": "ETC", + "name": "Ethereum Classic", + "color": "#328332" + }, + { + "symbol": "ETH", + "name": "Ethereum", + "color": "#627eea" + }, + { + "symbol": "ETHOS", + "name": "Ethos", + "color": "#00ffba" + }, + { + "symbol": "ETN", + "name": "Electroneum", + "color": "#23bee2" + }, + { + "symbol": "ETP", + "name": "Metaverse ETP", + "color": "#00a5ff" + }, + { + "symbol": "EUR", + "name": "EUR", + "color": "#0f8ff8" + }, + { + "symbol": "EVX", + "name": "Everex", + "color": "#044aac" + }, + { + "symbol": "EXMO", + "name": "EXMO", + "color": "#347ffb" + }, + { + "symbol": "EXP", + "name": "Expanse", + "color": "#ffaa5c" + }, + { + "symbol": "FAIR", + "name": "Faircoin", + "color": "#c99705" + }, + { + "symbol": "FCT", + "name": "Factom", + "color": "#417ba4" + }, + { + "symbol": "FIDA", + "name": "Bonfida", + "color": "#7c7cff" + }, + { + "symbol": "FIL", + "name": "Filecoin [IOU]", + "color": "#42c1ca" + }, + { + "symbol": "FJC", + "name": "Fujicoin", + "color": "#00afec" + }, + { + "symbol": "FLDC", + "name": "Foldingcoin", + "color": "#c40e09" + }, + { + "symbol": "FLO", + "name": "FLO", + "color": "#2080a2" + }, + { + "symbol": "FLUX", + "name": "Flux", + "color": "#2b61d1" + }, + { + "symbol": "FSN", + "name": "FUSION", + "color": "#1d9ad7" + }, + { + "symbol": "FTC", + "name": "Feathercoin", + "color": "#27323a" + }, + { + "symbol": "FUEL", + "name": "Etherparty", + "color": "#4096d0" + }, + { + "symbol": "FUN", + "name": "FunFair", + "color": "#ed1968" + }, + { + "symbol": "GAME", + "name": "GameCredits", + "color": "#2d475b" + }, + { + "symbol": "GAS", + "name": "Gas", + "color": "#58bf00" + }, + { + "symbol": "GBP", + "name": "GBP", + "color": "#bc3fe0" + }, + { + "symbol": "GBX", + "name": "Globitex", + "color": "#1666af" + }, + { + "symbol": "GBYTE", + "name": "Obyte", + "color": "#302c2c" + }, + { + "symbol": "GENERIC", + "name": "GENERIC", + "color": "#efb914" + }, + { + "symbol": "GIN", + "name": "GINcoin", + "color": "#008dde" + }, + { + "symbol": "GLXT", + "name": "GLX Token", + "color": "#005396" + }, + { + "symbol": "GMR", + "name": "Gimmer", + "color": "#372d2c" + }, + { + "symbol": "GMT", + "name": "STEPN", + "color": "#dbb358" + }, + { + "symbol": "GNO", + "name": "Gnosis", + "color": "#00a6c4" + }, + { + "symbol": "GNT", + "name": "Golem", + "color": "#001d57" + }, + { + "symbol": "GOLD", + "name": "Dragonereum Gold", + "color": "#f1b32b" + }, + { + "symbol": "GRC", + "name": "Gridcoin", + "color": "#5411b3" + }, + { + "symbol": "GRIN", + "name": "Grin", + "color": "#fff300" + }, + { + "symbol": "GRS", + "name": "Groestlcoin", + "color": "#377e96" + }, + { + "symbol": "GRT", + "name": "The Graph", + "color": "#5942cc" + }, + { + "symbol": "GSC", + "name": "Global Social Chain", + "color": "#ff0060" + }, + { + "symbol": "GTO", + "name": "Gifto", + "color": "#7f27ff" + }, + { + "symbol": "GUP", + "name": "Guppy", + "color": "#37dcd8" + }, + { + "symbol": "GUSD", + "name": "Gemini dollar", + "color": "#00dcfa" + }, + { + "symbol": "GVT", + "name": "Genesis Vision", + "color": "#16b9ad" + }, + { + "symbol": "GXS", + "name": "GXChain", + "color": "#35a5f3" + }, + { + "symbol": "GZR", + "name": "Gizer", + "color": "#56c9e9" + }, + { + "symbol": "HIGHT", + "name": "Highcoin", + "color": "#117fc0" + }, + { + "symbol": "HNS", + "name": "Handshake", + "color": "#000000" + }, + { + "symbol": "HODL", + "name": "HOdlcoin", + "color": "#d59143" + }, + { + "symbol": "HOT", + "name": "Holo", + "color": "#8834ff" + }, + { + "symbol": "HPB", + "name": "High Performance Blockchain", + "color": "#1591ca" + }, + { + "symbol": "HSR", + "name": "HShare", + "color": "#56428e" + }, + { + "symbol": "HT", + "name": "HOTTO", + "color": "#2a3069" + }, + { + "symbol": "HTML", + "name": "HTMLCOIN", + "color": "#cfa967" + }, + { + "symbol": "HUC", + "name": "Huntercoin", + "color": "#ffc018" + }, + { + "symbol": "HUSD", + "name": "HUSD", + "color": "#005ffa" + }, + { + "symbol": "HUSH", + "name": "Hush", + "color": "#292929" + }, + { + "symbol": "ICN", + "name": "Iconomi", + "color": "#4c6f8c" + }, + { + "symbol": "ICP", + "name": "Internet Computer", + "color": "#292a2e" + }, + { + "symbol": "ICX", + "name": "ICON", + "color": "#1fc5c9" + }, + { + "symbol": "IGNIS", + "name": "Ignis", + "color": "#f9c011" + }, + { + "symbol": "ILK", + "name": "Inlock Token", + "color": "#98c23a" + }, + { + "symbol": "INK", + "name": "Ink", + "color": "#df1a14" + }, + { + "symbol": "INS", + "name": "Insolar", + "color": "#b2a3f6" + }, + { + "symbol": "ION", + "name": "ION", + "color": "#57beea" + }, + { + "symbol": "IOP", + "name": "Internet of People", + "color": "#0cafa5" + }, + { + "symbol": "IOST", + "name": "IOStoken", + "color": "#1c1c1c" + }, + { + "symbol": "IOTX", + "name": "IoTeX", + "color": "#00d4d5" + }, + { + "symbol": "IQ", + "name": "Everipedia", + "color": "#55ddff" + }, + { + "symbol": "ITC", + "name": "IoT Chain", + "color": "#102044" + }, + { + "symbol": "JNT", + "name": "Jibrel Network", + "color": "#0050db" + }, + { + "symbol": "JPY", + "name": "JPY", + "color": "#eac749" + }, + { + "symbol": "KCS", + "name": "KuCoin Shares", + "color": "#0093dd" + }, + { + "symbol": "KIN", + "name": "Kin", + "color": "#005fff" + }, + { + "symbol": "KLOWN", + "name": "Ether Clown", + "color": "#ea0017" + }, + { + "symbol": "KMD", + "name": "Komodo", + "color": "#2b6680" + }, + { + "symbol": "KNC", + "name": "Kyber Network", + "color": "#31cb9e" + }, + { + "symbol": "KRB", + "name": "Karbo", + "color": "#00aeef" + }, + { + "symbol": "KSM", + "name": "Kusama", + "color": "#000000" + }, + { + "symbol": "LBC", + "name": "LBRY Credits", + "color": "#006149" + }, + { + "symbol": "LEND", + "name": "ETHLend", + "color": "#0fa9c9" + }, + { + "symbol": "LEO", + "name": "Unus Sed LEO", + "color": "#11021e" + }, + { + "symbol": "LINK", + "name": "ChainLink", + "color": "#2a5ada" + }, + { + "symbol": "LKK", + "name": "Lykke", + "color": "#9d01eb" + }, + { + "symbol": "LOOM", + "name": "Loom Network", + "color": "#48beff" + }, + { + "symbol": "LPT", + "name": "Livepeer Token", + "color": "#000000" + }, + { + "symbol": "LRC", + "name": "Loopring", + "color": "#2ab6f6" + }, + { + "symbol": "LSK", + "name": "Lisk", + "color": "#0d4ea0" + }, + { + "symbol": "LTC", + "name": "Litecoin", + "color": "#bfbbbb" + }, + { + "symbol": "LUN", + "name": "Lunyr", + "color": "#f55749" + }, + { + "symbol": "MAID", + "name": "MaidSafeCoin", + "color": "#5592d7" + }, + { + "symbol": "MANA", + "name": "Decentraland", + "color": "#ff2d55" + }, + { + "symbol": "MATIC", + "name": "Polygon", + "color": "#6f41d8" + }, + { + "symbol": "MATIC", + "name": "Polygon", + "color": "#6f41d8" + }, + { + "symbol": "MAX", + "name": "MAX Token", + "color": "#2d4692" + }, + { + "symbol": "MCAP", + "name": "MCAP", + "color": "#033b4a" + }, + { + "symbol": "MCO", + "name": "Crypto.com", + "color": "#103f68" + }, + { + "symbol": "MDA", + "name": "Moeda Loyalty Points", + "color": "#01a64f" + }, + { + "symbol": "MDS", + "name": "MediShares", + "color": "#1e252c" + }, + { + "symbol": "MED", + "name": "Medibloc", + "color": "#00b0ff" + }, + { + "symbol": "MEETONE", + "name": "MEET.ONE", + "color": "#000000" + }, + { + "symbol": "MFT", + "name": "Mainframe", + "color": "#da1157" + }, + { + "symbol": "MIOTA", + "name": "IOTA", + "color": "#242424" + }, + { + "symbol": "MITH", + "name": "Mithril", + "color": "#00316d" + }, + { + "symbol": "MKR", + "name": "Maker", + "color": "#1aab9b" + }, + { + "symbol": "MLN", + "name": "Melon", + "color": "#0b1529" + }, + { + "symbol": "MNX", + "name": "MinexCoin", + "color": "#00adef" + }, + { + "symbol": "MNZ", + "name": "MNZ", + "color": "#7f368a" + }, + { + "symbol": "MOAC", + "name": "MOAC", + "color": "#000000" + }, + { + "symbol": "MOD", + "name": "Modum", + "color": "#09547d" + }, + { + "symbol": "MONA", + "name": "MonaCoin", + "color": "#dec799" + }, + { + "symbol": "MSR", + "name": "Masari", + "color": "#47b95c" + }, + { + "symbol": "MTH", + "name": "Monetha", + "color": "#104fca" + }, + { + "symbol": "MTL", + "name": "Metal", + "color": "#1e1f25" + }, + { + "symbol": "MUSIC", + "name": "Musicoin", + "color": "#ffffff" + }, + { + "symbol": "MZC", + "name": "MAZA", + "color": "#ffaa05" + }, + { + "symbol": "NANO", + "name": "Nano", + "color": "#4a90e2" + }, + { + "symbol": "NAS", + "name": "Nebulas", + "color": "#222222" + }, + { + "symbol": "NAV", + "name": "NavCoin", + "color": "#7d59b5" + }, + { + "symbol": "NCASH", + "name": "Nucleus Vision", + "color": "#36a9cf" + }, + { + "symbol": "NDZ", + "name": "NDZ", + "color": "#622fba" + }, + { + "symbol": "NEBL", + "name": "Neblio", + "color": "#50479e" + }, + { + "symbol": "NEO", + "name": "NEO", + "color": "#58bf00" + }, + { + "symbol": "NEOS", + "name": "Neoscoin", + "color": "#e5f300" + }, + { + "symbol": "NEU", + "name": "Neumark", + "color": "#b3ba00" + }, + { + "symbol": "NEXO", + "name": "Nexo", + "color": "#1a4199" + }, + { + "symbol": "NGC", + "name": "NAGA", + "color": "#f80000" + }, + { + "symbol": "NIO", + "name": "Autonio", + "color": "#70c9c9" + }, + { + "symbol": "NKN", + "name": "NKN", + "color": "#23336f" + }, + { + "symbol": "NLC2", + "name": "NoLimitCoin", + "color": "#f28f01" + }, + { + "symbol": "NLG", + "name": "Gulden", + "color": "#2ab0fd" + }, + { + "symbol": "NMC", + "name": "Namecoin", + "color": "#186c9d" + }, + { + "symbol": "NMR", + "name": "Numeraire", + "color": "#050708" + }, + { + "symbol": "NPXS", + "name": "Pundi X", + "color": "#f5d100" + }, + { + "symbol": "NTBC", + "name": "Note Blockchain", + "color": "#eec315" + }, + { + "symbol": "NULS", + "name": "Nuls", + "color": "#82bd39" + }, + { + "symbol": "NXS", + "name": "Nexus", + "color": "#4099cd" + }, + { + "symbol": "NXT", + "name": "NXT", + "color": "#008fbb" + }, + { + "symbol": "OAX", + "name": "OpenANX", + "color": "#164b79" + }, + { + "symbol": "OK", + "name": "OKCash", + "color": "#000000" + }, + { + "symbol": "OMG", + "name": "OMG Network", + "color": "#101010" + }, + { + "symbol": "OMNI", + "name": "Omni", + "color": "#1c347a" + }, + { + "symbol": "ONE", + "name": "Harmony", + "color": "#00aee9" + }, + { + "symbol": "ONG", + "name": "SoMee.Social", + "color": "#000000" + }, + { + "symbol": "ONT", + "name": "Ontology", + "color": "#32a4be" + }, + { + "symbol": "OOT", + "name": "Utrum", + "color": "#25aae1" + }, + { + "symbol": "OST", + "name": "OST", + "color": "#34445b" + }, + { + "symbol": "OST", + "name": "OST", + "color": "#34445b" + }, + { + "symbol": "OX", + "name": "OX Fina", + "color": "#4392cd" + }, + { + "symbol": "OXT", + "name": "Orchid", + "color": "#5f45ba" + }, + { + "symbol": "OXY", + "name": "Oxygen", + "color": "#2261f6" + }, + { + "symbol": "PART", + "name": "Particl", + "color": "#65cb8d" + }, + { + "symbol": "PASC", + "name": "Pascalcoin", + "color": "#f7931e" + }, + { + "symbol": "PASL", + "name": "Pascal Lite", + "color": "#00acff" + }, + { + "symbol": "PAX", + "name": "PAX Token", + "color": "#398260" + }, + { + "symbol": "PAXG", + "name": "PAX Gold", + "color": "#e4ce4d" + }, + { + "symbol": "PAY", + "name": "TenX", + "color": "#302c2c" + }, + { + "symbol": "PAYX", + "name": "Paypex", + "color": "#663300" + }, + { + "symbol": "PINK", + "name": "Pinkcoin", + "color": "#ed79aa" + }, + { + "symbol": "PIRL", + "name": "Pirl", + "color": "#96b73d" + }, + { + "symbol": "PIVX", + "name": "PIVX", + "color": "#5e4778" + }, + { + "symbol": "PLR", + "name": "Pillar", + "color": "#00bfff" + }, + { + "symbol": "POA", + "name": "POA Network", + "color": "#444fa1" + }, + { + "symbol": "POE", + "name": "Po.et", + "color": "#dcd6cc" + }, + { + "symbol": "POLIS", + "name": "Polis", + "color": "#2c3e50" + }, + { + "symbol": "POLY", + "name": "Polymath Network", + "color": "#4c5a95" + }, + { + "symbol": "POT", + "name": "Potcoin", + "color": "#105b2f" + }, + { + "symbol": "POWR", + "name": "Power Ledger", + "color": "#05bca9" + }, + { + "symbol": "PPC", + "name": "Peercoin", + "color": "#3cb054" + }, + { + "symbol": "PPP", + "name": "PayPie", + "color": "#348f8d" + }, + { + "symbol": "PPT", + "name": "Populous", + "color": "#152743" + }, + { + "symbol": "PRE", + "name": "Presearch", + "color": "#3a8cbd" + }, + { + "symbol": "PRL", + "name": "Oyster", + "color": "#1061e3" + }, + { + "symbol": "PUNGO", + "name": "Pungo Token", + "color": "#22b573" + }, + { + "symbol": "PURA", + "name": "Pura", + "color": "#333333" + }, + { + "symbol": "QASH", + "name": "QASH", + "color": "#1347e8" + }, + { + "symbol": "QIWI", + "name": "QIWI", + "color": "#ff8c00" + }, + { + "symbol": "QLC", + "name": "QLC Chain", + "color": "#610089" + }, + { + "symbol": "QNT", + "name": "Quant", + "color": "#000000" + }, + { + "symbol": "QRL", + "name": "Quantum Resistant Ledger", + "color": "#252525" + }, + { + "symbol": "QSP", + "name": "Quantstamp", + "color": "#454545" + }, + { + "symbol": "QTUM", + "name": "Qtum", + "color": "#2e9ad0" + }, + { + "symbol": "R", + "name": "Revain", + "color": "#771a4e" + }, + { + "symbol": "RADS", + "name": "Radium", + "color": "#9d4bef" + }, + { + "symbol": "RAP", + "name": "Rapture", + "color": "#000000" + }, + { + "symbol": "RAY", + "name": "Raydium", + "color": "#6c45dc" + }, + { + "symbol": "RCN", + "name": "Rcoin", + "color": "#3555f9" + }, + { + "symbol": "RDD", + "name": "Reddcoin", + "color": "#e30613" + }, + { + "symbol": "RDN", + "name": "Raiden Network Token", + "color": "#2a2a2a" + }, + { + "symbol": "REN", + "name": "Ren", + "color": "#080817" + }, + { + "symbol": "REP", + "name": "Augur", + "color": "#602a52" + }, + { + "symbol": "REPV2", + "name": "Augur", + "color": "#0e0e21" + }, + { + "symbol": "REQ", + "name": "Request", + "color": "#00e6a0" + }, + { + "symbol": "RHOC", + "name": "RChain", + "color": "#cc1e46" + }, + { + "symbol": "RIC", + "name": "Riecoin", + "color": "#60e4dd" + }, + { + "symbol": "RISE", + "name": "Rise", + "color": "#f49352" + }, + { + "symbol": "RLC", + "name": "iExec RLC", + "color": "#ffd800" + }, + { + "symbol": "RPX", + "name": "RPX", + "color": "#8d181b" + }, + { + "symbol": "RUB", + "name": "RUB", + "color": "#64d1ff" + }, + { + "symbol": "RVN", + "name": "Ravencoin", + "color": "#384182" + }, + { + "symbol": "RYO", + "name": "Ryo Currency", + "color": "#3d58b0" + }, + { + "symbol": "SAFE", + "name": "Safe", + "color": "#00688c" + }, + { + "symbol": "SAFEMOON", + "name": "SafeMoon", + "color": "#00a79d" + }, + { + "symbol": "SAI", + "name": "Single Collateral DAI", + "color": "#b68900" + }, + { + "symbol": "SALT", + "name": "SALT", + "color": "#1beef4" + }, + { + "symbol": "SAN", + "name": "Santiment Network Token", + "color": "#2b77b3" + }, + { + "symbol": "SAND", + "name": "The Sandbox", + "color": "#04adef" + }, + { + "symbol": "SBD", + "name": "Steem Dollars", + "color": "#4ba2f2" + }, + { + "symbol": "SBERBANK", + "name": "SBERBANK", + "color": "#48b254" + }, + { + "symbol": "SC", + "name": "Siacoin", + "color": "#20ee82" + }, + { + "symbol": "SER", + "name": "Serum", + "color": "#6dc6c1" + }, + { + "symbol": "SHIFT", + "name": "Shift", + "color": "#964b9c" + }, + { + "symbol": "SIB", + "name": "SIBCoin", + "color": "#057bc1" + }, + { + "symbol": "SIN", + "name": "SINOVATE", + "color": "#f5342e" + }, + { + "symbol": "SKL", + "name": "SKALE Network", + "color": "#000000" + }, + { + "symbol": "SKY", + "name": "Skycoin", + "color": "#0072ff" + }, + { + "symbol": "SLR", + "name": "Solarcoin", + "color": "#fda616" + }, + { + "symbol": "SLS", + "name": "SaluS", + "color": "#8e9495" + }, + { + "symbol": "SMART", + "name": "SmartCash", + "color": "#fec60d" + }, + { + "symbol": "SMART", + "name": "SmartCash", + "color": "#fec60d" + }, + { + "symbol": "SNGLS", + "name": "SingularDTV", + "color": "#b30d23" + }, + { + "symbol": "SNM", + "name": "SONM", + "color": "#0b1c26" + }, + { + "symbol": "SNT", + "name": "Status", + "color": "#5b6dee" + }, + { + "symbol": "SNX", + "name": "Synthetix", + "color": "#5fcdf9" + }, + { + "symbol": "SOC", + "name": "All Sports", + "color": "#199248" + }, + { + "symbol": "SOL", + "name": "Solana", + "color": "#66f9a1" + }, + { + "symbol": "SPACEHBIT", + "name": "HashBit Blockchain", + "color": "#0971fe" + }, + { + "symbol": "SPANK", + "name": "SpankChain", + "color": "#ff3b81" + }, + { + "symbol": "SPHTX", + "name": "SophiaTX", + "color": "#00b098" + }, + { + "symbol": "SRN", + "name": "Sirin Labs Token", + "color": "#1c1c1c" + }, + { + "symbol": "STAK", + "name": "STRAKS", + "color": "#f2941b" + }, + { + "symbol": "START", + "name": "Startcoin", + "color": "#01aef0" + }, + { + "symbol": "STEEM", + "name": "Steem", + "color": "#4ba2f2" + }, + { + "symbol": "STORJ", + "name": "Storj", + "color": "#2683ff" + }, + { + "symbol": "STORM", + "name": "Storm", + "color": "#080d98" + }, + { + "symbol": "STOX", + "name": "Stox", + "color": "#7324f0" + }, + { + "symbol": "STQ", + "name": "Storiqa", + "color": "#2dc4e7" + }, + { + "symbol": "STRAT", + "name": "Stratis", + "color": "#1387c9" + }, + { + "symbol": "STX", + "name": "Stacks", + "color": "#5546ff" + }, + { + "symbol": "SUB", + "name": "Substratum", + "color": "#e53431" + }, + { + "symbol": "SUMO", + "name": "Sumokoin", + "color": "#2d9cdb" + }, + { + "symbol": "SUSHI", + "name": "SushiSwap", + "color": "#d65892" + }, + { + "symbol": "SYS", + "name": "Syscoin", + "color": "#0082c6" + }, + { + "symbol": "TAAS", + "name": "TaaS", + "color": "#002342" + }, + { + "symbol": "TAU", + "name": "Lamden", + "color": "#7b346e" + }, + { + "symbol": "TBX", + "name": "Tokenbox", + "color": "#5244d4" + }, + { + "symbol": "TEL", + "name": "Telcoin", + "color": "#14c8ff" + }, + { + "symbol": "TEN", + "name": "Tokenomy", + "color": "#0899cd" + }, + { + "symbol": "TERN", + "name": "Ternio", + "color": "#f4c257" + }, + { + "symbol": "TGCH", + "name": "TrueGalaxyCash", + "color": "#434247" + }, + { + "symbol": "THETA", + "name": "Theta Network", + "color": "#2ab8e6" + }, + { + "symbol": "TIX", + "name": "Blocktix", + "color": "#ef494d" + }, + { + "symbol": "TKN", + "name": "TokenCard", + "color": "#24dd7b" + }, + { + "symbol": "TKS", + "name": "Tokes Platform", + "color": "#895af8" + }, + { + "symbol": "TNB", + "name": "Time New Bank", + "color": "#ffc04e" + }, + { + "symbol": "TNC", + "name": "Trinity Network Credit", + "color": "#ff439b" + }, + { + "symbol": "TNT", + "name": "Tierion", + "color": "#ff4081" + }, + { + "symbol": "TOMO", + "name": "TomoChain", + "color": "#1a1f36" + }, + { + "symbol": "TPAY", + "name": "TokenPay", + "color": "#3058a6" + }, + { + "symbol": "TRIG", + "name": "Triggers", + "color": "#30c0f2" + }, + { + "symbol": "TRTL", + "name": "TurtleCoin", + "color": "#00843d" + }, + { + "symbol": "TRX", + "name": "TRON", + "color": "#ef0027" + }, + { + "symbol": "TUSD", + "name": "TrueUSD", + "color": "#2b2e7f" + }, + { + "symbol": "TZC", + "name": "TrezarCoin", + "color": "#374851" + }, + { + "symbol": "UBQ", + "name": "Ubiq", + "color": "#00ea90" + }, + { + "symbol": "UMA", + "name": "UMA", + "color": "#ff4a4a" + }, + { + "symbol": "UNI", + "name": "Uniswap", + "color": "#ff007a" + }, + { + "symbol": "UNITY", + "name": "SuperNET", + "color": "#f58634" + }, + { + "symbol": "USD", + "name": "USD", + "color": "#6cde07" + }, + { + "symbol": "USDC", + "name": "USD Coin", + "color": "#3e73c4" + }, + { + "symbol": "USDT", + "name": "Tether", + "color": "#26a17b" + }, + { + "symbol": "UTK", + "name": "UTRUST", + "color": "#30367a" + }, + { + "symbol": "VERI", + "name": "Veritaseum", + "color": "#ff9933" + }, + { + "symbol": "VET", + "name": "VeChain", + "color": "#15bdff" + }, + { + "symbol": "VIA", + "name": "Viacoin", + "color": "#565656" + }, + { + "symbol": "VIB", + "name": "Viberate", + "color": "#ff1f43" + }, + { + "symbol": "VIBE", + "name": "VIBE", + "color": "#338be5" + }, + { + "symbol": "VIVO", + "name": "VIVO", + "color": "#408af1" + }, + { + "symbol": "VRC", + "name": "VeriCoin", + "color": "#418bca" + }, + { + "symbol": "VRSC", + "name": "VerusCoin", + "color": "#3165d4" + }, + { + "symbol": "VRSC", + "name": "VerusCoin", + "color": "#3165d4" + }, + { + "symbol": "VTC", + "name": "Vertcoin", + "color": "#048657" + }, + { + "symbol": "VTHO", + "name": "VeThor Token", + "color": "#2a5284" + }, + { + "symbol": "WABI", + "name": "Tael", + "color": "#399b32" + }, + { + "symbol": "WAN", + "name": "Wanchain", + "color": "#136aad" + }, + { + "symbol": "WAVES", + "name": "Waves", + "color": "#0155ff" + }, + { + "symbol": "WAX", + "name": "WAX", + "color": "#f89022" + }, + { + "symbol": "WBTC", + "name": "Wrapped Bitcoin", + "color": "#201a2d" + }, + { + "symbol": "WGR", + "name": "Wagerr", + "color": "#b80000" + }, + { + "symbol": "WICC", + "name": "WaykiChain", + "color": "#5783cb" + }, + { + "symbol": "WINGS", + "name": "Wings", + "color": "#0dc9f7" + }, + { + "symbol": "WPR", + "name": "WePower", + "color": "#ffe600" + }, + { + "symbol": "WTC", + "name": "Waltonchain", + "color": "#8200ff" + }, + { + "symbol": "X", + "name": "GLX Equity Token", + "color": "#3b5998" + }, + { + "symbol": "XAS", + "name": "Asch", + "color": "#faa00d" + }, + { + "symbol": "XBC", + "name": "Bitcoin Plus", + "color": "#f7931a" + }, + { + "symbol": "XBP", + "name": "BlitzPredict", + "color": "#21af67" + }, + { + "symbol": "XBY", + "name": "XtraBYtes", + "color": "#56f4f1" + }, + { + "symbol": "XCP", + "name": "Counterparty", + "color": "#ed1650" + }, + { + "symbol": "XDN", + "name": "DigitalNote", + "color": "#4f7aa2" + }, + { + "symbol": "XEM", + "name": "NEM", + "color": "#67b2e8" + }, + { + "symbol": "XIN", + "name": "Infinity Economics", + "color": "#1eb5fa" + }, + { + "symbol": "XLM", + "name": "Stellar", + "color": "#000000" + }, + { + "symbol": "XMCC", + "name": "Monoeci", + "color": "#dd0632" + }, + { + "symbol": "XMG", + "name": "Magi", + "color": "#004a80" + }, + { + "symbol": "XMO", + "name": "Monero Original", + "color": "#ff6600" + }, + { + "symbol": "XMR", + "name": "Monero", + "color": "#ff6600" + }, + { + "symbol": "XMY", + "name": "Myriad", + "color": "#ec1076" + }, + { + "symbol": "XP", + "name": "XP", + "color": "#008200" + }, + { + "symbol": "XPA", + "name": "XPA", + "color": "#4fa784" + }, + { + "symbol": "XPM", + "name": "Primecoin", + "color": "#ffd81b" + }, + { + "symbol": "XPR", + "name": "Proton", + "color": "#7543e3" + }, + { + "symbol": "XRP", + "name": "XRP", + "color": "#23292f" + }, + { + "symbol": "XSG", + "name": "SnowGem", + "color": "#d21e2b" + }, + { + "symbol": "XTZ", + "name": "Tezos", + "color": "#a6e000" + }, + { + "symbol": "XUC", + "name": "Exchange Union", + "color": "#25aae3" + }, + { + "symbol": "XVC", + "name": "Vcash", + "color": "#b50126" + }, + { + "symbol": "XVG", + "name": "Verge", + "color": "#00cbff" + }, + { + "symbol": "XZC", + "name": "Zcoin", + "color": "#23b852" + }, + { + "symbol": "YFI", + "name": "yearn.finance", + "color": "#006ae3" + }, + { + "symbol": "YOYOW", + "name": "YOYOW", + "color": "#21a5de" + }, + { + "symbol": "ZCL", + "name": "Zclassic", + "color": "#c87035" + }, + { + "symbol": "ZEC", + "name": "Zcash", + "color": "#ecb244" + }, + { + "symbol": "ZEL", + "name": "ZelCash", + "color": "#183c87" + }, + { + "symbol": "ZEN", + "name": "Horizen", + "color": "#00eaab" + }, + { + "symbol": "ZEST", + "name": "Zest", + "color": "#07bc9c" + }, + { + "symbol": "ZEST", + "name": "Zest", + "color": "#07bc9c" + }, + { + "symbol": "ZIL", + "name": "Zilliqa", + "color": "#49c1bf" + }, + { + "symbol": "ZILLA", + "name": "Chainzilla", + "color": "#00004d" + }, + { + "symbol": "ZRX", + "name": "0x", + "color": "#302c2c" + } +] diff --git a/packages/nextjs/public/cryptocurrency-icons/package.json b/packages/nextjs/public/cryptocurrency-icons/package.json new file mode 100644 index 0000000..72ed1d3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/package.json @@ -0,0 +1,59 @@ +{ + "name": "cryptocurrency-icons", + "version": "0.18.1", + "description": "A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes", + "license": "CC0-1.0", + "repository": "atomiclabs/cryptocurrency-icons", + "homepage": "http://cryptoicons.co", + "files": [ + "32", + "32@2x", + "128", + "svg", + "manifest.json" + ], + "keywords": [ + "cryptocurrency", + "icons", + "icon", + "crypto", + "currency", + "cryptocurrencies", + "currencies", + "symbols", + "svg", + "png", + "vector", + "color", + "coin", + "bitcoin", + "ethereum", + "flat-icons", + "altcoin", + "altcoins", + "icon-pack", + "icon-set", + "erc20-tokens", + "erc20", + "erc721" + ], + "scripts": { + "test": "xo", + "manifest": "node scripts/manifest.js", + "clean": "svgo --multipass --disable=removeViewBox --enable=addViewBox $(globby {svg,originals}/**/*.svg)" + }, + "devDependencies": { + "alpha-sort": "^2.0.1", + "coinlist": "^3.1.2", + "get-svg-colors": "^1.5.1", + "globby-cli": "^1.0.1", + "husky": "^1.3.1", + "svgo": "^1.3.2", + "xo": "^0.24.0" + }, + "husky": { + "hooks": { + "pre-commit": "npm run manifest && npm run clean" + } + } +} diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/$pac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/$pac.svg new file mode 100644 index 0000000..c70fdc7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/$pac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/0xbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/0xbtc.svg new file mode 100644 index 0000000..153f66e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/0xbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/1inch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/1inch.svg new file mode 100644 index 0000000..2a4d3fa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/1inch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/2give.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/2give.svg new file mode 100644 index 0000000..30afc48 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/2give.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/aave.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/aave.svg new file mode 100644 index 0000000..5e8d20d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/aave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/abt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/abt.svg new file mode 100644 index 0000000..a827641 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/abt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/act.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/act.svg new file mode 100644 index 0000000..e524ae2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/act.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/actn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/actn.svg new file mode 100644 index 0000000..7a19f6b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/actn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ada.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ada.svg new file mode 100644 index 0000000..8441c95 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ada.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/add.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/add.svg new file mode 100644 index 0000000..d2be04c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/adx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/adx.svg new file mode 100644 index 0000000..1e3cb17 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/adx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ae.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ae.svg new file mode 100644 index 0000000..e22e295 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/aeon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/aeon.svg new file mode 100644 index 0000000..b3aca23 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/aeon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/aeur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/aeur.svg new file mode 100644 index 0000000..888fd31 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/aeur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/agi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/agi.svg new file mode 100644 index 0000000..74f02d6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/agi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/agrs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/agrs.svg new file mode 100644 index 0000000..3461ed3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/agrs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/aion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/aion.svg new file mode 100644 index 0000000..935b37e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/aion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/algo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/algo.svg new file mode 100644 index 0000000..60784eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/algo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/amb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/amb.svg new file mode 100644 index 0000000..7efe8eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/amb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/amp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/amp.svg new file mode 100644 index 0000000..c63187b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/amp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ampl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ampl.svg new file mode 100644 index 0000000..1809867 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ampl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ankr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ankr.svg new file mode 100644 index 0000000..1494164 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ankr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ant.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ant.svg new file mode 100644 index 0000000..8f3cd19 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ape.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ape.svg new file mode 100644 index 0000000..1cffa81 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/apex.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/apex.svg new file mode 100644 index 0000000..e6a65ea --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/apex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/appc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/appc.svg new file mode 100644 index 0000000..3574c20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/appc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ardr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ardr.svg new file mode 100644 index 0000000..9c36c0f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ardr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/arg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/arg.svg new file mode 100644 index 0000000..c426e0d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/arg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ark.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ark.svg new file mode 100644 index 0000000..bea5f4c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/arn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/arn.svg new file mode 100644 index 0000000..475fe3b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/arn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/arnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/arnx.svg new file mode 100644 index 0000000..449f2b8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/arnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ary.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ary.svg new file mode 100644 index 0000000..611e473 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ast.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ast.svg new file mode 100644 index 0000000..b9420ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/atlas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/atlas.svg new file mode 100644 index 0000000..3739619 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/atlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/atm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/atm.svg new file mode 100644 index 0000000..05fe51b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/atm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/atom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/atom.svg new file mode 100644 index 0000000..292fcf9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/audr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/audr.svg new file mode 100644 index 0000000..2d6a286 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/audr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/aury.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/aury.svg new file mode 100644 index 0000000..aea14bc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/aury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/auto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/auto.svg new file mode 100644 index 0000000..080d5d0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/avax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/avax.svg new file mode 100644 index 0000000..d8769af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/avax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/aywa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/aywa.svg new file mode 100644 index 0000000..9b8c851 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/aywa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bab.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bab.svg new file mode 100644 index 0000000..c8aeaad --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bal.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bal.svg new file mode 100644 index 0000000..03321db --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/band.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/band.svg new file mode 100644 index 0000000..988cdfa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/band.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bat.svg new file mode 100644 index 0000000..89793d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bay.svg new file mode 100644 index 0000000..763c1ce --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bcbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcbc.svg new file mode 100644 index 0000000..1edd15f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcc.svg new file mode 100644 index 0000000..9a21c46 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcd.svg new file mode 100644 index 0000000..709f6d9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bch.svg new file mode 100644 index 0000000..2d63378 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bcio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcio.svg new file mode 100644 index 0000000..16ff336 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcn.svg new file mode 100644 index 0000000..14e404e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bco.svg new file mode 100644 index 0000000..1887cb4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bcpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcpt.svg new file mode 100644 index 0000000..80a747d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bcpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bdl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bdl.svg new file mode 100644 index 0000000..bc842ce --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bdl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/beam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/beam.svg new file mode 100644 index 0000000..840e89e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bela.svg new file mode 100644 index 0000000..93c8a5f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bix.svg new file mode 100644 index 0000000..de78e1c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/blcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/blcn.svg new file mode 100644 index 0000000..1bd5ec1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/blcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/blk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/blk.svg new file mode 100644 index 0000000..44b84af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/blk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/block.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/block.svg new file mode 100644 index 0000000..a70e225 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/blz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/blz.svg new file mode 100644 index 0000000..6db8f7d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/blz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bnb.svg new file mode 100644 index 0000000..b8ed4ef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bnt.svg new file mode 100644 index 0000000..8cbbd2a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bnty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bnty.svg new file mode 100644 index 0000000..22d19ae --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bnty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/booty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/booty.svg new file mode 100644 index 0000000..086c9f9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/booty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bos.svg new file mode 100644 index 0000000..04c317e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bpt.svg new file mode 100644 index 0000000..bf63e4c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bq.svg new file mode 100644 index 0000000..8eabaa4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/brd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/brd.svg new file mode 100644 index 0000000..aeec7b3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/brd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bsd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bsd.svg new file mode 100644 index 0000000..e6ceaf0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bsv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bsv.svg new file mode 100644 index 0000000..2facde9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bsv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btc.svg new file mode 100644 index 0000000..12c0a75 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btcd.svg new file mode 100644 index 0000000..417bc4d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btch.svg new file mode 100644 index 0000000..e45e2cd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btcp.svg new file mode 100644 index 0000000..335dbd2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btcz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btcz.svg new file mode 100644 index 0000000..d43c07f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btcz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btdx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btdx.svg new file mode 100644 index 0000000..9b339df --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btdx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btg.svg new file mode 100644 index 0000000..05f3c62 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btm.svg new file mode 100644 index 0000000..6175bfc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bts.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bts.svg new file mode 100644 index 0000000..2d2766a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btt.svg new file mode 100644 index 0000000..f25f3c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/btx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/btx.svg new file mode 100644 index 0000000..f900837 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/btx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/burst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/burst.svg new file mode 100644 index 0000000..52c2cd1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/bze.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/bze.svg new file mode 100644 index 0000000..907d095 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/bze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/call.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/call.svg new file mode 100644 index 0000000..e576f93 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cc.svg new file mode 100644 index 0000000..f5b9662 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cdn.svg new file mode 100644 index 0000000..dcc939c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cdt.svg new file mode 100644 index 0000000..01603ce --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cenz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cenz.svg new file mode 100644 index 0000000..274615a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cenz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/chain.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/chain.svg new file mode 100644 index 0000000..4ff2bd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/chain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/chat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/chat.svg new file mode 100644 index 0000000..ab1edcb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/chips.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/chips.svg new file mode 100644 index 0000000..138ae54 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/chips.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/chsb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/chsb.svg new file mode 100644 index 0000000..524c2ae --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/chsb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/chz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/chz.svg new file mode 100644 index 0000000..f70e1fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/chz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cix.svg new file mode 100644 index 0000000..cb5c99e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/clam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/clam.svg new file mode 100644 index 0000000..a2879d2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/clam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cloak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cloak.svg new file mode 100644 index 0000000..18e1e29 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cloak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cmm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cmm.svg new file mode 100644 index 0000000..9046047 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cmm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cmt.svg new file mode 100644 index 0000000..45da50a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cnd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cnd.svg new file mode 100644 index 0000000..65df7f0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cnd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cnx.svg new file mode 100644 index 0000000..6ff0b35 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cny.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cny.svg new file mode 100644 index 0000000..10b3235 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cob.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cob.svg new file mode 100644 index 0000000..a8b3c26 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cob.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/colx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/colx.svg new file mode 100644 index 0000000..967f896 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/colx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/comp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/comp.svg new file mode 100644 index 0000000..3dca13b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/comp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/coqui.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/coqui.svg new file mode 100644 index 0000000..27577db --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/coqui.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cred.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cred.svg new file mode 100644 index 0000000..5bddab4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cred.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/crpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/crpt.svg new file mode 100644 index 0000000..9deb332 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/crpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/crv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/crv.svg new file mode 100644 index 0000000..fd52f7b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/crv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/crw.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/crw.svg new file mode 100644 index 0000000..c2e8b91 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/crw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cs.svg new file mode 100644 index 0000000..98cea60 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ctr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ctr.svg new file mode 100644 index 0000000..3e51cb2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ctr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ctxc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ctxc.svg new file mode 100644 index 0000000..f04eb7e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ctxc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/cvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/cvc.svg new file mode 100644 index 0000000..029c2f6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/cvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/d.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/d.svg new file mode 100644 index 0000000..dde2b8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dai.svg new file mode 100644 index 0000000..e2eb537 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dash.svg new file mode 100644 index 0000000..c7749eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dat.svg new file mode 100644 index 0000000..022f3de --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/data.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/data.svg new file mode 100644 index 0000000..52d32f4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/data.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dbc.svg new file mode 100644 index 0000000..d4c3295 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dcn.svg new file mode 100644 index 0000000..3ffa1ed --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dcr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dcr.svg new file mode 100644 index 0000000..8434299 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dcr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/deez.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/deez.svg new file mode 100644 index 0000000..f49139d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/deez.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dent.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dent.svg new file mode 100644 index 0000000..112902d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dew.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dew.svg new file mode 100644 index 0000000..274a4ac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dgb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dgb.svg new file mode 100644 index 0000000..3cfc596 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dgb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dgd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dgd.svg new file mode 100644 index 0000000..3e9c59c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dgd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dlt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dlt.svg new file mode 100644 index 0000000..2cb08fb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dlt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dnt.svg new file mode 100644 index 0000000..ec9c76e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dock.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dock.svg new file mode 100644 index 0000000..cc65218 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/doge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/doge.svg new file mode 100644 index 0000000..c9c6c83 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/doge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dot.svg new file mode 100644 index 0000000..2bbef78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/drgn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/drgn.svg new file mode 100644 index 0000000..03ae92c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/drgn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/drop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/drop.svg new file mode 100644 index 0000000..9ab88ee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/drop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dta.svg new file mode 100644 index 0000000..1293a73 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dth.svg new file mode 100644 index 0000000..1d69dcd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/dtr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/dtr.svg new file mode 100644 index 0000000..1ee054d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/dtr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ebst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ebst.svg new file mode 100644 index 0000000..abdbb99 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ebst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eca.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eca.svg new file mode 100644 index 0000000..9698c44 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/edg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/edg.svg new file mode 100644 index 0000000..b7db6d7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/edg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/edo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/edo.svg new file mode 100644 index 0000000..623c3a1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/edo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/edoge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/edoge.svg new file mode 100644 index 0000000..3450d7b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/edoge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ela.svg new file mode 100644 index 0000000..524b66b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/elec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/elec.svg new file mode 100644 index 0000000..3e4e18c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/elec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/elf.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/elf.svg new file mode 100644 index 0000000..edba010 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/elf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/elix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/elix.svg new file mode 100644 index 0000000..5b9b99e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/elix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ella.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ella.svg new file mode 100644 index 0000000..3f3995b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/emb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/emb.svg new file mode 100644 index 0000000..135942d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/emb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/emc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/emc.svg new file mode 100644 index 0000000..b1e303e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/emc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/emc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/emc2.svg new file mode 100644 index 0000000..c1738c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/emc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eng.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eng.svg new file mode 100644 index 0000000..798d3fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eng.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/enj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/enj.svg new file mode 100644 index 0000000..1ce1b0f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/enj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/entrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/entrp.svg new file mode 100644 index 0000000..5ce1100 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/entrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eon.svg new file mode 100644 index 0000000..984dada --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eop.svg new file mode 100644 index 0000000..4487e9b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eos.svg new file mode 100644 index 0000000..0a2aac0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eqli.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eqli.svg new file mode 100644 index 0000000..ad6587d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eqli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/equa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/equa.svg new file mode 100644 index 0000000..d50f2cb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/equa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/etc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/etc.svg new file mode 100644 index 0000000..af2fe75 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/etc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eth.svg new file mode 100644 index 0000000..23f6ca4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ethos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ethos.svg new file mode 100644 index 0000000..5060884 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ethos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/etn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/etn.svg new file mode 100644 index 0000000..7196741 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/etn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/etp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/etp.svg new file mode 100644 index 0000000..db8da8b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/etp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/eur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/eur.svg new file mode 100644 index 0000000..ac9707f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/eur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/evx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/evx.svg new file mode 100644 index 0000000..340ae2c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/evx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/exmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/exmo.svg new file mode 100644 index 0000000..6a08e49 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/exmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/exp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/exp.svg new file mode 100644 index 0000000..a7f18b7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/exp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fair.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fair.svg new file mode 100644 index 0000000..92c8733 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fct.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fct.svg new file mode 100644 index 0000000..e911bd0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fida.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fida.svg new file mode 100644 index 0000000..9392cc9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fida.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fil.svg new file mode 100644 index 0000000..73205ed --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fjc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fjc.svg new file mode 100644 index 0000000..397741f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fjc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fldc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fldc.svg new file mode 100644 index 0000000..68c8d85 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fldc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/flo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/flo.svg new file mode 100644 index 0000000..e1ee4b4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/flo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/flux.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/flux.svg new file mode 100644 index 0000000..2097495 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/flux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fsn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fsn.svg new file mode 100644 index 0000000..94158f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fsn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ftc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ftc.svg new file mode 100644 index 0000000..43a60bb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ftc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fuel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fuel.svg new file mode 100644 index 0000000..7a14265 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fuel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/fun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/fun.svg new file mode 100644 index 0000000..b36838f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/fun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/game.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/game.svg new file mode 100644 index 0000000..dc7185a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/game.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gas.svg new file mode 100644 index 0000000..4231b63 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gbp.svg new file mode 100644 index 0000000..cd0670f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gbx.svg new file mode 100644 index 0000000..6197742 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gbyte.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gbyte.svg new file mode 100644 index 0000000..f2b485b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gbyte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/generic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/generic.svg new file mode 100644 index 0000000..9e34a8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/generic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gin.svg new file mode 100644 index 0000000..0badbf7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/glxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/glxt.svg new file mode 100644 index 0000000..2406445 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/glxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gmr.svg new file mode 100644 index 0000000..75c867f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gmt.svg new file mode 100644 index 0000000..65faee7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gno.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gno.svg new file mode 100644 index 0000000..e880c64 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gno.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gnt.svg new file mode 100644 index 0000000..7acfd24 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gold.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gold.svg new file mode 100644 index 0000000..76af213 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/grc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/grc.svg new file mode 100644 index 0000000..3db41f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/grc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/grin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/grin.svg new file mode 100644 index 0000000..f33a95b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/grs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/grs.svg new file mode 100644 index 0000000..7d82d32 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/grs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/grt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/grt.svg new file mode 100644 index 0000000..c30c4c5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/grt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gsc.svg new file mode 100644 index 0000000..425b050 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gto.svg new file mode 100644 index 0000000..5cf09cb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gup.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gup.svg new file mode 100644 index 0000000..0301c6f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gusd.svg new file mode 100644 index 0000000..0b625bc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gvt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gvt.svg new file mode 100644 index 0000000..8636622 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gvt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gxs.svg new file mode 100644 index 0000000..8839e8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/gzr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/gzr.svg new file mode 100644 index 0000000..10d2a2c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/gzr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/hight.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/hight.svg new file mode 100644 index 0000000..1787dc1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/hight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/hns.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/hns.svg new file mode 100644 index 0000000..2fd74d6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/hns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/hodl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/hodl.svg new file mode 100644 index 0000000..3e1f144 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/hodl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/hot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/hot.svg new file mode 100644 index 0000000..e5f2b6d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/hpb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/hpb.svg new file mode 100644 index 0000000..80e20d6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/hpb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/hsr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/hsr.svg new file mode 100644 index 0000000..d53a4d6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/hsr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ht.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ht.svg new file mode 100644 index 0000000..1f48d70 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ht.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/html.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/html.svg new file mode 100644 index 0000000..e7410ac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/html.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/huc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/huc.svg new file mode 100644 index 0000000..fc0be54 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/huc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/husd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/husd.svg new file mode 100644 index 0000000..6386499 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/husd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/hush.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/hush.svg new file mode 100644 index 0000000..9812590 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/hush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/icn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/icn.svg new file mode 100644 index 0000000..5e6c7b8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/icn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/icp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/icp.svg new file mode 100644 index 0000000..34c27fe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/icp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/icx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/icx.svg new file mode 100644 index 0000000..ce7e83d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/icx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ignis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ignis.svg new file mode 100644 index 0000000..bc82eaf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ignis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ilk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ilk.svg new file mode 100644 index 0000000..3bdd603 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ilk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ink.svg new file mode 100644 index 0000000..1d35c46 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ins.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ins.svg new file mode 100644 index 0000000..4010c2d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ion.svg new file mode 100644 index 0000000..a46038e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/iop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/iop.svg new file mode 100644 index 0000000..7fb35a6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/iop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/iost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/iost.svg new file mode 100644 index 0000000..daefc20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/iost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/iotx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/iotx.svg new file mode 100644 index 0000000..120b733 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/iotx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/iq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/iq.svg new file mode 100644 index 0000000..a404d78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/iq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/itc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/itc.svg new file mode 100644 index 0000000..84681b8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/itc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/jnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/jnt.svg new file mode 100644 index 0000000..d1153e9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/jnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/jpy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/jpy.svg new file mode 100644 index 0000000..a71a7ae --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/jpy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/kcs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/kcs.svg new file mode 100644 index 0000000..b941d92 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/kcs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/kin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/kin.svg new file mode 100644 index 0000000..9231d0e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/kin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/klown.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/klown.svg new file mode 100644 index 0000000..0135c3b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/klown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/kmd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/kmd.svg new file mode 100644 index 0000000..7b87172 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/kmd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/knc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/knc.svg new file mode 100644 index 0000000..e0093a1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/knc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/krb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/krb.svg new file mode 100644 index 0000000..1eb1d77 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/krb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ksm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ksm.svg new file mode 100644 index 0000000..9ce2bd1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ksm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/lbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/lbc.svg new file mode 100644 index 0000000..b7c633b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/lbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/lend.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/lend.svg new file mode 100644 index 0000000..ca981b7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/lend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/leo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/leo.svg new file mode 100644 index 0000000..f2362bc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/leo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/link.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/link.svg new file mode 100644 index 0000000..ac79e1e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/lkk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/lkk.svg new file mode 100644 index 0000000..5544d8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/lkk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/loom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/loom.svg new file mode 100644 index 0000000..df00714 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/loom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/lpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/lpt.svg new file mode 100644 index 0000000..3bbede2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/lpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/lrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/lrc.svg new file mode 100644 index 0000000..f1d3c92 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/lrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/lsk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/lsk.svg new file mode 100644 index 0000000..408055a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/lsk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ltc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ltc.svg new file mode 100644 index 0000000..f0c635b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ltc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/lun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/lun.svg new file mode 100644 index 0000000..de62e27 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/lun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/maid.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/maid.svg new file mode 100644 index 0000000..7c90c2a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/maid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mana.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mana.svg new file mode 100644 index 0000000..48ef62f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/matic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/matic.svg new file mode 100644 index 0000000..0376a9f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/matic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/max.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/max.svg new file mode 100644 index 0000000..6b86dff --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mcap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mcap.svg new file mode 100644 index 0000000..c91fe47 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mcap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mco.svg new file mode 100644 index 0000000..74a875b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mda.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mda.svg new file mode 100644 index 0000000..971ab71 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mds.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mds.svg new file mode 100644 index 0000000..020e07d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/med.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/med.svg new file mode 100644 index 0000000..2725e36 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/med.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/meetone.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/meetone.svg new file mode 100644 index 0000000..987b215 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/meetone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mft.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mft.svg new file mode 100644 index 0000000..e5393b4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/miota.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/miota.svg new file mode 100644 index 0000000..5f3ccd9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/miota.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mith.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mith.svg new file mode 100644 index 0000000..e31f9aa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mkr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mkr.svg new file mode 100644 index 0000000..cc91937 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mkr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mln.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mln.svg new file mode 100644 index 0000000..c9963ef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mln.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mnx.svg new file mode 100644 index 0000000..6463b65 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mnz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mnz.svg new file mode 100644 index 0000000..d34b35d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mnz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/moac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/moac.svg new file mode 100644 index 0000000..0dbdbb4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/moac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mod.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mod.svg new file mode 100644 index 0000000..fe13fa1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mod.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mona.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mona.svg new file mode 100644 index 0000000..738881a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mona.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/msr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/msr.svg new file mode 100644 index 0000000..20bdb5c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/msr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mth.svg new file mode 100644 index 0000000..0ed6f0c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mtl.svg new file mode 100644 index 0000000..0a2dc17 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/music.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/music.svg new file mode 100644 index 0000000..c9abd56 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/mzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/mzc.svg new file mode 100644 index 0000000..316f2df --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/mzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nano.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nano.svg new file mode 100644 index 0000000..ac0e4ce --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nas.svg new file mode 100644 index 0000000..8019b66 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nav.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nav.svg new file mode 100644 index 0000000..21aa7fe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nav.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ncash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ncash.svg new file mode 100644 index 0000000..a872c30 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ncash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ndz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ndz.svg new file mode 100644 index 0000000..3e7f2d0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ndz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nebl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nebl.svg new file mode 100644 index 0000000..aaa89e6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nebl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/neo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/neo.svg new file mode 100644 index 0000000..4231b63 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/neo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/neos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/neos.svg new file mode 100644 index 0000000..2be5f7d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/neos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/neu.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/neu.svg new file mode 100644 index 0000000..5dc912c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/neu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nexo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nexo.svg new file mode 100644 index 0000000..9bf8c4f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nexo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ngc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ngc.svg new file mode 100644 index 0000000..2ce2047 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ngc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nio.svg new file mode 100644 index 0000000..dcf613d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nkn.svg new file mode 100644 index 0000000..054e4f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nlc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nlc2.svg new file mode 100644 index 0000000..c9a69f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nlc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nlg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nlg.svg new file mode 100644 index 0000000..b562bf5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nlg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nmc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nmc.svg new file mode 100644 index 0000000..88122bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nmc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nmr.svg new file mode 100644 index 0000000..bc98cea --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/npxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/npxs.svg new file mode 100644 index 0000000..2870719 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/npxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ntbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ntbc.svg new file mode 100644 index 0000000..7867a57 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ntbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nuls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nuls.svg new file mode 100644 index 0000000..e43bff5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nuls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nxs.svg new file mode 100644 index 0000000..a1002d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/nxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/nxt.svg new file mode 100644 index 0000000..59d7f4b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/nxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/oax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/oax.svg new file mode 100644 index 0000000..49200b5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/oax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ok.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ok.svg new file mode 100644 index 0000000..28c6e6a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/omg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/omg.svg new file mode 100644 index 0000000..d7d8cf9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/omg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/omni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/omni.svg new file mode 100644 index 0000000..0a2e22f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/omni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/one.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/one.svg new file mode 100644 index 0000000..19f049d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ong.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ong.svg new file mode 100644 index 0000000..cecaf8d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ont.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ont.svg new file mode 100644 index 0000000..88745f4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ont.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/oot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/oot.svg new file mode 100644 index 0000000..103226e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/oot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ost.svg new file mode 100644 index 0000000..2ede8bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ox.svg new file mode 100644 index 0000000..2427795 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/oxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/oxt.svg new file mode 100644 index 0000000..2912a8d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/oxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/oxy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/oxy.svg new file mode 100644 index 0000000..8eb029f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/oxy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/part.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/part.svg new file mode 100644 index 0000000..48436fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/part.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pasc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pasc.svg new file mode 100644 index 0000000..df40090 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pasc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pasl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pasl.svg new file mode 100644 index 0000000..d507551 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pasl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pax.svg new file mode 100644 index 0000000..eb200e7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/paxg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/paxg.svg new file mode 100644 index 0000000..eb200e7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/paxg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pay.svg new file mode 100644 index 0000000..83a37b6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/payx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/payx.svg new file mode 100644 index 0000000..2d90eec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/payx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pink.svg new file mode 100644 index 0000000..3ba5641 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pirl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pirl.svg new file mode 100644 index 0000000..fcea32a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pirl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pivx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pivx.svg new file mode 100644 index 0000000..0850f87 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pivx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/plr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/plr.svg new file mode 100644 index 0000000..d1b09b3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/plr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/poa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/poa.svg new file mode 100644 index 0000000..0c82d11 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/poa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/poe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/poe.svg new file mode 100644 index 0000000..428661e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/poe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/polis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/polis.svg new file mode 100644 index 0000000..c217ff5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/polis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/poly.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/poly.svg new file mode 100644 index 0000000..56c3cd5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/poly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pot.svg new file mode 100644 index 0000000..82857d2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/powr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/powr.svg new file mode 100644 index 0000000..3eb1318 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/powr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ppc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ppc.svg new file mode 100644 index 0000000..5ed3fdb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ppc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ppp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ppp.svg new file mode 100644 index 0000000..640af75 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ppp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ppt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ppt.svg new file mode 100644 index 0000000..63164fe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ppt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pre.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pre.svg new file mode 100644 index 0000000..8d91ff2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pre.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/prl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/prl.svg new file mode 100644 index 0000000..d270058 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/prl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pungo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pungo.svg new file mode 100644 index 0000000..415eaa4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pungo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/pura.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/pura.svg new file mode 100644 index 0000000..24bae0f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/pura.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/qash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/qash.svg new file mode 100644 index 0000000..7e3c36d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/qash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/qiwi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/qiwi.svg new file mode 100644 index 0000000..a36f59c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/qiwi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/qlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/qlc.svg new file mode 100644 index 0000000..d3ca346 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/qlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/qnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/qnt.svg new file mode 100644 index 0000000..bbeb160 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/qnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/qrl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/qrl.svg new file mode 100644 index 0000000..f8fa2c9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/qrl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/qsp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/qsp.svg new file mode 100644 index 0000000..504fee9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/qsp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/qtum.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/qtum.svg new file mode 100644 index 0000000..9ebcd66 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/qtum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/r.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/r.svg new file mode 100644 index 0000000..d0c6006 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rads.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rads.svg new file mode 100644 index 0000000..5dca4d9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rap.svg new file mode 100644 index 0000000..4135cd5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ray.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ray.svg new file mode 100644 index 0000000..6aca2e3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rcn.svg new file mode 100644 index 0000000..3da0ff7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rdd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rdd.svg new file mode 100644 index 0000000..17685da --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rdn.svg new file mode 100644 index 0000000..e8e5b19 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ren.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ren.svg new file mode 100644 index 0000000..78b4652 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rep.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rep.svg new file mode 100644 index 0000000..263abbf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/repv2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/repv2.svg new file mode 100644 index 0000000..0daff1e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/repv2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/req.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/req.svg new file mode 100644 index 0000000..347a25e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/req.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rhoc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rhoc.svg new file mode 100644 index 0000000..ec8aebe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rhoc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ric.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ric.svg new file mode 100644 index 0000000..37448a1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rise.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rise.svg new file mode 100644 index 0000000..179c7e4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rlc.svg new file mode 100644 index 0000000..99ffc38 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rpx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rpx.svg new file mode 100644 index 0000000..2ebf3c6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rpx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rub.svg new file mode 100644 index 0000000..e53eee5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/rvn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/rvn.svg new file mode 100644 index 0000000..22dfed1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/rvn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ryo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ryo.svg new file mode 100644 index 0000000..b8b241f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ryo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/safe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/safe.svg new file mode 100644 index 0000000..d8f91a2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/safe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/safemoon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/safemoon.svg new file mode 100644 index 0000000..2ddb0cd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/safemoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sai.svg new file mode 100644 index 0000000..d69bf39 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/salt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/salt.svg new file mode 100644 index 0000000..c73c6b3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/salt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/san.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/san.svg new file mode 100644 index 0000000..9f67aba --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/san.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sand.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sand.svg new file mode 100644 index 0000000..6cd7493 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sbd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sbd.svg new file mode 100644 index 0000000..0a35abd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sbd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sberbank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sberbank.svg new file mode 100644 index 0000000..3ffdba4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sberbank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sc.svg new file mode 100644 index 0000000..371f53a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ser.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ser.svg new file mode 100644 index 0000000..d5acc2e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/shift.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/shift.svg new file mode 100644 index 0000000..0c46700 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/shift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sib.svg new file mode 100644 index 0000000..3f2c6a4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sin.svg new file mode 100644 index 0000000..8faeb05 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/skl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/skl.svg new file mode 100644 index 0000000..187cf8d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/skl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sky.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sky.svg new file mode 100644 index 0000000..4b1c79f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/slr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/slr.svg new file mode 100644 index 0000000..022cecb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/slr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sls.svg new file mode 100644 index 0000000..b47f1a5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/smart.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/smart.svg new file mode 100644 index 0000000..4bf187c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/smart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sngls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sngls.svg new file mode 100644 index 0000000..f0dd3aa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sngls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/snm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/snm.svg new file mode 100644 index 0000000..fac9568 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/snm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/snt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/snt.svg new file mode 100644 index 0000000..4738991 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/snt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/snx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/snx.svg new file mode 100644 index 0000000..bd7cdf8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/snx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/soc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/soc.svg new file mode 100644 index 0000000..96abdcf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/soc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sol.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sol.svg new file mode 100644 index 0000000..30f791d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/spacehbit.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/spacehbit.svg new file mode 100644 index 0000000..03e2d43 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/spacehbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/spank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/spank.svg new file mode 100644 index 0000000..822a995 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/spank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sphtx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sphtx.svg new file mode 100644 index 0000000..879e7a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sphtx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/srn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/srn.svg new file mode 100644 index 0000000..6db0776 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/srn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/stak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/stak.svg new file mode 100644 index 0000000..4fb8d0d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/stak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/start.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/start.svg new file mode 100644 index 0000000..64a0935 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/steem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/steem.svg new file mode 100644 index 0000000..8b442c8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/steem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/storj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/storj.svg new file mode 100644 index 0000000..b82aff5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/storj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/storm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/storm.svg new file mode 100644 index 0000000..37ac83c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/stox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/stox.svg new file mode 100644 index 0000000..d31d4f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/stox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/stq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/stq.svg new file mode 100644 index 0000000..43ad4e9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/stq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/strat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/strat.svg new file mode 100644 index 0000000..cb3056b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/strat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/stx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/stx.svg new file mode 100644 index 0000000..5def11c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/stx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sub.svg new file mode 100644 index 0000000..edbde0f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sumo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sumo.svg new file mode 100644 index 0000000..4e6830b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sumo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sushi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sushi.svg new file mode 100644 index 0000000..fce53c5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sushi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/sys.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/sys.svg new file mode 100644 index 0000000..c5fcfa7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/sys.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/taas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/taas.svg new file mode 100644 index 0000000..0b4d0ca --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/taas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tau.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tau.svg new file mode 100644 index 0000000..03b7156 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tau.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tbx.svg new file mode 100644 index 0000000..39453f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tel.svg new file mode 100644 index 0000000..7cb8db1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ten.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ten.svg new file mode 100644 index 0000000..3c09b1b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tern.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tern.svg new file mode 100644 index 0000000..e00bab4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tgch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tgch.svg new file mode 100644 index 0000000..52bd05e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tgch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/theta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/theta.svg new file mode 100644 index 0000000..fa5f208 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/theta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tix.svg new file mode 100644 index 0000000..2e809a9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tkn.svg new file mode 100644 index 0000000..9545ed8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tks.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tks.svg new file mode 100644 index 0000000..1daa0c0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tnb.svg new file mode 100644 index 0000000..f6e60c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tnc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tnc.svg new file mode 100644 index 0000000..40bbd6c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tnc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tnt.svg new file mode 100644 index 0000000..82e99cb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tomo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tomo.svg new file mode 100644 index 0000000..ea5ce04 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tomo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tpay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tpay.svg new file mode 100644 index 0000000..b0123ca --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tpay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/trig.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/trig.svg new file mode 100644 index 0000000..4472d98 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/trig.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/trtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/trtl.svg new file mode 100644 index 0000000..bd53389 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/trtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/trx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/trx.svg new file mode 100644 index 0000000..9260b06 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/trx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tusd.svg new file mode 100644 index 0000000..dc4ec14 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/tzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/tzc.svg new file mode 100644 index 0000000..ab4d2fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/tzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/ubq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/ubq.svg new file mode 100644 index 0000000..00458cb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/ubq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/uma.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/uma.svg new file mode 100644 index 0000000..38a952c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/uma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/uni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/uni.svg new file mode 100644 index 0000000..530267e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/uni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/unity.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/unity.svg new file mode 100644 index 0000000..f34c88f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/unity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/usd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/usd.svg new file mode 100644 index 0000000..9bdafb7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/usdc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/usdc.svg new file mode 100644 index 0000000..99f4125 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/usdc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/usdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/usdt.svg new file mode 100644 index 0000000..a6bea8f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/usdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/utk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/utk.svg new file mode 100644 index 0000000..6d26816 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/utk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/veri.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/veri.svg new file mode 100644 index 0000000..27a325a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/veri.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vet.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vet.svg new file mode 100644 index 0000000..ddfdf9f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/via.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/via.svg new file mode 100644 index 0000000..8b8da27 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/via.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vib.svg new file mode 100644 index 0000000..16c106b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vibe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vibe.svg new file mode 100644 index 0000000..0a42259 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vibe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vivo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vivo.svg new file mode 100644 index 0000000..c4f250b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vivo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vrc.svg new file mode 100644 index 0000000..bb1fd81 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vrsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vrsc.svg new file mode 100644 index 0000000..dd163ee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vrsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vtc.svg new file mode 100644 index 0000000..bf31fd5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/vtho.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/vtho.svg new file mode 100644 index 0000000..6e14b6a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/vtho.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wabi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wabi.svg new file mode 100644 index 0000000..021ab99 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wabi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wan.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wan.svg new file mode 100644 index 0000000..adbf3a2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/waves.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/waves.svg new file mode 100644 index 0000000..6517e03 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/waves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wax.svg new file mode 100644 index 0000000..ba77bbe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wbtc.svg new file mode 100644 index 0000000..2ff9319 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wgr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wgr.svg new file mode 100644 index 0000000..e607d6f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wgr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wicc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wicc.svg new file mode 100644 index 0000000..8b6f3c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wicc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wings.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wings.svg new file mode 100644 index 0000000..590606f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wpr.svg new file mode 100644 index 0000000..24aa587 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/wtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/wtc.svg new file mode 100644 index 0000000..6b707d7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/wtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/x.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/x.svg new file mode 100644 index 0000000..fb4bfa4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xas.svg new file mode 100644 index 0000000..a50ac6c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xbc.svg new file mode 100644 index 0000000..de9ec30 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xbp.svg new file mode 100644 index 0000000..24d9532 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xby.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xby.svg new file mode 100644 index 0000000..ada6c20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xcp.svg new file mode 100644 index 0000000..a5b4856 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xdn.svg new file mode 100644 index 0000000..5ce2428 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xem.svg new file mode 100644 index 0000000..66ce781 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xin.svg new file mode 100644 index 0000000..eacb326 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xlm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xlm.svg new file mode 100644 index 0000000..c1bb3d7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xlm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xmcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmcc.svg new file mode 100644 index 0000000..ae7904b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xmg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmg.svg new file mode 100644 index 0000000..6974339 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmo.svg new file mode 100644 index 0000000..481a081 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmr.svg new file mode 100644 index 0000000..2d7ef51 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xmy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmy.svg new file mode 100644 index 0000000..b809db0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xmy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xp.svg new file mode 100644 index 0000000..d762f7b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xpa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xpa.svg new file mode 100644 index 0000000..b5e3d46 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xpa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xpm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xpm.svg new file mode 100644 index 0000000..7f559ee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xpm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xpr.svg new file mode 100644 index 0000000..2504086 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xrp.svg new file mode 100644 index 0000000..18824a4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xsg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xsg.svg new file mode 100644 index 0000000..224d6b4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xsg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xtz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xtz.svg new file mode 100644 index 0000000..7cc7c59 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xtz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xuc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xuc.svg new file mode 100644 index 0000000..c48327b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xuc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xvc.svg new file mode 100644 index 0000000..86bbd7e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xvg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xvg.svg new file mode 100644 index 0000000..5b759ae --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xvg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/xzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/xzc.svg new file mode 100644 index 0000000..d301a9c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/xzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/yfi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/yfi.svg new file mode 100644 index 0000000..496387f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/yfi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/yoyow.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/yoyow.svg new file mode 100644 index 0000000..bf4a3cd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/yoyow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zcl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zcl.svg new file mode 100644 index 0000000..7fd144a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zcl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zec.svg new file mode 100644 index 0000000..977f46d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zel.svg new file mode 100644 index 0000000..ee2375d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zen.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zen.svg new file mode 100644 index 0000000..c6afeff --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zest.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zest.svg new file mode 100644 index 0000000..e8e6e1e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zil.svg new file mode 100644 index 0000000..9271253 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zilla.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zilla.svg new file mode 100644 index 0000000..38b5b63 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zilla.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/black/zrx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/black/zrx.svg new file mode 100644 index 0000000..aa00a45 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/black/zrx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/$pac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/$pac.svg new file mode 100644 index 0000000..9dd1f47 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/$pac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/0xbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/0xbtc.svg new file mode 100644 index 0000000..dab1673 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/0xbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/1inch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/1inch.svg new file mode 100644 index 0000000..7ce053f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/1inch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/2give.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/2give.svg new file mode 100644 index 0000000..8bf470c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/2give.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/aave.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/aave.svg new file mode 100644 index 0000000..0fc31d9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/aave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/abt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/abt.svg new file mode 100644 index 0000000..e71a0fa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/abt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/act.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/act.svg new file mode 100644 index 0000000..1b7a288 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/act.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/actn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/actn.svg new file mode 100644 index 0000000..2052279 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/actn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ada.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ada.svg new file mode 100644 index 0000000..d558f0d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ada.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/add.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/add.svg new file mode 100644 index 0000000..957a344 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/adx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/adx.svg new file mode 100644 index 0000000..e722872 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/adx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ae.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ae.svg new file mode 100644 index 0000000..fa2d6e2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/aeon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/aeon.svg new file mode 100644 index 0000000..1407bc7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/aeon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/aeur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/aeur.svg new file mode 100644 index 0000000..d79c643 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/aeur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/agi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/agi.svg new file mode 100644 index 0000000..407ec22 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/agi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/agrs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/agrs.svg new file mode 100644 index 0000000..fe14445 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/agrs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/aion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/aion.svg new file mode 100644 index 0000000..4e4bbb7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/aion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/algo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/algo.svg new file mode 100644 index 0000000..42d635f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/algo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/amb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/amb.svg new file mode 100644 index 0000000..281b7ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/amb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/amp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/amp.svg new file mode 100644 index 0000000..5b57f80 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/amp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ampl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ampl.svg new file mode 100644 index 0000000..7585228 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ampl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ankr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ankr.svg new file mode 100644 index 0000000..9d0f73c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ankr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ant.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ant.svg new file mode 100644 index 0000000..434920c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ape.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ape.svg new file mode 100644 index 0000000..fb9890d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/apex.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/apex.svg new file mode 100644 index 0000000..57a0a3c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/apex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/appc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/appc.svg new file mode 100644 index 0000000..008e0f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/appc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ardr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ardr.svg new file mode 100644 index 0000000..1fa1547 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ardr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/arg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/arg.svg new file mode 100644 index 0000000..214489c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/arg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ark.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ark.svg new file mode 100644 index 0000000..1d3b00a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/arn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/arn.svg new file mode 100644 index 0000000..08172d6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/arn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/arnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/arnx.svg new file mode 100644 index 0000000..9696fc4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/arnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ary.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ary.svg new file mode 100644 index 0000000..f1bbef9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ast.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ast.svg new file mode 100644 index 0000000..483a444 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/atlas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/atlas.svg new file mode 100644 index 0000000..228e4bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/atlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/atm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/atm.svg new file mode 100644 index 0000000..e058385 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/atm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/atom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/atom.svg new file mode 100644 index 0000000..f957f2c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/audr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/audr.svg new file mode 100644 index 0000000..15e0bdd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/audr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/aury.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/aury.svg new file mode 100644 index 0000000..a0a9c0c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/aury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/auto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/auto.svg new file mode 100644 index 0000000..a9fe67a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/avax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/avax.svg new file mode 100644 index 0000000..7bd97ad --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/avax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/aywa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/aywa.svg new file mode 100644 index 0000000..e66335c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/aywa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bab.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bab.svg new file mode 100644 index 0000000..8cda92c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bal.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bal.svg new file mode 100644 index 0000000..671f171 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/band.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/band.svg new file mode 100644 index 0000000..b6ecfd2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/band.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bat.svg new file mode 100644 index 0000000..7a0980a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bay.svg new file mode 100644 index 0000000..13dab1d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bcbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcbc.svg new file mode 100644 index 0000000..49a081a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcc.svg new file mode 100644 index 0000000..7fef26d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcd.svg new file mode 100644 index 0000000..204a173 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bch.svg new file mode 100644 index 0000000..06d99d7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bcio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcio.svg new file mode 100644 index 0000000..233a605 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcn.svg new file mode 100644 index 0000000..f12495c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bco.svg new file mode 100644 index 0000000..907e7fc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bcpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcpt.svg new file mode 100644 index 0000000..2ac170b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bcpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bdl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bdl.svg new file mode 100644 index 0000000..ded79b2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bdl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/beam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/beam.svg new file mode 100644 index 0000000..40f5b5a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bela.svg new file mode 100644 index 0000000..be31f77 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bix.svg new file mode 100644 index 0000000..ecee558 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/blcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/blcn.svg new file mode 100644 index 0000000..f02cce2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/blcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/blk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/blk.svg new file mode 100644 index 0000000..4e0ca11 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/blk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/block.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/block.svg new file mode 100644 index 0000000..980cf83 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/blz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/blz.svg new file mode 100644 index 0000000..f951fbf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/blz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bnb.svg new file mode 100644 index 0000000..1a859f6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bnt.svg new file mode 100644 index 0000000..23b7722 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bnty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bnty.svg new file mode 100644 index 0000000..f8e285f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bnty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/booty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/booty.svg new file mode 100644 index 0000000..e35aa8b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/booty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bos.svg new file mode 100644 index 0000000..f4c06a6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bpt.svg new file mode 100644 index 0000000..48e4224 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bq.svg new file mode 100644 index 0000000..a831781 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/brd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/brd.svg new file mode 100644 index 0000000..e34b1b7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/brd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bsd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bsd.svg new file mode 100644 index 0000000..384dfad --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bsv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bsv.svg new file mode 100644 index 0000000..6e9e9cd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bsv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btc.svg new file mode 100644 index 0000000..5dc8a39 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btcd.svg new file mode 100644 index 0000000..25465fe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btch.svg new file mode 100644 index 0000000..9cd1560 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btcp.svg new file mode 100644 index 0000000..7298567 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btcz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btcz.svg new file mode 100644 index 0000000..b9c3624 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btcz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btdx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btdx.svg new file mode 100644 index 0000000..f36e6dc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btdx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btg.svg new file mode 100644 index 0000000..0d6d21e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btm.svg new file mode 100644 index 0000000..50c9816 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bts.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bts.svg new file mode 100644 index 0000000..7d5b879 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btt.svg new file mode 100644 index 0000000..b246028 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/btx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/btx.svg new file mode 100644 index 0000000..279c597 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/btx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/burst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/burst.svg new file mode 100644 index 0000000..9504650 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/bze.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/bze.svg new file mode 100644 index 0000000..e913e45 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/bze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/call.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/call.svg new file mode 100644 index 0000000..d892a21 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cc.svg new file mode 100644 index 0000000..85e084b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cdn.svg new file mode 100644 index 0000000..7666777 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cdt.svg new file mode 100644 index 0000000..2f5656c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cenz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cenz.svg new file mode 100644 index 0000000..4746907 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cenz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/chain.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/chain.svg new file mode 100644 index 0000000..5e8dd03 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/chain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/chat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/chat.svg new file mode 100644 index 0000000..e946e2e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/chips.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/chips.svg new file mode 100644 index 0000000..f78f4a7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/chips.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/chsb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/chsb.svg new file mode 100644 index 0000000..2edc324 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/chsb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/chz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/chz.svg new file mode 100644 index 0000000..e34a0af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/chz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cix.svg new file mode 100644 index 0000000..bbf8225 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/clam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/clam.svg new file mode 100644 index 0000000..79befbd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/clam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cloak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cloak.svg new file mode 100644 index 0000000..35371a3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cloak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cmm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cmm.svg new file mode 100644 index 0000000..643dfa1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cmm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cmt.svg new file mode 100644 index 0000000..6fe26f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cnd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cnd.svg new file mode 100644 index 0000000..ba8023c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cnd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cnx.svg new file mode 100644 index 0000000..31c066e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cny.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cny.svg new file mode 100644 index 0000000..300bd8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cob.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cob.svg new file mode 100644 index 0000000..3fae2ee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cob.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/colx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/colx.svg new file mode 100644 index 0000000..050e4e3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/colx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/comp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/comp.svg new file mode 100644 index 0000000..0502559 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/comp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/coqui.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/coqui.svg new file mode 100644 index 0000000..bcf137c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/coqui.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cred.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cred.svg new file mode 100644 index 0000000..ad1f603 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cred.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/crpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/crpt.svg new file mode 100644 index 0000000..774a5e9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/crpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/crv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/crv.svg new file mode 100644 index 0000000..7dff8bc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/crv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/crw.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/crw.svg new file mode 100644 index 0000000..4e954ad --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/crw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cs.svg new file mode 100644 index 0000000..8f07f8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ctr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ctr.svg new file mode 100644 index 0000000..90d1e96 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ctr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ctxc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ctxc.svg new file mode 100644 index 0000000..6899e40 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ctxc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/cvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/cvc.svg new file mode 100644 index 0000000..7765e21 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/cvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/d.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/d.svg new file mode 100644 index 0000000..4375985 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dai.svg new file mode 100644 index 0000000..2cec854 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dash.svg new file mode 100644 index 0000000..e4453c6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dat.svg new file mode 100644 index 0000000..c4e1a6d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/data.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/data.svg new file mode 100644 index 0000000..31bb0fe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/data.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dbc.svg new file mode 100644 index 0000000..b96c4dd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dcn.svg new file mode 100644 index 0000000..d9904f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dcr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dcr.svg new file mode 100644 index 0000000..3929c2c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dcr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/deez.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/deez.svg new file mode 100644 index 0000000..787d26b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/deez.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dent.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dent.svg new file mode 100644 index 0000000..fcea795 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dew.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dew.svg new file mode 100644 index 0000000..1582ee3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dgb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dgb.svg new file mode 100644 index 0000000..f80715b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dgb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dgd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dgd.svg new file mode 100644 index 0000000..a39e866 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dgd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dlt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dlt.svg new file mode 100644 index 0000000..df6d7d3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dlt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dnt.svg new file mode 100644 index 0000000..255037e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dock.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dock.svg new file mode 100644 index 0000000..1c1ea4b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/doge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/doge.svg new file mode 100644 index 0000000..c22bf09 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/doge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dot.svg new file mode 100644 index 0000000..7751a9c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/drgn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/drgn.svg new file mode 100644 index 0000000..500f6af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/drgn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/drop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/drop.svg new file mode 100644 index 0000000..f07cdd4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/drop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dta.svg new file mode 100644 index 0000000..dfa8545 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dth.svg new file mode 100644 index 0000000..2dec88a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/dtr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/dtr.svg new file mode 100644 index 0000000..bc8d2bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/dtr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ebst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ebst.svg new file mode 100644 index 0000000..9601971 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ebst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eca.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eca.svg new file mode 100644 index 0000000..d855a9e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/edg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/edg.svg new file mode 100644 index 0000000..3aa0f00 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/edg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/edo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/edo.svg new file mode 100644 index 0000000..eb2641c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/edo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/edoge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/edoge.svg new file mode 100644 index 0000000..8632633 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/edoge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ela.svg new file mode 100644 index 0000000..5472f7d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/elec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/elec.svg new file mode 100644 index 0000000..106c4af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/elec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/elf.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/elf.svg new file mode 100644 index 0000000..306290a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/elf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/elix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/elix.svg new file mode 100644 index 0000000..c7e45ab --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/elix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ella.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ella.svg new file mode 100644 index 0000000..5a67e25 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/emb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/emb.svg new file mode 100644 index 0000000..683a9bd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/emb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/emc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/emc.svg new file mode 100644 index 0000000..a3198a2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/emc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/emc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/emc2.svg new file mode 100644 index 0000000..28993b1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/emc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eng.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eng.svg new file mode 100644 index 0000000..ad83e04 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eng.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/enj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/enj.svg new file mode 100644 index 0000000..d55325a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/enj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/entrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/entrp.svg new file mode 100644 index 0000000..bbe946b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/entrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eon.svg new file mode 100644 index 0000000..d477ad1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eop.svg new file mode 100644 index 0000000..3e2df8d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eos.svg new file mode 100644 index 0000000..4ca4e48 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eqli.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eqli.svg new file mode 100644 index 0000000..47471a1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eqli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/equa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/equa.svg new file mode 100644 index 0000000..d034d82 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/equa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/etc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/etc.svg new file mode 100644 index 0000000..8e11cf9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/etc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eth.svg new file mode 100644 index 0000000..c761cef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ethos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ethos.svg new file mode 100644 index 0000000..5ef9051 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ethos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/etn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/etn.svg new file mode 100644 index 0000000..09366c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/etn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/etp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/etp.svg new file mode 100644 index 0000000..8ce63bd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/etp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/eur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/eur.svg new file mode 100644 index 0000000..b131a95 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/eur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/evx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/evx.svg new file mode 100644 index 0000000..55deb2d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/evx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/exmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/exmo.svg new file mode 100644 index 0000000..6a56e64 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/exmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/exp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/exp.svg new file mode 100644 index 0000000..c4353b2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/exp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fair.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fair.svg new file mode 100644 index 0000000..49e601a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fct.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fct.svg new file mode 100644 index 0000000..3a15117 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fida.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fida.svg new file mode 100644 index 0000000..95e1d2e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fida.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fil.svg new file mode 100644 index 0000000..144440b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fjc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fjc.svg new file mode 100644 index 0000000..cc191ac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fjc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fldc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fldc.svg new file mode 100644 index 0000000..0e8fcaf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fldc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/flo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/flo.svg new file mode 100644 index 0000000..8510722 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/flo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/flux.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/flux.svg new file mode 100644 index 0000000..12fe387 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/flux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fsn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fsn.svg new file mode 100644 index 0000000..cb208e0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fsn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ftc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ftc.svg new file mode 100644 index 0000000..2a80b86 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ftc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fuel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fuel.svg new file mode 100644 index 0000000..424cdba --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fuel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/fun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/fun.svg new file mode 100644 index 0000000..525496b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/fun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/game.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/game.svg new file mode 100644 index 0000000..bf9896e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/game.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gas.svg new file mode 100644 index 0000000..a5fcd1a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gbp.svg new file mode 100644 index 0000000..4035cc2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gbx.svg new file mode 100644 index 0000000..220c49c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gbyte.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gbyte.svg new file mode 100644 index 0000000..b54ad4f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gbyte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/generic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/generic.svg new file mode 100644 index 0000000..b599951 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/generic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gin.svg new file mode 100644 index 0000000..2b3ec7f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/glxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/glxt.svg new file mode 100644 index 0000000..3bb3558 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/glxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gmr.svg new file mode 100644 index 0000000..53feef8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gmt.svg new file mode 100644 index 0000000..3c78747 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gno.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gno.svg new file mode 100644 index 0000000..89e5bc1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gno.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gnt.svg new file mode 100644 index 0000000..6f577b3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gold.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gold.svg new file mode 100644 index 0000000..69d5418 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/grc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/grc.svg new file mode 100644 index 0000000..e1415f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/grc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/grin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/grin.svg new file mode 100644 index 0000000..df4e25c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/grs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/grs.svg new file mode 100644 index 0000000..a41e632 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/grs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/grt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/grt.svg new file mode 100644 index 0000000..f546e2a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/grt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gsc.svg new file mode 100644 index 0000000..4f16056 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gto.svg new file mode 100644 index 0000000..1a5f310 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gup.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gup.svg new file mode 100644 index 0000000..fb9aa9f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gusd.svg new file mode 100644 index 0000000..ea0c75a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gvt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gvt.svg new file mode 100644 index 0000000..08fe135 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gvt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gxs.svg new file mode 100644 index 0000000..fbe54c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/gzr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/gzr.svg new file mode 100644 index 0000000..72a7989 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/gzr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/hight.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/hight.svg new file mode 100644 index 0000000..d5a582d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/hight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/hns.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/hns.svg new file mode 100644 index 0000000..a154154 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/hns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/hodl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/hodl.svg new file mode 100644 index 0000000..9d73b51 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/hodl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/hot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/hot.svg new file mode 100644 index 0000000..b19a53e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/hpb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/hpb.svg new file mode 100644 index 0000000..aa5cdc9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/hpb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/hsr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/hsr.svg new file mode 100644 index 0000000..28e9dcf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/hsr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ht.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ht.svg new file mode 100644 index 0000000..d4cb1b5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ht.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/html.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/html.svg new file mode 100644 index 0000000..88f3a98 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/html.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/huc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/huc.svg new file mode 100644 index 0000000..99ed2c6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/huc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/husd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/husd.svg new file mode 100644 index 0000000..cafdae9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/husd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/hush.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/hush.svg new file mode 100644 index 0000000..3e65e94 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/hush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/icn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/icn.svg new file mode 100644 index 0000000..a3a759b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/icn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/icp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/icp.svg new file mode 100644 index 0000000..642b815 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/icp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/icx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/icx.svg new file mode 100644 index 0000000..fd6d5ed --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/icx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ignis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ignis.svg new file mode 100644 index 0000000..5a4d493 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ignis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ilk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ilk.svg new file mode 100644 index 0000000..5ab367d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ilk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ink.svg new file mode 100644 index 0000000..2a04ad3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ins.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ins.svg new file mode 100644 index 0000000..39a1422 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ion.svg new file mode 100644 index 0000000..832b531 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/iop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/iop.svg new file mode 100644 index 0000000..6073147 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/iop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/iost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/iost.svg new file mode 100644 index 0000000..81a57d1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/iost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/iotx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/iotx.svg new file mode 100644 index 0000000..a89d5b3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/iotx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/iq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/iq.svg new file mode 100644 index 0000000..43c7bcf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/iq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/itc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/itc.svg new file mode 100644 index 0000000..6c249b5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/itc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/jnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/jnt.svg new file mode 100644 index 0000000..d509b97 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/jnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/jpy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/jpy.svg new file mode 100644 index 0000000..26c50f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/jpy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/kcs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/kcs.svg new file mode 100644 index 0000000..f44bb63 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/kcs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/kin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/kin.svg new file mode 100644 index 0000000..55508de --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/kin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/klown.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/klown.svg new file mode 100644 index 0000000..738bf8c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/klown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/kmd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/kmd.svg new file mode 100644 index 0000000..a821390 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/kmd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/knc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/knc.svg new file mode 100644 index 0000000..448b35f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/knc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/krb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/krb.svg new file mode 100644 index 0000000..893a176 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/krb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ksm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ksm.svg new file mode 100644 index 0000000..897ab14 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ksm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/lbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/lbc.svg new file mode 100644 index 0000000..2e6565b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/lbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/lend.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/lend.svg new file mode 100644 index 0000000..8dbecac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/lend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/leo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/leo.svg new file mode 100644 index 0000000..1737b4d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/leo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/link.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/link.svg new file mode 100644 index 0000000..f7e000a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/lkk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/lkk.svg new file mode 100644 index 0000000..92b7477 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/lkk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/loom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/loom.svg new file mode 100644 index 0000000..e9f4611 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/loom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/lpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/lpt.svg new file mode 100644 index 0000000..e0ea32a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/lpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/lrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/lrc.svg new file mode 100644 index 0000000..6b83ba0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/lrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/lsk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/lsk.svg new file mode 100644 index 0000000..7267387 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/lsk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ltc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ltc.svg new file mode 100644 index 0000000..9afc706 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ltc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/lun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/lun.svg new file mode 100644 index 0000000..f71af1c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/lun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/maid.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/maid.svg new file mode 100644 index 0000000..2eb505d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/maid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mana.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mana.svg new file mode 100644 index 0000000..3666070 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/matic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/matic.svg new file mode 100644 index 0000000..31361b8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/matic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/max.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/max.svg new file mode 100644 index 0000000..1be2850 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mcap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mcap.svg new file mode 100644 index 0000000..3e854fc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mcap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mco.svg new file mode 100644 index 0000000..81bdce3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mda.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mda.svg new file mode 100644 index 0000000..106e54b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mds.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mds.svg new file mode 100644 index 0000000..1087592 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/med.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/med.svg new file mode 100644 index 0000000..981c794 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/med.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/meetone.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/meetone.svg new file mode 100644 index 0000000..d18f718 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/meetone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mft.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mft.svg new file mode 100644 index 0000000..167df31 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/miota.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/miota.svg new file mode 100644 index 0000000..229f8d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/miota.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mkr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mkr.svg new file mode 100644 index 0000000..318fdaf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mkr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mln.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mln.svg new file mode 100644 index 0000000..560a70d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mln.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mnx.svg new file mode 100644 index 0000000..1f4817e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mnz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mnz.svg new file mode 100644 index 0000000..e52f925 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mnz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/moac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/moac.svg new file mode 100644 index 0000000..58473c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/moac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mod.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mod.svg new file mode 100644 index 0000000..c16f4ac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mod.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/momo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/momo.svg new file mode 100644 index 0000000..5946740 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/momo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mona.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mona.svg new file mode 100644 index 0000000..2ab987e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mona.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/msr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/msr.svg new file mode 100644 index 0000000..5497801 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/msr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mth.svg new file mode 100644 index 0000000..6b4611a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mtl.svg new file mode 100644 index 0000000..fda26b6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/music.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/music.svg new file mode 100644 index 0000000..6d62b7a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/mzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/mzc.svg new file mode 100644 index 0000000..56e5eb1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/mzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nano.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nano.svg new file mode 100644 index 0000000..127f440 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nas.svg new file mode 100644 index 0000000..3400ec5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nav.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nav.svg new file mode 100644 index 0000000..d7f62b1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nav.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ncash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ncash.svg new file mode 100644 index 0000000..82b2942 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ncash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ndz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ndz.svg new file mode 100644 index 0000000..6b570a1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ndz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nebl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nebl.svg new file mode 100644 index 0000000..8dba85e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nebl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/neo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/neo.svg new file mode 100644 index 0000000..a5fcd1a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/neo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/neos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/neos.svg new file mode 100644 index 0000000..f2a40df --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/neos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/neu.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/neu.svg new file mode 100644 index 0000000..05494ee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/neu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nexo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nexo.svg new file mode 100644 index 0000000..6e5e1e2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nexo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ngc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ngc.svg new file mode 100644 index 0000000..93edcc3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ngc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nio.svg new file mode 100644 index 0000000..573970a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nkn.svg new file mode 100644 index 0000000..f3c2732 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nlc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nlc2.svg new file mode 100644 index 0000000..21333f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nlc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nlg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nlg.svg new file mode 100644 index 0000000..73dbc39 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nlg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nmc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nmc.svg new file mode 100644 index 0000000..a637558 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nmc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nmr.svg new file mode 100644 index 0000000..c91bd50 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/npxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/npxs.svg new file mode 100644 index 0000000..fe518dd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/npxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ntbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ntbc.svg new file mode 100644 index 0000000..96fb0b3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ntbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nuls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nuls.svg new file mode 100644 index 0000000..46fae41 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nuls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nxs.svg new file mode 100644 index 0000000..7ccb5cd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/nxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/nxt.svg new file mode 100644 index 0000000..13b3581 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/nxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/oax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/oax.svg new file mode 100644 index 0000000..d16213a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/oax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ok.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ok.svg new file mode 100644 index 0000000..dfc75c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/omg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/omg.svg new file mode 100644 index 0000000..e886e01 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/omg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/omni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/omni.svg new file mode 100644 index 0000000..9a73768 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/omni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/one.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/one.svg new file mode 100644 index 0000000..52cba63 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ong.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ong.svg new file mode 100644 index 0000000..2da95bb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ont.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ont.svg new file mode 100644 index 0000000..dae1398 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ont.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/oot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/oot.svg new file mode 100644 index 0000000..3b60825 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/oot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ost.svg new file mode 100644 index 0000000..2501dab --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ox.svg new file mode 100644 index 0000000..7424a48 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/oxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/oxt.svg new file mode 100644 index 0000000..1285e62 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/oxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/oxy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/oxy.svg new file mode 100644 index 0000000..d1df717 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/oxy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/part.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/part.svg new file mode 100644 index 0000000..71f251b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/part.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pasc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pasc.svg new file mode 100644 index 0000000..36f9202 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pasc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pasl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pasl.svg new file mode 100644 index 0000000..888a294 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pasl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pax.svg new file mode 100644 index 0000000..45a4622 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/paxg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/paxg.svg new file mode 100644 index 0000000..b9b5bfb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/paxg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pay.svg new file mode 100644 index 0000000..83a1324 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/payx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/payx.svg new file mode 100644 index 0000000..d9a03dc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/payx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pink.svg new file mode 100644 index 0000000..2916a13 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pirl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pirl.svg new file mode 100644 index 0000000..d134e08 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pirl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pivx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pivx.svg new file mode 100644 index 0000000..08bac8e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pivx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/plr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/plr.svg new file mode 100644 index 0000000..8fefdcb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/plr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/poa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/poa.svg new file mode 100644 index 0000000..81b133a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/poa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/poe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/poe.svg new file mode 100644 index 0000000..19dfcd6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/poe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/polis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/polis.svg new file mode 100644 index 0000000..1f6cf85 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/polis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/poly.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/poly.svg new file mode 100644 index 0000000..37ba1a6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/poly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pot.svg new file mode 100644 index 0000000..bb7854d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/powr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/powr.svg new file mode 100644 index 0000000..3a35af3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/powr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ppc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ppc.svg new file mode 100644 index 0000000..3c287fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ppc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ppp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ppp.svg new file mode 100644 index 0000000..5e0e540 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ppp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ppt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ppt.svg new file mode 100644 index 0000000..55ae421 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ppt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pre.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pre.svg new file mode 100644 index 0000000..ecffbba --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pre.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/prl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/prl.svg new file mode 100644 index 0000000..30a453b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/prl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pungo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pungo.svg new file mode 100644 index 0000000..886f322 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pungo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/pura.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/pura.svg new file mode 100644 index 0000000..9227227 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/pura.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/qash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/qash.svg new file mode 100644 index 0000000..511867f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/qash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/qiwi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/qiwi.svg new file mode 100644 index 0000000..d7a7d1b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/qiwi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/qlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/qlc.svg new file mode 100644 index 0000000..2128ee6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/qlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/qnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/qnt.svg new file mode 100644 index 0000000..08037eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/qnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/qrl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/qrl.svg new file mode 100644 index 0000000..1343324 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/qrl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/qsp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/qsp.svg new file mode 100644 index 0000000..e1c984c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/qsp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/qtum.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/qtum.svg new file mode 100644 index 0000000..98437d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/qtum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/r.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/r.svg new file mode 100644 index 0000000..90324fa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rads.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rads.svg new file mode 100644 index 0000000..07faaa8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rap.svg new file mode 100644 index 0000000..2737891 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ray.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ray.svg new file mode 100644 index 0000000..bfc366c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rcn.svg new file mode 100644 index 0000000..fa92d99 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rdd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rdd.svg new file mode 100644 index 0000000..75c9453 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rdn.svg new file mode 100644 index 0000000..425477e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ren.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ren.svg new file mode 100644 index 0000000..dfc71d8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rep.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rep.svg new file mode 100644 index 0000000..73c26a9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/repv2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/repv2.svg new file mode 100644 index 0000000..1153573 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/repv2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/req.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/req.svg new file mode 100644 index 0000000..c8b56b4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/req.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rhoc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rhoc.svg new file mode 100644 index 0000000..c914b66 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rhoc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ric.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ric.svg new file mode 100644 index 0000000..295a0ae --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rise.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rise.svg new file mode 100644 index 0000000..187328e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rlc.svg new file mode 100644 index 0000000..8e15cf5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rpx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rpx.svg new file mode 100644 index 0000000..d6af035 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rpx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rub.svg new file mode 100644 index 0000000..4ae739c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/rvn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/rvn.svg new file mode 100644 index 0000000..a2e6f90 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/rvn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ryo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ryo.svg new file mode 100644 index 0000000..a4721d5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ryo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/safe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/safe.svg new file mode 100644 index 0000000..8bf5e96 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/safe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/safemoon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/safemoon.svg new file mode 100644 index 0000000..eb622eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/safemoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sai.svg new file mode 100644 index 0000000..e1350f3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/salt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/salt.svg new file mode 100644 index 0000000..261e554 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/salt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/san.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/san.svg new file mode 100644 index 0000000..f4e7f49 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/san.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sand.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sand.svg new file mode 100644 index 0000000..015d619 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sbd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sbd.svg new file mode 100644 index 0000000..3cac797 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sbd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sberbank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sberbank.svg new file mode 100644 index 0000000..007e4c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sberbank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sc.svg new file mode 100644 index 0000000..a8794d9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ser.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ser.svg new file mode 100644 index 0000000..2d4019b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/shift.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/shift.svg new file mode 100644 index 0000000..352cdfb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/shift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sib.svg new file mode 100644 index 0000000..d74ae25 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sin.svg new file mode 100644 index 0000000..e2790ff --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/skl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/skl.svg new file mode 100644 index 0000000..e034aff --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/skl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sky.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sky.svg new file mode 100644 index 0000000..dba30d5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/slr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/slr.svg new file mode 100644 index 0000000..975cc09 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/slr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sls.svg new file mode 100644 index 0000000..a40dd49 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/smart.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/smart.svg new file mode 100644 index 0000000..1a77178 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/smart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sngls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sngls.svg new file mode 100644 index 0000000..9442f08 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sngls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/snm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/snm.svg new file mode 100644 index 0000000..c2c8839 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/snm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/snt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/snt.svg new file mode 100644 index 0000000..aee233e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/snt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/snx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/snx.svg new file mode 100644 index 0000000..a4a9f0f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/snx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/soc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/soc.svg new file mode 100644 index 0000000..c5e9305 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/soc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sol.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sol.svg new file mode 100644 index 0000000..ce27130 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/spacehbit.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/spacehbit.svg new file mode 100644 index 0000000..015d546 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/spacehbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/spank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/spank.svg new file mode 100644 index 0000000..bcca827 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/spank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sphtx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sphtx.svg new file mode 100644 index 0000000..ddc1654 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sphtx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/srn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/srn.svg new file mode 100644 index 0000000..9e0aff2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/srn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/stak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/stak.svg new file mode 100644 index 0000000..06bb0a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/stak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/start.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/start.svg new file mode 100644 index 0000000..2632fc4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/steem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/steem.svg new file mode 100644 index 0000000..32b398f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/steem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/storj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/storj.svg new file mode 100644 index 0000000..c0a8c3e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/storj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/storm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/storm.svg new file mode 100644 index 0000000..5ef66b1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/stox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/stox.svg new file mode 100644 index 0000000..aaa60a9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/stox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/stq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/stq.svg new file mode 100644 index 0000000..99e0d9e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/stq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/strat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/strat.svg new file mode 100644 index 0000000..3c9fb49 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/strat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/stx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/stx.svg new file mode 100644 index 0000000..77c5fb7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/stx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sub.svg new file mode 100644 index 0000000..319f636 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sumo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sumo.svg new file mode 100644 index 0000000..72ad985 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sumo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sushi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sushi.svg new file mode 100644 index 0000000..5ce4ef3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sushi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/sys.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/sys.svg new file mode 100644 index 0000000..88929d8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/sys.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/taas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/taas.svg new file mode 100644 index 0000000..f46228a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/taas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tau.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tau.svg new file mode 100644 index 0000000..e657c6d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tau.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tbx.svg new file mode 100644 index 0000000..ae7cf0e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tel.svg new file mode 100644 index 0000000..d8189ab --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ten.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ten.svg new file mode 100644 index 0000000..6416afd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tern.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tern.svg new file mode 100644 index 0000000..9573091 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tgch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tgch.svg new file mode 100644 index 0000000..a22792a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tgch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/theta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/theta.svg new file mode 100644 index 0000000..e52f548 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/theta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tix.svg new file mode 100644 index 0000000..38d06e0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tkn.svg new file mode 100644 index 0000000..3299fdb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tks.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tks.svg new file mode 100644 index 0000000..d6bf531 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tnb.svg new file mode 100644 index 0000000..dec2550 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tnc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tnc.svg new file mode 100644 index 0000000..53017c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tnc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tnt.svg new file mode 100644 index 0000000..4c7a0e1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tomo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tomo.svg new file mode 100644 index 0000000..64082ad --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tomo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tpay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tpay.svg new file mode 100644 index 0000000..9bf1010 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tpay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/trig.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/trig.svg new file mode 100644 index 0000000..3d0ca45 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/trig.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/trtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/trtl.svg new file mode 100644 index 0000000..e0153c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/trtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/trx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/trx.svg new file mode 100644 index 0000000..b0eefde --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/trx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tusd.svg new file mode 100644 index 0000000..2784d5e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/tzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/tzc.svg new file mode 100644 index 0000000..028e748 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/tzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/ubq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/ubq.svg new file mode 100644 index 0000000..2238eb2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/ubq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/uma.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/uma.svg new file mode 100644 index 0000000..c8dfed4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/uma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/uni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/uni.svg new file mode 100644 index 0000000..741735b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/uni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/unity.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/unity.svg new file mode 100644 index 0000000..2d3c6db --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/unity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/usd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/usd.svg new file mode 100644 index 0000000..951bf43 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/usdc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/usdc.svg new file mode 100644 index 0000000..53fb801 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/usdc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/usdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/usdt.svg new file mode 100644 index 0000000..38c491c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/usdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/utk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/utk.svg new file mode 100644 index 0000000..6d6711d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/utk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/veri.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/veri.svg new file mode 100644 index 0000000..4ac1ed1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/veri.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vet.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vet.svg new file mode 100644 index 0000000..040000e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/via.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/via.svg new file mode 100644 index 0000000..b9e431f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/via.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vib.svg new file mode 100644 index 0000000..e215517 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vibe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vibe.svg new file mode 100644 index 0000000..4ee94be --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vibe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vivo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vivo.svg new file mode 100644 index 0000000..f8162dc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vivo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vrc.svg new file mode 100644 index 0000000..23137c8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vrsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vrsc.svg new file mode 100644 index 0000000..b85f526 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vrsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vtc.svg new file mode 100644 index 0000000..9f933a5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/vtho.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/vtho.svg new file mode 100644 index 0000000..e911f7e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/vtho.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wabi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wabi.svg new file mode 100644 index 0000000..f2bc1d7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wabi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wan.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wan.svg new file mode 100644 index 0000000..0b9cb4c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/waves.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/waves.svg new file mode 100644 index 0000000..d252a21 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/waves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wax.svg new file mode 100644 index 0000000..d474fff --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wbtc.svg new file mode 100644 index 0000000..12b8cb6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wgr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wgr.svg new file mode 100644 index 0000000..c2c4e52 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wgr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wicc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wicc.svg new file mode 100644 index 0000000..895c4eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wicc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wings.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wings.svg new file mode 100644 index 0000000..352ac46 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wpr.svg new file mode 100644 index 0000000..6882dfe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/wtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/wtc.svg new file mode 100644 index 0000000..1270811 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/wtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/x.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/x.svg new file mode 100644 index 0000000..55311c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xas.svg new file mode 100644 index 0000000..ffe3aac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xbc.svg new file mode 100644 index 0000000..d4a05c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xbp.svg new file mode 100644 index 0000000..a87edf0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xby.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xby.svg new file mode 100644 index 0000000..9178801 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xcp.svg new file mode 100644 index 0000000..859ea78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xdn.svg new file mode 100644 index 0000000..548acbc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xem.svg new file mode 100644 index 0000000..612dd0d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xin.svg new file mode 100644 index 0000000..99affd0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xlm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xlm.svg new file mode 100644 index 0000000..1d1c2a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xlm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xmcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmcc.svg new file mode 100644 index 0000000..15864ee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xmg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmg.svg new file mode 100644 index 0000000..3db77dd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmo.svg new file mode 100644 index 0000000..0dc6dd2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmr.svg new file mode 100644 index 0000000..360a39a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xmy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmy.svg new file mode 100644 index 0000000..ff1145a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xmy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xp.svg new file mode 100644 index 0000000..fc045bd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xpa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xpa.svg new file mode 100644 index 0000000..f3c377b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xpa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xpm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xpm.svg new file mode 100644 index 0000000..2356f4a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xpm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xpr.svg new file mode 100644 index 0000000..ecae1c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xrp.svg new file mode 100644 index 0000000..250cbfa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xsg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xsg.svg new file mode 100644 index 0000000..8efffd9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xsg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xtz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xtz.svg new file mode 100644 index 0000000..5f9c35b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xtz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xuc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xuc.svg new file mode 100644 index 0000000..a636153 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xuc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xvc.svg new file mode 100644 index 0000000..51b4171 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xvg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xvg.svg new file mode 100644 index 0000000..696ecec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xvg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/xzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/xzc.svg new file mode 100644 index 0000000..1871d3b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/xzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/yfi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/yfi.svg new file mode 100644 index 0000000..4c141f3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/yfi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/yoyow.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/yoyow.svg new file mode 100644 index 0000000..38f54bb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/yoyow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zcl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zcl.svg new file mode 100644 index 0000000..a523b05 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zcl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zec.svg new file mode 100644 index 0000000..52ee264 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zel.svg new file mode 100644 index 0000000..779df08 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zen.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zen.svg new file mode 100644 index 0000000..e991483 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zest.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zest.svg new file mode 100644 index 0000000..1e8e5a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zil.svg new file mode 100644 index 0000000..01e513c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zilla.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zilla.svg new file mode 100644 index 0000000..4b1fa30 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zilla.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/color/zrx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/color/zrx.svg new file mode 100644 index 0000000..3cdd5a0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/color/zrx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/$pac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/$pac.svg new file mode 100644 index 0000000..198ca17 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/$pac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/0xbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/0xbtc.svg new file mode 100644 index 0000000..c7f5f4a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/0xbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/1inch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/1inch.svg new file mode 100644 index 0000000..90bec18 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/1inch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/2give.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/2give.svg new file mode 100644 index 0000000..301e2ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/2give.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/aave.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aave.svg new file mode 100644 index 0000000..b22a658 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/abt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/abt.svg new file mode 100644 index 0000000..21e16c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/abt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/act.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/act.svg new file mode 100644 index 0000000..ca57f47 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/act.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/actn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/actn.svg new file mode 100644 index 0000000..ded5ae1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/actn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ada.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ada.svg new file mode 100644 index 0000000..67cc015 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ada.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/add.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/add.svg new file mode 100644 index 0000000..3c6ae9f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/adx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/adx.svg new file mode 100644 index 0000000..80b25e2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/adx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ae.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ae.svg new file mode 100644 index 0000000..22bb1af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/aeon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aeon.svg new file mode 100644 index 0000000..76ff5cd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aeon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/aeur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aeur.svg new file mode 100644 index 0000000..c74fd24 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aeur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/agi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/agi.svg new file mode 100644 index 0000000..1dcaade --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/agi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/agrs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/agrs.svg new file mode 100644 index 0000000..9368eef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/agrs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/aion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aion.svg new file mode 100644 index 0000000..3053b01 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/algo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/algo.svg new file mode 100644 index 0000000..3cf8d10 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/algo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/amb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/amb.svg new file mode 100644 index 0000000..3c9f4ac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/amb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/amp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/amp.svg new file mode 100644 index 0000000..327db15 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/amp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ampl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ampl.svg new file mode 100644 index 0000000..6729cc6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ampl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ankr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ankr.svg new file mode 100644 index 0000000..0108a15 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ankr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ant.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ant.svg new file mode 100644 index 0000000..b5d8574 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ape.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ape.svg new file mode 100644 index 0000000..3945711 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/apex.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/apex.svg new file mode 100644 index 0000000..1500afb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/apex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/appc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/appc.svg new file mode 100644 index 0000000..4e6d671 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/appc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ardr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ardr.svg new file mode 100644 index 0000000..8bf5701 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ardr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/arg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/arg.svg new file mode 100644 index 0000000..d57f002 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/arg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ark.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ark.svg new file mode 100644 index 0000000..f26383e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/arn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/arn.svg new file mode 100644 index 0000000..22dc881 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/arn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/arnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/arnx.svg new file mode 100644 index 0000000..b08fc59 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/arnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ary.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ary.svg new file mode 100644 index 0000000..ed3edf9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ast.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ast.svg new file mode 100644 index 0000000..99a8bfe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/atlas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/atlas.svg new file mode 100644 index 0000000..0e632c0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/atlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/atm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/atm.svg new file mode 100644 index 0000000..f516cbe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/atm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/atom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/atom.svg new file mode 100644 index 0000000..0ca97f6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/audr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/audr.svg new file mode 100644 index 0000000..322da8e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/audr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/aury.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aury.svg new file mode 100644 index 0000000..04a0dba --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/auto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/auto.svg new file mode 100644 index 0000000..d3a58dc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/avax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/avax.svg new file mode 100644 index 0000000..c96c869 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/avax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/aywa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aywa.svg new file mode 100644 index 0000000..47ef823 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/aywa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bab.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bab.svg new file mode 100644 index 0000000..fe35b87 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bal.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bal.svg new file mode 100644 index 0000000..fa60ec4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/band.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/band.svg new file mode 100644 index 0000000..a8d1ee0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/band.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bat.svg new file mode 100644 index 0000000..2ab782f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bay.svg new file mode 100644 index 0000000..243f67f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcbc.svg new file mode 100644 index 0000000..5bb2904 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcc.svg new file mode 100644 index 0000000..15cfe0c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcd.svg new file mode 100644 index 0000000..bbe412b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bch.svg new file mode 100644 index 0000000..8e83847 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcio.svg new file mode 100644 index 0000000..6649fec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcn.svg new file mode 100644 index 0000000..2697d7a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bco.svg new file mode 100644 index 0000000..d117725 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcpt.svg new file mode 100644 index 0000000..e9632fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bcpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bdl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bdl.svg new file mode 100644 index 0000000..45ec494 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bdl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/beam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/beam.svg new file mode 100644 index 0000000..856a2c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bela.svg new file mode 100644 index 0000000..2dadead --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bix.svg new file mode 100644 index 0000000..921cc01 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/blcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/blcn.svg new file mode 100644 index 0000000..01f600e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/blcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/blk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/blk.svg new file mode 100644 index 0000000..0b0c254 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/blk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/block.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/block.svg new file mode 100644 index 0000000..31b5a1e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/blz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/blz.svg new file mode 100644 index 0000000..855ceb6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/blz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnb.svg new file mode 100644 index 0000000..ea0348b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnt.svg new file mode 100644 index 0000000..e65b705 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnty.svg new file mode 100644 index 0000000..8a24362 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bnty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/booty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/booty.svg new file mode 100644 index 0000000..75ac66e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/booty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bos.svg new file mode 100644 index 0000000..e750c3f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bpt.svg new file mode 100644 index 0000000..3a450d6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bq.svg new file mode 100644 index 0000000..b20ef7a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/brd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/brd.svg new file mode 100644 index 0000000..dadb8bd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/brd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bsd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bsd.svg new file mode 100644 index 0000000..bf3ba35 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bsv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bsv.svg new file mode 100644 index 0000000..b650285 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bsv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btc.svg new file mode 100644 index 0000000..1f92ae0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcd.svg new file mode 100644 index 0000000..b733964 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btch.svg new file mode 100644 index 0000000..b2fc137 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcp.svg new file mode 100644 index 0000000..4432e34 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcz.svg new file mode 100644 index 0000000..6a2e90b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btcz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btdx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btdx.svg new file mode 100644 index 0000000..6de3c69 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btdx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btg.svg new file mode 100644 index 0000000..6298285 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btm.svg new file mode 100644 index 0000000..9f63204 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bts.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bts.svg new file mode 100644 index 0000000..02fb3de --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btt.svg new file mode 100644 index 0000000..d53a03b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/btx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btx.svg new file mode 100644 index 0000000..9ea56d2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/btx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/burst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/burst.svg new file mode 100644 index 0000000..10a189e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/bze.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bze.svg new file mode 100644 index 0000000..ea39ae9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/bze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/call.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/call.svg new file mode 100644 index 0000000..f0ddfdf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cc.svg new file mode 100644 index 0000000..5e2ea1d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cdn.svg new file mode 100644 index 0000000..bf41812 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cdt.svg new file mode 100644 index 0000000..e8333c8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cenz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cenz.svg new file mode 100644 index 0000000..aa53e61 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cenz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/chain.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chain.svg new file mode 100644 index 0000000..fe67e9e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/chat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chat.svg new file mode 100644 index 0000000..2793e4c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/chips.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chips.svg new file mode 100644 index 0000000..ef433e3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chips.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/chsb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chsb.svg new file mode 100644 index 0000000..faf79dd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chsb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/chz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chz.svg new file mode 100644 index 0000000..0445b92 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/chz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cix.svg new file mode 100644 index 0000000..42bf306 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/clam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/clam.svg new file mode 100644 index 0000000..d68d357 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/clam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cloak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cloak.svg new file mode 100644 index 0000000..877b51f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cloak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cmm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cmm.svg new file mode 100644 index 0000000..9907fbb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cmm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cmt.svg new file mode 100644 index 0000000..49a1af6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cnd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cnd.svg new file mode 100644 index 0000000..d2880d3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cnd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cnx.svg new file mode 100644 index 0000000..ada49ed --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cny.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cny.svg new file mode 100644 index 0000000..0c08360 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cob.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cob.svg new file mode 100644 index 0000000..caf8e17 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cob.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/colx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/colx.svg new file mode 100644 index 0000000..90c9e54 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/colx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/comp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/comp.svg new file mode 100644 index 0000000..b06ed0a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/comp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/coqui.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/coqui.svg new file mode 100644 index 0000000..fc1ddd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/coqui.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cred.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cred.svg new file mode 100644 index 0000000..53a794f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cred.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/crpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/crpt.svg new file mode 100644 index 0000000..453913d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/crpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/crv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/crv.svg new file mode 100644 index 0000000..76d4520 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/crv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/crw.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/crw.svg new file mode 100644 index 0000000..5772e58 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/crw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cs.svg new file mode 100644 index 0000000..e3e42ed --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ctr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ctr.svg new file mode 100644 index 0000000..91ec093 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ctr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ctxc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ctxc.svg new file mode 100644 index 0000000..282140b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ctxc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/cvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cvc.svg new file mode 100644 index 0000000..f6644af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/cvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/d.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/d.svg new file mode 100644 index 0000000..e9e47c9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dai.svg new file mode 100644 index 0000000..af7964c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dash.svg new file mode 100644 index 0000000..db24f27 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dat.svg new file mode 100644 index 0000000..738aa14 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/data.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/data.svg new file mode 100644 index 0000000..d8ce7b8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/data.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dbc.svg new file mode 100644 index 0000000..2114917 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dcn.svg new file mode 100644 index 0000000..b58581e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dcr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dcr.svg new file mode 100644 index 0000000..a3b053d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dcr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/deez.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/deez.svg new file mode 100644 index 0000000..1337085 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/deez.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dent.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dent.svg new file mode 100644 index 0000000..2859571 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dew.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dew.svg new file mode 100644 index 0000000..1e1aa1b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dgb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dgb.svg new file mode 100644 index 0000000..b197ba2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dgb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dgd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dgd.svg new file mode 100644 index 0000000..093d0d8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dgd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dlt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dlt.svg new file mode 100644 index 0000000..50a7d29 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dlt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dnt.svg new file mode 100644 index 0000000..8238c96 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dock.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dock.svg new file mode 100644 index 0000000..56d4ca9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/doge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/doge.svg new file mode 100644 index 0000000..eb8cc7f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/doge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dot.svg new file mode 100644 index 0000000..d8fc472 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/drgn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/drgn.svg new file mode 100644 index 0000000..addd363 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/drgn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/drop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/drop.svg new file mode 100644 index 0000000..d7fc255 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/drop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dta.svg new file mode 100644 index 0000000..02b3cbc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dth.svg new file mode 100644 index 0000000..2749828 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/dtr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dtr.svg new file mode 100644 index 0000000..6f5f77e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/dtr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ebst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ebst.svg new file mode 100644 index 0000000..00c596c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ebst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eca.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eca.svg new file mode 100644 index 0000000..78147bd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/edg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/edg.svg new file mode 100644 index 0000000..664971c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/edg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/edo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/edo.svg new file mode 100644 index 0000000..351c0e0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/edo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/edoge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/edoge.svg new file mode 100644 index 0000000..f3ecc74 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/edoge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ela.svg new file mode 100644 index 0000000..11b43b3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/elec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/elec.svg new file mode 100644 index 0000000..c0debd7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/elec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/elf.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/elf.svg new file mode 100644 index 0000000..ea3f493 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/elf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/elix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/elix.svg new file mode 100644 index 0000000..9d3d881 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/elix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ella.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ella.svg new file mode 100644 index 0000000..f0998dc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/emb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/emb.svg new file mode 100644 index 0000000..6181c36 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/emb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/emc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/emc.svg new file mode 100644 index 0000000..cb74ddb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/emc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/emc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/emc2.svg new file mode 100644 index 0000000..3a1e090 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/emc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eng.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eng.svg new file mode 100644 index 0000000..09a2fd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eng.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/enj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/enj.svg new file mode 100644 index 0000000..3dc8c32 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/enj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/entrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/entrp.svg new file mode 100644 index 0000000..5460c91 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/entrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eon.svg new file mode 100644 index 0000000..e3dad8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eop.svg new file mode 100644 index 0000000..d8a450d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eos.svg new file mode 100644 index 0000000..ade29e2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eqli.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eqli.svg new file mode 100644 index 0000000..747834e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eqli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/equa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/equa.svg new file mode 100644 index 0000000..f12f427 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/equa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/etc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/etc.svg new file mode 100644 index 0000000..ddfa848 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/etc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eth.svg new file mode 100644 index 0000000..6d6c5a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ethos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ethos.svg new file mode 100644 index 0000000..80f49c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ethos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/etn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/etn.svg new file mode 100644 index 0000000..e43956d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/etn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/etp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/etp.svg new file mode 100644 index 0000000..6e6c97d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/etp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/eur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eur.svg new file mode 100644 index 0000000..e5f4a94 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/eur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/evx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/evx.svg new file mode 100644 index 0000000..0a74d7f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/evx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/exmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/exmo.svg new file mode 100644 index 0000000..1be0fe4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/exmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/exp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/exp.svg new file mode 100644 index 0000000..def4917 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/exp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fair.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fair.svg new file mode 100644 index 0000000..7d5006a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fct.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fct.svg new file mode 100644 index 0000000..6f79a37 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fida.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fida.svg new file mode 100644 index 0000000..8931a93 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fida.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fil.svg new file mode 100644 index 0000000..c533977 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fjc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fjc.svg new file mode 100644 index 0000000..cfe7e1d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fjc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fldc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fldc.svg new file mode 100644 index 0000000..c06e90c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fldc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/flo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/flo.svg new file mode 100644 index 0000000..42754fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/flo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/flux.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/flux.svg new file mode 100644 index 0000000..525ec42 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/flux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fsn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fsn.svg new file mode 100644 index 0000000..fb19b10 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fsn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ftc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ftc.svg new file mode 100644 index 0000000..b54d7b7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ftc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fuel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fuel.svg new file mode 100644 index 0000000..916aa0a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fuel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/fun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fun.svg new file mode 100644 index 0000000..8e7b0d2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/fun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/game.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/game.svg new file mode 100644 index 0000000..14cd9a9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/game.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gas.svg new file mode 100644 index 0000000..000e989 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbp.svg new file mode 100644 index 0000000..a381a6b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbx.svg new file mode 100644 index 0000000..63bb316 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbyte.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbyte.svg new file mode 100644 index 0000000..1dff70a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gbyte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/generic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/generic.svg new file mode 100644 index 0000000..3e3905f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/generic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gin.svg new file mode 100644 index 0000000..5bcb0e2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/glxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/glxt.svg new file mode 100644 index 0000000..67c43ed --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/glxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gmr.svg new file mode 100644 index 0000000..26eaad2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gmt.svg new file mode 100644 index 0000000..1d50f33 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gno.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gno.svg new file mode 100644 index 0000000..2562768 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gno.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gnt.svg new file mode 100644 index 0000000..d8f7e6e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gold.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gold.svg new file mode 100644 index 0000000..11c3194 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/grc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grc.svg new file mode 100644 index 0000000..f819302 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/grin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grin.svg new file mode 100644 index 0000000..818c16a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/grs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grs.svg new file mode 100644 index 0000000..6c98864 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/grt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grt.svg new file mode 100644 index 0000000..d6566c0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/grt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gsc.svg new file mode 100644 index 0000000..ba1f8d1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gto.svg new file mode 100644 index 0000000..b25ae28 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gup.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gup.svg new file mode 100644 index 0000000..17d482e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gusd.svg new file mode 100644 index 0000000..c040ce9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gvt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gvt.svg new file mode 100644 index 0000000..0cf7a03 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gvt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gxs.svg new file mode 100644 index 0000000..7f8bd7e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/gzr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gzr.svg new file mode 100644 index 0000000..2c65b00 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/gzr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/hight.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hight.svg new file mode 100644 index 0000000..9bbf64c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/hns.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hns.svg new file mode 100644 index 0000000..3f636ed --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/hodl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hodl.svg new file mode 100644 index 0000000..6db498c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hodl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/hot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hot.svg new file mode 100644 index 0000000..1ba308f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/hpb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hpb.svg new file mode 100644 index 0000000..a36cc31 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hpb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/hsr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hsr.svg new file mode 100644 index 0000000..e268344 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hsr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ht.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ht.svg new file mode 100644 index 0000000..24bae9b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ht.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/html.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/html.svg new file mode 100644 index 0000000..92338fa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/html.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/huc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/huc.svg new file mode 100644 index 0000000..7646a78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/huc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/husd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/husd.svg new file mode 100644 index 0000000..0efa6ca --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/husd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/hush.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hush.svg new file mode 100644 index 0000000..b20f393 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/hush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/icn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/icn.svg new file mode 100644 index 0000000..78c102e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/icn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/icp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/icp.svg new file mode 100644 index 0000000..79a06d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/icp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/icx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/icx.svg new file mode 100644 index 0000000..221ff10 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/icx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ignis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ignis.svg new file mode 100644 index 0000000..01fb602 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ignis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ilk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ilk.svg new file mode 100644 index 0000000..fcbf378 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ilk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ink.svg new file mode 100644 index 0000000..09147a4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ins.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ins.svg new file mode 100644 index 0000000..a2115a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ion.svg new file mode 100644 index 0000000..cdb65b5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/iop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iop.svg new file mode 100644 index 0000000..6289e6c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/iost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iost.svg new file mode 100644 index 0000000..86edd8f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/iotx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iotx.svg new file mode 100644 index 0000000..9dfe54e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iotx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/iq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iq.svg new file mode 100644 index 0000000..08efc50 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/iq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/itc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/itc.svg new file mode 100644 index 0000000..725fd16 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/itc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/jnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/jnt.svg new file mode 100644 index 0000000..2c355e7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/jnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/jpy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/jpy.svg new file mode 100644 index 0000000..100caf5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/jpy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/kcs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/kcs.svg new file mode 100644 index 0000000..74dd94c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/kcs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/kin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/kin.svg new file mode 100644 index 0000000..f310343 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/kin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/klown.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/klown.svg new file mode 100644 index 0000000..4fece4f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/klown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/kmd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/kmd.svg new file mode 100644 index 0000000..69713e4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/kmd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/knc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/knc.svg new file mode 100644 index 0000000..e10625d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/knc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/krb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/krb.svg new file mode 100644 index 0000000..9499d12 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/krb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ksm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ksm.svg new file mode 100644 index 0000000..3f4f8b0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ksm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/lbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lbc.svg new file mode 100644 index 0000000..3bbd4ca --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/lend.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lend.svg new file mode 100644 index 0000000..583a569 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/leo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/leo.svg new file mode 100644 index 0000000..eda4985 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/leo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/link.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/link.svg new file mode 100644 index 0000000..abae0a6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/lkk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lkk.svg new file mode 100644 index 0000000..6528d01 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lkk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/loom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/loom.svg new file mode 100644 index 0000000..df16b91 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/loom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/lpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lpt.svg new file mode 100644 index 0000000..c392112 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/lrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lrc.svg new file mode 100644 index 0000000..5f9c98a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/lsk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lsk.svg new file mode 100644 index 0000000..12b729d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lsk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ltc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ltc.svg new file mode 100644 index 0000000..1ad56c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ltc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/lun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lun.svg new file mode 100644 index 0000000..bb90281 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/lun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/maid.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/maid.svg new file mode 100644 index 0000000..aba6f77 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/maid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mana.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mana.svg new file mode 100644 index 0000000..45f69d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/matic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/matic.svg new file mode 100644 index 0000000..38210ba --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/matic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/max.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/max.svg new file mode 100644 index 0000000..b16c68d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mcap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mcap.svg new file mode 100644 index 0000000..4dab327 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mcap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mco.svg new file mode 100644 index 0000000..a69dae5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mda.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mda.svg new file mode 100644 index 0000000..0e0de78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mds.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mds.svg new file mode 100644 index 0000000..9712bc6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/med.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/med.svg new file mode 100644 index 0000000..dbf0629 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/med.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/meetone.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/meetone.svg new file mode 100644 index 0000000..388adaa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/meetone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mft.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mft.svg new file mode 100644 index 0000000..8a9dc19 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/miota.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/miota.svg new file mode 100644 index 0000000..fa8d73c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/miota.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mith.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mith.svg new file mode 100644 index 0000000..aca9f1a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mkr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mkr.svg new file mode 100644 index 0000000..63dd8e6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mkr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mln.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mln.svg new file mode 100644 index 0000000..35c095c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mln.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mnx.svg new file mode 100644 index 0000000..25bc980 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mnz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mnz.svg new file mode 100644 index 0000000..72c4757 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mnz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/moac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/moac.svg new file mode 100644 index 0000000..a998756 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/moac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mod.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mod.svg new file mode 100644 index 0000000..2d2c33c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mod.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mona.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mona.svg new file mode 100644 index 0000000..a11ee12 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mona.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/msr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/msr.svg new file mode 100644 index 0000000..7fb8101 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/msr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mth.svg new file mode 100644 index 0000000..b9cd3f1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mtl.svg new file mode 100644 index 0000000..96373e1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/music.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/music.svg new file mode 100644 index 0000000..a0a631b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/mzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mzc.svg new file mode 100644 index 0000000..428ac16 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/mzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nano.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nano.svg new file mode 100644 index 0000000..0bfb405 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nas.svg new file mode 100644 index 0000000..bde29c3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nav.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nav.svg new file mode 100644 index 0000000..14e29c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nav.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ncash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ncash.svg new file mode 100644 index 0000000..b7e6f87 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ncash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ndz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ndz.svg new file mode 100644 index 0000000..45f1647 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ndz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nebl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nebl.svg new file mode 100644 index 0000000..36eef61 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nebl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/neo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/neo.svg new file mode 100644 index 0000000..000e989 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/neo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/neos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/neos.svg new file mode 100644 index 0000000..d14b2c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/neos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/neu.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/neu.svg new file mode 100644 index 0000000..9266d46 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/neu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nexo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nexo.svg new file mode 100644 index 0000000..4558e8e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nexo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ngc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ngc.svg new file mode 100644 index 0000000..72d9059 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ngc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nio.svg new file mode 100644 index 0000000..6a04b03 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nkn.svg new file mode 100644 index 0000000..f063855 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nlc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nlc2.svg new file mode 100644 index 0000000..c385e43 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nlc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nlg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nlg.svg new file mode 100644 index 0000000..38db9c8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nlg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nmc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nmc.svg new file mode 100644 index 0000000..1cf5ef0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nmc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nmr.svg new file mode 100644 index 0000000..e90f423 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/npxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/npxs.svg new file mode 100644 index 0000000..d6b7f02 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/npxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ntbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ntbc.svg new file mode 100644 index 0000000..808a035 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ntbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nuls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nuls.svg new file mode 100644 index 0000000..d8f1b9b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nuls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nxs.svg new file mode 100644 index 0000000..bbb0b01 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/nxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nxt.svg new file mode 100644 index 0000000..a0a66fe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/nxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/oax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oax.svg new file mode 100644 index 0000000..ba1adea --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ok.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ok.svg new file mode 100644 index 0000000..2f49816 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/omg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/omg.svg new file mode 100644 index 0000000..f0bc189 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/omg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/omni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/omni.svg new file mode 100644 index 0000000..71ea6a7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/omni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/one.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/one.svg new file mode 100644 index 0000000..f771d32 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ong.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ong.svg new file mode 100644 index 0000000..6468930 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ont.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ont.svg new file mode 100644 index 0000000..bf00c86 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ont.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/oot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oot.svg new file mode 100644 index 0000000..478f278 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ost.svg new file mode 100644 index 0000000..627ff86 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ox.svg new file mode 100644 index 0000000..c962b61 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/oxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oxt.svg new file mode 100644 index 0000000..1250d3b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/oxy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oxy.svg new file mode 100644 index 0000000..5a6f882 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/oxy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/part.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/part.svg new file mode 100644 index 0000000..08ddc4a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/part.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pasc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pasc.svg new file mode 100644 index 0000000..1d4e4ac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pasc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pasl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pasl.svg new file mode 100644 index 0000000..20cf0b6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pasl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pax.svg new file mode 100644 index 0000000..b49e23e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/paxg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/paxg.svg new file mode 100644 index 0000000..20191a1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/paxg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pay.svg new file mode 100644 index 0000000..15ded6f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/payx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/payx.svg new file mode 100644 index 0000000..7480a5e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/payx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pink.svg new file mode 100644 index 0000000..d1410b1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pirl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pirl.svg new file mode 100644 index 0000000..beef593 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pirl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pivx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pivx.svg new file mode 100644 index 0000000..da19c55 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pivx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/plr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/plr.svg new file mode 100644 index 0000000..1152ef5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/plr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/poa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/poa.svg new file mode 100644 index 0000000..40ec53f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/poa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/poe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/poe.svg new file mode 100644 index 0000000..d779426 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/poe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/polis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/polis.svg new file mode 100644 index 0000000..75ae956 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/polis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/poly.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/poly.svg new file mode 100644 index 0000000..cbdefd4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/poly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pot.svg new file mode 100644 index 0000000..7db258c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/powr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/powr.svg new file mode 100644 index 0000000..7736837 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/powr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppc.svg new file mode 100644 index 0000000..1f15084 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppp.svg new file mode 100644 index 0000000..76c4517 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppt.svg new file mode 100644 index 0000000..b836c4b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ppt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pre.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pre.svg new file mode 100644 index 0000000..f17f30a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pre.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/prl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/prl.svg new file mode 100644 index 0000000..41aa0b6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/prl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pungo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pungo.svg new file mode 100644 index 0000000..08957a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pungo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/pura.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pura.svg new file mode 100644 index 0000000..9ae048a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/pura.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/qash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qash.svg new file mode 100644 index 0000000..6bb48ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/qiwi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qiwi.svg new file mode 100644 index 0000000..b964063 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qiwi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/qlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qlc.svg new file mode 100644 index 0000000..f3e3568 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/qnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qnt.svg new file mode 100644 index 0000000..ff794e5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/qrl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qrl.svg new file mode 100644 index 0000000..8a3a990 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qrl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/qsp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qsp.svg new file mode 100644 index 0000000..a09ffae --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qsp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/qtum.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qtum.svg new file mode 100644 index 0000000..56cfb24 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/qtum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/r.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/r.svg new file mode 100644 index 0000000..c04fc15 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rads.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rads.svg new file mode 100644 index 0000000..65b9d9e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rap.svg new file mode 100644 index 0000000..3cca962 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ray.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ray.svg new file mode 100644 index 0000000..604ef67 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rcn.svg new file mode 100644 index 0000000..c551c32 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rdd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rdd.svg new file mode 100644 index 0000000..8b0c604 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rdn.svg new file mode 100644 index 0000000..7cfa2c3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ren.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ren.svg new file mode 100644 index 0000000..ba07e9f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rep.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rep.svg new file mode 100644 index 0000000..628cc69 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/repv2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/repv2.svg new file mode 100644 index 0000000..a7ac634 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/repv2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/req.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/req.svg new file mode 100644 index 0000000..f406647 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/req.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rhoc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rhoc.svg new file mode 100644 index 0000000..49b3bbb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rhoc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ric.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ric.svg new file mode 100644 index 0000000..b67c3f3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rise.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rise.svg new file mode 100644 index 0000000..1a8545e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rlc.svg new file mode 100644 index 0000000..a999a70 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rpx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rpx.svg new file mode 100644 index 0000000..61cfb9a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rpx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rub.svg new file mode 100644 index 0000000..41d06b0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/rvn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rvn.svg new file mode 100644 index 0000000..dccdbef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/rvn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ryo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ryo.svg new file mode 100644 index 0000000..81a4b67 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ryo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/safe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/safe.svg new file mode 100644 index 0000000..9ba43c9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/safe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/safemoon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/safemoon.svg new file mode 100644 index 0000000..e6fb532 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/safemoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sai.svg new file mode 100644 index 0000000..d61d64b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/salt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/salt.svg new file mode 100644 index 0000000..e7ba9ff --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/salt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/san.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/san.svg new file mode 100644 index 0000000..2e9e77a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/san.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sand.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sand.svg new file mode 100644 index 0000000..62b3cb9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sbd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sbd.svg new file mode 100644 index 0000000..cda2584 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sbd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sberbank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sberbank.svg new file mode 100644 index 0000000..643e34e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sberbank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sc.svg new file mode 100644 index 0000000..a7dbd1d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ser.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ser.svg new file mode 100644 index 0000000..5213c81 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/shift.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/shift.svg new file mode 100644 index 0000000..56cf331 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/shift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sib.svg new file mode 100644 index 0000000..c7ad747 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sin.svg new file mode 100644 index 0000000..fa7c64b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/skl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/skl.svg new file mode 100644 index 0000000..bbd5b4a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/skl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sky.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sky.svg new file mode 100644 index 0000000..6a9b1a4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/slr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/slr.svg new file mode 100644 index 0000000..a0102e5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/slr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sls.svg new file mode 100644 index 0000000..207c4c3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/smart.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/smart.svg new file mode 100644 index 0000000..51e65a2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/smart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sngls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sngls.svg new file mode 100644 index 0000000..13d8063 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sngls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/snm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/snm.svg new file mode 100644 index 0000000..01d46af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/snm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/snt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/snt.svg new file mode 100644 index 0000000..fdfd8eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/snt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/snx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/snx.svg new file mode 100644 index 0000000..f140ff7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/snx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/soc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/soc.svg new file mode 100644 index 0000000..3de8776 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/soc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sol.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sol.svg new file mode 100644 index 0000000..91d97c0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/spacehbit.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/spacehbit.svg new file mode 100644 index 0000000..171ff9a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/spacehbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/spank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/spank.svg new file mode 100644 index 0000000..06c0ebe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/spank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sphtx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sphtx.svg new file mode 100644 index 0000000..65edbbf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sphtx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/srn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/srn.svg new file mode 100644 index 0000000..8affa58 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/srn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/stak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stak.svg new file mode 100644 index 0000000..40f11db --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/start.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/start.svg new file mode 100644 index 0000000..23ef7d5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/steem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/steem.svg new file mode 100644 index 0000000..cda2584 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/steem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/storj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/storj.svg new file mode 100644 index 0000000..37a3ba5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/storj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/storm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/storm.svg new file mode 100644 index 0000000..0cab9e4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/stox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stox.svg new file mode 100644 index 0000000..db998a7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/stq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stq.svg new file mode 100644 index 0000000..5a9366d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/strat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/strat.svg new file mode 100644 index 0000000..8b396c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/strat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/stx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stx.svg new file mode 100644 index 0000000..325cfe1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/stx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sub.svg new file mode 100644 index 0000000..543b70e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sumo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sumo.svg new file mode 100644 index 0000000..fedc7e3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sumo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sushi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sushi.svg new file mode 100644 index 0000000..a5a7b66 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sushi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/sys.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sys.svg new file mode 100644 index 0000000..3f65a6d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/sys.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/taas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/taas.svg new file mode 100644 index 0000000..effdee5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/taas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tau.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tau.svg new file mode 100644 index 0000000..e5cbfa4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tau.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tbx.svg new file mode 100644 index 0000000..52ce93e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tel.svg new file mode 100644 index 0000000..a5f65ba --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ten.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ten.svg new file mode 100644 index 0000000..e10edd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tern.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tern.svg new file mode 100644 index 0000000..9777960 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tgch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tgch.svg new file mode 100644 index 0000000..5fbfe4b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tgch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/theta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/theta.svg new file mode 100644 index 0000000..1f63188 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/theta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tix.svg new file mode 100644 index 0000000..77e8145 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tkn.svg new file mode 100644 index 0000000..69c6f44 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tks.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tks.svg new file mode 100644 index 0000000..e31dd4c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnb.svg new file mode 100644 index 0000000..d995895 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnc.svg new file mode 100644 index 0000000..6b006c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnt.svg new file mode 100644 index 0000000..5c8b2ba --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tomo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tomo.svg new file mode 100644 index 0000000..d56ceee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tomo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tpay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tpay.svg new file mode 100644 index 0000000..41558c0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tpay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/trig.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/trig.svg new file mode 100644 index 0000000..e35c42f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/trig.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/trtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/trtl.svg new file mode 100644 index 0000000..bdd87a5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/trtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/trx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/trx.svg new file mode 100644 index 0000000..9e79163 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/trx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tusd.svg new file mode 100644 index 0000000..f4b28b0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/tzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tzc.svg new file mode 100644 index 0000000..ce38028 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/tzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/ubq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ubq.svg new file mode 100644 index 0000000..de3626a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/ubq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/uma.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/uma.svg new file mode 100644 index 0000000..fac1d81 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/uma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/uni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/uni.svg new file mode 100644 index 0000000..6e1d414 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/uni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/unity.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/unity.svg new file mode 100644 index 0000000..87d361f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/unity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/usd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/usd.svg new file mode 100644 index 0000000..d16aecb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/usdc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/usdc.svg new file mode 100644 index 0000000..36a0d2e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/usdc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/usdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/usdt.svg new file mode 100644 index 0000000..313a1b2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/usdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/utk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/utk.svg new file mode 100644 index 0000000..f940779 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/utk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/veri.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/veri.svg new file mode 100644 index 0000000..6e1b4d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/veri.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vet.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vet.svg new file mode 100644 index 0000000..97b09b4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/via.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/via.svg new file mode 100644 index 0000000..aa74f9c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/via.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vib.svg new file mode 100644 index 0000000..d75af45 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vibe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vibe.svg new file mode 100644 index 0000000..56a5f25 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vibe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vivo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vivo.svg new file mode 100644 index 0000000..a1bc602 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vivo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vrc.svg new file mode 100644 index 0000000..d0850eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vrsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vrsc.svg new file mode 100644 index 0000000..c6788a0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vrsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vtc.svg new file mode 100644 index 0000000..253e407 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/vtho.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vtho.svg new file mode 100644 index 0000000..2bdb463 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/vtho.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wabi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wabi.svg new file mode 100644 index 0000000..e38e0ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wabi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wan.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wan.svg new file mode 100644 index 0000000..a87119d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/waves.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/waves.svg new file mode 100644 index 0000000..0b1243e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/waves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wax.svg new file mode 100644 index 0000000..12488df --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wbtc.svg new file mode 100644 index 0000000..b3f60b1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wgr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wgr.svg new file mode 100644 index 0000000..dc8018e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wgr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wicc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wicc.svg new file mode 100644 index 0000000..96ad197 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wicc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wings.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wings.svg new file mode 100644 index 0000000..c544f20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wpr.svg new file mode 100644 index 0000000..245a3a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/wtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wtc.svg new file mode 100644 index 0000000..0641b59 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/wtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/x.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/x.svg new file mode 100644 index 0000000..c082a3f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xas.svg new file mode 100644 index 0000000..aa34913 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xbc.svg new file mode 100644 index 0000000..3c3d386 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xbp.svg new file mode 100644 index 0000000..6b68fb6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xby.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xby.svg new file mode 100644 index 0000000..1810ba0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xcp.svg new file mode 100644 index 0000000..7ced217 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xdn.svg new file mode 100644 index 0000000..2fc54f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xem.svg new file mode 100644 index 0000000..7faab73 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xin.svg new file mode 100644 index 0000000..3b4935e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xlm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xlm.svg new file mode 100644 index 0000000..374df89 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xlm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmcc.svg new file mode 100644 index 0000000..dfc5993 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmg.svg new file mode 100644 index 0000000..be872e2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmo.svg new file mode 100644 index 0000000..d37ecd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmr.svg new file mode 100644 index 0000000..2a9506d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmy.svg new file mode 100644 index 0000000..f390b1b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xmy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xp.svg new file mode 100644 index 0000000..5e2de20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpa.svg new file mode 100644 index 0000000..dee52d2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpm.svg new file mode 100644 index 0000000..1ebd79e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpr.svg new file mode 100644 index 0000000..77a9175 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xrp.svg new file mode 100644 index 0000000..be3605e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xsg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xsg.svg new file mode 100644 index 0000000..22b3e7a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xsg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xtz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xtz.svg new file mode 100644 index 0000000..c0b94c3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xtz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xuc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xuc.svg new file mode 100644 index 0000000..c01ab60 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xuc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xvc.svg new file mode 100644 index 0000000..36dc296 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xvg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xvg.svg new file mode 100644 index 0000000..8171942 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xvg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/xzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xzc.svg new file mode 100644 index 0000000..9c10ff7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/xzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/yfi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/yfi.svg new file mode 100644 index 0000000..8071111 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/yfi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/yoyow.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/yoyow.svg new file mode 100644 index 0000000..ac84ae3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/yoyow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zcl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zcl.svg new file mode 100644 index 0000000..118200c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zcl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zec.svg new file mode 100644 index 0000000..94b235b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zel.svg new file mode 100644 index 0000000..82e5cda --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zen.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zen.svg new file mode 100644 index 0000000..721dd07 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zest.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zest.svg new file mode 100644 index 0000000..349df01 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zil.svg new file mode 100644 index 0000000..9ae1da6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zilla.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zilla.svg new file mode 100644 index 0000000..1267697 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zilla.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/icon/zrx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zrx.svg new file mode 100644 index 0000000..5360d20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/icon/zrx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/$pac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/$pac.svg new file mode 100644 index 0000000..7ab2cee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/$pac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/0xbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/0xbtc.svg new file mode 100644 index 0000000..c4d0fa7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/0xbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/1inch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/1inch.svg new file mode 100644 index 0000000..4cf6cb1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/1inch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/2give.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/2give.svg new file mode 100644 index 0000000..c57c419 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/2give.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/aave.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/aave.svg new file mode 100644 index 0000000..d882a87 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/aave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/abt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/abt.svg new file mode 100644 index 0000000..a7e85c4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/abt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/act.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/act.svg new file mode 100644 index 0000000..d9345ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/act.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/actn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/actn.svg new file mode 100644 index 0000000..a458bdb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/actn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ada.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ada.svg new file mode 100644 index 0000000..78d71bd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ada.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/add.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/add.svg new file mode 100644 index 0000000..38d2899 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/adx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/adx.svg new file mode 100644 index 0000000..44b25d5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/adx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ae.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ae.svg new file mode 100644 index 0000000..0379c05 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/aeon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/aeon.svg new file mode 100644 index 0000000..9b54dd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/aeon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/aeur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/aeur.svg new file mode 100644 index 0000000..f324732 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/aeur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/agi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/agi.svg new file mode 100644 index 0000000..fcb1ea5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/agi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/agrs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/agrs.svg new file mode 100644 index 0000000..816ab37 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/agrs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/aion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/aion.svg new file mode 100644 index 0000000..d77d1d5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/aion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/algo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/algo.svg new file mode 100644 index 0000000..93432c5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/algo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/amb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/amb.svg new file mode 100644 index 0000000..7d60c59 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/amb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/amp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/amp.svg new file mode 100644 index 0000000..b184a26 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/amp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ampl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ampl.svg new file mode 100644 index 0000000..f644d50 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ampl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ankr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ankr.svg new file mode 100644 index 0000000..e939055 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ankr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ant.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ant.svg new file mode 100644 index 0000000..5adc374 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ape.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ape.svg new file mode 100644 index 0000000..0a15dc5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/apex.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/apex.svg new file mode 100644 index 0000000..d2b31d1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/apex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/appc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/appc.svg new file mode 100644 index 0000000..9f6aaf5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/appc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ardr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ardr.svg new file mode 100644 index 0000000..e7f4eaa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ardr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/arg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/arg.svg new file mode 100644 index 0000000..e8f522c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/arg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ark.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ark.svg new file mode 100644 index 0000000..83a167f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/arn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/arn.svg new file mode 100644 index 0000000..a388b97 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/arn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/arnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/arnx.svg new file mode 100644 index 0000000..46e836a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/arnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ary.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ary.svg new file mode 100644 index 0000000..af4a61c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ast.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ast.svg new file mode 100644 index 0000000..dc8105a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/atlas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/atlas.svg new file mode 100644 index 0000000..1c02dfa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/atlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/atm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/atm.svg new file mode 100644 index 0000000..9f7b854 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/atm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/atom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/atom.svg new file mode 100644 index 0000000..8f0a7f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/audr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/audr.svg new file mode 100644 index 0000000..5894573 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/audr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/aury.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/aury.svg new file mode 100644 index 0000000..f27e1ca --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/aury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/auto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/auto.svg new file mode 100644 index 0000000..f40ed31 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/avax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/avax.svg new file mode 100644 index 0000000..0bf2d6a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/avax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/aywa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/aywa.svg new file mode 100644 index 0000000..636de40 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/aywa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bab.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bab.svg new file mode 100644 index 0000000..c57aced --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bal.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bal.svg new file mode 100644 index 0000000..a1d78a3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/band.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/band.svg new file mode 100644 index 0000000..ef0b975 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/band.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bat.svg new file mode 100644 index 0000000..676b289 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bay.svg new file mode 100644 index 0000000..a6d8a22 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bcbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcbc.svg new file mode 100644 index 0000000..7cb6ec7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcc.svg new file mode 100644 index 0000000..7caed90 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcd.svg new file mode 100644 index 0000000..688e9b2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bch.svg new file mode 100644 index 0000000..0a69b68 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bcio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcio.svg new file mode 100644 index 0000000..7ff3dfd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcn.svg new file mode 100644 index 0000000..2bdb89b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bco.svg new file mode 100644 index 0000000..e106c59 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bcpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcpt.svg new file mode 100644 index 0000000..a821592 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bcpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bdl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bdl.svg new file mode 100644 index 0000000..914ed43 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bdl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/beam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/beam.svg new file mode 100644 index 0000000..f403b20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bela.svg new file mode 100644 index 0000000..93f6a73 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bix.svg new file mode 100644 index 0000000..46b449f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/blcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/blcn.svg new file mode 100644 index 0000000..7da3b02 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/blcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/blk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/blk.svg new file mode 100644 index 0000000..c6ef458 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/blk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/block.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/block.svg new file mode 100644 index 0000000..d7b25c3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/blz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/blz.svg new file mode 100644 index 0000000..4fb2cd7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/blz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bnb.svg new file mode 100644 index 0000000..8c5d903 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bnt.svg new file mode 100644 index 0000000..1b9e06d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bnty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bnty.svg new file mode 100644 index 0000000..bc3380f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bnty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/booty.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/booty.svg new file mode 100644 index 0000000..c3e88e3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/booty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bos.svg new file mode 100644 index 0000000..6f4d7b2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bpt.svg new file mode 100644 index 0000000..bdec16a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bq.svg new file mode 100644 index 0000000..0f299e5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/brd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/brd.svg new file mode 100644 index 0000000..a022675 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/brd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bsd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bsd.svg new file mode 100644 index 0000000..2483360 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bsv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bsv.svg new file mode 100644 index 0000000..ed56518 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bsv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btc.svg new file mode 100644 index 0000000..d67d1ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btcd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btcd.svg new file mode 100644 index 0000000..b56579e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btcd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btch.svg new file mode 100644 index 0000000..9365c58 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btcp.svg new file mode 100644 index 0000000..022b75b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btcz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btcz.svg new file mode 100644 index 0000000..daa7146 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btcz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btdx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btdx.svg new file mode 100644 index 0000000..c6ca888 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btdx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btg.svg new file mode 100644 index 0000000..d0e8978 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btm.svg new file mode 100644 index 0000000..71527eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bts.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bts.svg new file mode 100644 index 0000000..33010e1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btt.svg new file mode 100644 index 0000000..34d32f5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/btx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/btx.svg new file mode 100644 index 0000000..29ff2cf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/btx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/burst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/burst.svg new file mode 100644 index 0000000..035a169 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/bze.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/bze.svg new file mode 100644 index 0000000..e3a33ca --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/bze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/call.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/call.svg new file mode 100644 index 0000000..1c64a27 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cc.svg new file mode 100644 index 0000000..7eb9ae5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cdn.svg new file mode 100644 index 0000000..e50c495 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cdt.svg new file mode 100644 index 0000000..62a31b9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cenz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cenz.svg new file mode 100644 index 0000000..44c18fb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cenz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/chain.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/chain.svg new file mode 100644 index 0000000..826986d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/chain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/chat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/chat.svg new file mode 100644 index 0000000..78fe84a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/chips.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/chips.svg new file mode 100644 index 0000000..4d20816 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/chips.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/chsb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/chsb.svg new file mode 100644 index 0000000..2151a93 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/chsb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/chz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/chz.svg new file mode 100644 index 0000000..158cc96 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/chz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cix.svg new file mode 100644 index 0000000..377e4e6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/clam.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/clam.svg new file mode 100644 index 0000000..362523e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/clam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cloak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cloak.svg new file mode 100644 index 0000000..4a35797 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cloak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cmm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cmm.svg new file mode 100644 index 0000000..f29b208 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cmm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cmt.svg new file mode 100644 index 0000000..e1f2475 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cnd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cnd.svg new file mode 100644 index 0000000..7143c90 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cnd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cnx.svg new file mode 100644 index 0000000..0127e6b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cny.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cny.svg new file mode 100644 index 0000000..46ce03f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cob.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cob.svg new file mode 100644 index 0000000..a2160d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cob.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/colx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/colx.svg new file mode 100644 index 0000000..557cc9d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/colx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/comp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/comp.svg new file mode 100644 index 0000000..d94e9b4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/comp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/coqui.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/coqui.svg new file mode 100644 index 0000000..54b343b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/coqui.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cred.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cred.svg new file mode 100644 index 0000000..6b0cc87 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cred.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/crpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/crpt.svg new file mode 100644 index 0000000..6ad037e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/crpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/crv.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/crv.svg new file mode 100644 index 0000000..275dbb7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/crv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/crw.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/crw.svg new file mode 100644 index 0000000..e51f6e0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/crw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cs.svg new file mode 100644 index 0000000..7f6a262 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ctr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ctr.svg new file mode 100644 index 0000000..9fb0a83 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ctr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ctxc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ctxc.svg new file mode 100644 index 0000000..97e64e7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ctxc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/cvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/cvc.svg new file mode 100644 index 0000000..17f7db2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/cvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/d.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/d.svg new file mode 100644 index 0000000..56ef6c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dai.svg new file mode 100644 index 0000000..80779b1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dash.svg new file mode 100644 index 0000000..fcda0c1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dat.svg new file mode 100644 index 0000000..07ce0bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/data.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/data.svg new file mode 100644 index 0000000..3b47be0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/data.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dbc.svg new file mode 100644 index 0000000..169d57e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dcn.svg new file mode 100644 index 0000000..240bb52 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dcr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dcr.svg new file mode 100644 index 0000000..7fb0def --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dcr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/deez.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/deez.svg new file mode 100644 index 0000000..1fad11c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/deez.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dent.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dent.svg new file mode 100644 index 0000000..8818396 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dew.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dew.svg new file mode 100644 index 0000000..116e25c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dgb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dgb.svg new file mode 100644 index 0000000..9f4fdf4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dgb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dgd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dgd.svg new file mode 100644 index 0000000..7fefbd1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dgd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dlt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dlt.svg new file mode 100644 index 0000000..e3cf7ea --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dlt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dnt.svg new file mode 100644 index 0000000..b77fccb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dock.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dock.svg new file mode 100644 index 0000000..a4b51b0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/doge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/doge.svg new file mode 100644 index 0000000..ffb654e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/doge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dot.svg new file mode 100644 index 0000000..d7eba44 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/drgn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/drgn.svg new file mode 100644 index 0000000..8c88d78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/drgn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/drop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/drop.svg new file mode 100644 index 0000000..e05b8b2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/drop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dta.svg new file mode 100644 index 0000000..034c2dc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dth.svg new file mode 100644 index 0000000..12b904e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/dtr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/dtr.svg new file mode 100644 index 0000000..03f040e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/dtr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ebst.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ebst.svg new file mode 100644 index 0000000..3f53c6f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ebst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eca.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eca.svg new file mode 100644 index 0000000..178ed65 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/edg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/edg.svg new file mode 100644 index 0000000..c4bb118 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/edg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/edo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/edo.svg new file mode 100644 index 0000000..089faa0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/edo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/edoge.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/edoge.svg new file mode 100644 index 0000000..b37161a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/edoge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ela.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ela.svg new file mode 100644 index 0000000..1a8afac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ela.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/elec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/elec.svg new file mode 100644 index 0000000..6c80d8b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/elec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/elf.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/elf.svg new file mode 100644 index 0000000..ab4162c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/elf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/elix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/elix.svg new file mode 100644 index 0000000..6881e6b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/elix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ella.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ella.svg new file mode 100644 index 0000000..a8c1891 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/emb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/emb.svg new file mode 100644 index 0000000..dc7f960 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/emb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/emc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/emc.svg new file mode 100644 index 0000000..e23a024 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/emc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/emc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/emc2.svg new file mode 100644 index 0000000..f5dc712 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/emc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eng.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eng.svg new file mode 100644 index 0000000..00edd1e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eng.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/enj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/enj.svg new file mode 100644 index 0000000..0d76659 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/enj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/entrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/entrp.svg new file mode 100644 index 0000000..9dc8b78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/entrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eon.svg new file mode 100644 index 0000000..eb79568 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eop.svg new file mode 100644 index 0000000..e3cc59c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eos.svg new file mode 100644 index 0000000..bb23624 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eqli.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eqli.svg new file mode 100644 index 0000000..e402638 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eqli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/equa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/equa.svg new file mode 100644 index 0000000..f2dbd54 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/equa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/etc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/etc.svg new file mode 100644 index 0000000..afb2a38 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/etc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eth.svg new file mode 100644 index 0000000..e7a22ec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ethos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ethos.svg new file mode 100644 index 0000000..bcea774 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ethos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/etn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/etn.svg new file mode 100644 index 0000000..f9d103f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/etn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/etp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/etp.svg new file mode 100644 index 0000000..716b459 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/etp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/eur.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/eur.svg new file mode 100644 index 0000000..394ff13 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/eur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/evx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/evx.svg new file mode 100644 index 0000000..9ca4dbb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/evx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/exmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/exmo.svg new file mode 100644 index 0000000..5484882 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/exmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/exp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/exp.svg new file mode 100644 index 0000000..3ed5e84 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/exp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fair.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fair.svg new file mode 100644 index 0000000..0b5a7c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fct.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fct.svg new file mode 100644 index 0000000..faab5a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fida.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fida.svg new file mode 100644 index 0000000..00f012c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fida.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fil.svg new file mode 100644 index 0000000..e7e6bd7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fjc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fjc.svg new file mode 100644 index 0000000..8935c3e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fjc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fldc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fldc.svg new file mode 100644 index 0000000..e661559 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fldc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/flo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/flo.svg new file mode 100644 index 0000000..2fc039f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/flo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/flux.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/flux.svg new file mode 100644 index 0000000..9fb883f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/flux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fsn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fsn.svg new file mode 100644 index 0000000..e62abb2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fsn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ftc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ftc.svg new file mode 100644 index 0000000..11549ea --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ftc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fuel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fuel.svg new file mode 100644 index 0000000..849a1e9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fuel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/fun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/fun.svg new file mode 100644 index 0000000..827479f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/fun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/game.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/game.svg new file mode 100644 index 0000000..78ea355 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/game.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gas.svg new file mode 100644 index 0000000..c53a1fc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gbp.svg new file mode 100644 index 0000000..31227f0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gbx.svg new file mode 100644 index 0000000..09d5280 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gbyte.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gbyte.svg new file mode 100644 index 0000000..1782193 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gbyte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/generic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/generic.svg new file mode 100644 index 0000000..fee4d63 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/generic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gin.svg new file mode 100644 index 0000000..589d9b4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/glxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/glxt.svg new file mode 100644 index 0000000..ba6b1f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/glxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gmr.svg new file mode 100644 index 0000000..65275f3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gmt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gmt.svg new file mode 100644 index 0000000..8d63c30 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gmt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gno.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gno.svg new file mode 100644 index 0000000..0d6ce3b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gno.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gnt.svg new file mode 100644 index 0000000..fad77a0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gold.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gold.svg new file mode 100644 index 0000000..7d96b34 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/grc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/grc.svg new file mode 100644 index 0000000..e2d1d37 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/grc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/grin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/grin.svg new file mode 100644 index 0000000..853c235 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/grs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/grs.svg new file mode 100644 index 0000000..0663d29 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/grs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/grt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/grt.svg new file mode 100644 index 0000000..9ac7516 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/grt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gsc.svg new file mode 100644 index 0000000..c19041c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gto.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gto.svg new file mode 100644 index 0000000..a652d64 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gup.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gup.svg new file mode 100644 index 0000000..ee9d19e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gusd.svg new file mode 100644 index 0000000..8b9f86a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gvt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gvt.svg new file mode 100644 index 0000000..2f92faf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gvt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gxs.svg new file mode 100644 index 0000000..e1a2c62 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/gzr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/gzr.svg new file mode 100644 index 0000000..18b3bda --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/gzr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/hight.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/hight.svg new file mode 100644 index 0000000..d27a3d7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/hight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/hns.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/hns.svg new file mode 100644 index 0000000..0fb4249 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/hns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/hodl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/hodl.svg new file mode 100644 index 0000000..28c5a08 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/hodl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/hot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/hot.svg new file mode 100644 index 0000000..6e77779 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/hpb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/hpb.svg new file mode 100644 index 0000000..d1fd4ca --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/hpb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/hsr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/hsr.svg new file mode 100644 index 0000000..7e86105 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/hsr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ht.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ht.svg new file mode 100644 index 0000000..e9ae503 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ht.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/html.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/html.svg new file mode 100644 index 0000000..420c959 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/html.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/huc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/huc.svg new file mode 100644 index 0000000..d75ac8a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/huc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/husd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/husd.svg new file mode 100644 index 0000000..0bdb834 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/husd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/hush.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/hush.svg new file mode 100644 index 0000000..fbe07c2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/hush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/icn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/icn.svg new file mode 100644 index 0000000..e8bfb69 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/icn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/icp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/icp.svg new file mode 100644 index 0000000..dbc10c8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/icp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/icx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/icx.svg new file mode 100644 index 0000000..1509d0f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/icx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ignis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ignis.svg new file mode 100644 index 0000000..b7e9fb5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ignis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ilk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ilk.svg new file mode 100644 index 0000000..94b8f20 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ilk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ink.svg new file mode 100644 index 0000000..754559e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ins.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ins.svg new file mode 100644 index 0000000..bbc1aa7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ion.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ion.svg new file mode 100644 index 0000000..4dc82cb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/iop.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/iop.svg new file mode 100644 index 0000000..5278d40 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/iop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/iost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/iost.svg new file mode 100644 index 0000000..3fead11 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/iost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/iotx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/iotx.svg new file mode 100644 index 0000000..4733690 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/iotx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/iq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/iq.svg new file mode 100644 index 0000000..b04172c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/iq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/itc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/itc.svg new file mode 100644 index 0000000..aa19ca7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/itc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/jnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/jnt.svg new file mode 100644 index 0000000..7230cb2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/jnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/jpy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/jpy.svg new file mode 100644 index 0000000..da29e05 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/jpy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/kcs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/kcs.svg new file mode 100644 index 0000000..6460f18 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/kcs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/kin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/kin.svg new file mode 100644 index 0000000..1ee95bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/kin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/klown.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/klown.svg new file mode 100644 index 0000000..911bc9a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/klown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/kmd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/kmd.svg new file mode 100644 index 0000000..175fae9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/kmd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/knc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/knc.svg new file mode 100644 index 0000000..5edbc6d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/knc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/krb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/krb.svg new file mode 100644 index 0000000..0f33e4b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/krb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ksm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ksm.svg new file mode 100644 index 0000000..df07316 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ksm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/lbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/lbc.svg new file mode 100644 index 0000000..92da871 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/lbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/lend.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/lend.svg new file mode 100644 index 0000000..aa11127 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/lend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/leo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/leo.svg new file mode 100644 index 0000000..e19a41d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/leo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/link.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/link.svg new file mode 100644 index 0000000..f8e53e6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/lkk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/lkk.svg new file mode 100644 index 0000000..07c3703 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/lkk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/loom.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/loom.svg new file mode 100644 index 0000000..74be9af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/loom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/lpt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/lpt.svg new file mode 100644 index 0000000..ab19135 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/lpt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/lrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/lrc.svg new file mode 100644 index 0000000..47a06bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/lrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/lsk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/lsk.svg new file mode 100644 index 0000000..a705781 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/lsk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ltc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ltc.svg new file mode 100644 index 0000000..1866521 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ltc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/lun.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/lun.svg new file mode 100644 index 0000000..ff08031 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/lun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/maid.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/maid.svg new file mode 100644 index 0000000..991b50c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/maid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mana.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mana.svg new file mode 100644 index 0000000..a4e1db9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/matic.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/matic.svg new file mode 100644 index 0000000..0b0b14c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/matic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/max.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/max.svg new file mode 100644 index 0000000..6807d84 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mcap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mcap.svg new file mode 100644 index 0000000..bea5a05 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mcap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mco.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mco.svg new file mode 100644 index 0000000..9603211 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mda.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mda.svg new file mode 100644 index 0000000..d924d6b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mds.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mds.svg new file mode 100644 index 0000000..ac46cd9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/med.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/med.svg new file mode 100644 index 0000000..f5bbf5d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/med.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/meetone.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/meetone.svg new file mode 100644 index 0000000..db5ef43 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/meetone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mft.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mft.svg new file mode 100644 index 0000000..dd57804 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/miota.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/miota.svg new file mode 100644 index 0000000..e430452 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/miota.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mith.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mith.svg new file mode 100644 index 0000000..5caf7fd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mkr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mkr.svg new file mode 100644 index 0000000..272d8aa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mkr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mln.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mln.svg new file mode 100644 index 0000000..79db19d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mln.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mnx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mnx.svg new file mode 100644 index 0000000..bd0acdd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mnx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mnz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mnz.svg new file mode 100644 index 0000000..c055100 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mnz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/moac.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/moac.svg new file mode 100644 index 0000000..73da21d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/moac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mod.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mod.svg new file mode 100644 index 0000000..40e500f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mod.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mona.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mona.svg new file mode 100644 index 0000000..1a2daea --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mona.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/msr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/msr.svg new file mode 100644 index 0000000..bdb8934 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/msr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mth.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mth.svg new file mode 100644 index 0000000..e47ab35 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mtl.svg new file mode 100644 index 0000000..e7bbf1b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/music.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/music.svg new file mode 100644 index 0000000..e41edd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/mzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/mzc.svg new file mode 100644 index 0000000..ca079dd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/mzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nano.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nano.svg new file mode 100644 index 0000000..38f28d1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nas.svg new file mode 100644 index 0000000..999a373 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nav.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nav.svg new file mode 100644 index 0000000..af3ed14 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nav.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ncash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ncash.svg new file mode 100644 index 0000000..785f11d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ncash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ndz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ndz.svg new file mode 100644 index 0000000..55601ef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ndz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nebl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nebl.svg new file mode 100644 index 0000000..64404f4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nebl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/neo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/neo.svg new file mode 100644 index 0000000..c53a1fc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/neo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/neos.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/neos.svg new file mode 100644 index 0000000..b228887 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/neos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/neu.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/neu.svg new file mode 100644 index 0000000..41ef24f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/neu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nexo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nexo.svg new file mode 100644 index 0000000..6b786ce --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nexo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ngc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ngc.svg new file mode 100644 index 0000000..b84235b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ngc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nio.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nio.svg new file mode 100644 index 0000000..90674f7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nkn.svg new file mode 100644 index 0000000..36b955d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nlc2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nlc2.svg new file mode 100644 index 0000000..0a6896d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nlc2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nlg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nlg.svg new file mode 100644 index 0000000..f74390f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nlg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nmc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nmc.svg new file mode 100644 index 0000000..998ff0f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nmc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nmr.svg new file mode 100644 index 0000000..5ca1f94 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/npxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/npxs.svg new file mode 100644 index 0000000..37c6ed5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/npxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ntbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ntbc.svg new file mode 100644 index 0000000..d3a79c4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ntbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nuls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nuls.svg new file mode 100644 index 0000000..be24990 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nuls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nxs.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nxs.svg new file mode 100644 index 0000000..f71d7d9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/nxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/nxt.svg new file mode 100644 index 0000000..23d6c49 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/nxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/oax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/oax.svg new file mode 100644 index 0000000..568156d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/oax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ok.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ok.svg new file mode 100644 index 0000000..eb6a165 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/omg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/omg.svg new file mode 100644 index 0000000..1c4b151 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/omg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/omni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/omni.svg new file mode 100644 index 0000000..b02425b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/omni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/one.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/one.svg new file mode 100644 index 0000000..1bbf460 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ong.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ong.svg new file mode 100644 index 0000000..c88aaf1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ont.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ont.svg new file mode 100644 index 0000000..c60afff --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ont.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/oot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/oot.svg new file mode 100644 index 0000000..70d5caa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/oot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ost.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ost.svg new file mode 100644 index 0000000..2198d4b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ox.svg new file mode 100644 index 0000000..b02f589 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/oxt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/oxt.svg new file mode 100644 index 0000000..e029082 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/oxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/oxy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/oxy.svg new file mode 100644 index 0000000..02c90b2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/oxy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/part.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/part.svg new file mode 100644 index 0000000..a12032d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/part.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pasc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pasc.svg new file mode 100644 index 0000000..2b55ac0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pasc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pasl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pasl.svg new file mode 100644 index 0000000..776ef5d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pasl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pax.svg new file mode 100644 index 0000000..206d8bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/paxg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/paxg.svg new file mode 100644 index 0000000..206d8bf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/paxg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pay.svg new file mode 100644 index 0000000..2a5ae90 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/payx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/payx.svg new file mode 100644 index 0000000..1422300 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/payx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pink.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pink.svg new file mode 100644 index 0000000..930978a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pirl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pirl.svg new file mode 100644 index 0000000..8181457 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pirl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pivx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pivx.svg new file mode 100644 index 0000000..b0cbb66 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pivx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/plr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/plr.svg new file mode 100644 index 0000000..b19e3eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/plr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/poa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/poa.svg new file mode 100644 index 0000000..a6c29db --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/poa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/poe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/poe.svg new file mode 100644 index 0000000..27fa156 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/poe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/polis.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/polis.svg new file mode 100644 index 0000000..d953849 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/polis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/poly.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/poly.svg new file mode 100644 index 0000000..582a349 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/poly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pot.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pot.svg new file mode 100644 index 0000000..b5b4cfe --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/powr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/powr.svg new file mode 100644 index 0000000..5ef0224 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/powr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ppc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ppc.svg new file mode 100644 index 0000000..4825e59 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ppc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ppp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ppp.svg new file mode 100644 index 0000000..d37b991 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ppp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ppt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ppt.svg new file mode 100644 index 0000000..c5aa8a2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ppt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pre.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pre.svg new file mode 100644 index 0000000..3d8b5b8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pre.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/prl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/prl.svg new file mode 100644 index 0000000..634e781 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/prl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pungo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pungo.svg new file mode 100644 index 0000000..a2bdbd3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pungo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/pura.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/pura.svg new file mode 100644 index 0000000..52f0314 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/pura.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/qash.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/qash.svg new file mode 100644 index 0000000..60136ac --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/qash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/qiwi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/qiwi.svg new file mode 100644 index 0000000..4f30ed3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/qiwi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/qlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/qlc.svg new file mode 100644 index 0000000..5b0bab8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/qlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/qnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/qnt.svg new file mode 100644 index 0000000..753011b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/qnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/qrl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/qrl.svg new file mode 100644 index 0000000..074383b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/qrl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/qsp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/qsp.svg new file mode 100644 index 0000000..23d9447 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/qsp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/qtum.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/qtum.svg new file mode 100644 index 0000000..ca916e5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/qtum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/r.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/r.svg new file mode 100644 index 0000000..71ea310 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rads.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rads.svg new file mode 100644 index 0000000..64e29d1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rap.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rap.svg new file mode 100644 index 0000000..1be0f18 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ray.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ray.svg new file mode 100644 index 0000000..a1283bd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rcn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rcn.svg new file mode 100644 index 0000000..6550b5e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rcn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rdd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rdd.svg new file mode 100644 index 0000000..f9ee8ef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rdn.svg new file mode 100644 index 0000000..c86a87f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ren.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ren.svg new file mode 100644 index 0000000..c030e9f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rep.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rep.svg new file mode 100644 index 0000000..cea3c26 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/repv2.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/repv2.svg new file mode 100644 index 0000000..cf42875 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/repv2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/req.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/req.svg new file mode 100644 index 0000000..1cfdbdd --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/req.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rhoc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rhoc.svg new file mode 100644 index 0000000..d02c538 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rhoc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ric.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ric.svg new file mode 100644 index 0000000..bf0ba53 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rise.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rise.svg new file mode 100644 index 0000000..1b2726b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rlc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rlc.svg new file mode 100644 index 0000000..3a89305 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rpx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rpx.svg new file mode 100644 index 0000000..a1957e1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rpx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rub.svg new file mode 100644 index 0000000..a7e1816 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/rvn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/rvn.svg new file mode 100644 index 0000000..398aae7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/rvn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ryo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ryo.svg new file mode 100644 index 0000000..73dab42 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ryo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/safe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/safe.svg new file mode 100644 index 0000000..7c237d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/safe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/safemoon.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/safemoon.svg new file mode 100644 index 0000000..db60339 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/safemoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sai.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sai.svg new file mode 100644 index 0000000..03d9b9d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/salt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/salt.svg new file mode 100644 index 0000000..eff54b6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/salt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/san.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/san.svg new file mode 100644 index 0000000..94ddc31 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/san.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sand.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sand.svg new file mode 100644 index 0000000..77120ef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sbd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sbd.svg new file mode 100644 index 0000000..83d73ab --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sbd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sberbank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sberbank.svg new file mode 100644 index 0000000..1665450 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sberbank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sc.svg new file mode 100644 index 0000000..83cdde5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ser.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ser.svg new file mode 100644 index 0000000..38fa0e2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/shift.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/shift.svg new file mode 100644 index 0000000..c73d1f2 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/shift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sib.svg new file mode 100644 index 0000000..42a297a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sin.svg new file mode 100644 index 0000000..f93411a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/skl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/skl.svg new file mode 100644 index 0000000..5bf5f90 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/skl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sky.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sky.svg new file mode 100644 index 0000000..7e645f1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/slr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/slr.svg new file mode 100644 index 0000000..0280c92 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/slr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sls.svg new file mode 100644 index 0000000..1fd6932 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/smart.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/smart.svg new file mode 100644 index 0000000..054b1f8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/smart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sngls.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sngls.svg new file mode 100644 index 0000000..0fe3f2e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sngls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/snm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/snm.svg new file mode 100644 index 0000000..f18a99a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/snm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/snt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/snt.svg new file mode 100644 index 0000000..5fbe39a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/snt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/snx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/snx.svg new file mode 100644 index 0000000..1db2ef1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/snx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/soc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/soc.svg new file mode 100644 index 0000000..8eebd9a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/soc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sol.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sol.svg new file mode 100644 index 0000000..60d9fdf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/spacehbit.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/spacehbit.svg new file mode 100644 index 0000000..7315f3d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/spacehbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/spank.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/spank.svg new file mode 100644 index 0000000..066be76 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/spank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sphtx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sphtx.svg new file mode 100644 index 0000000..2e407a8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sphtx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/srn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/srn.svg new file mode 100644 index 0000000..bfc1cd0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/srn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/stak.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/stak.svg new file mode 100644 index 0000000..925d2d4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/stak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/start.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/start.svg new file mode 100644 index 0000000..0a7a222 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/steem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/steem.svg new file mode 100644 index 0000000..0db3faa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/steem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/storj.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/storj.svg new file mode 100644 index 0000000..5fd38f9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/storj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/storm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/storm.svg new file mode 100644 index 0000000..3fdfeef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/stox.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/stox.svg new file mode 100644 index 0000000..0b4fa64 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/stox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/stq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/stq.svg new file mode 100644 index 0000000..7d9fc05 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/stq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/strat.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/strat.svg new file mode 100644 index 0000000..119305c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/strat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/stx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/stx.svg new file mode 100644 index 0000000..af93d44 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/stx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sub.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sub.svg new file mode 100644 index 0000000..ceb0703 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sumo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sumo.svg new file mode 100644 index 0000000..105fda4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sumo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sushi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sushi.svg new file mode 100644 index 0000000..f5161e0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sushi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/sys.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/sys.svg new file mode 100644 index 0000000..5b78ee1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/sys.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/taas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/taas.svg new file mode 100644 index 0000000..404f5db --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/taas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tau.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tau.svg new file mode 100644 index 0000000..3d328ee --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tau.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tbx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tbx.svg new file mode 100644 index 0000000..6eb264d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tbx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tel.svg new file mode 100644 index 0000000..f9f1482 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ten.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ten.svg new file mode 100644 index 0000000..efb8f63 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tern.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tern.svg new file mode 100644 index 0000000..2a0a36b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tgch.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tgch.svg new file mode 100644 index 0000000..07da79d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tgch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/theta.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/theta.svg new file mode 100644 index 0000000..5df403c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/theta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tix.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tix.svg new file mode 100644 index 0000000..f8fe582 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tkn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tkn.svg new file mode 100644 index 0000000..acae496 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tkn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tks.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tks.svg new file mode 100644 index 0000000..9cca1c7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tnb.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tnb.svg new file mode 100644 index 0000000..c8d2a70 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tnc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tnc.svg new file mode 100644 index 0000000..a5546a3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tnc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tnt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tnt.svg new file mode 100644 index 0000000..ddf17e0 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tnt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tomo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tomo.svg new file mode 100644 index 0000000..f76abd1 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tomo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tpay.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tpay.svg new file mode 100644 index 0000000..818626d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tpay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/trig.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/trig.svg new file mode 100644 index 0000000..bb6f55c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/trig.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/trtl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/trtl.svg new file mode 100644 index 0000000..b9b4a10 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/trtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/trx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/trx.svg new file mode 100644 index 0000000..52b917d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/trx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tusd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tusd.svg new file mode 100644 index 0000000..c28580d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tusd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/tzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/tzc.svg new file mode 100644 index 0000000..be650cf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/tzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/ubq.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/ubq.svg new file mode 100644 index 0000000..df9666c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/ubq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/uma.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/uma.svg new file mode 100644 index 0000000..894a9f5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/uma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/uni.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/uni.svg new file mode 100644 index 0000000..8811b2f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/uni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/unity.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/unity.svg new file mode 100644 index 0000000..aff437b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/unity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/usd.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/usd.svg new file mode 100644 index 0000000..03b38d8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/usdc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/usdc.svg new file mode 100644 index 0000000..580c470 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/usdc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/usdt.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/usdt.svg new file mode 100644 index 0000000..91c54b9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/usdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/utk.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/utk.svg new file mode 100644 index 0000000..0f69698 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/utk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/veri.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/veri.svg new file mode 100644 index 0000000..5b66dab --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/veri.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vet.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vet.svg new file mode 100644 index 0000000..50ae501 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/via.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/via.svg new file mode 100644 index 0000000..5488d2f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/via.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vib.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vib.svg new file mode 100644 index 0000000..cd52c81 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vibe.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vibe.svg new file mode 100644 index 0000000..43e1aec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vibe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vivo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vivo.svg new file mode 100644 index 0000000..de1658a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vivo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vrc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vrc.svg new file mode 100644 index 0000000..4303122 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vrc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vrsc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vrsc.svg new file mode 100644 index 0000000..f6da840 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vrsc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vtc.svg new file mode 100644 index 0000000..611a80b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/vtho.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/vtho.svg new file mode 100644 index 0000000..7751238 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/vtho.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wabi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wabi.svg new file mode 100644 index 0000000..f10e656 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wabi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wan.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wan.svg new file mode 100644 index 0000000..58cdfef --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/waves.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/waves.svg new file mode 100644 index 0000000..c3985cc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/waves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wax.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wax.svg new file mode 100644 index 0000000..01bf12e --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wbtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wbtc.svg new file mode 100644 index 0000000..c6af424 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wbtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wgr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wgr.svg new file mode 100644 index 0000000..5ea5a2d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wgr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wicc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wicc.svg new file mode 100644 index 0000000..5ac9904 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wicc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wings.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wings.svg new file mode 100644 index 0000000..3e553eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wpr.svg new file mode 100644 index 0000000..7b8846c --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/wtc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/wtc.svg new file mode 100644 index 0000000..5ddc503 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/wtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/x.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/x.svg new file mode 100644 index 0000000..dfa4077 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xas.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xas.svg new file mode 100644 index 0000000..710b422 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xbc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xbc.svg new file mode 100644 index 0000000..732cee6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xbc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xbp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xbp.svg new file mode 100644 index 0000000..bbeef2f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xby.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xby.svg new file mode 100644 index 0000000..d818c01 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xcp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xcp.svg new file mode 100644 index 0000000..aa5b8d9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xdn.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xdn.svg new file mode 100644 index 0000000..e2967a4 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xem.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xem.svg new file mode 100644 index 0000000..7fe506b --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xin.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xin.svg new file mode 100644 index 0000000..f9638a7 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xlm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xlm.svg new file mode 100644 index 0000000..d40221a --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xlm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xmcc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmcc.svg new file mode 100644 index 0000000..a234bfa --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmcc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xmg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmg.svg new file mode 100644 index 0000000..1e69696 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xmo.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmo.svg new file mode 100644 index 0000000..2bfaadb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xmr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmr.svg new file mode 100644 index 0000000..635a618 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xmy.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmy.svg new file mode 100644 index 0000000..0f65ce8 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xmy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xp.svg new file mode 100644 index 0000000..d277d96 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xpa.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xpa.svg new file mode 100644 index 0000000..7d2f768 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xpa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xpm.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xpm.svg new file mode 100644 index 0000000..678f2af --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xpm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xpr.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xpr.svg new file mode 100644 index 0000000..c07b7eb --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xpr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xrp.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xrp.svg new file mode 100644 index 0000000..f77c423 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xsg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xsg.svg new file mode 100644 index 0000000..5b92b08 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xsg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xtz.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xtz.svg new file mode 100644 index 0000000..b8cbb8d --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xtz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xuc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xuc.svg new file mode 100644 index 0000000..278d292 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xuc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xvc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xvc.svg new file mode 100644 index 0000000..1b8eda9 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xvc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xvg.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xvg.svg new file mode 100644 index 0000000..1da6492 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xvg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/xzc.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/xzc.svg new file mode 100644 index 0000000..2e4f4c3 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/xzc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/yfi.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/yfi.svg new file mode 100644 index 0000000..bf136f6 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/yfi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/yoyow.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/yoyow.svg new file mode 100644 index 0000000..985ddbc --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/yoyow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zcl.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zcl.svg new file mode 100644 index 0000000..3aca6ab --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zcl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zec.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zec.svg new file mode 100644 index 0000000..cf96fcf --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zel.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zel.svg new file mode 100644 index 0000000..e03ed7f --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zen.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zen.svg new file mode 100644 index 0000000..fb39911 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zest.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zest.svg new file mode 100644 index 0000000..8ec1cec --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zil.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zil.svg new file mode 100644 index 0000000..005e1b5 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zilla.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zilla.svg new file mode 100644 index 0000000..9403a78 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zilla.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/public/cryptocurrency-icons/svg/white/zrx.svg b/packages/nextjs/public/cryptocurrency-icons/svg/white/zrx.svg new file mode 100644 index 0000000..8e86949 --- /dev/null +++ b/packages/nextjs/public/cryptocurrency-icons/svg/white/zrx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/nextjs/styles/globals.css b/packages/nextjs/styles/globals.css index 3fb55ae..77543bf 100644 --- a/packages/nextjs/styles/globals.css +++ b/packages/nextjs/styles/globals.css @@ -7,6 +7,10 @@ background: oklch(var(--b2)); } +background { + color: #e2e8f0; +} + body { min-height: 100vh; } diff --git a/yarn.lock b/yarn.lock index 9f88830..9b8a9d6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1616,6 +1616,7 @@ __metadata: react-copy-to-clipboard: ~5.1.0 react-dom: ~18.2.0 react-hot-toast: ~2.4.0 + react-jazzicon: ^1.0.4 tailwindcss: ~3.3.3 type-fest: ~4.6.0 typescript: ~5.1.6 @@ -7469,6 +7470,13 @@ __metadata: languageName: node linkType: hard +"mersenne-twister@npm:^1.1.0": + version: 1.1.0 + resolution: "mersenne-twister@npm:1.1.0" + checksum: 7de1940ded117f2aad9320ae4d21d647b0ecf0667abbadcfe6a2835c669feb674ef46cb7a72da7af69a56d8b19e50e95e2fb7ef6d780efab7a6acd4d87f4cb2d + languageName: node + linkType: hard + "micro-ftch@npm:^0.3.1": version: 0.3.1 resolution: "micro-ftch@npm:0.3.1" @@ -8891,6 +8899,18 @@ __metadata: languageName: node linkType: hard +"react-jazzicon@npm:^1.0.4": + version: 1.0.4 + resolution: "react-jazzicon@npm:1.0.4" + dependencies: + mersenne-twister: ^1.1.0 + peerDependencies: + react: ">=17.0.0" + react-dom: ">=17.0.0" + checksum: e975b143b001f6e06bf6269498749e174550a86dfd85c255c64750f2adfa0b94d5ac8d79e04eb8b136f94067ee30ce47dae06312f9f1d37219319dc2c658d671 + languageName: node + linkType: hard + "react-remove-scroll-bar@npm:^2.3.4": version: 2.3.6 resolution: "react-remove-scroll-bar@npm:2.3.6"