@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 656 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="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>);
});
Icon.displayName = 'Suitcase2Line';
/**
* Remix Icon: Suitcase 2 Line
* @see {@link https://remixicon.com/icon/suitcase-2-line Remix Icon Docs}
*/
export const Suitcase2Line = Icon;