4
0
forked from crowetic/commerce

20 lines
495 B
TypeScript
Raw Normal View History

2020-09-30 11:44:38 -05:00
const Logo = () => (
<svg
2020-10-03 11:00:08 -03:00
width="32"
height="32"
viewBox="0 0 32 32"
2020-09-30 11:44:38 -05:00
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
2020-10-03 11:00:08 -03:00
<rect width="32" height="32" rx="16" fill="black" />
2020-09-30 11:44:38 -05:00
<path
2020-10-03 11:00:08 -03:00
fillRule="evenodd"
clipRule="evenodd"
d="M17.6482 10.1305L15.8785 7.02583L7.02979 22.5499H10.5278L17.6482 10.1305ZM19.8798 14.0457L18.11 17.1983L19.394 19.4511H16.8453L15.1056 22.5499H24.7272L19.8798 14.0457Z"
fill="white"
2020-09-30 11:44:38 -05:00
/>
</svg>
2020-10-01 20:40:40 -05:00
)
2020-09-30 11:44:38 -05:00
2020-10-01 20:40:40 -05:00
export default Logo