UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 596 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const FileShredFill = /* @__PURE__ */ memo(function FileShredFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M22 12v2H2v-2h2V2.995c0-.55.445-.995.996-.995H15l5 5v5zM3 16h2v6H3zm16 0h2v6h-2zm-4 0h2v6h-2zm-4 0h2v6h-2zm-4 0h2v6H7z"/> </Svg>); }); /** * Remix Icon: File Shred Fill * @see {@link https://remixicon.com/icon/file-shred-fill Remix Icon Docs} */ export { FileShredFill };