22 lines
535 B
TypeScript
22 lines
535 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import type { SVGProps } from 'react';
|
||
|
|
const AlertTriangle = (props: SVGProps<SVGSVGElement>) => (
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
width="1em"
|
||
|
|
height="1em"
|
||
|
|
fill="none"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
strokeWidth={2}
|
||
|
|
d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3M12 9v4M12 17h.01"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
export default AlertTriangle;
|