react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 489 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgHardDrive3Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M5.5 2a1 1 0 0 0-.992.876l-1.5 12A1 1 0 0 0 3 15v6a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-6q0-.062-.008-.124l-1.5-12A1 1 0 0 0 18.5 2zM5 16h14v4H5zm10 1h2v2h-2zm-2 0h-2v2h2z" />
</Svg>
);
export default SvgHardDrive3Fill;