@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 680 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="M17.1717 11L12.5148 6.34317L13.929 4.92896L21.0001 12L13.929 19.0711L12.5148 17.6569L17.1716 13L7.9998 13.0002L7.99978 11.0002L17.1717 11ZM3.99985 19L3.99985 4.99997H5.99985V19H3.99985Z"/>
</Svg>);
};
Icon.displayName = 'ExpandRightLine';
/**
* Remix Icon: Expand Right Line
* @see {@link https://remixicon.com/icon/expand-right-line Remix Icon Docs}
*/
export const ExpandRightLine = memo(Icon);