@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 701 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const FileGifFill = /* @__PURE__ */ memo(function FileGifFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m16 2 5 5v13.993A1 1 0 0 1 20.007 22H3.993A1 1 0 0 1 3 21.008V2.992C3 2.444 3.447 2 3.999 2zm-3 8h-1v5h1zm-2 0H9a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1a1 1 0 0 0 1-1v-2H9v1h1v1H9a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h2zm6 0h-3v5h1v-2h2v-1h-2v-1h2z"/>
</Svg>);
});
/**
* Remix Icon: File Gif Fill
* @see {@link https://remixicon.com/icon/file-gif-fill Remix Icon Docs}
*/
export { FileGifFill };