import { SVGProps } from "react";
export const Alert = (props: SVGProps<SVGSVGElement>) => (
<svg
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M12.0001 16H12.0081M12.0001 9.99997V13M10.5751 5.21697L3.51705 17C3.37163 17.252 3.29472 17.5377 3.29395 17.8287C3.29319 18.1197 3.3686 18.4058 3.51269 18.6586C3.65679 18.9114 3.86454 19.1221 4.1153 19.2697C4.36606 19.4173 4.65109 19.4967 4.94205 19.5H19.0581C19.3491 19.497 19.6343 19.4178 19.8853 19.2702C20.1362 19.1227 20.3441 18.912 20.4883 18.6591C20.6324 18.4062 20.7078 18.1199 20.7069 17.8288C20.706 17.5377 20.6288 17.252 20.4831 17L13.4261 5.21697C13.2776 4.9719 13.0685 4.76925 12.8189 4.6286C12.5692 4.48796 12.2876 4.41406 12.0011 4.41406C11.7145 4.41406 11.4329 4.48796 11.1832 4.6286C10.9336 4.76925 10.7245 4.9719 10.5761 5.21697"
stroke="currentColor"
strokeWidth={1.5}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);