UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 575 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const File4Fill = /* @__PURE__ */ memo(function File4Fill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M21 15h-7v7H3.998C3.447 22 3 21.545 3 21.008V2.992C3 2.444 3.445 2 3.993 2h16.014A1 1 0 0 1 21 3.007zm0 2-5 4.997V17z"/> </Svg>); }); /** * Remix Icon: File 4 Fill * @see {@link https://remixicon.com/icon/file-4-fill Remix Icon Docs} */ export { File4Fill };