UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 393 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgDragMove2Fill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M18 11V8l4 4-4 4v-3h-5v5h3l-4 4-4-4h3v-5H6v3l-4-4 4-4v3h5V6H8l4-4 4 4h-3v5z" /> </Svg> ); } export default SvgDragMove2Fill;