@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 617 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="M15 3a1 1 0 0 1 1 1v2h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h5V4a1 1 0 0 1 1-1zM8 8H6v11h2zm10 0h-2v11h2zm-4-3h-4v1h4z"/>
</Svg>);
});
Icon.displayName = 'SuitcaseFill';
/**
* Remix Icon: Suitcase Fill
* @see {@link https://remixicon.com/icon/suitcase-fill Remix Icon Docs}
*/
export const SuitcaseFill = Icon;