| 5 | } |
| 6 | |
| 7 | interface EntityLogoProps { |
| 8 | entity: string; |
| 9 | className?: string; |
| 10 | } |
| 11 | |
| 12 | const EntityLogo: FC<EntityLogoProps> = ({ entity, className }) => { |
| 13 | const logoURL = getEntityLogoURL(entity); |
nothing calls this directly
no outgoing calls
no test coverage detected