databag/net/web/src/logo/Logo.jsx

15 lines
386 B
React
Raw Normal View History

2022-08-06 07:24:13 +00:00
import avatar from 'images/avatar.png';
export function Logo({ url, width, height, radius }) {
return (
<div style={{ borderRadius: radius, overflow: 'hidden' }}>
{ url && (
<img src={url} alt="logo" width={width} height={height} />
)}
{ !url && (
<img src={avatar} alt="default logo" width={width} height={height} />
)}
</div>
);
}