@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 697 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="M17 3h4a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-4zM2.859 2.877l12.57-1.795a.5.5 0 0 1 .571.494v20.848a.5.5 0 0 1-.57.494L2.858 21.123a1 1 0 0 1-.859-.99V3.867a1 1 0 0 1 .859-.99M11 8v4.989L9 11l-1.99 2L7 8H5v8h2l2-2 2 2h2V8z"/>
</Svg>);
});
Icon.displayName = 'FileWord2Fill';
/**
* Remix Icon: File Word 2 Fill
* @see {@link https://remixicon.com/icon/file-word-2-fill Remix Icon Docs}
*/
export const FileWord2Fill = Icon;