mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-26 18:48:11 +08:00
* menubar 1 * zoom switching * centering, pixel perfect canvas * remove dead args and code * clipping * remove log * if * connect props * lint * undo * logo left, componetize * graph back to full height * shadow to top * do not prematurely call event handlers during render * change test to deal with async histogram creation * left section padding * lint * adjust graph to account for top bar, * lasso tests * refine histogram tests * remove testing (onlys)
19 lines
623 B
JavaScript
19 lines
623 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;
|