Files
cellxgene/client/src/components/framework/logo.js
2024-09-12 13:36:26 -07:00

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;