react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 465 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgHardDrive(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 12H2M5.45 5.11L2 12v6a2 2 0 002 2h16a2 2 0 002-2v-6l-3.45-6.89A2 2 0 0016.76 4H7.24a2 2 0 00-1.79 1.11zM6 16h.01M10 16h.01"/>
</Svg>);
}
export default SvgHardDrive;