@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 670 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="M4.99989 10.0001L4.99976 19L6.99976 19L6.99986 12.0001L17.1717 12L13.222 15.9498L14.6362 17.364L21.0001 11L14.6362 4.63605L13.222 6.05026L17.1717 10L4.99989 10.0001Z"/>
</Svg>);
};
Icon.displayName = 'CornerUpRightLine';
/**
* Remix Icon: Corner Up Right Line
* @see {@link https://remixicon.com/icon/corner-up-right-line Remix Icon Docs}
*/
export const CornerUpRightLine = memo(Icon);