react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 449 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgShieldOff(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="M19.69 14a6.9 6.9 0 00.31-2V5l-8-3-3.16 1.18M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 005.62-4.38M1 1l22 22"/>
</Svg>);
}
export default SvgShieldOff;