@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 626 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="M21 15H14V22H3.99826C3.44694 22 3 21.5447 3 21.0082V2.9918C3 2.44405 3.44495 2 3.9934 2H20.0066C20.5552 2 21 2.44892 21 3.00748V15ZM21 17L16 21.9968V17H21Z"/>
</Svg>);
};
Icon.displayName = 'File4Fill';
/**
* Remix Icon: File 4 Fill
* @see {@link https://remixicon.com/icon/file-4-fill Remix Icon Docs}
*/
export const File4Fill = memo(Icon);