@elevyg/react-native-ionicons
Version:
Ionicons 5 for React Native
8 lines (6 loc) • 600 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgAlertOutline(props) {
return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Path d="M256 80c-8.66 0-16.58 7.36-16 16l8 216a8 8 0 008 8h0a8 8 0 008-8l8-216c.58-8.64-7.34-16-16-16z" fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Circle cx={256} cy={416} r={16} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>;
}
export default SvgAlertOutline;