@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 827 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M5.5 20a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m13 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M2.172 1.757 6 5.585V17L20 17v2H5a1 1 0 0 1-1-1V6.413L.758 3.172zM16 3a1 1 0 0 1 1 1v2h2.994C20.55 6 21 6.456 21 6.995v8.01a1 1 0 0 1-1.006.995H8.007A1.01 1.01 0 0 1 7 15.005v-8.01A1 1 0 0 1 8.007 6H11V4a1 1 0 0 1 1-1zm-5 5h-1v6h1zm7 0h-1v6h1zm-3-3h-2v1h2z"/>
</Svg>);
});
Icon.displayName = 'LuggageCartFill';
/**
* Remix Icon: Luggage Cart Fill
* @see {@link https://remixicon.com/icon/luggage-cart-fill Remix Icon Docs}
*/
export const LuggageCartFill = Icon;