react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 521 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCaravanFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M14.172 3c.53 0 1.039.21 1.414.586l4.828 4.828A2 2 0 0121 9.828V17h2v2h-8.126a4.002 4.002 0 01-7.748 0H3a1 1 0 01-1-1V5a2 2 0 012-2h10.172zM11 16a2 2 0 10-.001 3.999A2 2 0 0011 16zm3-9H6v6h8V7zm-2 2v2H8V9h4z" />
</Svg>
);
}
export default SvgCaravanFill;