import React, { forwardRef } from 'react' import * as icons from './components' import { IconProps } from './Icon' import { LogoNames } from './types' export interface CryptoconLogoProps extends Omit { icon: LogoNames } export const CryptoconLogo = forwardRef( (props, ref) => { const { icon = 'BinanceBadge', ...rest } = props const Icon = icons[icon] return } )