react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 526 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgHardDrive3Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M4.508 2.876A1 1 0 0 1 5.5 2h13a1 1 0 0 1 .992.876l1.5 12Q21 14.938 21 15v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6a1 1 0 0 1 .008-.124zM6.383 4l-1.25 10h13.734l-1.25-10zM19 16H5v4h14zm-4 1h2v2h-2zm-2 0h-2v2h2z" />
</Svg>
);
export default SvgHardDrive3Line;