@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 730 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="M18.793 5.79285 12.5859 12 18.793 18.2071 20.2072 16.7928 15.4143 12 20.2072 7.20706 18.793 5.79285ZM5.20694 18.2072 11.414 12.0001 5.20694 5.793 3.79272 7.20721 8.58562 12.0001 3.79272 16.793 5.20694 18.2072Z"/>
</Svg>);
};
Icon.displayName = 'ContractLeftRightLine';
/**
* Remix Icon: Contract Left Right Line
* @see {@link https://remixicon.com/icon/contract-left-right-line Remix Icon Docs}
*/
export const ContractLeftRightLine = memo(Icon);