@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 729 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M7 5V2C7 1.44772 7.44772 1 8 1H16C16.5523 1 17 1.44772 17 2V5H21C21.5523 5 22 5.44772 22 6V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V6C2 5.44772 2.44772 5 3 5H7ZM4 16V19H20V16H4ZM4 14H20V7H4V14ZM9 3V5H15V3H9ZM11 11H13V13H11V11Z"/>
</Svg>);
};
Icon.displayName = 'BriefcaseLine';
/**
* Remix Icon: Briefcase Line
* @see {@link https://remixicon.com/icon/briefcase-line Remix Icon Docs}
*/
export const BriefcaseLine = memo(Icon);