Files
weave-scope/client/app/scripts/components/logo.js
2015-05-19 10:02:02 +00:00

24 lines
984 B
JavaScript

/** @jsx React.DOM */
var React = require('react');
var Logo = React.createClass({
render: function() {
return (
<div className="logo">
<svg width="100%" height="100%" viewBox="0 0 145.85 148">
<path d="M145.142,63.868l-62.7,56.006V98.518l58.14-51.933c-2.77-6.938-6.551-13.359-11.175-19.076L82.442,69.46
V47.132L60.771,66.49v22.327l-18.668,16.676V83.165l75.418-67.367c-5.989-4.706-12.71-8.519-19.981-11.211L82.442,18.074V0.767
C78.981,0.27,75.448,0,71.85,0c-3.766,0-7.465,0.286-11.079,0.828v36.604L42.103,54.107V6.242
c-8.086,3.555-15.409,8.513-21.672,14.568v52.656L0,91.715c1.86,7.57,4.88,14.683,8.87,21.135l11.561-10.326v24.667
c4.885,4.724,10.409,8.787,16.444,12.03l23.896-21.345v29.296C64.385,147.715,68.084,148,71.85,148c4.41,0,8.722-0.407,12.921-1.147
l58.033-51.838c1.971-6.664,3.046-13.712,3.046-21.015C145.85,70.561,145.596,67.183,145.142,63.868z"/>
</svg>
</div>
);
}
});
module.exports = Logo;