react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 551 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgExclamationTriangle(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12 16a1 1 0 101 1 1 1 0 00-1-1zm10.67 1.47l-8.05-14a3 3 0 00-5.24 0l-8 14A3 3 0 003.94 22h16.12a3 3 0 002.61-4.53zm-1.73 2a1 1 0 01-.88.51H3.94a1 1 0 01-.88-.51 1 1 0 010-1l8-14a1 1 0 011.78 0l8.05 14a1 1 0 01.05 1.02zM12 8a1 1 0 00-1 1v4a1 1 0 002 0V9a1 1 0 00-1-1z" fill="currentColor"/>
</Svg>);
}
export default SvgExclamationTriangle;