cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
23 lines (20 loc) • 514 B
JSX
import React, { Component } from "react";
import Radium from "radium";
const EntityLogoStyle = {
logo: {
width: '42px',
height: '42px',
borderRadius: '50px',
boxSizing: 'border-box',
border: '1px solid #ccc'
}
};
class EntityLogo extends Component {
render() {
const { url } = this.props;
return (
<img className="cluedIn_enitty_logo" style={EntityLogoStyle.logo} src={url}/>
);
}
}
export default Radium( EntityLogo );