react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 386 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgExclamation(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12 14a1 1 0 001-1V7a1 1 0 00-2 0v6a1 1 0 001 1zm0 4a1.25 1.25 0 10-1.25-1.25A1.25 1.25 0 0012 18z" fill="currentColor"/>
</Svg>);
}
export default SvgExclamation;