react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 573 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgDragDropLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M16 13l6.964 4.062-2.973.85 2.125 3.681-1.732 1-2.125-3.68-2.223 2.15L16 13zm-2-7h2v2h5a1 1 0 011 1v4h-2v-3H10v10h4v2H9a1 1 0 01-1-1v-5H6v-2h2V9a1 1 0 011-1h5V6zM4 14v2H2v-2h2zm0-4v2H2v-2h2zm0-4v2H2V6h2zm0-4v2H2V2h2zm4 0v2H6V2h2zm4 0v2h-2V2h2zm4 0v2h-2V2h2z" />
</Svg>
);
}
export default SvgDragDropLine;