react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 431 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDriveFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m7.94 4.146 3.482 6.03-5.94 10.293L2 14.44zm2.176 10.294H22l-3.482 6.029H6.635zm4.343-1L8.518 3.145h6.964l5.94 10.295z" />
</Svg>
);
export default SvgDriveFill;