@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 575 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="m3 8 6.003-6h10.995C20.55 2 21 2.455 21 2.992v18.016a.993.993 0 0 1-.993.992H3.993A1 1 0 0 1 3 20.993zm7-4.5L4.5 9H10z"/>
</Svg>);
});
Icon.displayName = 'FileFill';
/**
* Remix Icon: File Fill
* @see {@link https://remixicon.com/icon/file-fill Remix Icon Docs}
*/
export const FileFill = Icon;