@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 572 B
JavaScript
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="M11.637 13.052 5.98 7.395 7.394 5.98l5.657 5.657L18 6.687v11.314H6.687z"/>
</Svg>);
});
Icon.displayName = 'ArrowRightDownFill';
/**
* Remix Icon: Arrow Right Down Fill
* @see {@link https://remixicon.com/icon/arrow-right-down-fill Remix Icon Docs}
*/
export const ArrowRightDownFill = Icon;