|
|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
export const Logo = ({ width = 40, height = 40 }) => {
|
|
|
|
|
export const Logo = ({ width = 40, height = 40, fill }) => {
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
@ -8,12 +8,12 @@ export const Logo = ({ width = 40, height = 40 }) => {
|
|
|
|
|
>
|
|
|
|
|
<g>
|
|
|
|
|
<polygon
|
|
|
|
|
style={{ fill: "#3B555E" }}
|
|
|
|
|
style={{ fill: fill ?? "#3B555E" }}
|
|
|
|
|
points="19.6,24 21.4,24 22.5,23.9 23,23.8 23.5,23.4 23.8,22.9 24,22.3 24,20.4 24,1.9 23.9,1.4 23.6,0.8
|
|
|
|
|
23.3,0.4 22.9,0.1 22.3,0 14.2,0 8.9,0 11.2,4.6 19.5,4.5 19.6,4.5 "
|
|
|
|
|
/>
|
|
|
|
|
<polygon
|
|
|
|
|
style={{ fill: "#E63941" }}
|
|
|
|
|
style={{ fill: fill ?? "#E63941" }}
|
|
|
|
|
points="13.6,6.4 17.7,6.4 16.2,9.4 14.1,14.2 12.3,18.4 11.7,18.4 9.8,14.5 6.8,8.8 4.5,4.5 4.7,23.9 1.7,24
|
|
|
|
|
1,23.8 0.5,23.2 0.2,22.7 0,22.1 0,1.8 0.1,1.3 0.4,0.8 0.8,0.4 1.1,0.2 1.4,0.1 2,0.1 7,0.1 11.9,10.6 "
|
|
|
|
|
/>
|
|
|
|
|
|