import React from 'react'; import { ChainIconStyled } from './ChainIcon.styled'; import { Icon, IconProps } from './Icon'; export type ChainIconProps = Omit & { chainId: number; 'data-testid'?: string; size?: number; }; export const ChainIcon: React.FunctionComponent = ({ size, ...props }) => { if (!size) { return ; } return ; };