react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 447 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgAlertTriangle(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0zM12 9v4M12 17h.01"/>
</Svg>);
}
export default SvgAlertTriangle;