UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 442 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgTimerLine(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.618 5.968l1.453-1.453 1.414 1.414-1.453 1.453a9 9 0 11-1.414-1.414zM12 20a7 7 0 100-14 7 7 0 000 14zM11 8h2v6h-2V8zM8 1h8v2H8V1z" /> </Svg> ); } export default SvgTimerLine;