@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 728 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="M20 2C21.6569 2 23 3.34315 23 5V7H21V19C21 20.6569 19.6569 22 18 22H4C2.34315 22 1 20.6569 1 19V17H17V19C17 19.5128 17.386 19.9355 17.8834 19.9933L18 20C18.5128 20 18.9355 19.614 18.9933 19.1166L19 19V15H3V5C3 3.34315 4.34315 2 6 2H20Z"/>
</Svg>);
};
Icon.displayName = 'FilePaper2Fill';
/**
* Remix Icon: File Paper 2 Fill
* @see {@link https://remixicon.com/icon/file-paper-2-fill Remix Icon Docs}
*/
export const FilePaper2Fill = memo(Icon);