@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 640 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Briefcase4Fill = /* @__PURE__ */ memo(function Briefcase4Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M9 13v3h6v-3h7v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-7zm2-2h2v3h-2zM7 5V2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3h4a1 1 0 0 1 1 1v5h-7V9H9v2H2V6a1 1 0 0 1 1-1zm2-2v2h6V3z"/>
</Svg>);
});
/**
* Remix Icon: Briefcase 4 Fill
* @see {@link https://remixicon.com/icon/briefcase-4-fill Remix Icon Docs}
*/
export { Briefcase4Fill };