react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 484 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSuitcase2Fill = 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-1zM10 9H8v9h2zm6 0h-2v9h2zm-2-5h-4v1h4z" />
</Svg>
);
export default SvgSuitcase2Fill;