react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 518 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgClockwise2Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M10.586 4 8.757 2.172 10.172.757 14.414 5l-4.242 4.243-1.415-1.415L10.586 6H8a3 3 0 0 0-3 3v4H3V9a5 5 0 0 1 5-5zM9 11a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H10a1 1 0 0 1-1-1zm2 1v8h8v-8z" />
</Svg>
);
export default SvgClockwise2Line;