mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 20:57:56 +08:00
19 lines
625 B
JavaScript
19 lines
625 B
JavaScript
import React from "react";
|
|
import * as globals from "../../globals";
|
|
|
|
const Logo = (props) => {
|
|
const { size } = props;
|
|
return (
|
|
<svg width={size} height={size} viewBox="0 0 48 48" fill="none">
|
|
<rect width="48" height="48" fill="white" />
|
|
<rect width="48" height="48" fill={globals.logoColor} />
|
|
<rect x="19" y="19" width="22" height="22" fill="white" />
|
|
<rect x="24" y="24" width="12" height="12" fill={globals.logoColor} />
|
|
<rect x="7" y="19" width="7" height="22" fill="white" />
|
|
<rect x="19" y="7" width="22" height="7" fill="white" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default Logo;
|