react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 498 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSuitcase2Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M18 23h-2v-1H8v1H6v-1H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3V3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h3a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-1zm1-16H5v13h14zm-9 2v9H8V9zm6 0v9h-2V9zm-2-5h-4v1h4z" />
</Svg>
);
export default SvgSuitcase2Line;