@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 682 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="M17 17V19C17 19.5523 17.4477 20 18 20C18.5523 20 19 19.5523 19 19V4H5V15H3V3C3 2.44772 3.44772 2 4 2H20C20.5523 2 21 2.44772 21 3V19C21 20.6569 19.6569 22 18 22H4C2.34315 22 1 20.6569 1 19V17H17Z"/>
</Svg>);
};
Icon.displayName = 'FilePaperLine';
/**
* Remix Icon: File Paper Line
* @see {@link https://remixicon.com/icon/file-paper-line Remix Icon Docs}
*/
export const FilePaperLine = memo(Icon);