Newer
Older
import {h} from '@stencil/core';
function SvgAlert(props) {
return (
<svg viewBox="0 0 32 32" {...props}>
<circle cx="16" cy="16" r="16" />
<path d="M17.6,18.79H15l-.55-10.5h3.72Zm-3.21,3.67a1.8,1.8,0,0,1,.48-1.36,2,2,0,0,1,1.41-.46,1.94,1.94,0,0,1,1.38.47,1.83,1.83,0,0,1,.49,1.35,1.79,1.79,0,0,1-.5,1.34,1.84,1.84,0,0,1-1.37.49,1.93,1.93,0,0,1-1.4-.48A1.79,1.79,0,0,1,14.39,22.46Z" />
</svg>
);
}
export default SvgAlert;