UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 590 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const ArrowLeftDownLongFill = /* @__PURE__ */ memo(function ArrowLeftDownLongFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m19.778 5.636-1.414-1.414-9.607 9.606L4.93 10v9.071H14l-3.828-3.828z"/> </Svg>); }); /** * Remix Icon: Arrow Left Down Long Fill * @see {@link https://remixicon.com/icon/arrow-left-down-long-fill Remix Icon Docs} */ export { ArrowLeftDownLongFill };