@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 652 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.5858 5H14V3H21V10H19V6.41421L14.7071 10.7071L13.2929 9.29289L17.5858 5ZM3 14H5V17.5858L9.29289 13.2929L10.7071 14.7071L6.41421 19H10V21H3V14Z"/>
</Svg>);
};
Icon.displayName = 'ExpandDiagonalLine';
/**
* Remix Icon: Expand Diagonal Line
* @see {@link https://remixicon.com/icon/expand-diagonal-line Remix Icon Docs}
*/
export const ExpandDiagonalLine = memo(Icon);