-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add clock and exclamation mark icons [LW-9231]
- Loading branch information
1 parent
f152c9c
commit 37e5b2b
Showing
5 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import * as React from 'react'; | ||
import type { SVGProps } from 'react'; | ||
const SvgClockGradientcomponent = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={112} | ||
height={113} | ||
fill="none" | ||
{...props} | ||
> | ||
<path | ||
stroke="url(#clock-gradient_component_svg__a)" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={3} | ||
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" | ||
/> | ||
<defs> | ||
<linearGradient | ||
id="clock-gradient_component_svg__a" | ||
x1={-1.37} | ||
x2={121.7} | ||
y1={-0.633} | ||
y2={8.444} | ||
gradientUnits="userSpaceOnUse" | ||
> | ||
<stop stopColor="#FF92DE" /> | ||
<stop offset={1} stopColor="#FDC300" /> | ||
</linearGradient> | ||
</defs> | ||
</svg> | ||
); | ||
export default SvgClockGradientcomponent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import * as React from 'react'; | ||
import type { SVGProps } from 'react'; | ||
const SvgExclamationCirclecomponent = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 113 113" | ||
{...props} | ||
> | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={3} | ||
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" | ||
/> | ||
</svg> | ||
); | ||
export default SvgExclamationCirclecomponent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.