@bigbinary/neeto-icons-rn 1.20.36 → 1.20.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/misc/StripeTypeface.js +19 -0
- package/dist/misc/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgStripeTypeface = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={props.size}
|
|
7
|
+
height={props.size}
|
|
8
|
+
fill="none"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<Path
|
|
12
|
+
fill="#635BFF"
|
|
13
|
+
fillRule="evenodd"
|
|
14
|
+
d="M99 51.117c0-6.969-3.376-12.468-9.827-12.468-6.48 0-10.4 5.499-10.4 12.413 0 8.194 4.629 12.332 11.27 12.332 3.24 0 5.69-.735 7.541-1.77V56.18c-1.85.926-3.974 1.497-6.669 1.497-2.64 0-4.982-.925-5.281-4.137h13.311c0-.354.055-1.77.055-2.423M85.552 48.53c0-3.076 1.878-4.356 3.594-4.356 1.66 0 3.43 1.28 3.43 4.356zm-17.286-9.882c-2.668 0-4.383 1.252-5.335 2.123l-.354-1.687h-5.99v31.74l6.806-1.442.028-7.704c.98.708 2.422 1.715 4.818 1.715 4.873 0 9.31-3.92 9.31-12.55-.027-7.894-4.519-12.195-9.283-12.195m-1.633 18.756c-1.606 0-2.56-.572-3.212-1.28l-.028-10.099c.708-.79 1.688-1.334 3.24-1.334 2.477 0 4.192 2.777 4.192 6.343 0 3.648-1.688 6.37-4.192 6.37m-19.41-20.362 6.833-1.47v-5.526l-6.833 1.443zm0 2.069h6.833v23.82h-6.833zm-7.322 2.014-.436-2.014h-5.88v23.82h6.806V46.787c1.606-2.096 4.328-1.714 5.172-1.415v-6.261c-.871-.327-4.056-.926-5.662 2.014m-13.612-7.921-6.642 1.415-.027 21.805c0 4.03 3.022 6.996 7.05 6.996 2.233 0 3.866-.408 4.764-.898v-5.526c-.87.354-5.172 1.606-5.172-2.423V44.91h5.172v-5.798h-5.172zM7.887 46.026c0-1.061.871-1.47 2.314-1.47 2.069 0 4.682.626 6.751 1.742v-6.397c-2.26-.898-4.491-1.252-6.75-1.252C4.674 38.65 1 41.535 1 46.353c0 7.513 10.344 6.316 10.344 9.555 0 1.252-1.088 1.66-2.613 1.66-2.26 0-5.145-.925-7.432-2.177v6.479a18.9 18.9 0 0 0 7.432 1.551c5.662 0 9.555-2.804 9.555-7.676-.027-8.113-10.399-6.67-10.399-9.719"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
/>
|
|
17
|
+
</Svg>
|
|
18
|
+
);
|
|
19
|
+
export default SvgStripeTypeface;
|
package/dist/misc/index.js
CHANGED
|
@@ -26,6 +26,7 @@ export { default as Safari } from "./Safari";
|
|
|
26
26
|
export { default as Shopify } from "./Shopify";
|
|
27
27
|
export { default as Slack } from "./Slack";
|
|
28
28
|
export { default as Stripe } from "./Stripe";
|
|
29
|
+
export { default as StripeTypeface } from "./StripeTypeface";
|
|
29
30
|
export { default as Teams } from "./Teams";
|
|
30
31
|
export { default as Trello } from "./Trello";
|
|
31
32
|
export { default as Twilio } from "./Twilio";
|