react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 429 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCloudOff(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="M22.61 16.95A5 5 0 0018 10h-1.26a8 8 0 00-7.05-6M5 5a8 8 0 004 15h9a5 5 0 001.7-.3M1 1l22 22"/>
</Svg>);
}
export default SvgCloudOff;