import clsx from 'clsx' import { ComponentProps, forwardRef } from 'react' import { getImageUrlForChainId } from '@dao-dao/utils' export type ChainLogoProps = ComponentProps<'div'> & { chainId: string size?: number } export const ChainLogo = forwardRef( function ChainLogo({ chainId, className, style, size = 20, ...props }, ref) { return (
) } )