-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrightnessUp.js
14 lines (12 loc) · 902 Bytes
/
BrightnessUp.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from "react";
import Svg, { Path } from "react-native-svg";
const BrightnessUp = ({ color, ...props }) => (
<Svg viewBox="0 0 64 64" {...props}>
<Path
className="st0"
d="M18.6 21.5c.8-1 1.8-2 2.8-2.8l-9.3-9.3c-.8-.8-2-.8-2.8 0-.8.8-.8 2 0 2.8l9.3 9.3zm0 21l-9.3 9.3c-.8.8-.8 2 0 2.8.8.8 2 .8 2.8 0l9.3-9.3c-1-.8-1.9-1.7-2.8-2.8zM34 15.1V2c0-1.1-.9-2-2-2s-2 .9-2 2v13.1c.7-.1 1.3-.1 2-.1s1.3 0 2 .1zm11.4 6.4l9.3-9.3c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0l-9.3 9.3c1 .8 1.9 1.7 2.8 2.8zM15 32c0-.7 0-1.3.1-2H2c-1.1 0-2 .9-2 2s.9 2 2 2h13.1c-.1-.7-.1-1.3-.1-2zm47-2H48.9c.1.7.1 1.3.1 2s0 1.3-.1 2H62c1.1 0 2-.9 2-2s-.9-2-2-2zM30 48.9V62c0 1.1.9 2 2 2s2-.9 2-2V48.9c-.7.1-1.3.1-2 .1s-1.3 0-2-.1zm15.4-6.4c-.8 1-1.8 2-2.8 2.8l9.3 9.3c.8.8 2 .8 2.8 0 .8-.8.8-2 0-2.8l-9.3-9.3z"
/>
<Circle className="st0" cx={32} cy={32} r={14} />
</Svg>
);
export default BrightnessUp;