-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCogF.js
13 lines (11 loc) · 798 Bytes
/
CogF.js
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from "react";
import Svg, { Path } from "react-native-svg";
const CogF = ({ color, ...props }) => (
<Svg viewBox="0 0 64 64" {...props}>
<Path
d="M57 32c0-3.7 2.6-6.9 6.1-7.8-.8-3.1-2-6-3.6-8.7-3.1 1.8-7.1 1.4-9.8-1.2s-3.1-6.7-1.2-9.8c-2.7-1.6-5.6-2.8-8.7-3.6C38.9 4.4 35.7 7 32 7S25.1 4.4 24.2.9c-3.1.8-6 2-8.7 3.6 1.8 3.1 1.4 7.1-1.2 9.8s-6.7 3.1-9.8 1.2c-1.6 2.7-2.8 5.6-3.6 8.7C4.4 25.1 7 28.3 7 32S4.4 38.9.9 39.8c.8 3.1 2 6 3.6 8.7 3.1-1.8 7.1-1.4 9.8 1.2s3.1 6.7 1.2 9.8c2.7 1.6 5.6 2.8 8.7 3.6.9-3.5 4-6.1 7.8-6.1s6.9 2.6 7.8 6.1c3.1-.8 6-2 8.7-3.6-1.8-3.1-1.4-7.1 1.2-9.8s6.7-3.1 9.8-1.2c1.6-2.7 2.8-5.6 3.6-8.7-3.5-.9-6.1-4.1-6.1-7.8zM32 44c-6.6 0-12-5.4-12-12s5.4-12 12-12 12 5.4 12 12-5.4 12-12 12z"
fill={color}
/>
</Svg>
);
export default CogF;