UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

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