Skip to content

Commit ccadcbb

Browse files
committed
feat: add clock and exclamation mark icons [LW-9231]
1 parent f152c9c commit ccadcbb

5 files changed

+69
-0
lines changed

src/icons/ClockGradientComponent.tsx

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import * as React from 'react';
2+
import type { SVGProps } from 'react';
3+
const SvgClockGradientcomponent = (props: SVGProps<SVGSVGElement>) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
width={112}
7+
height={113}
8+
fill="none"
9+
{...props}
10+
>
11+
<path
12+
stroke="url(#clock-gradient_component_svg__a)"
13+
strokeLinecap="round"
14+
strokeLinejoin="round"
15+
strokeWidth={3}
16+
d="M56 38.07v18.667l14 14m28-14c0 23.196-18.804 42-42 42s-42-18.804-42-42 18.804-42 42-42 42 18.804 42 42"
17+
/>
18+
<defs>
19+
<linearGradient
20+
id="clock-gradient_component_svg__a"
21+
x1={-1.37}
22+
x2={121.7}
23+
y1={-0.633}
24+
y2={8.444}
25+
gradientUnits="userSpaceOnUse"
26+
>
27+
<stop stopColor="#FF92DE" />
28+
<stop offset={1} stopColor="#FDC300" />
29+
</linearGradient>
30+
</defs>
31+
</svg>
32+
);
33+
export default SvgClockGradientcomponent;
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import * as React from 'react';
2+
import type { SVGProps } from 'react';
3+
const SvgExclamationCirclecomponent = (props: SVGProps<SVGSVGElement>) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
width={113}
7+
height={113}
8+
fill="none"
9+
{...props}
10+
>
11+
<path
12+
stroke="#E84D66"
13+
strokeLinecap="round"
14+
strokeLinejoin="round"
15+
strokeWidth={3}
16+
d="M56.5 37.455v18.667m0 18.667h.047M98.5 56.122c0 23.196-18.804 42-42 42s-42-18.804-42-42 18.804-42 42-42 42 18.804 42 42"
17+
/>
18+
</svg>
19+
);
20+
export default SvgExclamationCirclecomponent;

src/icons/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ export { default as ChevronRightThinComponent } from './ChevronRightThinComponen
1414
export { default as ChevronRightComponent } from './ChevronRightComponent';
1515
export { default as ChevronUpComponent } from './ChevronUpComponent';
1616
export { default as ChipGradientComponent } from './ChipGradientComponent';
17+
export { default as ClockGradientComponent } from './ClockGradientComponent';
1718
export { default as CloseComponent } from './CloseComponent';
1819
export { default as CodeGradientComponent } from './CodeGradientComponent';
1920
export { default as Copy } from './Copy';
2021
export { default as DocumentDownload } from './DocumentDownload';
2122
export { default as DocumentTextGradientComponent } from './DocumentTextGradientComponent';
2223
export { default as DocumentComponent } from './DocumentComponent';
2324
export { default as DownloadComponent } from './DownloadComponent';
25+
export { default as ExclamationCircleComponent } from './ExclamationCircleComponent';
2426
export { default as EyeCloseComponent } from './EyeCloseComponent';
2527
export { default as EyeGradientComponent } from './EyeGradientComponent';
2628
export { default as EyeOpenComponent } from './EyeOpenComponent';
+11
Loading
Loading

0 commit comments

Comments
 (0)