Skip to content

Commit

Permalink
feat(icons): add warning triangle icon solid
Browse files Browse the repository at this point in the history
  • Loading branch information
tommayeliog committed Jul 9, 2024
1 parent de6060e commit 0ba3e88
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/icons/WarningIconTriangleSolid.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 SvgWarningIconTriangleSolid = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={24}
height={24}
fill="none"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
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"
clipRule="evenodd"
/>
</svg>
);
export default SvgWarningIconTriangleSolid;
1 change: 1 addition & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ export { default as UserGroupComponent } from './UserGroupComponent';
export { default as VideoGradientComponent } from './VideoGradientComponent';
export { default as WalletComponent } from './WalletComponent';
export { default as WarningIconCircleComponent } from './WarningIconCircleComponent';
export { default as WarningIconTriangleSolid } from './WarningIconTriangleSolid';
export { default as WarningIconTriangleComponent } from './WarningIconTriangleComponent';
3 changes: 3 additions & 0 deletions src/icons/raw/warning-icon-triangle-solid.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 0ba3e88

Please sign in to comment.