iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 761 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgHardDrive(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.75 11.75h14.5v6.5a1 1 0 01-1 1H5.75a1 1 0 01-1-1v-6.5z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.75 14v-2.093a1 1 0 01.048-.306l1.979-6.157a1 1 0 01.952-.694h8.542a1 1 0 01.952.694l1.979 6.157a.999.999 0 01.048.306V14M7.75 15.25h1.5M12.75 15.25h3.5" })));
}
export default SvgHardDrive;