UNPKG

cluedin-widget

Version:

This is the project for creating and managing widgets in CluedIn.

10 lines (9 loc) 243 B
import React, { Component } from 'react'; export default class EntityLogo extends Component { render() { const { url } = this.props; return ( <img className="cluedIn_entity_logo" src={url}/> ); } };