react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 435 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCloudDrizzle(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="M8 19v2M8 13v2M16 19v2M16 13v2M12 21v2M12 15v2M20 16.58A5 5 0 0018 7h-1.26A8 8 0 104 15.25"/>
</Svg>);
}
export default SvgCloudDrizzle;