UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 569 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_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>); }); Icon.displayName = 'ArrowRightDownLine'; /** * Remix Icon: Arrow Right Down Line * @see {@link https://remixicon.com/icon/arrow-right-down-line Remix Icon Docs} */ export const ArrowRightDownLine = Icon;