UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 531 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const ArrowUpLongFill = /* @__PURE__ */ memo(function ArrowUpLongFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M11 22h2V8.414h5.414L12 2 5.586 8.414H11z"/> </Svg>); }); /** * Remix Icon: Arrow Up Long Fill * @see {@link https://remixicon.com/icon/arrow-up-long-fill Remix Icon Docs} */ export { ArrowUpLongFill };