UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 660 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const ContractLeftRightLine = /* @__PURE__ */ memo(function ContractLeftRightLine(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M18.793 5.793 12.586 12l6.207 6.207 1.414-1.414L15.414 12l4.793-4.793zM5.207 18.207 11.414 12 5.207 5.793 3.793 7.207 8.586 12l-4.793 4.793z"/> </Svg>); }); /** * Remix Icon: Contract Left Right Line * @see {@link https://remixicon.com/icon/contract-left-right-line Remix Icon Docs} */ export { ContractLeftRightLine };