-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBold.js
13 lines (11 loc) · 1.07 KB
/
Bold.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 Bold = ({ color, ...props }) => (
<Svg viewBox="0 0 52 63" {...props}>
<Path
d="M50.6 38.1c-1-1.9-2.2-3.4-3.7-4.6s-3.2-2.2-5.1-2.8c-1.9-.6-3.8-1.1-5.7-1.3V29c1.9-.4 3.6-.9 5.2-1.8 1.6-.8 3-1.9 4.2-3.1s2.1-2.7 2.8-4.3 1-3.4 1-5.2c0-3-.6-5.4-1.8-7.4-1.2-1.9-2.9-3.4-4.9-4.5-2-1.1-4.4-1.8-7-2.2-2.7-.3-5.5-.5-8.3-.5-2.6 0-4.9.1-6.9.3s-4.1.3-6.3.3H0v3.3c1.1.6 2.2 1.1 3.5 1.5 1.3.4 2.5.8 3.7 1v49.9c-1.2.1-2.4.4-3.6.9-1.2.5-2.4 1-3.6 1.7v3.3h10.5c.9 0 2.1 0 3.5.1s2.8.1 4.3.2l4.4.2c1.5.1 2.8.1 4 .1 3.3 0 6.4-.3 9.5-1 3-.7 5.8-1.7 8.1-3.2 2.4-1.5 4.3-3.3 5.7-5.6s2.1-5 2.1-8.2c-.1-2.6-.6-4.8-1.5-6.7zm-30.7-32c.8-.1 1.6-.2 2.5-.3.9-.1 2-.1 3.3-.1 3 0 5.5.9 7.5 2.6 1.9 1.7 2.9 4.5 2.9 8.2 0 2.5-.7 4.8-2.1 6.7-1.4 2-3.2 3.4-5.5 4.4-.9.1-1.8.2-2.8.3-1 .1-2 .1-3 .1h-2.8V6.1zm15.3 47.6c-2.1 2.2-5 3.3-8.7 3.3-1.8 0-3.2-.1-4.1-.2-.9-.1-1.8-.3-2.6-.4V33.8h4.7c2 0 3.8.2 5.5.5s3.2.9 4.4 1.8c1.2.9 2.2 2 2.9 3.4.7 1.4 1.1 3.3 1.1 5.5 0 3.6-1.1 6.5-3.2 8.7z"
fill={color}
/>
</Svg>
);
export default Bold;