@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 714 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m17.657 14.828-1.415-1.414L17.658 12A4 4 0 1 0 12 6.343l-1.414 1.414L9.17 6.343l1.415-1.414a6 6 0 0 1 8.485 8.485zm-2.829 2.829-1.414 1.414a6 6 0 0 1-8.485-8.485l1.414-1.414 1.414 1.414L6.343 12A4 4 0 0 0 12 17.657l1.414-1.414zm0-9.9 1.415 1.415-7.072 7.07-1.414-1.414z"/>
</Svg>);
});
Icon.displayName = 'LinkM';
/**
* Remix Icon: Link M
* @see {@link https://remixicon.com/icon/link-m Remix Icon Docs}
*/
export const LinkM = Icon;