@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 651 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="M7 2v20H3V2zm12.005 0C20.107 2 21 2.898 21 3.99v16.02c0 1.099-.893 1.99-1.995 1.99H9V2zM15 8l-4 4h3v4h2v-4h3zm9 4v4h-2v-4zm0-6v4h-2V6z"/>
</Svg>);
});
Icon.displayName = 'ContactsBookUploadFill';
/**
* Remix Icon: Contacts Book Upload Fill
* @see {@link https://remixicon.com/icon/contacts-book-upload-fill Remix Icon Docs}
*/
export const ContactsBookUploadFill = Icon;