remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 578 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDragMoveLine = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="m12 2 4.243 4.243-1.415 1.414L12 4.828 9.172 7.657 7.757 6.243zM2 12l4.243-4.243 1.414 1.415L4.828 12l2.829 2.828-1.414 1.415zm20 0-4.243 4.243-1.414-1.415L19.172 12l-2.829-2.828 1.414-1.415zm-10 2a2 2 0 1 1 0-4 2 2 0 0 1 0 4m0 8-4.243-4.243 1.415-1.414L12 19.172l2.828-2.829 1.415 1.414z" />
</Svg>
);
export default SvgDragMoveLine;