react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 524 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAnticlockwiseLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11 9h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1m1 2v8h8v-8zm-6-.414 1.828-1.829 1.415 1.415L5 14.414.757 10.172l1.415-1.415L4 10.586V8a5 5 0 0 1 5-5h4v2H9a3 3 0 0 0-3 3z" />
</Svg>
);
export default SvgAnticlockwiseLine;