@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 540 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLinkM = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m17.657 14.828-1.414-1.414L17.657 12A4 4 0 1 0 12 6.343l-1.414 1.414-1.414-1.414 1.414-1.414a6 6 0 0 1 8.485 8.485l-1.414 1.414Zm-2.828 2.829-1.415 1.414a6 6 0 0 1-8.485-8.485L6.343 9.17l1.415 1.415L6.343 12A4 4 0 0 0 12 17.657l1.415-1.415 1.414 1.415Zm0-9.9 1.414 1.414-7.071 7.072-1.414-1.415 7.07-7.07Z" />
</Svg>
);
export default SvgLinkM;