Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add clock and exclamation mark icons [LW-9231] #61

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
20 changes: 20 additions & 0 deletions src/icons/ExclamationCircleComponent.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const SvgExclamationCirclecomponent = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={113}
height={113}
fill="none"
{...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.