@thesvg/react 3.0.15 → 3.0.16

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.
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — KDE Connect
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const KdeConnect = react_1.forwardRef(function KdeConnect({ viewBox = '0 0 32 32', ...props }, ref) {
10
+ return react_1.createElement(
11
+ 'svg',
12
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[{"type":"defs","props":{},"children":[{"type":"linearGradient","props":{"href":"#a","id":"d","x2":"0","y1":"545.798","y2":"517.798","gradientTransform":"matrix(8.71458 0 0 9.23253 -3261.094 -4952.587)","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"a"},"children":[{"type":"stop","props":{},"children":[]},{"type":"stop","props":{"offset":"1"},"children":[]}]},{"type":"linearGradient","props":{"href":"#b","id":"e","x1":"393.571","x2":"407.571","y1":"524.798","y2":"538.798","gradientTransform":"matrix(8.71458 0 0 9.23253 -3261.094 -4952.587)","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"b"},"children":[{"type":"stop","props":{},"children":[]},{"type":"stop","props":{"offset":"1"},"children":[]}]},{"type":"linearGradient","props":{"href":"#c","id":"f","x2":"0","y1":"543.798","y2":"518.798","gradientTransform":"matrix(7.95678 0 0 8.8311 -2954.89 -4734.694)","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"c"},"children":[{"type":"stop","props":{},"children":[]},{"type":"stop","props":{"offset":"1"},"children":[]}]},{"type":"radialGradient","props":{"id":"g","cx":"49","cy":"34.526","r":"49","gradientTransform":"matrix(.27205 .09927 -.08841 .2423 390.266 518.424)","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"offset":"0","stopColor":"#f2f2f2"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#f2f2f2","stopOpacity":"0"},"children":[]}]}]},{"type":"g","props":{"transform":"translate(-10.496 20.93)scale(.11534)"},"children":[{"type":"rect","props":{"width":"139.433","height":"258.511","x":"160","y":"-172","ry":"7.386"},"children":[]},{"type":"path","props":{"d":"M290.718-144.302 168.714 58.814l26.144 27.697h104.575v-221.58Z"},"children":[]},{"type":"path","props":{"d":"M168.714-144.302h122.004V58.814H168.714z"},"children":[]},{"type":"rect","props":{"width":"52.287","height":"9.233","x":"203.573","y":"-162.767","ry":"3.735"},"children":[]},{"type":"path","props":{"fill":"url(#g)","d":"M200.083-75.836c-.187.027-.388.073-.528.211l-6.491 6.491a.83.83 0 0 0-.108 1.023l7.585 12.524a32.3 32.3 0 0 0-3.21 7.267l-13.936 2.893a.87.87 0 0 0-.67.847v9.172c0 .388.294.72.67.812l13.512 3.28a32.7 32.7 0 0 0 3.316 8.432l-7.832 11.925a.84.84 0 0 0 .108 1.058l6.492 6.491a.83.83 0 0 0 1.022.108l12.277-7.443a32.5 32.5 0 0 0 7.762 3.245l2.857 13.76c.083.388.415.67.812.67h9.172a.83.83 0 0 0 .812-.636l3.387-13.83a32.3 32.3 0 0 0 7.973-3.35l12.1 7.937a.846.846 0 0 0 1.06-.108l6.455-6.491a.83.83 0 0 0 .142-1.023l-4.41-7.267-1.447.459a.54.54 0 0 1-.565-.213s-2.786-4.097-6.42-9.42c-4.348 8.508-13.214 14.324-23.426 14.324-14.51 0-26.283-11.772-26.283-26.283 0-10.673 6.383-19.84 15.523-23.954V-69.7a32.3 32.3 0 0 0-4.798 2.117c-.003-.002.003-.037 0-.037l-12.383-8.114c-.166-.108-.342-.126-.528-.108zm37.431-16.582-16.51 1.588v68.018l16.334-2.47v-29l21.979 32.175 17.216-5.468-22.508-30.94 22.684-29.175-17.569-4.022-21.802 29.176z"},"children":[]}]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ KdeConnect.displayName = 'KdeConnect';
21
+
22
+ exports.default = KdeConnect;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — KDE Connect
2
+ // Auto-generated. Do not edit.
3
+
4
+ import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
5
+
6
+ export type SvgIconProps = SVGProps<SVGSVGElement>;
7
+
8
+ declare const KdeConnect: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default KdeConnect;
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — KDE Connect
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const KdeConnect = forwardRef(
7
+ function KdeConnect({ viewBox = '0 0 32 32', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"defs","props":{},"children":[{"type":"linearGradient","props":{"href":"#a","id":"d","x2":"0","y1":"545.798","y2":"517.798","gradientTransform":"matrix(8.71458 0 0 9.23253 -3261.094 -4952.587)","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"a"},"children":[{"type":"stop","props":{},"children":[]},{"type":"stop","props":{"offset":"1"},"children":[]}]},{"type":"linearGradient","props":{"href":"#b","id":"e","x1":"393.571","x2":"407.571","y1":"524.798","y2":"538.798","gradientTransform":"matrix(8.71458 0 0 9.23253 -3261.094 -4952.587)","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"b"},"children":[{"type":"stop","props":{},"children":[]},{"type":"stop","props":{"offset":"1"},"children":[]}]},{"type":"linearGradient","props":{"href":"#c","id":"f","x2":"0","y1":"543.798","y2":"518.798","gradientTransform":"matrix(7.95678 0 0 8.8311 -2954.89 -4734.694)","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"c"},"children":[{"type":"stop","props":{},"children":[]},{"type":"stop","props":{"offset":"1"},"children":[]}]},{"type":"radialGradient","props":{"id":"g","cx":"49","cy":"34.526","r":"49","gradientTransform":"matrix(.27205 .09927 -.08841 .2423 390.266 518.424)","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"offset":"0","stopColor":"#f2f2f2"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#f2f2f2","stopOpacity":"0"},"children":[]}]}]},{"type":"g","props":{"transform":"translate(-10.496 20.93)scale(.11534)"},"children":[{"type":"rect","props":{"width":"139.433","height":"258.511","x":"160","y":"-172","ry":"7.386"},"children":[]},{"type":"path","props":{"d":"M290.718-144.302 168.714 58.814l26.144 27.697h104.575v-221.58Z"},"children":[]},{"type":"path","props":{"d":"M168.714-144.302h122.004V58.814H168.714z"},"children":[]},{"type":"rect","props":{"width":"52.287","height":"9.233","x":"203.573","y":"-162.767","ry":"3.735"},"children":[]},{"type":"path","props":{"fill":"url(#g)","d":"M200.083-75.836c-.187.027-.388.073-.528.211l-6.491 6.491a.83.83 0 0 0-.108 1.023l7.585 12.524a32.3 32.3 0 0 0-3.21 7.267l-13.936 2.893a.87.87 0 0 0-.67.847v9.172c0 .388.294.72.67.812l13.512 3.28a32.7 32.7 0 0 0 3.316 8.432l-7.832 11.925a.84.84 0 0 0 .108 1.058l6.492 6.491a.83.83 0 0 0 1.022.108l12.277-7.443a32.5 32.5 0 0 0 7.762 3.245l2.857 13.76c.083.388.415.67.812.67h9.172a.83.83 0 0 0 .812-.636l3.387-13.83a32.3 32.3 0 0 0 7.973-3.35l12.1 7.937a.846.846 0 0 0 1.06-.108l6.455-6.491a.83.83 0 0 0 .142-1.023l-4.41-7.267-1.447.459a.54.54 0 0 1-.565-.213s-2.786-4.097-6.42-9.42c-4.348 8.508-13.214 14.324-23.426 14.324-14.51 0-26.283-11.772-26.283-26.283 0-10.673 6.383-19.84 15.523-23.954V-69.7a32.3 32.3 0 0 0-4.798 2.117c-.003-.002.003-.037 0-.037l-12.383-8.114c-.166-.108-.342-.126-.528-.108zm37.431-16.582-16.51 1.588v68.018l16.334-2.47v-29l21.979 32.175 17.216-5.468-22.508-30.94 22.684-29.175-17.569-4.022-21.802 29.176z"},"children":[]}]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ KdeConnect.displayName = 'KdeConnect';
20
+
21
+ export default KdeConnect;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — KDE Discover
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const KdeDiscover = react_1.forwardRef(function KdeDiscover({ viewBox = '0 0 48 48', ...props }, ref) {
10
+ return react_1.createElement(
11
+ 'svg',
12
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[{"type":"defs","props":{},"children":[{"type":"linearGradient","props":{"id":"a","y1":"543.8","y2":"513.8","x2":"0","gradientUnits":"userSpaceOnUse","gradientTransform":"matrix(1.125 0 0 1-51.07 0)"},"children":[{"type":"stop","props":{"stopColor":"#197cf1"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#20bcfa"},"children":[]}]},{"type":"linearGradient","props":{"href":"#a","id":"b","y1":"44","y2":"11","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"c","y1":"10","y2":"14","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"stopColor":"#1d1e1e"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#44484c"},"children":[]}]},{"type":"linearGradient","props":{"href":"#a","id":"d","y1":"14","y2":"10","gradientUnits":"userSpaceOnUse","x2":"0"},"children":[]},{"type":"linearGradient","props":{"href":"#a","id":"e","y1":"516.8","y2":"503.8","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"f","y1":"18","y2":"15","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"stopColor":"#c6cdd1"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#e0e5e7"},"children":[]}]},{"type":"linearGradient","props":{"href":"#f","id":"g","y1":"517.8","y2":"514.8","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"h","y1":"19","y2":"3","x2":"0","gradientUnits":"userSpaceOnUse","gradientTransform":"translate(0-2)"},"children":[{"type":"stop","props":{"stopColor":"#7cbaf8"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#f4fcff"},"children":[]}]},{"type":"linearGradient","props":{"id":"i","y1":"23","x1":"16","y2":"39","x2":"32","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"stopColor":"#292c2f"},"children":[]},{"type":"stop","props":{"offset":"1","stopOpacity":"0"},"children":[]}]}]},{"type":"g","props":{"transform":"translate(-384.57-499.8)"},"children":[{"type":"path","props":{"fill":"url(#b)","fillRule":"evenodd","d":"m9 11v2l1-1zm30 0l-1 1 1 1z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"rect","props":{"width":"36","x":"390.57","y":"513.8","fill":"url(#a)","rx":"0","height":"30"},"children":[]},{"type":"path","props":{"opacity":".2","fill":"url(#i)","d":"m20.707 23.293l-1.414 1.414 8 8-.293.293 11 11h4v-6l-10-10-3.293 3.293zm-2.146 6.146l-2.121 2.121 5.5 5.5-1.354 1.354 5.586 5.586h6.951z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"rect","props":{"width":"36","x":"390.57","y":"542.8","fill":"#1c5593","height":"1"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","fill":"url(#d)","d":"m10 10l-1 1 1 1-4 2h36l-4-2 1-1-1-1h-14z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","d":"m10 10l-1 1 1 1-4 2h36l-4-2 1-1-1-1h-14z","opacity":".6","fill":"url(#c)","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"opacity":".2","d":"m10 10l-1 1h30l-1-1h-14z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"fill":"url(#e)","d":"m400.57 516.8v-5c0-4.432 3.568-8 8-8 4.432 0 8 3.568 8 8v5h-1v-5c0-3.878-3.122-7-7-7-3.878 0-7 3.122-7 7v5z"},"children":[]},{"type":"path","props":{"fill":"url(#g)","d":"m401.07143 514.798a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1 -1.5 1.5 1.5 1.5 0 0 1 -1.5 -1.5 1.5 1.5 0 0 1 1.5 -1.5m0 1a.5 .5 0 0 0 -.5 .5 .5 .5 0 0 0 .5 .5 .5 .5 0 0 0 .5 -.5 .5 .5 0 0 0 -.5 -.5"},"children":[]},{"type":"path","props":{"fill":"url(#f)","d":"M31.5 15A1.5 1.5 0 0 0 30 16.5 1.5 1.5 0 0 0 31.5 18 1.5 1.5 0 0 0 33 16.5 1.5 1.5 0 0 0 31.5 15M31.5 16A.5 .5 0 0 1 32 16.5 .5 .5 0 0 1 31.5 17 .5 .5 0 0 1 31 16.5 .5 .5 0 0 1 31.5 16","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"fill":"url(#h)","d":"m7 3c-.554 0-1 .446-1 1 0 .554.446 1 1 1 .554 0 1-.446 1-1 0-.554-.446-1-1-1m7 0l-2 2 3 3-3 3 2 2 5-5zm-9.5 6c-.831 0-1.5.669-1.5 1.5 0 .831.669 1.5 1.5 1.5.831 0 1.5-.669 1.5-1.5 0-.831-.669-1.5-1.5-1.5m4.5 6c-1.108 0-2 .892-2 2 0 1.108.892 2 2 2 1.108 0 2-.892 2-2 0-1.108-.892-2-2-2","transform":"translate(397.57 519.8)"},"children":[]}]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ KdeDiscover.displayName = 'KdeDiscover';
21
+
22
+ exports.default = KdeDiscover;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — KDE Discover
2
+ // Auto-generated. Do not edit.
3
+
4
+ import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
5
+
6
+ export type SvgIconProps = SVGProps<SVGSVGElement>;
7
+
8
+ declare const KdeDiscover: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default KdeDiscover;
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — KDE Discover
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const KdeDiscover = forwardRef(
7
+ function KdeDiscover({ viewBox = '0 0 48 48', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"defs","props":{},"children":[{"type":"linearGradient","props":{"id":"a","y1":"543.8","y2":"513.8","x2":"0","gradientUnits":"userSpaceOnUse","gradientTransform":"matrix(1.125 0 0 1-51.07 0)"},"children":[{"type":"stop","props":{"stopColor":"#197cf1"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#20bcfa"},"children":[]}]},{"type":"linearGradient","props":{"href":"#a","id":"b","y1":"44","y2":"11","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"c","y1":"10","y2":"14","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"stopColor":"#1d1e1e"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#44484c"},"children":[]}]},{"type":"linearGradient","props":{"href":"#a","id":"d","y1":"14","y2":"10","gradientUnits":"userSpaceOnUse","x2":"0"},"children":[]},{"type":"linearGradient","props":{"href":"#a","id":"e","y1":"516.8","y2":"503.8","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"f","y1":"18","y2":"15","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"stopColor":"#c6cdd1"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#e0e5e7"},"children":[]}]},{"type":"linearGradient","props":{"href":"#f","id":"g","y1":"517.8","y2":"514.8","x2":"0","gradientUnits":"userSpaceOnUse"},"children":[]},{"type":"linearGradient","props":{"id":"h","y1":"19","y2":"3","x2":"0","gradientUnits":"userSpaceOnUse","gradientTransform":"translate(0-2)"},"children":[{"type":"stop","props":{"stopColor":"#7cbaf8"},"children":[]},{"type":"stop","props":{"offset":"1","stopColor":"#f4fcff"},"children":[]}]},{"type":"linearGradient","props":{"id":"i","y1":"23","x1":"16","y2":"39","x2":"32","gradientUnits":"userSpaceOnUse"},"children":[{"type":"stop","props":{"stopColor":"#292c2f"},"children":[]},{"type":"stop","props":{"offset":"1","stopOpacity":"0"},"children":[]}]}]},{"type":"g","props":{"transform":"translate(-384.57-499.8)"},"children":[{"type":"path","props":{"fill":"url(#b)","fillRule":"evenodd","d":"m9 11v2l1-1zm30 0l-1 1 1 1z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"rect","props":{"width":"36","x":"390.57","y":"513.8","fill":"url(#a)","rx":"0","height":"30"},"children":[]},{"type":"path","props":{"opacity":".2","fill":"url(#i)","d":"m20.707 23.293l-1.414 1.414 8 8-.293.293 11 11h4v-6l-10-10-3.293 3.293zm-2.146 6.146l-2.121 2.121 5.5 5.5-1.354 1.354 5.586 5.586h6.951z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"rect","props":{"width":"36","x":"390.57","y":"542.8","fill":"#1c5593","height":"1"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","fill":"url(#d)","d":"m10 10l-1 1 1 1-4 2h36l-4-2 1-1-1-1h-14z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","d":"m10 10l-1 1 1 1-4 2h36l-4-2 1-1-1-1h-14z","opacity":".6","fill":"url(#c)","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"opacity":".2","d":"m10 10l-1 1h30l-1-1h-14z","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"fill":"url(#e)","d":"m400.57 516.8v-5c0-4.432 3.568-8 8-8 4.432 0 8 3.568 8 8v5h-1v-5c0-3.878-3.122-7-7-7-3.878 0-7 3.122-7 7v5z"},"children":[]},{"type":"path","props":{"fill":"url(#g)","d":"m401.07143 514.798a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1 -1.5 1.5 1.5 1.5 0 0 1 -1.5 -1.5 1.5 1.5 0 0 1 1.5 -1.5m0 1a.5 .5 0 0 0 -.5 .5 .5 .5 0 0 0 .5 .5 .5 .5 0 0 0 .5 -.5 .5 .5 0 0 0 -.5 -.5"},"children":[]},{"type":"path","props":{"fill":"url(#f)","d":"M31.5 15A1.5 1.5 0 0 0 30 16.5 1.5 1.5 0 0 0 31.5 18 1.5 1.5 0 0 0 33 16.5 1.5 1.5 0 0 0 31.5 15M31.5 16A.5 .5 0 0 1 32 16.5 .5 .5 0 0 1 31.5 17 .5 .5 0 0 1 31 16.5 .5 .5 0 0 1 31.5 16","transform":"translate(384.57 499.8)"},"children":[]},{"type":"path","props":{"fill":"url(#h)","d":"m7 3c-.554 0-1 .446-1 1 0 .554.446 1 1 1 .554 0 1-.446 1-1 0-.554-.446-1-1-1m7 0l-2 2 3 3-3 3 2 2 5-5zm-9.5 6c-.831 0-1.5.669-1.5 1.5 0 .831.669 1.5 1.5 1.5.831 0 1.5-.669 1.5-1.5 0-.831-.669-1.5-1.5-1.5m4.5 6c-1.108 0-2 .892-2 2 0 1.108.892 2 2 2 1.108 0 2-.892 2-2 0-1.108-.892-2-2-2","transform":"translate(397.57 519.8)"},"children":[]}]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ KdeDiscover.displayName = 'KdeDiscover';
20
+
21
+ export default KdeDiscover;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — KFC (legacy)
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const KfcLegacy = react_1.forwardRef(function KfcLegacy({ viewBox = '0 0 24 24', ...props }, ref) {
10
+ return react_1.createElement(
11
+ 'svg',
12
+ Object.assign({ ref, viewBox, fill: '#F40027', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[{"type":"title","props":{},"children":["KFC"]},{"type":"path","props":{"d":"M21.893 8.23c-4.187.001-5.249 2.365-5.42 3.97-.194 1.802 1.053 3.57 4.127 3.57 1.294 0 2.14-.225 2.44-.32a.215.215 0 00.147-.166l.173-.91a.184.184 0 00-.236-.21c-.336.106-.93.252-1.685.252-1.469 0-2.53-.882-2.395-2.4.13-1.47 1.121-2.59 2.485-2.59.82 0 1.183.43 1.156 1.003v.033a.184.184 0 00.182.193h.557c.086 0 .16-.06.18-.143l.39-1.76a.215.215 0 00-.15-.255 7.21 7.21 0 00-1.95-.266zm-20.157.116a.2.2 0 00-.195.156l-.108.484a.198.198 0 00.13.23l.033.01c.208.082.45.266.348.748l-.792 3.62c-.207.987-.542 1.19-.86 1.226h-.01a.2.2 0 00-.176.157l-.102.464a.192.192 0 00.187.233h3.487c.085 0 .159-.06.177-.142l.12-.543a.184.184 0 00-.112-.21l-.022-.01c-.177-.07-.418-.224-.356-.51l.405-1.85c1.389 2.535 1.848 3.266 3.514 3.265H8.91a.181.181 0 00.177-.142l.105-.47a.195.195 0 00-.186-.238c-.376-.006-.56-.093-.935-.575l-1.932-2.614 2.51-2.088c.337-.264.748-.338.976-.368l.022-.002a.185.185 0 00.163-.144l.103-.464a.184.184 0 00-.18-.223h-3.02a.199.199 0 00-.193.155l-.102.46a.2.2 0 00.138.235c.178.069.217.24.063.366L4.046 11.7l.44-2.014a.683.683 0 01.477-.487l.025-.008a.199.199 0 00.135-.147l.106-.477a.181.181 0 00-.177-.22zm8.88 0a.2.2 0 00-.194.156l-.107.483a.19.19 0 00.122.221l.02.008c.204.077.487.274.364.758l-1.21 5.48a.182.182 0 00.178.222h2.777c.086 0 .16-.06.179-.143l.12-.547a.174.174 0 00-.098-.196 1.558 1.558 0 01-.027-.013c-.176-.086-.438-.285-.35-.67.009-.05.27-1.24.27-1.24h2.362c.086 0 .16-.06.18-.143l.221-1a.183.183 0 00-.18-.224h-2.28l.427-1.94 1.592-.003c.515 0 .672.27.642.728l-.002.024a.184.184 0 00.183.205h.587c.086 0 .16-.06.178-.144l.4-1.8a.184.184 0 00-.18-.222z"},"children":[]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ KfcLegacy.displayName = 'KfcLegacy';
21
+
22
+ exports.default = KfcLegacy;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — KFC (legacy)
2
+ // Auto-generated. Do not edit.
3
+
4
+ import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
5
+
6
+ export type SvgIconProps = SVGProps<SVGSVGElement>;
7
+
8
+ declare const KfcLegacy: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default KfcLegacy;
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — KFC (legacy)
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const KfcLegacy = forwardRef(
7
+ function KfcLegacy({ viewBox = '0 0 24 24', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: '#F40027', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"title","props":{},"children":["KFC"]},{"type":"path","props":{"d":"M21.893 8.23c-4.187.001-5.249 2.365-5.42 3.97-.194 1.802 1.053 3.57 4.127 3.57 1.294 0 2.14-.225 2.44-.32a.215.215 0 00.147-.166l.173-.91a.184.184 0 00-.236-.21c-.336.106-.93.252-1.685.252-1.469 0-2.53-.882-2.395-2.4.13-1.47 1.121-2.59 2.485-2.59.82 0 1.183.43 1.156 1.003v.033a.184.184 0 00.182.193h.557c.086 0 .16-.06.18-.143l.39-1.76a.215.215 0 00-.15-.255 7.21 7.21 0 00-1.95-.266zm-20.157.116a.2.2 0 00-.195.156l-.108.484a.198.198 0 00.13.23l.033.01c.208.082.45.266.348.748l-.792 3.62c-.207.987-.542 1.19-.86 1.226h-.01a.2.2 0 00-.176.157l-.102.464a.192.192 0 00.187.233h3.487c.085 0 .159-.06.177-.142l.12-.543a.184.184 0 00-.112-.21l-.022-.01c-.177-.07-.418-.224-.356-.51l.405-1.85c1.389 2.535 1.848 3.266 3.514 3.265H8.91a.181.181 0 00.177-.142l.105-.47a.195.195 0 00-.186-.238c-.376-.006-.56-.093-.935-.575l-1.932-2.614 2.51-2.088c.337-.264.748-.338.976-.368l.022-.002a.185.185 0 00.163-.144l.103-.464a.184.184 0 00-.18-.223h-3.02a.199.199 0 00-.193.155l-.102.46a.2.2 0 00.138.235c.178.069.217.24.063.366L4.046 11.7l.44-2.014a.683.683 0 01.477-.487l.025-.008a.199.199 0 00.135-.147l.106-.477a.181.181 0 00-.177-.22zm8.88 0a.2.2 0 00-.194.156l-.107.483a.19.19 0 00.122.221l.02.008c.204.077.487.274.364.758l-1.21 5.48a.182.182 0 00.178.222h2.777c.086 0 .16-.06.179-.143l.12-.547a.174.174 0 00-.098-.196 1.558 1.558 0 01-.027-.013c-.176-.086-.438-.285-.35-.67.009-.05.27-1.24.27-1.24h2.362c.086 0 .16-.06.18-.143l.221-1a.183.183 0 00-.18-.224h-2.28l.427-1.94 1.592-.003c.515 0 .672.27.642.728l-.002.024a.184.184 0 00.183.205h.587c.086 0 .16-.06.178-.144l.4-1.8a.184.184 0 00-.18-.222z"},"children":[]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ KfcLegacy.displayName = 'KfcLegacy';
20
+
21
+ export default KfcLegacy;
package/dist/kfc.cjs CHANGED
@@ -6,11 +6,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
 
7
7
  const react_1 = require("react");
8
8
 
9
- const Kfc = react_1.forwardRef(function Kfc({ viewBox = '0 0 24 24', ...props }, ref) {
9
+ const Kfc = react_1.forwardRef(function Kfc({ viewBox = '0 0 1683.7795276 1289.7637795', ...props }, ref) {
10
10
  return react_1.createElement(
11
11
  'svg',
12
- Object.assign({ ref, viewBox, fill: '#F40027', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
- ...[{"type":"title","props":{},"children":["KFC"]},{"type":"path","props":{"d":"M21.893 8.23c-4.187.001-5.249 2.365-5.42 3.97-.194 1.802 1.053 3.57 4.127 3.57 1.294 0 2.14-.225 2.44-.32a.215.215 0 00.147-.166l.173-.91a.184.184 0 00-.236-.21c-.336.106-.93.252-1.685.252-1.469 0-2.53-.882-2.395-2.4.13-1.47 1.121-2.59 2.485-2.59.82 0 1.183.43 1.156 1.003v.033a.184.184 0 00.182.193h.557c.086 0 .16-.06.18-.143l.39-1.76a.215.215 0 00-.15-.255 7.21 7.21 0 00-1.95-.266zm-20.157.116a.2.2 0 00-.195.156l-.108.484a.198.198 0 00.13.23l.033.01c.208.082.45.266.348.748l-.792 3.62c-.207.987-.542 1.19-.86 1.226h-.01a.2.2 0 00-.176.157l-.102.464a.192.192 0 00.187.233h3.487c.085 0 .159-.06.177-.142l.12-.543a.184.184 0 00-.112-.21l-.022-.01c-.177-.07-.418-.224-.356-.51l.405-1.85c1.389 2.535 1.848 3.266 3.514 3.265H8.91a.181.181 0 00.177-.142l.105-.47a.195.195 0 00-.186-.238c-.376-.006-.56-.093-.935-.575l-1.932-2.614 2.51-2.088c.337-.264.748-.338.976-.368l.022-.002a.185.185 0 00.163-.144l.103-.464a.184.184 0 00-.18-.223h-3.02a.199.199 0 00-.193.155l-.102.46a.2.2 0 00.138.235c.178.069.217.24.063.366L4.046 11.7l.44-2.014a.683.683 0 01.477-.487l.025-.008a.199.199 0 00.135-.147l.106-.477a.181.181 0 00-.177-.22zm8.88 0a.2.2 0 00-.194.156l-.107.483a.19.19 0 00.122.221l.02.008c.204.077.487.274.364.758l-1.21 5.48a.182.182 0 00.178.222h2.777c.086 0 .16-.06.179-.143l.12-.547a.174.174 0 00-.098-.196 1.558 1.558 0 01-.027-.013c-.176-.086-.438-.285-.35-.67.009-.05.27-1.24.27-1.24h2.362c.086 0 .16-.06.18-.143l.221-1a.183.183 0 00-.18-.224h-2.28l.427-1.94 1.592-.003c.515 0 .672.27.642.728l-.002.024a.184.184 0 00.183.205h.587c.086 0 .16-.06.178-.144l.4-1.8a.184.184 0 00-.18-.222z"},"children":[]}]
12
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[{"type":"defs","props":{},"children":[]},{"type":"path","props":{"className":"st0","d":"M1448.1389672,161.2342314c-5.9281986-6.5110454-16.777856-14.1804893-36.6193206-20.9342508-46.9936523-15.994873-142.4453125-36.6608887-336.3205566-54.6235352-33.9528809-3.1455078-70.5114746-5.8286133-110.2531738-7.6967773-39.0991211-1.3691406-80.1640625-1.7287598-123.0561523-1.7287598s-83.9570312.3596191-123.0561523,1.7287598c-39.7416382,1.8681641-76.3002319,4.5512695-110.2531128,7.6967773-193.8752441,17.9626465-289.3269043,38.6286621-336.3205566,54.6235352-19.8422873,6.7540208-30.692016,14.4237943-36.6200025,20.9349988-3.7260937,4.0926811-6.0948783,9.3025292-6.2593123,14.8348682-.0379692,1.2774632.0302595,2.6164164.2640803,3.9588928l166.097168,953.510498c1.3798828,7.6875,5.8754883,18.8359375,19.4355469,28.4023438,7.3825684,5.2080078,16.7839355,9.5712891,28.7416992,13.3378906,25.8347168,8.137207,60.3703613,11.934082,65.1862793,12.7294922,25.7056885,3.3432617,138.2849121,16.5429688,188.2658081,19.5478516,58.8847656,3.5976562,92.3552856,5.8022461,144.5185547,5.9560547,52.1633301-.1538086,85.6337891-2.3583984,144.5185547-5.9560547,49.980957-3.0048828,162.5601807-16.2045898,188.2658691-19.5478516,4.8157959-.7954102,39.3515015-4.5922852,65.1862793-12.7294922,11.9577637-3.7666016,21.3591309-8.1298828,28.7416992-13.3378906,13.5600586-9.5664062,18.0556641-20.7148438,19.4355469-28.4023438l166.0971069-953.510498c.2339322-1.3431158.3021145-2.682705.264026-3.960718-.1648705-5.5320328-2.5338596-10.7414382-6.2598788-14.8337909Z"},"children":[]},{"type":"path","props":{"className":"st1","d":"M272.5957267,302.4469731c-10.7730156-59.7995051-10.1862516-97.5983211-9.2417045-112.9141583.8327825-13.5214704,3.0633037-17.9198157,8.5370424-20.3983998,8.2065191-3.7209429,15.1625016-6.0393766,24.2617744-8.1301921,7.3110395-1.6764688,11.5894423,1.6839652,10.8002753,9.4182108-3.1505346,30.8170399-2.5855783,49.2056186-.8164267,64.7776965,4.1530084,36.5579233,16.5418401,69.3594661,34.6695107,69.3594661,22.0203493,0,21.8268057-46.0667724,17.2287834-72.6687882-2.4213389-14.0100997-8.2773942-33.0137597-26.2026619-68.0567277-3.2922848-6.4400935-1.0760749-10.7784676,5.5745994-12.5857827,18.5099872-5.020547,37.0199744-8.8423506,53.1706385-11.1273912,7.4555156-1.0542672,11.3461499-.5976679,14.9962177,2.9290499,14.1361756,13.6611761,25.4823255,44.1527363,31.761587,87.702761,17.303066,120.010631-10.390699,227.7087574-74.2055513,227.7087574-41.4339941,0-74.782093-68.5791585-90.5340846-156.0145018ZM366.4054776,760.1542988c3.1750683-7.0404874,8.0647689-8.5281831,19.0258762-7.7778611,23.3799246,1.6001417,61.4958233,2.8670342,101.7017699,4.4828503,9.0393016.3605089,12.52513-5.4383012,11.3734095-15.2633623l-17.4945417-146.3502726c-1.1033345-9.3970846-8.5833839-11.2970825-13.5603154-2.9154201-3.6527938,6.1504597-9.2934979,8.0722653-17.6199595,8.530909l-22.0412285,1.4750277-14.1252717-89.5196244c-.8402789-5.2958695-4.0759999-7.7642312-9.4127589-7.2619721l-20.502668,1.9272576c-5.5561992.5274743-8.141096,3.9151679-7.267424,9.4270702l13.6857098,85.8650286-24.128221,1.2007878-11.0810497-63.5434601c-5.9030783-34.1120507-3.986043-44.5490911-1.8045892-56.2387127,1.8045892-8.766705-.6010754-11.8047936-7.1556594-10.822083l-30.6073818,4.5918889c-7.7669572,1.1598983-9.4672782,5.1377635-7.6954006,14.8701418l46.5553053,263.9586466c1.9170352,10.5215453,8.6406291,11.1635102,12.1543987,3.3631599ZM1417.6913859,172.0257733c-9.2907719-4.8726633-19.7877835-9.1086492-31.7670389-12.2837176-7.2592461-1.9252131-11.4967595,1.2627456-10.7948234,8.7543803,1.7055464,18.2446827,4.8461487,41.8119613,1.979051,72.7151296-2.3804494,25.6683726-14.777459,63.2498959-33.9041959,63.2498959-22.675944,0-25.0734306-45.2428494-19.5935585-72.4500295,5.0341768-25.0182298,14.41695-46.7394263,26.2817148-70.2617826,3.1539421-6.2485944.8763979-10.6741994-5.8690037-12.2027845-20.5115274-4.6525416-36.2008218-8.1002065-51.8935237-10.3443576-5.3422109-.7646333-9.246475.3250714-12.4651587,4.7799805-18.2012716,25.204277-29.8833968,69.953067-35.0293381,110.2816821-15.3867122,120.684626,16.6256636,204.4378714,72.1256396,204.4378714,44.7562645,0,83.1896521-67.3756447,101.0447261-190.1408639,4.3322407-29.7736767,7.3328472-54.9644304,7.8541881-76.2978363.3414272-13.9228688-2.173276-17.2015238-7.9686786-20.2375679ZM1347.0787522,597.7869566c-2.6237418,4.4092492-6.2002085,5.7606466-11.2507411,5.7606466h-11.1750882l13.8824419-85.418151c.9063835-5.5173542-1.6791947-8.8866475-7.2428903-9.4461519-6.4182858-.8566347-12.8365715-1.4985995-19.2555388-1.9245316-5.3449368-.5349707-8.5833839,1.9742805-9.3970846,7.2865058l-13.67208,89.0058927-31.916967-.6715129,11.0790053-70.3593633c4.0432883-25.9954885,8.8995959-34.9366553,16.7953549-49.3597387,4.82087-8.809639,5.0559845-13.7974744-2.7763959-14.3167708l-49.7647232-3.4585687c-10.2264596-.6767209-14.5512038,4.9087824-15.7601695,14.7263471l-33.8212337,283.1882887c-1.14695,9.3289354,6.2683577,10.7184963,11.4033952,4.3847155,6.598881-8.2801202,11.1362505-11.0483382,26.9870584-11.2016737,33.8033351-.3277974,67.1777902-1.8536565,98.5788682-4.583711,9.0086345-.7830336,11.5260636-4.8733448,12.8583793-12.2743411l24.5522001-139.2200973c1.4549841-8.0947545-5.730661-9.4615351-10.1037911-2.1177841ZM1284.9426236,1009.4854145c1.0535857-5.7524687-3.8933602-8.3898403-9.0011381-1.9797324-5.8178919,7.3008171-8.0081028,9.3725509-22.7065087,12.403143-4.3806266.9036576-9.4545298,1.7125878-13.90535,2.5215181l36.7371397-52.2962851c16.9834465-24.6386391,23.446787-43.5064093,30.8832209-85.2402596l18.7759375-106.6690744c1.1244608-6.3092471-6.8033284-7.865092-9.5906281-.86822-3.8415669,9.634925-9.5662167,29.5501475-22.1376881,50.0800751-11.1989478,18.289184-30.8314581,42.3710447-51.1187748,65.2487101-13.9201428-23.4869187-27.3375745-46.973156-41.2556729-70.4600747-5.7715504-9.7405562-10.822083-21.7804643-11.932914-26.5386371-2.0833191-8.9166331-9.6724071-8.7558012-11.103539,2.6721277l-19.539206,164.3716305c-1.1660317,9.2955423,3.7482026,10.7566599,8.2283269,4.3847155,6.3910261-9.082917,18.949264-7.6388368,31.4907497,14.613901l24.4703108,43.4205414c-14.0175961,2.2012171-28.0046748,4.0541922-41.6631249,5.5786884-13.8220081,1.542215-15.8980381-.631061-20.7114116-8.7994166-3.6691496-6.2301941-8.2828462-4.4746724-9.4297961,4.8706189l-15.7308958,132.3858329c-.8382344,6.8251361,2.8267297,10.4561222,9.7254669,9.5824502l23.1089617-3.0057502c41.1969993-5.4665757,91.2264219-13.8984985,95.4044774-37.3785271l21.0020566-118.8979756ZM548.0866253,1158.8526963l-16.4868164-138.5507812c-1.0341797-9.3779297-7.4799805-11.0708008-10.5458984-4.3847656-3.6171875,8.1523438-6.4375,10.7070312-20.6313477,11.2045898-17.371582.6064453-33.6411133-1.5581055-51.0112305-5.4301758l45.8618164-51.5576172c20.0991211-22.9482422,25.3378906-43.0087891,20.2685547-85.2402344l-12.7036133-106.6689453c-1.4746094-12.2797852-9.8774414-9.5170898-10.8413086.2241211-.9907227,10.0439453-4.9467773,22.1928711-11.0292969,31.1743164l-57.0776367,83.0620117-41.9970703-76.46875c-6.1621094-11.815918-10.4804688-20.4887695-12.4487305-26.7055664-3.3251953-10.4643555-10.6367188-7.4038086-8.9223633,2.8364258l28.9692383,164.3745117c1.5556641,9.2680664,5.2387695,10.7148438,8.1411133,4.3837891,3.715332-8.3647461,9.2294922-8.3154297,22.203125,18.2182617l19.4521484,39.9101562c-2.1645508-.5610352-5.0566406-1.1225586-7.2207031-1.7280273-15.2695312-4.2724609-19.4794922-7.1767578-25.6708984-14.8105469-5.1352539-6.3310547-9.3564453-3.1777344-7.7124023,6.0751953l7.0273438,39.9423828,6.4189453,36.5092773,7.6733398,43.1416016c5.0087891,28.1513672,75.9287109,34.6713867,118.5131836,40.3842773,6.7182617.9038086,10.5180664-3.1367188,9.7705078-9.8955078Z"},"children":[]},{"type":"path","props":{"d":"M669.1571068,165.4157388c-4.9171034,13.0289403-11.8330902,20.9532279-21.4005765,27.3070201-20.2569516,12.3578829-45.3717234,15.6586416-56.1294935,16.5307307-2.4616195.1993828-3.9008311,2.968855-2.6244447,5.0819755,9.7384889,16.1254715,22.3229322,23.5043171,35.8102499,25.3829404.8057084.1115966,1.5907329.4728426,2.0614109,1.135688,1.2172209,1.714355-.5392233,3.6143837-6.2029924,6.0683069-16.609618,7.2015898-36.2984851,3.8113614-59.7842829,10.5167791-2.8796258.8225441-3.9773133,4.3291793-2.0804112,6.6464928,0,0,46.0925318,47.715974-4.1177711,84.9909295-4.2070003,3.1230219-6.9622824,7.7687123-7.1474751,13.0041332-.5168559,14.6359933,4.4734853,37.4478822,8.6824096,50.0203,9.5915373,28.6471416,15.3204846,52.785443,17.7342426,63.8390404-.2758649.3456128-.3732715.4668298-.6476933.8122021-18.5481283,2.5445954-31.2441682,29.1271995-14.6155499,72.5060574,17.6500641,46.0401006,21.3960068,73.2398533,28.2531863,105.7527115,5.0175729,23.7888427,15.9405567,42.6675666,39.9886294,39.8233991,1.013028-.1171284,2.8510051-.1849522,3.7346387-.1553694.2729788.9148999.4341205,2.5388232.5185395,3.6939925.7561633,10.404461,3.2930624,37.792533,9.8835164,54.0911716,3.8450328,9.4965359,12.1409429,36.0105947,29.8403116,68.1172316,0,0,1.5380612,2.7639405-.5375398,5.3039662-7.9806016,10.1690017-11.4081091,19.0883137-12.1777409,20.4067893-4.29647,7.3600859-10.9987611,21.0431787-17.4408204,25.4550934-13.6948778,8.8281587-31.5347042,15.5792733-37.6898352,19.1623908-2.0291826,1.1296753-2.8827524,2.3620483-2.4950504,5.3431693.4545638,4.1447082,1.4245405,17.0300294,2.2557429,23.9100574.6479338,5.1404194,4.4927261,8.1908073,6.6368724,9.4231803,6.4613001,3.7149169,13.3903922,5.0814945,28.5163042,28.2132617,8.9597176,13.701131,18.238592,32.9416875,33.7553327,60.956769,3.8996285,7.7083443,12.7313949,2.8081943,9.8500855-3.3599242-9.0547191-22.6365572-18.4225821-61.5652592-15.9477346-84.1602081,2.1152851-19.2939497,15.0920001-52.5403634,29.9329079-70.7440814,0,0,.5375398-.6229208,1.0019645,0,.4658678.6229208,1.0911937,1.4534017,1.0911937,1.4534017,19.4574965,25.8120102,45.1992778,52.1440029,79.3233123,74.355098l20.7625035,12.397086c-17.235906-6.5382633-73.4267295-.5185395-73.4267295-.5185395-2.3452126-.120255-4.1543286,2.0142709-3.6581565,4.3109006,4.1179662,19.065677,6.0125503,37.1179315,3.9809209,56.6165262-.5810721,5.5745399,5.0033288,4.6757542,5.0033288,4.6757542,45.7760207,0,72.2010908-8.4700394,72.2010908-8.4700394l-3.4751284,5.2589908c-22.1184987,34.1694909-36.4552976,113.7876684-51.5446521,171.5468574-.4658678,1.7836219.9348622,3.4828248,2.775966,3.5593069,17.2748686.7147956,30.200836.8838741,48.0916506,1.1886002,2.1427033.0365575,4.1353283-1.3473368,4.7382868-3.403697,21.9400403-74.7141794,41.2017617-154.866289,41.5543493-180.8288584.0158737-1.218183.9444826-2.0303851,2.1571339-1.9115732,14.1280362,1.3901476,16.9047237-1.0089393,16.9047237,2.1044622.2154969,36.9144311,8.3695062,115.2778681-2.8685623,181.1901044-.2965488,1.7446593.7977715,3.1542882,2.5669628,3.1518831,11.4119572-.0168357,29.5197118-.3917907,45.1417959-.7977715,1.8634712-.048583,3.4270265-1.3497419,3.7971713-3.1764151,12.3499461-60.8627296,9.4318387-137.6390414-11.7229366-176.8140256-.3191567-.5894899.1308374-1.2150563.797531-1.1518022,17.1666391,1.6224802,34.8085259-.059887,50.9125919,2.7752445,3.838539.6755925,7.6193556-1.1575744,9.1860375-4.7272233,6.905041-15.7507569,5.9956729-39.9104637.3766386-57.0083169-.796088-2.4274671-3.5386231-3.7197271-6.0401672-3.2059978-16.5985546,3.40514-40.6091451,1.2992348-60.2039728,2.3865804l11.3224875-9.390471c21.6466182-16.2349035,60.0637555-40.0357694,92.5316384-77.8643788,1.1965371-1.3935147,3.3248097-1.4892377,4.5085998-.084419,15.9732287,18.9557927,27.7151655,59.8131441,27.3354003,75.6273957-.555097,22.9778408-5.2472059,45.252671-14.291583,69.4453276-2.2927815,5.4340821-5.3174348,12.5086826-5.7671884,13.6335477-2.8791448,6.1630678,5.9463683,11.0764458,9.849845,3.3599242,14.5919799-26.3375245,29.49999-60.9659084,43.22421-77.276332,19.59122-23.284972,27.7004944-17.9949554,28.6007232-24.7326015.96685-5.7388082,1.8810284-17.1736139,1.8810284-20.4969805,0-3.6191939-.3828919-4.8109208-2.78727-6.6289356-6.9574722-5.4513988-26.616035-15.1155701-36.1820783-21.6495043-12.2142984-8.3430501-17.8747004-23.814575-20.3538771-30.0334411,0-.2033998-4.5026863-11.0233282-9.1576573-19.5594727v-.7258591c14.9508208-28.3953277,22.9937145-60.6534859,25.9599238-101.5190147,1.2961082-14.3909136,1.7754445-22.6064934,1.7754445-22.6064934.2450797-.9990784.9432801-1.0642566,1.7829004-.8944566,6.5599092,1.4805793,13.3153531,1.6123788,13.3153531,1.6123788,9.3984078.2157374,24.4331666-2.8700054,41.3395739-79.3884905,17.7647874-80.4039235,40.7847174-123.0465804,3.2896953-138.7420201-.1993828-.3535496-.3415241-.6094522-.5409069-.9637234,5.4898804-27.9058899,19.3348364-51.0559359,21.6353142-83.0079249.1115966-1.568125-.6972384-3.0487043-1.9781944-3.9604776-5.9302541-4.2173422-13.1174134-12.7862311-13.8177784-19.6778036-14.9568336-194.6687637-212.7450114-329.6338153-437.9643126-219.5649119-7.1233556,3.9632669-11.3511082,15.0564047-11.3511082,15.0564047ZM599.1016054,289.82096c-6.9846498-11.6055677-3.6567135-9.8067937,7.0721954-9.8339713,32.5814036-.7258591,54.4495314-13.2761499,86.6990313-26.8673679,32.2492593-13.5895344,65.3857599-5.1865973,42.6768093,1.6688986-22.7089507,6.8545339-52.2717137,25.493575-68.3740962,58.2758044-16.1023825,32.7863181-18.8160564,11.7748867-32.3401721,39.8267662-20.0741968,49.0990522-17.3308564,91.1781882-19.5419155,109.5039454l-.0014431-.0014431c-.3396001,2.3435291-2.5445954,2.9135377-2.837777,2.9791969l-.0295827.0064938c-.000481,0-.0040887.000962-.0040887.000962h0c-3.2031117.6926687-6.3949194,1.3848564-9.3834962,2.0351953-3.5811933.4362851-4.7245777-1.6013153-4.9068843-1.9863718-6.1051049-14.1768597-18.5038745-59.230629-18.9519445-81.2459489-.5168559-25.7088314,19.8019067-44.7754992,24.3586085-55.7422725,4.5595879-10.9674948,2.5460385-27.0148005-4.4352442-38.6198872ZM613.8460687,619.2436075c-11.3400447.9971543-12.6003169-14.3322292-23.5670902-46.3125984-10.9636466-31.9806097-19.0810984-67.7966318,2.450556-70.5398884,15.5852861-.3333468,17.0324345,13.6662571,12.6674192,32.2725888-4.3666989,18.6022431,19.7894002,83.5813007,8.449115,84.579898ZM640.7574499,450.0660137c1.4644652-17.5923417,9.3409259-23.465114,22.4999475-29.6240931,6.481984-2.7848649,9.3887874-8.5203059,14.1910498-44.7877652,6.3097789-47.6344411,54.1508181-145.0520394,159.9610115-88.5334008,2.038803,1.0887886,4.5499675.7754041,6.2746644-.7698724,22.6276583-17.3960856,95.1289055-3.4970149,134.6021221,29.9624906,2.571773,2.1816659,6.1885618-1.0074962,4.3539519-3.8361339-32.9243708-50.7622732-87.2762552-62.4159429-128.0354786-53.2520323-.2792321.0630136-.5632743-.0317473-.7595305-.240991-49.3456695-52.8737102-107.464421-62.9806603-186.2148385-31.5265269-4.575702,1.8507242-4.0124277-1.0897506-1.6017964-4.4393329,2.3387189-3.2497706,30.1322907-31.3740436,76.9778591-45.8157048,2.4760501-.7626571,5.0526333-1.3817297,7.5623548-2.0253344,3.6278523-.9293305,9.0220097-2.6475337,8.7459043-4.5843604-.4148797-2.9068034-23.1142099-2.6874583-23.1142099-2.6874583-18.0151582-.3040046-21.702176-5.6947949,1.7295071-14.6713482,209.8076633-67.5667043,380.4355321,73.6771004,341.3961955,281.0166504-1.387983,11.8371788-1.9416369,15.2529013-5.6765161-2.2167803-4.0586056-18.9930717-22.4345288-71.2448231-32.555669-90.3283266-3.6502197-6.8841167-7.6354698-12.9545881-11.1789031-17.5916202,0,0-6.9577127-9.8084773-9.3666605-8.1739716-.9892175.7434163,1.0529526,5.6717059,1.0529526,5.6717059,1.1486756,3.1516425,2.6388753,7.3978459,4.0540359,12.7886362,3.573497,13.6063701,2.184071,28.5401147,1.001724,36.3973347-.5567806,3.7021699.2648015,7.4776952,2.2304894,10.6637307,21.473932,34.7613859,26.0799383,58.0437123,26.7564928,75.2565293.133964,3.3606457-2.9005501,6.0529142-6.2109293,5.4627028-6.517339-1.1631062-20.4260301-4.9321378-55.1960744-4.9321378-53.9947271,0-83.7727466-2.6237232-109.4794134,11.3025252-25.7083504,13.9262484-23.1142099,17.4728083-30.4098392,17.4728083-7.2958697,0-4.9761511-1.6025179-19.3507101-1.6025179-6.2602338,0-10.8424296,2.366618-16.1437502,2.366618-10.8854809,0-21.5299708-27.9393208-71.3398246-27.9393208h-102.6816398c-2.3642129,0-4.0155543-1.8370151-4.0744793-8.7827023ZM880.5297684,519.1666905c.5601477-.1026978.9827237.5464386.9827237.5464386,5.7977332,8.6932326,14.2581521,13.1085145,19.8819966,15.2480911,1.8793448.7147956,3.9405152.7744421,5.8807091.2417125,30.8708968-8.4907232,51.1227976-3.1357689,64.5370003,6.7932039,4.6904253,3.6581565,5.8232272,6.0529142,17.4951757,2.6754328,3.1061862-.9004693,5.9379505-1.1869167,8.4873561-.9509764,0,0,4.4003703.4906403,5.5824767,2.521747.4514372.8502027.2696117,2.2158183-.7722775,4.0944416-9.1143655,17.5709363-26.8664059,32.1881698-59.8480181,32.1881698-53.1045997,0-63.5848213-35.8982765-62.7439985-61.2117095,0-.6715038-.0444943-2.0428916.5168559-2.1465514ZM918.5402034,506.1418735c1.5859227-4.7582491,7.327617-12.7191289,21.3798926-14.1965816,24.8834012-2.6148243,28.7140034,20.6172355,48.9117896,27.942688.603199.218383.4896783,1.1063458-.1500782,1.135688-4.6519437.2154969-11.8600273-.8278353-21.94461-6.9206742-11.9095723-7.193653-27.6148729-16.694999-46.4405497-6.506035-.9810401.5296029-2.1090319-.3987655-1.7564443-1.4550853ZM966.7578812,484.389431c-.772037-.4586525-.4738046-1.6352272.4228165-1.6496578,4.9330998-.0822544,9.7430586-.1012547,14.328381-.1067864,0,0,13.1874018-.1628252,22.6865832,4.0489852,4.9232389,2.0173976,7.1792224,9.7791351,7.4312768,19.6458158.0336714,1.2747028-1.0815733,2.282199-2.3483393,2.1289942-21.305094-2.5604691-29.3744438-16.2481315-42.5207183-24.0673509ZM703.1534305,483.6325461c-18.2737064,8.4387731-32.1121687,24.4973827-46.7835169,28.3493903-1.3783626.3598029-2.7360413-.723454-2.7249779-2.149197.0304531-4.059347.6224727-8.590471,2.3582002-12.7335595,3.5423531-8.4691089,11.9603117-12.9569881,21.1134076-13.6604849,7.6547106-.5880469,16.1295601-1.2860068,25.5868929-1.6761139,1.073877-.0437728,1.4264646,1.4192493.4499941,1.869965ZM715.0168249,498.9809299c13.3759616-10.2567879,37.4870853-10.3301434,44.2117439.8297594.8598231,1.425262-.3987655,3.1970989-2.0294231,2.8500431-25.7545283-5.503349-39.3936078,19.6871835-71.9317196,16.2332199,0,0-2.8750561-.7968095,1.5012632-2.0715123,4.3746357-1.2747028,13.5099256-6.5389849,28.2481356-17.84151ZM665.5691792,541.3953428c6.3350324.3222833,13.2448836,2.3038449,19.5467257,7.0548787,2.5700895,1.9368267,6.1676375,1.2340566,8.2004277-1.2602722,6.0401672-7.410593,16.2250426-14.932061,39.47009-17.0038138,16.1349818-1.4352621,31.2423773,9.2765559,47.9831806,2.0222078,1.6835697-.7424543,2.7658646.6666936,1.2124107,1.9551055,0,0-7.412517,5.9403556-2.9291708,12.0726381,0,0,5.2055976,7.1241456,3.0186405,14.9717452-1.0209648,3.2490491-4.8212627,8.8233485-11.7070629,12.3213254-10.5600709,5.3511062-22.1807908,9.3281789-39.0010955,8.9957941-32.8986362,0-51.3272311-12.8485232-61.2634192-28.8082833-.0096204-.0110635-.0158737-.0192408-.0221269-.0303043-2.3262124-3.3382783-4.3570785-6.5810741-6.1296369-9.7199696-.6734279-1.1965371.2489278-2.6403184,1.6210371-2.5710515ZM780.3020517,598.6566762c9.6858172,2.3747954,2.7360413,9.3642554,3.1174901,17.3987312.3797652,8.0344758,5.3972841,13.5520149,1.1741696,16.6343905-8.8209434,4.6735896-16.6606061-7.6085327-16.6894673-17.682533-.0238105-8.665574,5.0574435-17.1146889,12.3978075-16.3505888ZM653.9034839,580.7331523c1.7340768-1.0976875,5.3494226-3.8815903,13.3216063.6638075l-.0767227-.1284323c13.8163353,11.310462,33.3695548,16.8417101,55.6636257,16.8417101,12.3100214,0,24.6282202-1.0178382,36.0815451-3.3519873-2.7920802,3.3137463-6.8013812,8.7771706-8.8130066,14.7942488-3.2658848,9.7788946-1.8076729,13.0709949-10.6589205,15.1300007-8.848121,2.0611704-19.0536803,16.0696731-37.2877026,23.6972061-15.2120146,6.360767-26.4084749-1.9305735-36.6318319-18.9278935-11.7707981-19.5635614-16.4453497-46.206774-11.5985929-48.7186601ZM706.0698543,816.6431213c-44.758904-47.5827315-68.5511116-125.9661308-19.1895684-133.6545128,11.1295985-1.7302287,13.133287,15.4364104,14.4479145,43.5888231,1.3146275,28.1531342,17.6515072,67.7771505,25.5520189,67.7771505,7.8971446,0,9.5374226-22.9025612,16.2156627-22.9025612s1.4117935,21.9063689,15.245686,45.0460729c22.4948968,37.6345179-23.7205356,30.4983468-52.2717137.1450275ZM776.0152021,705.0970058c-16.8328113,0-38.9962853-3.5513701-54.1638056-12.9187521-1.3336277-.821582-1.0351549-2.8447518.4661083-3.2865686,4.8914916-1.4471484,13.6070916-4.3522683,22.4662761-9.2716591,4.5836389-2.7545606,9.0619344-5.8975448,13.484191-8.9270083l.0432918.048583c9.9073269-6.7867101,19.5450421-12.9976394,29.5339019-12.9976394,16.0720782,0,22.0595738,17.5844049,52.9145969,17.5844049,1.5380612,0,3.0441346-.1012547,4.5244734-.2864474,23.0360442-2.0092202,39.7764996-18.6741555,53.9629798-18.6741555,13.1667179,0,21.0511155,21.0792552,48.7345337,31.3170427,2.6116977.7289857,4.913859,1.2802345,6.9319781,1.6927091,1.5363776.3133845,1.9623208,2.282199.7258591,3.2456819-7.6578372,5.9492544-24.165479,12.0678279-48.8398771,12.0678279-50.1290105,0-47.5541108-11.5954663-67.4678547-11.5954663-18.6294207,0-21.5395912,12.0014471-63.3166527,12.0014471ZM891.1456376,722.4772177c0,3.8544127-11.877825,14.4447878-49.1797176,14.4447878-37.3004496,0-41.1899767-12.0372831-41.1899767-15.5696529,0-3.3750763,20.0125935-.2455607,45.1848472-.2455607,25.1736968,0,45.1848472-2.487354,45.1848472,1.3704258ZM1099.7408902,557.4460157c-12.9593983,48.8415606-22.1346129,101.032463-37.539757,104.0542302-9.0378834,1.4550853-10.5088423-3.0304255-14.5357006-2.377922-15.1355325,3.344772-19.9919096,31.2978019-20.0287076,54.9182854-.0351145,23.6183188-7.9560696,65.5829781-42.7167339,115.4582506-21.148522,30.3398508-42.8093303,42.5789217-57.6896817,47.4049946-24.998365,8.376481-30.371117-9.2550639-35.3859903-7.3730734-3.5448763,1.3264124,2.5975076,11.1437886-1.61767,25.0404542-5.0860642,16.7731648-28.3407319,31.1390654-26.6749599,52.6115543.2503709,4.0754413-2.8892462,5.4162844-7.4760117,3.8464758-55.1498965-18.8735383-71.8999723-78.5806175-50.5838148-111.2591871,11.9718644-18.3518722,5.9826853-38.1809566,3.717322-46.3813842-2.2639203-8.196339,4.9585939-7.0087008,9.4974979.1363691,2.6689391,4.0954036,6.0495471,11.5100853,9.7558056,11.7253417,2.3747954.1363691,3.2076814-10.0032904,1.5245927-18.9002349-1.6830887-8.8969445-18.3699104-18.3093019-18.3699104-18.3093019-2.2225526-1.1919674-3.6747517-2.6889014-3.6747517-5.4290314,0-6.8769014,7.5972287-6.9504974,37.1583082-5.0860642,29.5644466,1.8673193,65.4576724-10.0845827,78.7314173-13.3694678,17.1728923-4.247887,20.2249638,12.3028061,18.3886702,31.5823252-1.4211734,13.8377407-3.523952,15.5708555-2.0390435,16.680809,1.5986697,1.1448274,9.1290366-2.95707,18.5481283-20.0821009,3.6184724-6.3590834,7.3420476-14.4072683,10.7594537-24.3968496,4.8595038-14.2213541,20.6412865-29.7962982,29.5993206-48.041384,9.8835164-20.1292408,10.8599868-38.6309507,8.6773589-40.0117184-5.564679-3.5196228-12.9577147,11.7061009-29.8275645,6.5704917-6.1327635-1.8673193-17.188766-8.4219374-27.737533-21.5730221-5.130799-6.5731373-8.7112708-12.7751677-9.6042843-14.1852776-13.9820467-22.8070787-36.7708466-36.7277954-45.1466061-30.9699869-4.1928102,3.693271,2.0580437,8.2961506,1.8283567,19.2908231-.3064097,14.6927536-28.8097264,24.8627174-54.1510586,24.8627174s-41.4261575-15.0725188-41.4261575-38.371681c0-12.2106908,12.3696679-30.3251796,14.9440865-47.9180024h-.0031266c2.063816-13.0712354,2.1588174-32.2526265,7.96569-43.1188666,0,0,5.504311-11.7157213,18.6534717-8.3541135,15.4873985,3.8330073,14.5332955,25.3394081,24.1351747,52.5379583,10.6971616,30.2927108,47.3034994,39.4518112,83.5161225,39.4518112,36.2155091,0,64.9468293-15.9402788,71.772021-49.3543279l5.9557482-30.5106128c1.7198867-8.7497524,3.5290027-15.8053527,6.7309118-19.1335296,3.5338129-3.4061021,14.5770683-7.0356379,20.8247956-6.9846498,2.4375685.0199623,4.6122596,1.703051,5.4658294,3.9876552,1.9464471,5.1986228,2.0546766,14.6145879,1.1676759,30.0851507-1.1135611,19.4433064-4.3777623,26.397652-.8836336,26.9320651,10.4816647,1.605885,19.8673255-10.8111633,19.7908433-16.7245818-.0733555-5.9158235-4.9217959-35.3811801,12.6481784-35.3811801,17.5702148,0,15.4260685,19.0308318,5.3559164,56.4197891Z"},"children":[]}]
14
14
  .map(function _c(el) {
15
15
  if (typeof el === 'string') return el;
16
16
  return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
package/dist/kfc.js CHANGED
@@ -4,11 +4,11 @@
4
4
  import { forwardRef, createElement } from 'react';
5
5
 
6
6
  const Kfc = forwardRef(
7
- function Kfc({ viewBox = '0 0 24 24', ...props }, ref) {
7
+ function Kfc({ viewBox = '0 0 1683.7795276 1289.7637795', ...props }, ref) {
8
8
  return createElement(
9
9
  'svg',
10
- Object.assign({ ref, viewBox, fill: '#F40027', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
- ...[{"type":"title","props":{},"children":["KFC"]},{"type":"path","props":{"d":"M21.893 8.23c-4.187.001-5.249 2.365-5.42 3.97-.194 1.802 1.053 3.57 4.127 3.57 1.294 0 2.14-.225 2.44-.32a.215.215 0 00.147-.166l.173-.91a.184.184 0 00-.236-.21c-.336.106-.93.252-1.685.252-1.469 0-2.53-.882-2.395-2.4.13-1.47 1.121-2.59 2.485-2.59.82 0 1.183.43 1.156 1.003v.033a.184.184 0 00.182.193h.557c.086 0 .16-.06.18-.143l.39-1.76a.215.215 0 00-.15-.255 7.21 7.21 0 00-1.95-.266zm-20.157.116a.2.2 0 00-.195.156l-.108.484a.198.198 0 00.13.23l.033.01c.208.082.45.266.348.748l-.792 3.62c-.207.987-.542 1.19-.86 1.226h-.01a.2.2 0 00-.176.157l-.102.464a.192.192 0 00.187.233h3.487c.085 0 .159-.06.177-.142l.12-.543a.184.184 0 00-.112-.21l-.022-.01c-.177-.07-.418-.224-.356-.51l.405-1.85c1.389 2.535 1.848 3.266 3.514 3.265H8.91a.181.181 0 00.177-.142l.105-.47a.195.195 0 00-.186-.238c-.376-.006-.56-.093-.935-.575l-1.932-2.614 2.51-2.088c.337-.264.748-.338.976-.368l.022-.002a.185.185 0 00.163-.144l.103-.464a.184.184 0 00-.18-.223h-3.02a.199.199 0 00-.193.155l-.102.46a.2.2 0 00.138.235c.178.069.217.24.063.366L4.046 11.7l.44-2.014a.683.683 0 01.477-.487l.025-.008a.199.199 0 00.135-.147l.106-.477a.181.181 0 00-.177-.22zm8.88 0a.2.2 0 00-.194.156l-.107.483a.19.19 0 00.122.221l.02.008c.204.077.487.274.364.758l-1.21 5.48a.182.182 0 00.178.222h2.777c.086 0 .16-.06.179-.143l.12-.547a.174.174 0 00-.098-.196 1.558 1.558 0 01-.027-.013c-.176-.086-.438-.285-.35-.67.009-.05.27-1.24.27-1.24h2.362c.086 0 .16-.06.18-.143l.221-1a.183.183 0 00-.18-.224h-2.28l.427-1.94 1.592-.003c.515 0 .672.27.642.728l-.002.024a.184.184 0 00.183.205h.587c.086 0 .16-.06.178-.144l.4-1.8a.184.184 0 00-.18-.222z"},"children":[]}]
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"defs","props":{},"children":[]},{"type":"path","props":{"className":"st0","d":"M1448.1389672,161.2342314c-5.9281986-6.5110454-16.777856-14.1804893-36.6193206-20.9342508-46.9936523-15.994873-142.4453125-36.6608887-336.3205566-54.6235352-33.9528809-3.1455078-70.5114746-5.8286133-110.2531738-7.6967773-39.0991211-1.3691406-80.1640625-1.7287598-123.0561523-1.7287598s-83.9570312.3596191-123.0561523,1.7287598c-39.7416382,1.8681641-76.3002319,4.5512695-110.2531128,7.6967773-193.8752441,17.9626465-289.3269043,38.6286621-336.3205566,54.6235352-19.8422873,6.7540208-30.692016,14.4237943-36.6200025,20.9349988-3.7260937,4.0926811-6.0948783,9.3025292-6.2593123,14.8348682-.0379692,1.2774632.0302595,2.6164164.2640803,3.9588928l166.097168,953.510498c1.3798828,7.6875,5.8754883,18.8359375,19.4355469,28.4023438,7.3825684,5.2080078,16.7839355,9.5712891,28.7416992,13.3378906,25.8347168,8.137207,60.3703613,11.934082,65.1862793,12.7294922,25.7056885,3.3432617,138.2849121,16.5429688,188.2658081,19.5478516,58.8847656,3.5976562,92.3552856,5.8022461,144.5185547,5.9560547,52.1633301-.1538086,85.6337891-2.3583984,144.5185547-5.9560547,49.980957-3.0048828,162.5601807-16.2045898,188.2658691-19.5478516,4.8157959-.7954102,39.3515015-4.5922852,65.1862793-12.7294922,11.9577637-3.7666016,21.3591309-8.1298828,28.7416992-13.3378906,13.5600586-9.5664062,18.0556641-20.7148438,19.4355469-28.4023438l166.0971069-953.510498c.2339322-1.3431158.3021145-2.682705.264026-3.960718-.1648705-5.5320328-2.5338596-10.7414382-6.2598788-14.8337909Z"},"children":[]},{"type":"path","props":{"className":"st1","d":"M272.5957267,302.4469731c-10.7730156-59.7995051-10.1862516-97.5983211-9.2417045-112.9141583.8327825-13.5214704,3.0633037-17.9198157,8.5370424-20.3983998,8.2065191-3.7209429,15.1625016-6.0393766,24.2617744-8.1301921,7.3110395-1.6764688,11.5894423,1.6839652,10.8002753,9.4182108-3.1505346,30.8170399-2.5855783,49.2056186-.8164267,64.7776965,4.1530084,36.5579233,16.5418401,69.3594661,34.6695107,69.3594661,22.0203493,0,21.8268057-46.0667724,17.2287834-72.6687882-2.4213389-14.0100997-8.2773942-33.0137597-26.2026619-68.0567277-3.2922848-6.4400935-1.0760749-10.7784676,5.5745994-12.5857827,18.5099872-5.020547,37.0199744-8.8423506,53.1706385-11.1273912,7.4555156-1.0542672,11.3461499-.5976679,14.9962177,2.9290499,14.1361756,13.6611761,25.4823255,44.1527363,31.761587,87.702761,17.303066,120.010631-10.390699,227.7087574-74.2055513,227.7087574-41.4339941,0-74.782093-68.5791585-90.5340846-156.0145018ZM366.4054776,760.1542988c3.1750683-7.0404874,8.0647689-8.5281831,19.0258762-7.7778611,23.3799246,1.6001417,61.4958233,2.8670342,101.7017699,4.4828503,9.0393016.3605089,12.52513-5.4383012,11.3734095-15.2633623l-17.4945417-146.3502726c-1.1033345-9.3970846-8.5833839-11.2970825-13.5603154-2.9154201-3.6527938,6.1504597-9.2934979,8.0722653-17.6199595,8.530909l-22.0412285,1.4750277-14.1252717-89.5196244c-.8402789-5.2958695-4.0759999-7.7642312-9.4127589-7.2619721l-20.502668,1.9272576c-5.5561992.5274743-8.141096,3.9151679-7.267424,9.4270702l13.6857098,85.8650286-24.128221,1.2007878-11.0810497-63.5434601c-5.9030783-34.1120507-3.986043-44.5490911-1.8045892-56.2387127,1.8045892-8.766705-.6010754-11.8047936-7.1556594-10.822083l-30.6073818,4.5918889c-7.7669572,1.1598983-9.4672782,5.1377635-7.6954006,14.8701418l46.5553053,263.9586466c1.9170352,10.5215453,8.6406291,11.1635102,12.1543987,3.3631599ZM1417.6913859,172.0257733c-9.2907719-4.8726633-19.7877835-9.1086492-31.7670389-12.2837176-7.2592461-1.9252131-11.4967595,1.2627456-10.7948234,8.7543803,1.7055464,18.2446827,4.8461487,41.8119613,1.979051,72.7151296-2.3804494,25.6683726-14.777459,63.2498959-33.9041959,63.2498959-22.675944,0-25.0734306-45.2428494-19.5935585-72.4500295,5.0341768-25.0182298,14.41695-46.7394263,26.2817148-70.2617826,3.1539421-6.2485944.8763979-10.6741994-5.8690037-12.2027845-20.5115274-4.6525416-36.2008218-8.1002065-51.8935237-10.3443576-5.3422109-.7646333-9.246475.3250714-12.4651587,4.7799805-18.2012716,25.204277-29.8833968,69.953067-35.0293381,110.2816821-15.3867122,120.684626,16.6256636,204.4378714,72.1256396,204.4378714,44.7562645,0,83.1896521-67.3756447,101.0447261-190.1408639,4.3322407-29.7736767,7.3328472-54.9644304,7.8541881-76.2978363.3414272-13.9228688-2.173276-17.2015238-7.9686786-20.2375679ZM1347.0787522,597.7869566c-2.6237418,4.4092492-6.2002085,5.7606466-11.2507411,5.7606466h-11.1750882l13.8824419-85.418151c.9063835-5.5173542-1.6791947-8.8866475-7.2428903-9.4461519-6.4182858-.8566347-12.8365715-1.4985995-19.2555388-1.9245316-5.3449368-.5349707-8.5833839,1.9742805-9.3970846,7.2865058l-13.67208,89.0058927-31.916967-.6715129,11.0790053-70.3593633c4.0432883-25.9954885,8.8995959-34.9366553,16.7953549-49.3597387,4.82087-8.809639,5.0559845-13.7974744-2.7763959-14.3167708l-49.7647232-3.4585687c-10.2264596-.6767209-14.5512038,4.9087824-15.7601695,14.7263471l-33.8212337,283.1882887c-1.14695,9.3289354,6.2683577,10.7184963,11.4033952,4.3847155,6.598881-8.2801202,11.1362505-11.0483382,26.9870584-11.2016737,33.8033351-.3277974,67.1777902-1.8536565,98.5788682-4.583711,9.0086345-.7830336,11.5260636-4.8733448,12.8583793-12.2743411l24.5522001-139.2200973c1.4549841-8.0947545-5.730661-9.4615351-10.1037911-2.1177841ZM1284.9426236,1009.4854145c1.0535857-5.7524687-3.8933602-8.3898403-9.0011381-1.9797324-5.8178919,7.3008171-8.0081028,9.3725509-22.7065087,12.403143-4.3806266.9036576-9.4545298,1.7125878-13.90535,2.5215181l36.7371397-52.2962851c16.9834465-24.6386391,23.446787-43.5064093,30.8832209-85.2402596l18.7759375-106.6690744c1.1244608-6.3092471-6.8033284-7.865092-9.5906281-.86822-3.8415669,9.634925-9.5662167,29.5501475-22.1376881,50.0800751-11.1989478,18.289184-30.8314581,42.3710447-51.1187748,65.2487101-13.9201428-23.4869187-27.3375745-46.973156-41.2556729-70.4600747-5.7715504-9.7405562-10.822083-21.7804643-11.932914-26.5386371-2.0833191-8.9166331-9.6724071-8.7558012-11.103539,2.6721277l-19.539206,164.3716305c-1.1660317,9.2955423,3.7482026,10.7566599,8.2283269,4.3847155,6.3910261-9.082917,18.949264-7.6388368,31.4907497,14.613901l24.4703108,43.4205414c-14.0175961,2.2012171-28.0046748,4.0541922-41.6631249,5.5786884-13.8220081,1.542215-15.8980381-.631061-20.7114116-8.7994166-3.6691496-6.2301941-8.2828462-4.4746724-9.4297961,4.8706189l-15.7308958,132.3858329c-.8382344,6.8251361,2.8267297,10.4561222,9.7254669,9.5824502l23.1089617-3.0057502c41.1969993-5.4665757,91.2264219-13.8984985,95.4044774-37.3785271l21.0020566-118.8979756ZM548.0866253,1158.8526963l-16.4868164-138.5507812c-1.0341797-9.3779297-7.4799805-11.0708008-10.5458984-4.3847656-3.6171875,8.1523438-6.4375,10.7070312-20.6313477,11.2045898-17.371582.6064453-33.6411133-1.5581055-51.0112305-5.4301758l45.8618164-51.5576172c20.0991211-22.9482422,25.3378906-43.0087891,20.2685547-85.2402344l-12.7036133-106.6689453c-1.4746094-12.2797852-9.8774414-9.5170898-10.8413086.2241211-.9907227,10.0439453-4.9467773,22.1928711-11.0292969,31.1743164l-57.0776367,83.0620117-41.9970703-76.46875c-6.1621094-11.815918-10.4804688-20.4887695-12.4487305-26.7055664-3.3251953-10.4643555-10.6367188-7.4038086-8.9223633,2.8364258l28.9692383,164.3745117c1.5556641,9.2680664,5.2387695,10.7148438,8.1411133,4.3837891,3.715332-8.3647461,9.2294922-8.3154297,22.203125,18.2182617l19.4521484,39.9101562c-2.1645508-.5610352-5.0566406-1.1225586-7.2207031-1.7280273-15.2695312-4.2724609-19.4794922-7.1767578-25.6708984-14.8105469-5.1352539-6.3310547-9.3564453-3.1777344-7.7124023,6.0751953l7.0273438,39.9423828,6.4189453,36.5092773,7.6733398,43.1416016c5.0087891,28.1513672,75.9287109,34.6713867,118.5131836,40.3842773,6.7182617.9038086,10.5180664-3.1367188,9.7705078-9.8955078Z"},"children":[]},{"type":"path","props":{"d":"M669.1571068,165.4157388c-4.9171034,13.0289403-11.8330902,20.9532279-21.4005765,27.3070201-20.2569516,12.3578829-45.3717234,15.6586416-56.1294935,16.5307307-2.4616195.1993828-3.9008311,2.968855-2.6244447,5.0819755,9.7384889,16.1254715,22.3229322,23.5043171,35.8102499,25.3829404.8057084.1115966,1.5907329.4728426,2.0614109,1.135688,1.2172209,1.714355-.5392233,3.6143837-6.2029924,6.0683069-16.609618,7.2015898-36.2984851,3.8113614-59.7842829,10.5167791-2.8796258.8225441-3.9773133,4.3291793-2.0804112,6.6464928,0,0,46.0925318,47.715974-4.1177711,84.9909295-4.2070003,3.1230219-6.9622824,7.7687123-7.1474751,13.0041332-.5168559,14.6359933,4.4734853,37.4478822,8.6824096,50.0203,9.5915373,28.6471416,15.3204846,52.785443,17.7342426,63.8390404-.2758649.3456128-.3732715.4668298-.6476933.8122021-18.5481283,2.5445954-31.2441682,29.1271995-14.6155499,72.5060574,17.6500641,46.0401006,21.3960068,73.2398533,28.2531863,105.7527115,5.0175729,23.7888427,15.9405567,42.6675666,39.9886294,39.8233991,1.013028-.1171284,2.8510051-.1849522,3.7346387-.1553694.2729788.9148999.4341205,2.5388232.5185395,3.6939925.7561633,10.404461,3.2930624,37.792533,9.8835164,54.0911716,3.8450328,9.4965359,12.1409429,36.0105947,29.8403116,68.1172316,0,0,1.5380612,2.7639405-.5375398,5.3039662-7.9806016,10.1690017-11.4081091,19.0883137-12.1777409,20.4067893-4.29647,7.3600859-10.9987611,21.0431787-17.4408204,25.4550934-13.6948778,8.8281587-31.5347042,15.5792733-37.6898352,19.1623908-2.0291826,1.1296753-2.8827524,2.3620483-2.4950504,5.3431693.4545638,4.1447082,1.4245405,17.0300294,2.2557429,23.9100574.6479338,5.1404194,4.4927261,8.1908073,6.6368724,9.4231803,6.4613001,3.7149169,13.3903922,5.0814945,28.5163042,28.2132617,8.9597176,13.701131,18.238592,32.9416875,33.7553327,60.956769,3.8996285,7.7083443,12.7313949,2.8081943,9.8500855-3.3599242-9.0547191-22.6365572-18.4225821-61.5652592-15.9477346-84.1602081,2.1152851-19.2939497,15.0920001-52.5403634,29.9329079-70.7440814,0,0,.5375398-.6229208,1.0019645,0,.4658678.6229208,1.0911937,1.4534017,1.0911937,1.4534017,19.4574965,25.8120102,45.1992778,52.1440029,79.3233123,74.355098l20.7625035,12.397086c-17.235906-6.5382633-73.4267295-.5185395-73.4267295-.5185395-2.3452126-.120255-4.1543286,2.0142709-3.6581565,4.3109006,4.1179662,19.065677,6.0125503,37.1179315,3.9809209,56.6165262-.5810721,5.5745399,5.0033288,4.6757542,5.0033288,4.6757542,45.7760207,0,72.2010908-8.4700394,72.2010908-8.4700394l-3.4751284,5.2589908c-22.1184987,34.1694909-36.4552976,113.7876684-51.5446521,171.5468574-.4658678,1.7836219.9348622,3.4828248,2.775966,3.5593069,17.2748686.7147956,30.200836.8838741,48.0916506,1.1886002,2.1427033.0365575,4.1353283-1.3473368,4.7382868-3.403697,21.9400403-74.7141794,41.2017617-154.866289,41.5543493-180.8288584.0158737-1.218183.9444826-2.0303851,2.1571339-1.9115732,14.1280362,1.3901476,16.9047237-1.0089393,16.9047237,2.1044622.2154969,36.9144311,8.3695062,115.2778681-2.8685623,181.1901044-.2965488,1.7446593.7977715,3.1542882,2.5669628,3.1518831,11.4119572-.0168357,29.5197118-.3917907,45.1417959-.7977715,1.8634712-.048583,3.4270265-1.3497419,3.7971713-3.1764151,12.3499461-60.8627296,9.4318387-137.6390414-11.7229366-176.8140256-.3191567-.5894899.1308374-1.2150563.797531-1.1518022,17.1666391,1.6224802,34.8085259-.059887,50.9125919,2.7752445,3.838539.6755925,7.6193556-1.1575744,9.1860375-4.7272233,6.905041-15.7507569,5.9956729-39.9104637.3766386-57.0083169-.796088-2.4274671-3.5386231-3.7197271-6.0401672-3.2059978-16.5985546,3.40514-40.6091451,1.2992348-60.2039728,2.3865804l11.3224875-9.390471c21.6466182-16.2349035,60.0637555-40.0357694,92.5316384-77.8643788,1.1965371-1.3935147,3.3248097-1.4892377,4.5085998-.084419,15.9732287,18.9557927,27.7151655,59.8131441,27.3354003,75.6273957-.555097,22.9778408-5.2472059,45.252671-14.291583,69.4453276-2.2927815,5.4340821-5.3174348,12.5086826-5.7671884,13.6335477-2.8791448,6.1630678,5.9463683,11.0764458,9.849845,3.3599242,14.5919799-26.3375245,29.49999-60.9659084,43.22421-77.276332,19.59122-23.284972,27.7004944-17.9949554,28.6007232-24.7326015.96685-5.7388082,1.8810284-17.1736139,1.8810284-20.4969805,0-3.6191939-.3828919-4.8109208-2.78727-6.6289356-6.9574722-5.4513988-26.616035-15.1155701-36.1820783-21.6495043-12.2142984-8.3430501-17.8747004-23.814575-20.3538771-30.0334411,0-.2033998-4.5026863-11.0233282-9.1576573-19.5594727v-.7258591c14.9508208-28.3953277,22.9937145-60.6534859,25.9599238-101.5190147,1.2961082-14.3909136,1.7754445-22.6064934,1.7754445-22.6064934.2450797-.9990784.9432801-1.0642566,1.7829004-.8944566,6.5599092,1.4805793,13.3153531,1.6123788,13.3153531,1.6123788,9.3984078.2157374,24.4331666-2.8700054,41.3395739-79.3884905,17.7647874-80.4039235,40.7847174-123.0465804,3.2896953-138.7420201-.1993828-.3535496-.3415241-.6094522-.5409069-.9637234,5.4898804-27.9058899,19.3348364-51.0559359,21.6353142-83.0079249.1115966-1.568125-.6972384-3.0487043-1.9781944-3.9604776-5.9302541-4.2173422-13.1174134-12.7862311-13.8177784-19.6778036-14.9568336-194.6687637-212.7450114-329.6338153-437.9643126-219.5649119-7.1233556,3.9632669-11.3511082,15.0564047-11.3511082,15.0564047ZM599.1016054,289.82096c-6.9846498-11.6055677-3.6567135-9.8067937,7.0721954-9.8339713,32.5814036-.7258591,54.4495314-13.2761499,86.6990313-26.8673679,32.2492593-13.5895344,65.3857599-5.1865973,42.6768093,1.6688986-22.7089507,6.8545339-52.2717137,25.493575-68.3740962,58.2758044-16.1023825,32.7863181-18.8160564,11.7748867-32.3401721,39.8267662-20.0741968,49.0990522-17.3308564,91.1781882-19.5419155,109.5039454l-.0014431-.0014431c-.3396001,2.3435291-2.5445954,2.9135377-2.837777,2.9791969l-.0295827.0064938c-.000481,0-.0040887.000962-.0040887.000962h0c-3.2031117.6926687-6.3949194,1.3848564-9.3834962,2.0351953-3.5811933.4362851-4.7245777-1.6013153-4.9068843-1.9863718-6.1051049-14.1768597-18.5038745-59.230629-18.9519445-81.2459489-.5168559-25.7088314,19.8019067-44.7754992,24.3586085-55.7422725,4.5595879-10.9674948,2.5460385-27.0148005-4.4352442-38.6198872ZM613.8460687,619.2436075c-11.3400447.9971543-12.6003169-14.3322292-23.5670902-46.3125984-10.9636466-31.9806097-19.0810984-67.7966318,2.450556-70.5398884,15.5852861-.3333468,17.0324345,13.6662571,12.6674192,32.2725888-4.3666989,18.6022431,19.7894002,83.5813007,8.449115,84.579898ZM640.7574499,450.0660137c1.4644652-17.5923417,9.3409259-23.465114,22.4999475-29.6240931,6.481984-2.7848649,9.3887874-8.5203059,14.1910498-44.7877652,6.3097789-47.6344411,54.1508181-145.0520394,159.9610115-88.5334008,2.038803,1.0887886,4.5499675.7754041,6.2746644-.7698724,22.6276583-17.3960856,95.1289055-3.4970149,134.6021221,29.9624906,2.571773,2.1816659,6.1885618-1.0074962,4.3539519-3.8361339-32.9243708-50.7622732-87.2762552-62.4159429-128.0354786-53.2520323-.2792321.0630136-.5632743-.0317473-.7595305-.240991-49.3456695-52.8737102-107.464421-62.9806603-186.2148385-31.5265269-4.575702,1.8507242-4.0124277-1.0897506-1.6017964-4.4393329,2.3387189-3.2497706,30.1322907-31.3740436,76.9778591-45.8157048,2.4760501-.7626571,5.0526333-1.3817297,7.5623548-2.0253344,3.6278523-.9293305,9.0220097-2.6475337,8.7459043-4.5843604-.4148797-2.9068034-23.1142099-2.6874583-23.1142099-2.6874583-18.0151582-.3040046-21.702176-5.6947949,1.7295071-14.6713482,209.8076633-67.5667043,380.4355321,73.6771004,341.3961955,281.0166504-1.387983,11.8371788-1.9416369,15.2529013-5.6765161-2.2167803-4.0586056-18.9930717-22.4345288-71.2448231-32.555669-90.3283266-3.6502197-6.8841167-7.6354698-12.9545881-11.1789031-17.5916202,0,0-6.9577127-9.8084773-9.3666605-8.1739716-.9892175.7434163,1.0529526,5.6717059,1.0529526,5.6717059,1.1486756,3.1516425,2.6388753,7.3978459,4.0540359,12.7886362,3.573497,13.6063701,2.184071,28.5401147,1.001724,36.3973347-.5567806,3.7021699.2648015,7.4776952,2.2304894,10.6637307,21.473932,34.7613859,26.0799383,58.0437123,26.7564928,75.2565293.133964,3.3606457-2.9005501,6.0529142-6.2109293,5.4627028-6.517339-1.1631062-20.4260301-4.9321378-55.1960744-4.9321378-53.9947271,0-83.7727466-2.6237232-109.4794134,11.3025252-25.7083504,13.9262484-23.1142099,17.4728083-30.4098392,17.4728083-7.2958697,0-4.9761511-1.6025179-19.3507101-1.6025179-6.2602338,0-10.8424296,2.366618-16.1437502,2.366618-10.8854809,0-21.5299708-27.9393208-71.3398246-27.9393208h-102.6816398c-2.3642129,0-4.0155543-1.8370151-4.0744793-8.7827023ZM880.5297684,519.1666905c.5601477-.1026978.9827237.5464386.9827237.5464386,5.7977332,8.6932326,14.2581521,13.1085145,19.8819966,15.2480911,1.8793448.7147956,3.9405152.7744421,5.8807091.2417125,30.8708968-8.4907232,51.1227976-3.1357689,64.5370003,6.7932039,4.6904253,3.6581565,5.8232272,6.0529142,17.4951757,2.6754328,3.1061862-.9004693,5.9379505-1.1869167,8.4873561-.9509764,0,0,4.4003703.4906403,5.5824767,2.521747.4514372.8502027.2696117,2.2158183-.7722775,4.0944416-9.1143655,17.5709363-26.8664059,32.1881698-59.8480181,32.1881698-53.1045997,0-63.5848213-35.8982765-62.7439985-61.2117095,0-.6715038-.0444943-2.0428916.5168559-2.1465514ZM918.5402034,506.1418735c1.5859227-4.7582491,7.327617-12.7191289,21.3798926-14.1965816,24.8834012-2.6148243,28.7140034,20.6172355,48.9117896,27.942688.603199.218383.4896783,1.1063458-.1500782,1.135688-4.6519437.2154969-11.8600273-.8278353-21.94461-6.9206742-11.9095723-7.193653-27.6148729-16.694999-46.4405497-6.506035-.9810401.5296029-2.1090319-.3987655-1.7564443-1.4550853ZM966.7578812,484.389431c-.772037-.4586525-.4738046-1.6352272.4228165-1.6496578,4.9330998-.0822544,9.7430586-.1012547,14.328381-.1067864,0,0,13.1874018-.1628252,22.6865832,4.0489852,4.9232389,2.0173976,7.1792224,9.7791351,7.4312768,19.6458158.0336714,1.2747028-1.0815733,2.282199-2.3483393,2.1289942-21.305094-2.5604691-29.3744438-16.2481315-42.5207183-24.0673509ZM703.1534305,483.6325461c-18.2737064,8.4387731-32.1121687,24.4973827-46.7835169,28.3493903-1.3783626.3598029-2.7360413-.723454-2.7249779-2.149197.0304531-4.059347.6224727-8.590471,2.3582002-12.7335595,3.5423531-8.4691089,11.9603117-12.9569881,21.1134076-13.6604849,7.6547106-.5880469,16.1295601-1.2860068,25.5868929-1.6761139,1.073877-.0437728,1.4264646,1.4192493.4499941,1.869965ZM715.0168249,498.9809299c13.3759616-10.2567879,37.4870853-10.3301434,44.2117439.8297594.8598231,1.425262-.3987655,3.1970989-2.0294231,2.8500431-25.7545283-5.503349-39.3936078,19.6871835-71.9317196,16.2332199,0,0-2.8750561-.7968095,1.5012632-2.0715123,4.3746357-1.2747028,13.5099256-6.5389849,28.2481356-17.84151ZM665.5691792,541.3953428c6.3350324.3222833,13.2448836,2.3038449,19.5467257,7.0548787,2.5700895,1.9368267,6.1676375,1.2340566,8.2004277-1.2602722,6.0401672-7.410593,16.2250426-14.932061,39.47009-17.0038138,16.1349818-1.4352621,31.2423773,9.2765559,47.9831806,2.0222078,1.6835697-.7424543,2.7658646.6666936,1.2124107,1.9551055,0,0-7.412517,5.9403556-2.9291708,12.0726381,0,0,5.2055976,7.1241456,3.0186405,14.9717452-1.0209648,3.2490491-4.8212627,8.8233485-11.7070629,12.3213254-10.5600709,5.3511062-22.1807908,9.3281789-39.0010955,8.9957941-32.8986362,0-51.3272311-12.8485232-61.2634192-28.8082833-.0096204-.0110635-.0158737-.0192408-.0221269-.0303043-2.3262124-3.3382783-4.3570785-6.5810741-6.1296369-9.7199696-.6734279-1.1965371.2489278-2.6403184,1.6210371-2.5710515ZM780.3020517,598.6566762c9.6858172,2.3747954,2.7360413,9.3642554,3.1174901,17.3987312.3797652,8.0344758,5.3972841,13.5520149,1.1741696,16.6343905-8.8209434,4.6735896-16.6606061-7.6085327-16.6894673-17.682533-.0238105-8.665574,5.0574435-17.1146889,12.3978075-16.3505888ZM653.9034839,580.7331523c1.7340768-1.0976875,5.3494226-3.8815903,13.3216063.6638075l-.0767227-.1284323c13.8163353,11.310462,33.3695548,16.8417101,55.6636257,16.8417101,12.3100214,0,24.6282202-1.0178382,36.0815451-3.3519873-2.7920802,3.3137463-6.8013812,8.7771706-8.8130066,14.7942488-3.2658848,9.7788946-1.8076729,13.0709949-10.6589205,15.1300007-8.848121,2.0611704-19.0536803,16.0696731-37.2877026,23.6972061-15.2120146,6.360767-26.4084749-1.9305735-36.6318319-18.9278935-11.7707981-19.5635614-16.4453497-46.206774-11.5985929-48.7186601ZM706.0698543,816.6431213c-44.758904-47.5827315-68.5511116-125.9661308-19.1895684-133.6545128,11.1295985-1.7302287,13.133287,15.4364104,14.4479145,43.5888231,1.3146275,28.1531342,17.6515072,67.7771505,25.5520189,67.7771505,7.8971446,0,9.5374226-22.9025612,16.2156627-22.9025612s1.4117935,21.9063689,15.245686,45.0460729c22.4948968,37.6345179-23.7205356,30.4983468-52.2717137.1450275ZM776.0152021,705.0970058c-16.8328113,0-38.9962853-3.5513701-54.1638056-12.9187521-1.3336277-.821582-1.0351549-2.8447518.4661083-3.2865686,4.8914916-1.4471484,13.6070916-4.3522683,22.4662761-9.2716591,4.5836389-2.7545606,9.0619344-5.8975448,13.484191-8.9270083l.0432918.048583c9.9073269-6.7867101,19.5450421-12.9976394,29.5339019-12.9976394,16.0720782,0,22.0595738,17.5844049,52.9145969,17.5844049,1.5380612,0,3.0441346-.1012547,4.5244734-.2864474,23.0360442-2.0092202,39.7764996-18.6741555,53.9629798-18.6741555,13.1667179,0,21.0511155,21.0792552,48.7345337,31.3170427,2.6116977.7289857,4.913859,1.2802345,6.9319781,1.6927091,1.5363776.3133845,1.9623208,2.282199.7258591,3.2456819-7.6578372,5.9492544-24.165479,12.0678279-48.8398771,12.0678279-50.1290105,0-47.5541108-11.5954663-67.4678547-11.5954663-18.6294207,0-21.5395912,12.0014471-63.3166527,12.0014471ZM891.1456376,722.4772177c0,3.8544127-11.877825,14.4447878-49.1797176,14.4447878-37.3004496,0-41.1899767-12.0372831-41.1899767-15.5696529,0-3.3750763,20.0125935-.2455607,45.1848472-.2455607,25.1736968,0,45.1848472-2.487354,45.1848472,1.3704258ZM1099.7408902,557.4460157c-12.9593983,48.8415606-22.1346129,101.032463-37.539757,104.0542302-9.0378834,1.4550853-10.5088423-3.0304255-14.5357006-2.377922-15.1355325,3.344772-19.9919096,31.2978019-20.0287076,54.9182854-.0351145,23.6183188-7.9560696,65.5829781-42.7167339,115.4582506-21.148522,30.3398508-42.8093303,42.5789217-57.6896817,47.4049946-24.998365,8.376481-30.371117-9.2550639-35.3859903-7.3730734-3.5448763,1.3264124,2.5975076,11.1437886-1.61767,25.0404542-5.0860642,16.7731648-28.3407319,31.1390654-26.6749599,52.6115543.2503709,4.0754413-2.8892462,5.4162844-7.4760117,3.8464758-55.1498965-18.8735383-71.8999723-78.5806175-50.5838148-111.2591871,11.9718644-18.3518722,5.9826853-38.1809566,3.717322-46.3813842-2.2639203-8.196339,4.9585939-7.0087008,9.4974979.1363691,2.6689391,4.0954036,6.0495471,11.5100853,9.7558056,11.7253417,2.3747954.1363691,3.2076814-10.0032904,1.5245927-18.9002349-1.6830887-8.8969445-18.3699104-18.3093019-18.3699104-18.3093019-2.2225526-1.1919674-3.6747517-2.6889014-3.6747517-5.4290314,0-6.8769014,7.5972287-6.9504974,37.1583082-5.0860642,29.5644466,1.8673193,65.4576724-10.0845827,78.7314173-13.3694678,17.1728923-4.247887,20.2249638,12.3028061,18.3886702,31.5823252-1.4211734,13.8377407-3.523952,15.5708555-2.0390435,16.680809,1.5986697,1.1448274,9.1290366-2.95707,18.5481283-20.0821009,3.6184724-6.3590834,7.3420476-14.4072683,10.7594537-24.3968496,4.8595038-14.2213541,20.6412865-29.7962982,29.5993206-48.041384,9.8835164-20.1292408,10.8599868-38.6309507,8.6773589-40.0117184-5.564679-3.5196228-12.9577147,11.7061009-29.8275645,6.5704917-6.1327635-1.8673193-17.188766-8.4219374-27.737533-21.5730221-5.130799-6.5731373-8.7112708-12.7751677-9.6042843-14.1852776-13.9820467-22.8070787-36.7708466-36.7277954-45.1466061-30.9699869-4.1928102,3.693271,2.0580437,8.2961506,1.8283567,19.2908231-.3064097,14.6927536-28.8097264,24.8627174-54.1510586,24.8627174s-41.4261575-15.0725188-41.4261575-38.371681c0-12.2106908,12.3696679-30.3251796,14.9440865-47.9180024h-.0031266c2.063816-13.0712354,2.1588174-32.2526265,7.96569-43.1188666,0,0,5.504311-11.7157213,18.6534717-8.3541135,15.4873985,3.8330073,14.5332955,25.3394081,24.1351747,52.5379583,10.6971616,30.2927108,47.3034994,39.4518112,83.5161225,39.4518112,36.2155091,0,64.9468293-15.9402788,71.772021-49.3543279l5.9557482-30.5106128c1.7198867-8.7497524,3.5290027-15.8053527,6.7309118-19.1335296,3.5338129-3.4061021,14.5770683-7.0356379,20.8247956-6.9846498,2.4375685.0199623,4.6122596,1.703051,5.4658294,3.9876552,1.9464471,5.1986228,2.0546766,14.6145879,1.1676759,30.0851507-1.1135611,19.4433064-4.3777623,26.397652-.8836336,26.9320651,10.4816647,1.605885,19.8673255-10.8111633,19.7908433-16.7245818-.0733555-5.9158235-4.9217959-35.3811801,12.6481784-35.3811801,17.5702148,0,15.4260685,19.0308318,5.3559164,56.4197891Z"},"children":[]}]
12
12
  .map(function _c(el) {
13
13
  if (typeof el === 'string') return el;
14
14
  return createElement(el.type, el.props, ...(el.children || []).map(_c));
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — Mondelez International
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const MondelezInternational = react_1.forwardRef(function MondelezInternational({ viewBox = '0 0 1550 971', ...props }, ref) {
10
+ return react_1.createElement(
11
+ 'svg',
12
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[{"type":"title","props":{},"children":["MDLZ"]},{"type":"path","props":{"fillRule":"evenodd","fill":"#4f2170","d":"m459.6 890.2c-112.8 98.6-331 121.9-429.6-17.9-68-98.3-14.2-240 107.4-261.2 60.9-10.8 119.8 21.2 157.5 68 24.9 30.3 37.7 68 61 96.6 28.6 35.7 75 50.2 119.8 44.8 21.6-3.7 57.3-10.8 80.5-32.3q-40.4 59.2-96.6 102z"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","fill":"#4f2170","d":"m1347 729.3c-91.2-100.4-119.9-265.3-125.2-376.1-5.4-95 0-259.9 75-308.1-24.9-32.3-75-44.8-112.4-44.8-84.2 0-125.2 55.3-153.9 96.7-9.1 12.4-152.1 209.4-152.1 209.4 0 0-118.2-184.5-132.7-206.1-19.5-30.3-58.9-87.5-125.2-96.6-28.6-3.4-103.7-7.1-144.8 48.5 69.7 55.5 68 198.6 53.5 297.3-44.7 291.9-170 318.8-170 318.8 64.7 171.7 227.3 103.7 273.7-34 30.7-89.5 50.2-202.3 53.9-295.6l180.8 277.4 204-275.7c-34 487.2 134 626.9 280.8 626.9 146.8 0 196.9-134.3 196.9-134.3-80.4-5.4-148.4-46.5-202.3-103.7z"},"children":[]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ MondelezInternational.displayName = 'MondelezInternational';
21
+
22
+ exports.default = MondelezInternational;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — Mondelez International
2
+ // Auto-generated. Do not edit.
3
+
4
+ import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
5
+
6
+ export type SvgIconProps = SVGProps<SVGSVGElement>;
7
+
8
+ declare const MondelezInternational: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default MondelezInternational;
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — Mondelez International
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const MondelezInternational = forwardRef(
7
+ function MondelezInternational({ viewBox = '0 0 1550 971', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"title","props":{},"children":["MDLZ"]},{"type":"path","props":{"fillRule":"evenodd","fill":"#4f2170","d":"m459.6 890.2c-112.8 98.6-331 121.9-429.6-17.9-68-98.3-14.2-240 107.4-261.2 60.9-10.8 119.8 21.2 157.5 68 24.9 30.3 37.7 68 61 96.6 28.6 35.7 75 50.2 119.8 44.8 21.6-3.7 57.3-10.8 80.5-32.3q-40.4 59.2-96.6 102z"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","fill":"#4f2170","d":"m1347 729.3c-91.2-100.4-119.9-265.3-125.2-376.1-5.4-95 0-259.9 75-308.1-24.9-32.3-75-44.8-112.4-44.8-84.2 0-125.2 55.3-153.9 96.7-9.1 12.4-152.1 209.4-152.1 209.4 0 0-118.2-184.5-132.7-206.1-19.5-30.3-58.9-87.5-125.2-96.6-28.6-3.4-103.7-7.1-144.8 48.5 69.7 55.5 68 198.6 53.5 297.3-44.7 291.9-170 318.8-170 318.8 64.7 171.7 227.3 103.7 273.7-34 30.7-89.5 50.2-202.3 53.9-295.6l180.8 277.4 204-275.7c-34 487.2 134 626.9 280.8 626.9 146.8 0 196.9-134.3 196.9-134.3-80.4-5.4-148.4-46.5-202.3-103.7z"},"children":[]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ MondelezInternational.displayName = 'MondelezInternational';
20
+
21
+ export default MondelezInternational;
package/dist/trek.cjs ADDED
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — TREK
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const Trek = react_1.forwardRef(function Trek({ viewBox = '0 0 158 60', ...props }, ref) {
10
+ return react_1.createElement(
11
+ 'svg',
12
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[{"type":"defs","props":{},"children":[{"type":"g","props":{},"children":[]},{"type":"clipPath","props":{"id":"6fc2d66244"},"children":[{"type":"path","props":{"d":"M 68 0.015625 L 156 0.015625 L 156 59.984375 L 68 59.984375 Z M 68 0.015625 ","clipRule":"nonzero"},"children":[]}]},{"type":"clipPath","props":{"id":"8c24476fd5"},"children":[{"type":"rect","props":{"x":"0","width":"88","y":"0","height":"60"},"children":[]}]},{"type":"clipPath","props":{"id":"7dc59fcfd9"},"children":[{"type":"path","props":{"d":"M 5 3.246094 L 55.925781 3.246094 L 55.925781 56.464844 L 5 56.464844 Z M 5 3.246094 ","clipRule":"nonzero"},"children":[]}]},{"type":"clipPath","props":{"id":"ee56d74713"},"children":[{"type":"path","props":{"d":"M 34.234375 28.171875 L 11.484375 28.171875 C 10.601562 28.171875 9.960938 27.328125 10.199219 26.480469 L 16.445312 4.21875 C 16.609375 3.644531 17.132812 3.246094 17.730469 3.246094 L 40.480469 3.246094 C 41.363281 3.246094 42.003906 4.089844 41.761719 4.9375 L 35.515625 27.199219 C 35.355469 27.773438 34.832031 28.171875 34.234375 28.171875 Z M 19.457031 44.972656 L 22.671875 33.511719 C 22.910156 32.664062 22.273438 31.820312 21.390625 31.820312 L 9.695312 31.820312 C 9.097656 31.820312 8.574219 32.21875 8.414062 32.792969 L 5.195312 44.253906 C 4.957031 45.105469 5.597656 45.945312 6.480469 45.945312 L 18.175781 45.945312 C 18.773438 45.945312 19.296875 45.550781 19.457031 44.972656 Z M 25.375 32.792969 L 19.128906 55.054688 C 18.890625 55.902344 19.53125 56.746094 20.410156 56.746094 L 43.164062 56.746094 C 43.761719 56.746094 44.285156 56.347656 44.445312 55.773438 L 50.691406 33.511719 C 50.929688 32.664062 50.292969 31.820312 49.410156 31.820312 L 26.65625 31.820312 C 26.0625 31.820312 25.535156 32.21875 25.375 32.792969 Z M 41.4375 15.019531 L 38.21875 26.480469 C 37.980469 27.328125 38.621094 28.171875 39.503906 28.171875 L 51.199219 28.171875 C 51.792969 28.171875 52.320312 27.773438 52.480469 27.199219 L 55.695312 15.738281 C 55.933594 14.886719 55.296875 14.046875 54.414062 14.046875 L 42.71875 14.046875 C 42.121094 14.046875 41.597656 14.441406 41.4375 15.019531 Z M 41.4375 15.019531 ","clipRule":"nonzero"},"children":[]}]}]},{"type":"g","props":{"clipPath":"url(#6fc2d66244)"},"children":[{"type":"g","props":{"transform":"matrix(1, 0, 0, 1, 68, -0.000000000000011803)"},"children":[{"type":"g","props":{"clipPath":"url(#8c24476fd5)"},"children":[{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(0.529693, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 12.296875 0 C 9.929688 0 8.082031 -0.671875 6.75 -2.015625 C 5.414062 -3.367188 4.75 -5.195312 4.75 -7.5 L 4.75 -31.890625 L 12.546875 -31.890625 L 12.546875 -7.953125 C 12.546875 -7.546875 12.6875 -7.203125 12.96875 -6.921875 C 13.25 -6.640625 13.59375 -6.5 14 -6.5 L 19.59375 -6.5 L 19.59375 0 Z M 0.546875 -19.296875 L 0.546875 -25.640625 L 19.59375 -25.640625 L 19.59375 -19.296875 Z M 0.546875 -19.296875 "},"children":[]}]}]}]},{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(18.521498, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 2.703125 0 L 2.703125 -18.09375 C 2.703125 -20.425781 3.367188 -22.257812 4.703125 -23.59375 C 6.035156 -24.925781 7.882812 -25.59375 10.25 -25.59375 L 17.6875 -25.59375 L 17.6875 -19.296875 L 12.140625 -19.296875 C 11.679688 -19.296875 11.285156 -19.132812 10.953125 -18.8125 C 10.617188 -18.5 10.453125 -18.09375 10.453125 -17.59375 L 10.453125 0 Z M 2.703125 0 "},"children":[]}]}]}]},{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(33.31475, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 16.296875 0 C 13.398438 0 10.847656 -0.539062 8.640625 -1.625 C 6.441406 -2.707031 4.734375 -4.207031 3.515625 -6.125 C 2.304688 -8.039062 1.703125 -10.265625 1.703125 -12.796875 C 1.703125 -15.597656 2.285156 -18 3.453125 -20 C 4.617188 -22 6.175781 -23.535156 8.125 -24.609375 C 10.070312 -25.691406 12.226562 -26.234375 14.59375 -26.234375 C 17.289062 -26.234375 19.546875 -25.664062 21.359375 -24.53125 C 23.179688 -23.40625 24.554688 -21.867188 25.484375 -19.921875 C 26.421875 -17.972656 26.890625 -15.75 26.890625 -13.25 C 26.890625 -12.8125 26.863281 -12.300781 26.8125 -11.71875 C 26.757812 -11.132812 26.703125 -10.675781 26.640625 -10.34375 L 9.84375 -10.34375 C 10.039062 -9.476562 10.421875 -8.742188 10.984375 -8.140625 C 11.554688 -7.546875 12.273438 -7.101562 13.140625 -6.8125 C 14.015625 -6.53125 14.984375 -6.390625 16.046875 -6.390625 L 23.890625 -6.390625 L 23.890625 0 Z M 9.640625 -15.1875 L 19.390625 -15.1875 C 19.328125 -15.726562 19.226562 -16.25 19.09375 -16.75 C 18.957031 -17.25 18.75 -17.6875 18.46875 -18.0625 C 18.1875 -18.445312 17.859375 -18.78125 17.484375 -19.0625 C 17.117188 -19.351562 16.695312 -19.582031 16.21875 -19.75 C 15.738281 -19.914062 15.195312 -20 14.59375 -20 C 13.832031 -20 13.148438 -19.863281 12.546875 -19.59375 C 11.941406 -19.320312 11.441406 -18.960938 11.046875 -18.515625 C 10.648438 -18.066406 10.34375 -17.550781 10.125 -16.96875 C 9.90625 -16.382812 9.742188 -15.789062 9.640625 -15.1875 Z M 9.640625 -15.1875 "},"children":[]}]}]}]},{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(58.353373, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 2.90625 0 L 2.90625 -36.484375 L 10.640625 -36.484375 L 10.640625 -15.9375 L 14.046875 -15.9375 L 19.890625 -25.640625 L 28.546875 -25.640625 L 21.640625 -14.953125 C 23.640625 -14.117188 25.195312 -12.84375 26.3125 -11.125 C 27.425781 -9.40625 27.984375 -7.394531 27.984375 -5.09375 L 27.984375 0 L 20.1875 0 L 20.1875 -5.09375 C 20.1875 -6.03125 19.960938 -6.875 19.515625 -7.625 C 19.066406 -8.375 18.472656 -8.960938 17.734375 -9.390625 C 17.003906 -9.828125 16.175781 -10.046875 15.25 -10.046875 L 10.640625 -10.046875 L 10.640625 0 Z M 2.90625 0 "},"children":[]}]}]}]}]}]}]},{"type":"g","props":{"clipPath":"url(#7dc59fcfd9)"},"children":[{"type":"g","props":{"clipPath":"url(#ee56d74713)"},"children":[{"type":"path","props":{"fill":"currentColor","d":"M 4.957031 3.246094 L 4.957031 56.464844 L 55.925781 56.464844 L 55.925781 3.246094 Z M 4.957031 3.246094 ","fillOpacity":"1","fillRule":"nonzero"},"children":[]}]}]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ Trek.displayName = 'Trek';
21
+
22
+ exports.default = Trek;
package/dist/trek.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — TREK
2
+ // Auto-generated. Do not edit.
3
+
4
+ import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
5
+
6
+ export type SvgIconProps = SVGProps<SVGSVGElement>;
7
+
8
+ declare const Trek: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default Trek;
package/dist/trek.js ADDED
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — TREK
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const Trek = forwardRef(
7
+ function Trek({ viewBox = '0 0 158 60', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"defs","props":{},"children":[{"type":"g","props":{},"children":[]},{"type":"clipPath","props":{"id":"6fc2d66244"},"children":[{"type":"path","props":{"d":"M 68 0.015625 L 156 0.015625 L 156 59.984375 L 68 59.984375 Z M 68 0.015625 ","clipRule":"nonzero"},"children":[]}]},{"type":"clipPath","props":{"id":"8c24476fd5"},"children":[{"type":"rect","props":{"x":"0","width":"88","y":"0","height":"60"},"children":[]}]},{"type":"clipPath","props":{"id":"7dc59fcfd9"},"children":[{"type":"path","props":{"d":"M 5 3.246094 L 55.925781 3.246094 L 55.925781 56.464844 L 5 56.464844 Z M 5 3.246094 ","clipRule":"nonzero"},"children":[]}]},{"type":"clipPath","props":{"id":"ee56d74713"},"children":[{"type":"path","props":{"d":"M 34.234375 28.171875 L 11.484375 28.171875 C 10.601562 28.171875 9.960938 27.328125 10.199219 26.480469 L 16.445312 4.21875 C 16.609375 3.644531 17.132812 3.246094 17.730469 3.246094 L 40.480469 3.246094 C 41.363281 3.246094 42.003906 4.089844 41.761719 4.9375 L 35.515625 27.199219 C 35.355469 27.773438 34.832031 28.171875 34.234375 28.171875 Z M 19.457031 44.972656 L 22.671875 33.511719 C 22.910156 32.664062 22.273438 31.820312 21.390625 31.820312 L 9.695312 31.820312 C 9.097656 31.820312 8.574219 32.21875 8.414062 32.792969 L 5.195312 44.253906 C 4.957031 45.105469 5.597656 45.945312 6.480469 45.945312 L 18.175781 45.945312 C 18.773438 45.945312 19.296875 45.550781 19.457031 44.972656 Z M 25.375 32.792969 L 19.128906 55.054688 C 18.890625 55.902344 19.53125 56.746094 20.410156 56.746094 L 43.164062 56.746094 C 43.761719 56.746094 44.285156 56.347656 44.445312 55.773438 L 50.691406 33.511719 C 50.929688 32.664062 50.292969 31.820312 49.410156 31.820312 L 26.65625 31.820312 C 26.0625 31.820312 25.535156 32.21875 25.375 32.792969 Z M 41.4375 15.019531 L 38.21875 26.480469 C 37.980469 27.328125 38.621094 28.171875 39.503906 28.171875 L 51.199219 28.171875 C 51.792969 28.171875 52.320312 27.773438 52.480469 27.199219 L 55.695312 15.738281 C 55.933594 14.886719 55.296875 14.046875 54.414062 14.046875 L 42.71875 14.046875 C 42.121094 14.046875 41.597656 14.441406 41.4375 15.019531 Z M 41.4375 15.019531 ","clipRule":"nonzero"},"children":[]}]}]},{"type":"g","props":{"clipPath":"url(#6fc2d66244)"},"children":[{"type":"g","props":{"transform":"matrix(1, 0, 0, 1, 68, -0.000000000000011803)"},"children":[{"type":"g","props":{"clipPath":"url(#8c24476fd5)"},"children":[{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(0.529693, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 12.296875 0 C 9.929688 0 8.082031 -0.671875 6.75 -2.015625 C 5.414062 -3.367188 4.75 -5.195312 4.75 -7.5 L 4.75 -31.890625 L 12.546875 -31.890625 L 12.546875 -7.953125 C 12.546875 -7.546875 12.6875 -7.203125 12.96875 -6.921875 C 13.25 -6.640625 13.59375 -6.5 14 -6.5 L 19.59375 -6.5 L 19.59375 0 Z M 0.546875 -19.296875 L 0.546875 -25.640625 L 19.59375 -25.640625 L 19.59375 -19.296875 Z M 0.546875 -19.296875 "},"children":[]}]}]}]},{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(18.521498, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 2.703125 0 L 2.703125 -18.09375 C 2.703125 -20.425781 3.367188 -22.257812 4.703125 -23.59375 C 6.035156 -24.925781 7.882812 -25.59375 10.25 -25.59375 L 17.6875 -25.59375 L 17.6875 -19.296875 L 12.140625 -19.296875 C 11.679688 -19.296875 11.285156 -19.132812 10.953125 -18.8125 C 10.617188 -18.5 10.453125 -18.09375 10.453125 -17.59375 L 10.453125 0 Z M 2.703125 0 "},"children":[]}]}]}]},{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(33.31475, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 16.296875 0 C 13.398438 0 10.847656 -0.539062 8.640625 -1.625 C 6.441406 -2.707031 4.734375 -4.207031 3.515625 -6.125 C 2.304688 -8.039062 1.703125 -10.265625 1.703125 -12.796875 C 1.703125 -15.597656 2.285156 -18 3.453125 -20 C 4.617188 -22 6.175781 -23.535156 8.125 -24.609375 C 10.070312 -25.691406 12.226562 -26.234375 14.59375 -26.234375 C 17.289062 -26.234375 19.546875 -25.664062 21.359375 -24.53125 C 23.179688 -23.40625 24.554688 -21.867188 25.484375 -19.921875 C 26.421875 -17.972656 26.890625 -15.75 26.890625 -13.25 C 26.890625 -12.8125 26.863281 -12.300781 26.8125 -11.71875 C 26.757812 -11.132812 26.703125 -10.675781 26.640625 -10.34375 L 9.84375 -10.34375 C 10.039062 -9.476562 10.421875 -8.742188 10.984375 -8.140625 C 11.554688 -7.546875 12.273438 -7.101562 13.140625 -6.8125 C 14.015625 -6.53125 14.984375 -6.390625 16.046875 -6.390625 L 23.890625 -6.390625 L 23.890625 0 Z M 9.640625 -15.1875 L 19.390625 -15.1875 C 19.328125 -15.726562 19.226562 -16.25 19.09375 -16.75 C 18.957031 -17.25 18.75 -17.6875 18.46875 -18.0625 C 18.1875 -18.445312 17.859375 -18.78125 17.484375 -19.0625 C 17.117188 -19.351562 16.695312 -19.582031 16.21875 -19.75 C 15.738281 -19.914062 15.195312 -20 14.59375 -20 C 13.832031 -20 13.148438 -19.863281 12.546875 -19.59375 C 11.941406 -19.320312 11.441406 -18.960938 11.046875 -18.515625 C 10.648438 -18.066406 10.34375 -17.550781 10.125 -16.96875 C 9.90625 -16.382812 9.742188 -15.789062 9.640625 -15.1875 Z M 9.640625 -15.1875 "},"children":[]}]}]}]},{"type":"g","props":{"fill":"currentColor","fillOpacity":"1"},"children":[{"type":"g","props":{"transform":"translate(58.353373, 47.457212)"},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"d":"M 2.90625 0 L 2.90625 -36.484375 L 10.640625 -36.484375 L 10.640625 -15.9375 L 14.046875 -15.9375 L 19.890625 -25.640625 L 28.546875 -25.640625 L 21.640625 -14.953125 C 23.640625 -14.117188 25.195312 -12.84375 26.3125 -11.125 C 27.425781 -9.40625 27.984375 -7.394531 27.984375 -5.09375 L 27.984375 0 L 20.1875 0 L 20.1875 -5.09375 C 20.1875 -6.03125 19.960938 -6.875 19.515625 -7.625 C 19.066406 -8.375 18.472656 -8.960938 17.734375 -9.390625 C 17.003906 -9.828125 16.175781 -10.046875 15.25 -10.046875 L 10.640625 -10.046875 L 10.640625 0 Z M 2.90625 0 "},"children":[]}]}]}]}]}]}]},{"type":"g","props":{"clipPath":"url(#7dc59fcfd9)"},"children":[{"type":"g","props":{"clipPath":"url(#ee56d74713)"},"children":[{"type":"path","props":{"fill":"currentColor","d":"M 4.957031 3.246094 L 4.957031 56.464844 L 55.925781 56.464844 L 55.925781 3.246094 Z M 4.957031 3.246094 ","fillOpacity":"1","fillRule":"nonzero"},"children":[]}]}]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ Trek.displayName = 'Trek';
20
+
21
+ export default Trek;
package/dist/vidiq.cjs ADDED
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // @thesvg/react — VidIQ
3
+ // Auto-generated. Do not edit.
4
+
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+
7
+ const react_1 = require("react");
8
+
9
+ const Vidiq = react_1.forwardRef(function Vidiq({ viewBox = '0 0 390.02 131.12', ...props }, ref) {
10
+ return react_1.createElement(
11
+ 'svg',
12
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
13
+ ...[{"type":"defs","props":{},"children":[]},{"type":"g","props":{"id":"Logo"},"children":[{"type":"path","props":{"className":"cls-1","d":"M0,41.94H27.33L40.85,86h.28l13.52-44H82l-24.41,71H23.09Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M85.88,41.86l31.23-.13v71.21H85.88Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M222.51,1.38h31.23V112.94H222.51Z"},"children":[]},{"type":"polygon","props":{"className":"cls-1","points":"85.88 1.38 121.77 16.59 85.88 31.8 85.88 1.38"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M390,113.83,368.36,92.17c4.72-9,6.67-20.64,6.67-34.73C375,18.62,354,0,318.23,0,281,0,261.55,18.62,261.55,57.44c0,40,17.91,57.44,56.68,57.44,13.83,0,24.62-2.07,32.91-6.11l22.34,22.35ZM291.31,57.44c0-17.68,10.38-27.72,26.92-27.72s27.09,10,26.92,27.72C345,76.52,334.53,85,318.23,85.17,301.58,85.39,291.31,75.12,291.31,57.44Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M183.5,1.38v46.3h-.45c-5-6-13.11-8.27-23.4-8.27-23.27,0-36.47,14.28-36.47,38.11,0,24.35,11.43,37.81,37,37.81,9.77,0,20.29-3,24.39-9.31h.31v6.92H210.8V1.38ZM165.8,91.64c-7.67.12-12.4-5.17-12.4-14.27s4.78-14.26,12.4-14.26,12.48,5.17,12.4,14.26C178.12,87.19,173.31,91.53,165.8,91.64Z"},"children":[]}]}]
14
+ .map(function _c(el) {
15
+ if (typeof el === 'string') return el;
16
+ return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
17
+ })
18
+ );
19
+ });
20
+ Vidiq.displayName = 'Vidiq';
21
+
22
+ exports.default = Vidiq;
@@ -0,0 +1,9 @@
1
+ // @thesvg/react — VidIQ
2
+ // Auto-generated. Do not edit.
3
+
4
+ import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
5
+
6
+ export type SvgIconProps = SVGProps<SVGSVGElement>;
7
+
8
+ declare const Vidiq: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
9
+ export default Vidiq;
package/dist/vidiq.js ADDED
@@ -0,0 +1,21 @@
1
+ // @thesvg/react — VidIQ
2
+ // Auto-generated. Do not edit.
3
+
4
+ import { forwardRef, createElement } from 'react';
5
+
6
+ const Vidiq = forwardRef(
7
+ function Vidiq({ viewBox = '0 0 390.02 131.12', ...props }, ref) {
8
+ return createElement(
9
+ 'svg',
10
+ Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
11
+ ...[{"type":"defs","props":{},"children":[]},{"type":"g","props":{"id":"Logo"},"children":[{"type":"path","props":{"className":"cls-1","d":"M0,41.94H27.33L40.85,86h.28l13.52-44H82l-24.41,71H23.09Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M85.88,41.86l31.23-.13v71.21H85.88Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M222.51,1.38h31.23V112.94H222.51Z"},"children":[]},{"type":"polygon","props":{"className":"cls-1","points":"85.88 1.38 121.77 16.59 85.88 31.8 85.88 1.38"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M390,113.83,368.36,92.17c4.72-9,6.67-20.64,6.67-34.73C375,18.62,354,0,318.23,0,281,0,261.55,18.62,261.55,57.44c0,40,17.91,57.44,56.68,57.44,13.83,0,24.62-2.07,32.91-6.11l22.34,22.35ZM291.31,57.44c0-17.68,10.38-27.72,26.92-27.72s27.09,10,26.92,27.72C345,76.52,334.53,85,318.23,85.17,301.58,85.39,291.31,75.12,291.31,57.44Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M183.5,1.38v46.3h-.45c-5-6-13.11-8.27-23.4-8.27-23.27,0-36.47,14.28-36.47,38.11,0,24.35,11.43,37.81,37,37.81,9.77,0,20.29-3,24.39-9.31h.31v6.92H210.8V1.38ZM165.8,91.64c-7.67.12-12.4-5.17-12.4-14.27s4.78-14.26,12.4-14.26,12.48,5.17,12.4,14.26C178.12,87.19,173.31,91.53,165.8,91.64Z"},"children":[]}]}]
12
+ .map(function _c(el) {
13
+ if (typeof el === 'string') return el;
14
+ return createElement(el.type, el.props, ...(el.children || []).map(_c));
15
+ })
16
+ );
17
+ }
18
+ );
19
+ Vidiq.displayName = 'Vidiq';
20
+
21
+ export default Vidiq;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thesvg/react",
3
- "version": "3.0.15",
3
+ "version": "3.0.16",
4
4
  "description": "Typed React SVG components for all 3,800+ brand icons from thesvg.org",
5
5
  "type": "module",
6
6
  "sideEffects": false,