@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 616 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"/>
</Svg>);
};
Icon.displayName = 'ArrowRightLine';
/**
* Remix Icon: Arrow Right Line
* @see {@link https://remixicon.com/icon/arrow-right-line Remix Icon Docs}
*/
export const ArrowRightLine = memo(Icon);