UNPKG

react-native-feather

Version:
10 lines (9 loc) 397 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgRotateCcw(props) { return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}> <Path d="M1 4v6h6"/> <Path d="M3.51 15a9 9 0 102.13-9.36L1 10"/> </Svg>); } export default SvgRotateCcw;