react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 565 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgThunderstorm(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M13.5 15h-2.27l1.45-2.5a1 1 0 10-1.74-1l-2.31 4a1 1 0 000 1 1 1 0 00.87.5h2.27l-1.45 2.5a1 1 0 001.74 1l2.31-4a1 1 0 000-1 1 1 0 00-.87-.5zm4.92-7.79a7 7 0 00-13.36 1.9A4 4 0 006 17a1 1 0 000-2 2 2 0 010-4 1 1 0 001-1 5 5 0 019.73-1.61 1 1 0 00.78.66A3 3 0 0117 15a1 1 0 000 2 5 5 0 001.42-9.79z" fill="currentColor"/>
</Svg>);
}
export default SvgThunderstorm;