react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 451 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTruckFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M17 8h3l3 4.056V18h-2.035a3.501 3.501 0 0 1-6.93 0h-5.07a3.5 3.5 0 0 1-6.93 0H1V6a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1zm0 2v3h4v-.285L18.992 10z" />
</Svg>
);
export default SvgTruckFill;