UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 587 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgBallPenLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M17.849 11.808l-.707-.707-9.9 9.9H3v-4.243L14.313 5.444l5.657 5.657a1 1 0 010 1.414l-7.07 7.071-1.415-1.414 6.364-6.364zm-2.121-2.121l-1.415-1.414L5 17.586v1.415h1.414l9.314-9.314zm2.828-7.071l2.829 2.828a1 1 0 010 1.414L19.97 8.273 15.728 4.03l1.414-1.414a1 1 0 011.414 0z" /> </Svg> ); } export default SvgBallPenLine;