react-native-feather
Version:
React Native component for Feather icons
11 lines (10 loc) • 458 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgTruck(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M1 3h15v13H1zM16 8h4l3 3v5h-7V8z"/>
<Circle cx={5.5} cy={18.5} r={2.5}/>
<Circle cx={18.5} cy={18.5} r={2.5}/>
</Svg>);
}
export default SvgTruck;