@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 660 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="m13.2 12 2.8 4h-2.4L12 13.714 10.4 16H8l2.8-4L8 8h2.4l1.6 2.286L13.6 8H15V4H5v16h14V8h-3zM3 2.992C3 2.444 3.447 2 3.999 2H16l5 5v13.993A1 1 0 0 1 20.007 22H3.993A1 1 0 0 1 3 21.008z"/>
</Svg>);
});
Icon.displayName = 'FileExcelLine';
/**
* Remix Icon: File Excel Line
* @see {@link https://remixicon.com/icon/file-excel-line Remix Icon Docs}
*/
export const FileExcelLine = Icon;