Skip to content

Commit 6668d13

Browse files
author
Amber Febbraro
authored
Merge pull request #4054 from sparkdesignsystem/publish-aug-12
Publish Aug 12 - isElementVisible and Footer Logo updates
2 parents 1304a40 + 30c83e2 commit 6668d13

File tree

12 files changed

+134
-117
lines changed

12 files changed

+134
-117
lines changed

angular/projects/spark-angular/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular/projects/spark-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sparkdesignsystem/spark-angular",
33
"description": "A collection of Spark Design System components in Angular 6+",
4-
"version": "14.0.0",
4+
"version": "14.0.1",
55
"author": "Rocket Mortgage",
66
"license": "MIT",
77
"scripts": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const environment = {
2-
version: '14.0.0',
2+
version: '14.0.1',
33
};

angular/projects/spark-angular/src/lib/components/sprk-footer/sprk-footer.stories.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,14 @@ export const defaultStory = () => ({
146146
'https://spark-assets.netlify.app/rocket-homes-white.svg',
147147
imgAlt: 'Rocket Homes Logo',
148148
analyticsString: 'link-3'
149+
},
150+
{
151+
text: 'Find and buy the perfect car or truck from thousands of vehicles, all in one marketplace',
152+
href: 'https://rocketauto.com',
153+
imgSrc:
154+
'https://spark-assets.netlify.app/rocket_auto.svg',
155+
imgAlt: 'Rocket Auto Logo',
156+
analyticsString: 'link-4'
149157
}
150158
]"
151159

angular/projects/spark-angular/src/lib/utilities/isElementVisible/isElementVisible.spec.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class Test1Component {
2323
describe('isElementVisible', () => {
2424
let component: Test1Component;
2525
let componentFixture: ComponentFixture<Test1Component>;
26+
let windowSpy;
2627

2728
beforeEach(async(() => {
2829
TestBed.configureTestingModule({
@@ -31,11 +32,16 @@ describe('isElementVisible', () => {
3132
}));
3233

3334
beforeEach(() => {
35+
windowSpy = jest.spyOn(window, 'window', 'get');
3436
componentFixture = TestBed.createComponent(Test1Component);
3537
component = componentFixture.componentInstance;
3638
componentFixture.detectChanges();
3739
});
3840

41+
afterEach(() => {
42+
windowSpy.mockRestore();
43+
});
44+
3945
it('should return false for element with display: none', () => {
4046
expect(isElementVisible(component.elDisplayNone)).toEqual(false);
4147
});
@@ -51,4 +57,10 @@ describe('isElementVisible', () => {
5157
it('should return true for element with visibility: visible', () => {
5258
expect(isElementVisible(component.elVisibilityVisible)).toEqual(true);
5359
});
60+
61+
it('should not use window scope if window is undefined', () => {
62+
windowSpy.mockImplementation(() => undefined);
63+
expect(window).toBeUndefined();
64+
expect(isElementVisible(component.elDisplayNone)).toEqual(undefined);
65+
});
5466
});

angular/projects/spark-angular/src/lib/utilities/isElementVisible/isElementVisible.ts

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ export const isElementVisible = (elRef: ElementRef): boolean => {
1010
if (!elRef) {
1111
return;
1212
}
13-
const elementDisplayValue = window.getComputedStyle(elRef.nativeElement)
14-
.display;
15-
const elementVisibilityValue = window.getComputedStyle(elRef.nativeElement)
16-
.visibility;
17-
const elementIsVisible =
18-
elementDisplayValue === 'none' || elementVisibilityValue === 'hidden'
19-
? false
20-
: true;
21-
return elementIsVisible;
13+
if (typeof window !== 'undefined') {
14+
const elementDisplayValue = window.getComputedStyle(elRef.nativeElement)
15+
.display;
16+
const elementVisibilityValue = window.getComputedStyle(elRef.nativeElement)
17+
.visibility;
18+
const elementIsVisible =
19+
elementDisplayValue === 'none' || elementVisibilityValue === 'hidden'
20+
? false
21+
: true;
22+
return elementIsVisible;
23+
}
2224
};

html/components/footer.stories.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,24 @@ export const defaultStory = () => {
111111
search the latest home listings
112112
</p>
113113
</div>
114+
115+
<div class="sprk-o-Stack__item sprk-o-Stack sprk-o-Stack--medium">
116+
<div class="sprk-o-Stack__item">
117+
<a class="sprk-b-Link sprk-b-Link--plain" href="https://rocketauto.com">
118+
<img src="https://spark-assets.netlify.app/rocket_auto.svg" alt="Rocket Auto Logo">
119+
</a>
120+
</div>
121+
122+
<p
123+
class="
124+
sprk-o-Stack__item
125+
sprk-b-TypeBodyFour
126+
sprk-c-Footer__text
127+
">
128+
Find and buy the perfect car or truck from
129+
thousands of vehicles, all in one marketplace
130+
</p>
131+
</div>
114132
</div>
115133
116134
<div

react/src/components/footer/SprkFooter.stories.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,15 @@ export const defaultStory = () => (
6060
element: 'a',
6161
mediaHref: '#nogo',
6262
},
63+
{
64+
mediaType: 'image',
65+
src: 'https://spark-assets.netlify.app/rocket_auto.svg',
66+
altText: 'Rocket Auto Logo',
67+
description:
68+
'Find and buy the perfect car or truck from thousands of vehicles, all in one marketplace',
69+
element: 'a',
70+
mediaHref: 'https://rocketauto.com',
71+
},
6372
],
6473
}}
6574
linkColumns={[

src/components/layouts/Layout.js

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -76,21 +76,6 @@ const Layout = ({ children, initialContext, hasSideBar, location }) => {
7676
Skip to Main Content
7777
</SprkLink>
7878
</div>
79-
<aside className="sprk-u-BackgroundColor--black sprk-u-AbsoluteCenter sprk-u-pam">
80-
<p className="sprk-u-Color--white">
81-
Designs launching
82-
<span className="sprk-u-FontWeight--bold sprk-u-mas">before</span>
83-
July 31, 2021, please reference
84-
<a
85-
href="https://v13--spark-design-system.netlify.app/"
86-
className="docs-c-Banner--link sprk-u-mls"
87-
>
88-
this previous version of Spark
89-
</a>
90-
. Questions? Please contact your Product Owner or Experience
91-
Director.
92-
</p>
93-
</aside>
9479
<Header
9580
context={context}
9681
setContext={setContext}

src/components/site-logo.js

Lines changed: 67 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -5,99 +5,76 @@ const SiteLogo = () => (
55
<svg
66
className="sprk-c-Masthead__logo"
77
xmlns="http://www.w3.org/2000/svg"
8+
width="365.4"
9+
height="101.35"
810
viewBox="0 0 365.4 101.35"
911
>
1012
<title>Spark Design System</title>
11-
<defs>
12-
<clipPath id="a">
13-
<path
14-
d="M109.39,59.62,90.09,93.3a16.34,16.34,0,0,1-14.52,8l-38.87.09a22.54,22.54,0,0,1-2.35-.12c-.45,0-.89-.12-1.33-.21a2.47,2.47,0,0,1-.56-4.66l12.1-5.54,1.15-.47v0L79.8,74.77l.12-.06,0-.06A18.4,18.4,0,0,0,90.63,56.27l0-.07A18.23,18.23,0,0,0,75.11,39.79a18.68,18.68,0,0,0-10.46,1.39L43.74,50.52,43,50.8l-.11.05a8,8,0,0,1-10.48-4.26,8.11,8.11,0,0,1,4.26-10.42L57.37,27,82.6,15.83l7.63-3.38a2.19,2.19,0,0,1,.88-.21,2.49,2.49,0,0,1,2.25,1.22l16.87,29C113.3,48.27,112.67,54.26,109.39,59.62ZM75.32,65.13a8.12,8.12,0,0,0,4.27-10.38A8,8,0,0,0,69.1,50.51l-.1,0-.25.11L47.41,60.18a18.59,18.59,0,0,1-10.14,1.43h0a18.35,18.35,0,0,1-5.05-34.95l.28-.12,0-.08L66.76,10.81h0l.7-.31L79.56,5A2.48,2.48,0,0,0,80.8,1.69,2.38,2.38,0,0,0,79.07.28,25.4,25.4,0,0,0,75.8,0L36.66.08C29.11.08,24.51,3.69,21.43,9L2.06,42.82A16.63,16.63,0,0,0,2.49,60L19,88.24a2.44,2.44,0,0,0,2.36.84h0a3.13,3.13,0,0,0,.52-.16l7.63-3.39L55.12,74.14Z"
15-
style={{ fill: 'none' }}
16-
/>
17-
</clipPath>
18-
</defs>
19-
<path d="M126.27,53.64,132,44.39a20.87,20.87,0,0,0,13.34,5c4.37,0,6.56-1.75,6.56-4.89s-2.55-4.44-9.77-6.78c-7.58-2.48-13.85-6.19-13.85-15,0-10,7.51-15.89,18.37-15.89a27.61,27.61,0,0,1,15.75,4.73L157,20.89a18.14,18.14,0,0,0-10.35-3.57c-3.94,0-6.34,1.68-6.34,4.81,0,3.28,3.21,4.16,9.47,6.27C157.62,31,164,34.23,164,43.71,164,54,156.3,60,144.64,60,136.77,60.06,130.06,57,126.27,53.64Z" />
20-
<path d="M211.49,25.43c0,9.26-6.64,18.59-21.58,18.59h-5.25V59.33H172.78V7.58h17.28C204.93,7.58,211.49,16,211.49,25.43Zm-12.4.3c0-5.84-4.22-8.53-9.84-8.53h-4.59V34.4h4.59c5.62,0,9.87-2.84,9.87-8.67Z" />
21-
<path d="M244.58,49.85h-19.9l-3.2,9.48h-12L228.4,7.58h13l19,51.75H247.79Zm-3.21-9.33-6.77-20-6.78,20Z" />
22-
<path d="M311.35,59.33h-14l-15.3-19.24-3.35-4.45V59.33H266.82V7.58H289.7c12,0,18.45,6.85,18.45,15.3,0,7.36-4.52,14.14-13.49,16.4ZM287.44,31c4.52,0,8.31-2.4,8.31-7s-3.64-6.78-8.16-6.78H278.7V31Z" />
23-
<path d="M350,59.33,328.63,34.4V59.33H316.75V7.58h11.88V31.19L349.12,7.58h14.95L341.61,32.29l23.91,27Z" />
24-
<path d="M145.46,83.08c0,6.53-4.86,11.18-12.18,11.18h-6.47v-22h6.47C140.6,72.27,145.46,76.67,145.46,83.08Zm-2.39,0c0-5.24-3.87-8.74-9.82-8.74h-4.13V92.15h4.09c6,0,9.91-3.71,9.91-9Z" />
25-
<path d="M150.73,72.27h14v2.1H153.05v7.81h11v2.08h-11v7.89H165v2.11H150.73Z" />
26-
<path d="M168.73,92.09l1.33-1.89A8.57,8.57,0,0,0,176,92.43c2.85,0,4.64-1.39,4.64-3.93s-2-3.35-5.05-4.4c-2.66-.93-6.13-2.14-6.13-6.2,0-3.68,2.85-6,7-6a10,10,0,0,1,5.76,1.7l-1.08,2a8.19,8.19,0,0,0-4.71-1.55c-2.88,0-4.68,1.43-4.68,3.78s2,3.22,4.84,4.28c3.22,1.14,6.35,2.17,6.35,6.25s-3,6.2-7.13,6.2A10.62,10.62,0,0,1,168.73,92.09Z" />
27-
<path d="M188.25,72.27h2.32v22h-2.32Z" />
28-
<path d="M195.84,83.26A11.19,11.19,0,0,1,206.93,72h.27a12.24,12.24,0,0,1,7.72,2.6l-1.36,1.89a10.41,10.41,0,0,0-6.36-2.26,9.07,9.07,0,0,0-.34,18.12,9.46,9.46,0,0,0,6.26-2.11V85h-6V83h8.3v8.4a12.77,12.77,0,0,1-8.52,3.19A11.07,11.07,0,0,1,195.84,83.5Z" />
29-
<path d="M239.39,72.27v22h-1.64L223.47,76V94.26h-2.29v-22h2.2l13.74,17.51V72.27Z" />
30-
<path d="M252.41,92.09l1.33-1.89a8.57,8.57,0,0,0,5.95,2.23c2.85,0,4.64-1.39,4.64-3.93s-2-3.35-5-4.4c-2.71-.93-6.21-2.11-6.21-6.2,0-3.68,2.85-6,7-6a10,10,0,0,1,5.76,1.7l-1.08,2a8.19,8.19,0,0,0-4.68-1.54c-2.88,0-4.68,1.43-4.68,3.78s1.95,3.22,4.84,4.28c3.22,1.14,6.35,2.17,6.35,6.25s-3,6.2-7.13,6.2A10.56,10.56,0,0,1,252.41,92.09Z" />
31-
<path d="M278.52,85.46v8.8h-2.29v-8.8l-7.84-13.19H271l6.47,10.9,6.44-10.9h2.45Z" />
32-
<path d="M287.79,92.09l1.33-1.89a8.58,8.58,0,0,0,6,2.23c2.85,0,4.64-1.39,4.64-3.93s-2-3.35-5-4.4c-2.67-.93-6.14-2.14-6.14-6.2,0-3.68,2.85-6,7-6a10,10,0,0,1,5.76,1.7l-1.08,2a8.19,8.19,0,0,0-4.71-1.55c-2.88,0-4.68,1.43-4.68,3.78s2,3.22,4.84,4.28c3.22,1.14,6.35,2.17,6.35,6.25s-3,6.2-7.13,6.2A10.63,10.63,0,0,1,287.79,92.09Z" />
33-
<path d="M321.12,74.37H313.5V94.26h-2.32V74.37H303.4v-2.1h17.72Z" />
34-
<path d="M324.53,72.27h14v2.1H326.85v7.81h11v2.08h-11v7.89h11.9v2.11H324.53Z" />
35-
<path d="M344,72.27h2.54l7.56,11,7.65-11h2.57v22H362V75.77l-7.56,10.81h-.72l-7.46-10.81V94.26H344Z" />
36-
<g style={{ clipPath: 'url(#a)' }}>
37-
<rect
38-
x="2.21"
39-
y="-36.69"
40-
width="13.08"
41-
height="156.04"
42-
transform="translate(22.22 1.29) rotate(30.54)"
43-
/>
44-
<rect
45-
x="13.48"
46-
y="-30.04"
47-
width="13.08"
48-
height="156.04"
49-
transform="translate(27.16 -3.52) rotate(30.54)"
50-
style={{ fill: '#784f17' }}
51-
/>
52-
<rect
53-
x="24.75"
54-
y="-23.39"
55-
width="13.08"
56-
height="156.04"
57-
transform="translate(32.11 -8.32) rotate(30.54)"
58-
style={{ fill: '#ff0018' }}
59-
/>
60-
<rect
61-
x="36.02"
62-
y="-16.74"
63-
width="13.08"
64-
height="156.04"
65-
transform="translate(37.05 -13.13) rotate(30.54)"
66-
style={{ fill: '#ffa52c' }}
67-
/>
68-
<rect
69-
x="47.29"
70-
y="-10.09"
71-
width="13.08"
72-
height="156.04"
73-
transform="translate(41.99 -17.93) rotate(30.54)"
74-
style={{ fill: '#ffff41' }}
75-
/>
76-
<rect
77-
x="58.57"
78-
y="-3.46"
79-
width="13.08"
80-
height="156.04"
81-
transform="translate(46.92 -22.74) rotate(30.54)"
82-
style={{ fill: '#008018' }}
83-
/>
84-
<rect
85-
x="69.85"
86-
y="3.14"
87-
width="13.08"
88-
height="156.04"
89-
transform="translate(51.85 -27.56) rotate(30.54)"
90-
style={{ fill: '#0000f9' }}
91-
/>
92-
<rect
93-
x="81.08"
94-
y="9.85"
95-
width="13.08"
96-
height="156.04"
97-
transform="translate(56.81 -32.34) rotate(30.54)"
98-
style={{ fill: '#86007d' }}
99-
/>
100-
</g>
13+
<path d="M126.15,53.65l5.76-9.25a20.84,20.84,0,0,0,13.34,5c4.37,0,6.56-1.75,6.56-4.89s-2.55-4.44-9.77-6.78c-7.58-2.48-13.85-6.19-13.85-15,0-10,7.51-15.89,18.37-15.89a27.64,27.64,0,0,1,15.75,4.73l-5.47,9.33a18.14,18.14,0,0,0-10.35-3.57c-3.94,0-6.34,1.68-6.34,4.81,0,3.28,3.21,4.16,9.47,6.27,7.88,2.63,14.22,5.83,14.22,15.31,0,10.28-7.66,16.33-19.32,16.33C136.65,60.07,129.94,57,126.15,53.65Z" />
14+
<path d="M211.37,25.44c0,9.26-6.64,18.59-21.58,18.59h-5.25V59.34H172.66V7.59h17.28C204.81,7.59,211.37,16,211.37,25.44Zm-12.4.3c0-5.84-4.22-8.53-9.84-8.53h-4.59v17.2h4.59C194.75,34.41,199,31.57,199,25.74Z" />
15+
<path d="M244.46,49.86h-19.9l-3.2,9.48h-12L228.28,7.59h13l19,51.75H247.67Zm-3.21-9.33-6.77-20-6.78,20Z" />
16+
<path d="M311.23,59.34h-14L281.93,40.1l-3.35-4.45V59.34H266.7V7.59h22.88c12,0,18.45,6.85,18.45,15.3,0,7.36-4.52,14.14-13.49,16.4ZM287.32,31c4.52,0,8.31-2.4,8.31-7s-3.64-6.78-8.16-6.78h-8.89V31Z" />
17+
<path d="M349.87,59.34,328.51,34.41V59.34H316.63V7.59h11.88V31.2L349,7.59h14.95L341.49,32.3l23.91,27Z" />
18+
<path d="M145.34,83.09c0,6.53-4.86,11.18-12.18,11.18h-6.47v-22h6.47C140.48,72.28,145.34,76.68,145.34,83.09Zm-2.39,0c0-5.24-3.87-8.74-9.82-8.74H129V92.16h4.09C139.08,92.16,143,88.45,143,83.12Z" />
19+
<path d="M150.61,72.28h14v2.1H152.93v7.81h11v2.08h-11v7.89h11.9v2.11H150.61Z" />
20+
<path d="M168.61,92.1l1.33-1.89a8.59,8.59,0,0,0,5.95,2.23c2.85,0,4.64-1.39,4.64-3.93s-2-3.35-5.05-4.4c-2.66-.93-6.13-2.14-6.13-6.2,0-3.68,2.85-6,7-6a10,10,0,0,1,5.76,1.7l-1.08,2a8.19,8.19,0,0,0-4.71-1.55c-2.88,0-4.68,1.43-4.68,3.78s2,3.22,4.84,4.28c3.22,1.14,6.35,2.17,6.35,6.25s-3,6.2-7.13,6.2A10.58,10.58,0,0,1,168.61,92.1Z" />
21+
<path d="M188.13,72.28h2.32v22h-2.32Z" />
22+
<path d="M195.72,83.27A11.18,11.18,0,0,1,207.08,72a12.24,12.24,0,0,1,7.72,2.6l-1.36,1.89a10.44,10.44,0,0,0-6.36-2.26,9.07,9.07,0,0,0-.34,18.12A9.52,9.52,0,0,0,213,90.24V85H207V83h8.3v8.4a12.81,12.81,0,0,1-8.52,3.19A11.07,11.07,0,0,1,195.72,83.27Z" />
23+
<path d="M239.27,72.28v22h-1.64L223.35,76V94.27h-2.29v-22h2.2L237,89.78V72.28Z" />
24+
<path d="M252.29,92.1l1.33-1.89a8.59,8.59,0,0,0,5.95,2.23c2.85,0,4.64-1.39,4.64-3.93s-2-3.35-5-4.4C256.5,83.18,253,82,253,77.91c0-3.68,2.85-6,7-6a10,10,0,0,1,5.76,1.7l-1.08,2A8.19,8.19,0,0,0,260,74.07c-2.88,0-4.68,1.43-4.68,3.78s1.95,3.22,4.84,4.28c3.22,1.14,6.35,2.17,6.35,6.25s-3,6.2-7.13,6.2A10.58,10.58,0,0,1,252.29,92.1Z" />
25+
<path d="M278.4,85.47v8.8h-2.29v-8.8l-7.84-13.19h2.61l6.47,10.9,6.44-10.9h2.45Z" />
26+
<path d="M287.67,92.1,289,90.21A8.61,8.61,0,0,0,295,92.44c2.85,0,4.64-1.39,4.64-3.93s-2-3.35-5-4.4c-2.67-.93-6.14-2.14-6.14-6.2,0-3.68,2.85-6,7-6a10,10,0,0,1,5.76,1.7l-1.08,2a8.19,8.19,0,0,0-4.71-1.55c-2.88,0-4.68,1.43-4.68,3.78s2,3.22,4.84,4.28c3.22,1.14,6.35,2.17,6.35,6.25s-3,6.2-7.13,6.2A10.58,10.58,0,0,1,287.67,92.1Z" />
27+
<path d="M321,74.38h-7.62V94.27h-2.32V74.38h-7.78v-2.1H321Z" />
28+
<path d="M324.41,72.28h14v2.1H326.73v7.81h11v2.08h-11v7.89h11.9v2.11H324.41Z" />
29+
<path d="M343.87,72.28h2.54l7.56,11,7.65-11h2.57v22H361.9V75.78l-7.56,10.81h-.72l-7.46-10.81V94.27h-2.29Z" />
30+
<path
31+
d="M90.36,93l19.77-34.47a16.46,16.46,0,0,0,0-16.42l-5.54-9.53L90.77,56.26A18.38,18.38,0,0,1,80.1,74.63L64.63,101.26l11.53,0A16.48,16.48,0,0,0,90.36,93Z"
32+
fill="#a31e28"
33+
/>
34+
<path
35+
d="M80.1,74.63a1.19,1.19,0,0,1-.16.08L45.86,90.3l-6.42,11,25.19-.08Z"
36+
fill="#b6202d"
37+
/>
38+
<path
39+
d="M91.2,12.25l-16,27.53A18.21,18.21,0,0,1,90.77,56.26l13.77-23.7L93.45,13.47A2.47,2.47,0,0,0,91.2,12.25Z"
40+
fill="#b6202d"
41+
/>
42+
<path
43+
d="M44.7,90.83,32.6,96.36a2.47,2.47,0,0,0,.56,4.66,15.71,15.71,0,0,0,3.22.33h3.06l6.42-11Z"
44+
fill="#c7202f"
45+
/>
46+
<path
47+
d="M75.21,39.78l16-27.53a2.31,2.31,0,0,0-.88.21l-7.63,3.38L57.47,27,43.84,50.5l20.91-9.33A18.68,18.68,0,0,1,75.21,39.78Z"
48+
fill="#c7202f"
49+
/>
50+
<path
51+
d="M36.83,36.18a8.11,8.11,0,0,0-4.26,10.41A8,8,0,0,0,43.16,50.8l.68-.3L57.47,27Z"
52+
fill="#cd2442"
53+
/>
54+
<path
55+
d="M79.73,54.75a8,8,0,0,0-10.59-4.2l-.25.11L55.26,74.12l20.2-9A8.1,8.1,0,0,0,79.73,54.75Z"
56+
fill="#b6202d"
57+
/>
58+
<path
59+
d="M37.39,61.6,21.45,89.05a3.56,3.56,0,0,0,.53-.16l7.63-3.39L55.26,74.12,68.89,50.66,47.55,60.17A18.57,18.57,0,0,1,37.39,61.6Z"
60+
fill="#c7202f"
61+
/>
62+
<path
63+
d="M67.6,10.52,79.7,5A2.47,2.47,0,0,0,79.14.32,16.46,16.46,0,0,0,75.91,0H73.18l-6.3,10.84Z"
64+
fill="#c7202f"
65+
/>
66+
<path
67+
d="M23.11,51.11a18.5,18.5,0,0,1-1.54-5.52L7.92,69.08l10.93,18.8a2.47,2.47,0,0,0,2.61,1.17L37.41,61.6A18.36,18.36,0,0,1,23.11,51.11Z"
68+
fill="#cd2442"
69+
/>
70+
<polygon
71+
points="32.66 26.49 66.9 10.84 73.19 0.01 48.01 0.08 32.66 26.49"
72+
fill="#cd2442"
73+
/>
74+
<path
75+
d="M22.64,37a18.29,18.29,0,0,1,9.72-10.32l.28-.12L48,.08,36.14.12a16.44,16.44,0,0,0-14.2,8.25L2.17,42.83a16.48,16.48,0,0,0,.05,16.43l5.69,9.8,13.66-23.5A18.31,18.31,0,0,1,22.64,37Z"
76+
fill="#d23c54"
77+
/>
10178
</svg>
10279
/* eslint-enable max-len */
10380
);

0 commit comments

Comments
 (0)