mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 20:57:56 +08:00
17 lines
268 B
JavaScript
17 lines
268 B
JavaScript
import React from "react";
|
|
import icon from "../../images/icon.png";
|
|
|
|
function Logo(props) {
|
|
const { size } = props;
|
|
return (
|
|
<img
|
|
src={icon}
|
|
height={size}
|
|
width={size}
|
|
alt="CELLxGENE Annotate Logo"
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default Logo;
|