react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 441 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCloudSnow(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="M20 17.58A5 5 0 0018 8h-1.26A8 8 0 104 16.25M8 16h.01M8 20h.01M12 18h.01M12 22h.01M16 16h.01M16 20h.01"/>
</Svg>);
}
export default SvgCloudSnow;