Skip to content

Commit

Permalink
feat: add clock and exclamation mark icons [LW-9231]
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikGuzei committed Oct 18, 2024
1 parent f152c9c commit 37e5b2b
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/icons/ClockGradientComponent.tsx
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;
19 changes: 19 additions & 0 deletions src/icons/ExclamationCircleComponent.tsx
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;
2 changes: 2 additions & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ export { default as ChevronRightThinComponent } from './ChevronRightThinComponen
export { default as ChevronRightComponent } from './ChevronRightComponent';
export { default as ChevronUpComponent } from './ChevronUpComponent';
export { default as ChipGradientComponent } from './ChipGradientComponent';
export { default as ClockGradientComponent } from './ClockGradientComponent';
export { default as CloseComponent } from './CloseComponent';
export { default as CodeGradientComponent } from './CodeGradientComponent';
export { default as Copy } from './Copy';
export { default as DocumentDownload } from './DocumentDownload';
export { default as DocumentTextGradientComponent } from './DocumentTextGradientComponent';
export { default as DocumentComponent } from './DocumentComponent';
export { default as DownloadComponent } from './DownloadComponent';
export { default as ExclamationCircleComponent } from './ExclamationCircleComponent';
export { default as EyeCloseComponent } from './EyeCloseComponent';
export { default as EyeGradientComponent } from './EyeGradientComponent';
export { default as EyeOpenComponent } from './EyeOpenComponent';
Expand Down
11 changes: 11 additions & 0 deletions src/icons/raw/clock-gradient.component.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/icons/raw/exclamation-circle.component.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 37e5b2b

Please sign in to comment.