UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 581 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgTruck(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: "M15.25 15.25H4.75V4.75h10.5v10.5zM9.25 17.5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zM18.25 17.5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zM19.25 15.25h-4v-6.5h1a3 3 0 013 3v3.5z" }))); } export default SvgTruck;