zepio/app/components/zcash-logo.js

19 lines
461 B
JavaScript
Raw Normal View History

2018-12-11 15:41:55 -08:00
// @flow
import React from 'react';
2018-12-15 13:28:36 -08:00
export const ZcashLogo = () => (
2019-02-04 20:41:45 -08:00
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='-75 -10 175 175'
>
2018-12-12 11:23:31 -08:00
<defs>
<style>{'.a{ fill:#040508; }'}</style>
</defs>
<path
className='a'
d='M541.425,662.318v4.555h-7.678v5.678H545.5l-11.751,16v4.261h7.678v4.665h4.563v-4.665h7.577v-5.666H541.788l11.777-16v-4.273h-7.577v-4.555Z'
transform='translate(-533.747 -662.318)'
/>
2018-12-11 15:41:55 -08:00
</svg>
);