mirror of
https://github.com/balzack/databag.git
synced 2025-02-19 06:29:23 +00:00
15 lines
386 B
React
15 lines
386 B
React
|
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>
|
||
|
);
|
||
|
}
|