UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 569 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgRemoteControlLine(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 12a1 1 0 011 1v9h-2v-8H8v8H6v-9a1 1 0 011-1h10zm-5 4v2h-2v-2h2zm0-10a6 6 0 015.368 3.316l-1.79.895a4 4 0 00-7.157 0l-1.789-.895A6 6 0 0112 6zm0-4a10 10 0 018.946 5.527l-1.789.895A8 8 0 0012 4a8 8 0 00-7.157 4.422l-1.79-.895A10 10 0 0112 2z" /> </Svg> ); } export default SvgRemoteControlLine;