Skip to content

Commit 1b61e8e

Browse files
authored
Merge pull request #26 from input-output-hk/feat/add-warning-icon-solid
feat(icons): add warning triangle icon solid
2 parents de6060e + 0ba3e88 commit 1b61e8e

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import * as React from 'react';
2+
import type { SVGProps } from 'react';
3+
const SvgWarningIconTriangleSolid = (props: SVGProps<SVGSVGElement>) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
width={24}
7+
height={24}
8+
fill="none"
9+
{...props}
10+
>
11+
<path
12+
fill="currentColor"
13+
fillRule="evenodd"
14+
d="M9.701 4.344c1.009-1.792 3.59-1.792 4.598 0l7.358 13.083c.99 1.758-.281 3.93-2.298 3.93H4.64c-2.017 0-3.287-2.172-2.298-3.93zm3.618 13.057a1.319 1.319 0 1 1-2.638 0 1.319 1.319 0 0 1 2.638 0m-1.32-10.55c-.727 0-1.318.59-1.318 1.32v3.955a1.319 1.319 0 1 0 2.638 0V8.17c0-.728-.59-1.319-1.32-1.319"
15+
clipRule="evenodd"
16+
/>
17+
</svg>
18+
);
19+
export default SvgWarningIconTriangleSolid;

src/icons/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,5 @@ export { default as UserGroupComponent } from './UserGroupComponent';
7171
export { default as VideoGradientComponent } from './VideoGradientComponent';
7272
export { default as WalletComponent } from './WalletComponent';
7373
export { default as WarningIconCircleComponent } from './WarningIconCircleComponent';
74+
export { default as WarningIconTriangleSolid } from './WarningIconTriangleSolid';
7475
export { default as WarningIconTriangleComponent } from './WarningIconTriangleComponent';
Loading

0 commit comments

Comments
 (0)