@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 573 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ArrowRightDownLine = /* @__PURE__ */ memo(function ArrowRightDownLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M14.59 16.003 5.983 7.397l1.414-1.415 8.607 8.607V7.003h2v11h-11v-2z"/>
</Svg>);
});
/**
* Remix Icon: Arrow Right Down Line
* @see {@link https://remixicon.com/icon/arrow-right-down-line Remix Icon Docs}
*/
export { ArrowRightDownLine };