UNPKG

@rogdevil/crypto-icons

Version:

A simple React component that can display 600 crypto icons

8 lines (7 loc) 289 B
import React from "react"; import { DynamicSVGImportOptions } from "./types/interfaces"; export default function useDynamicSVGImport(name: string, options?: DynamicSVGImportOptions): { error: Error; loading: boolean; SvgIcon: React.FC<React.SVGProps<SVGSVGElement>>; };