@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 671 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const FilePpt2Fill = /* @__PURE__ */ memo(function FilePpt2Fill(_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-.99M5 8v8h2v-2h6V8zm2 2h4v2H7z"/>
</Svg>);
});
/**
* Remix Icon: File Ppt 2 Fill
* @see {@link https://remixicon.com/icon/file-ppt-2-fill Remix Icon Docs}
*/
export { FilePpt2Fill };