@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 676 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="M3 10H21V20.0044C21 20.5543 20.5551 21 20.0066 21H3.9934C3.44476 21 3 20.5552 3 20.0044V10ZM9 12V14H15V12H9ZM2 3.99981C2 3.44763 2.45531 3 2.9918 3H21.0082C21.556 3 22 3.44372 22 3.99981V8H2V3.99981Z"/>
</Svg>);
};
Icon.displayName = 'ArchiveFill';
/**
* Remix Icon: Archive Fill
* @see {@link https://remixicon.com/icon/archive-fill Remix Icon Docs}
*/
export const ArchiveFill = memo(Icon);