@deriv/quill-icons 2.8.2 → 2.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react/Currencies/CurrencyCryptoExchangeAdaIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeAdaIcon.js +12 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeAptIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeAptIcon.js +13 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeBaseIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeBaseIcon.js +12 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeBnbIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeBnbIcon.js +13 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeBtcIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeBtcIcon.js +12 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeDogeIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeDogeIcon.js +132 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeEthIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeEthIcon.js +16 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeLtcIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeLtcIcon.js +12 -0
- package/dist/react/Currencies/CurrencyCryptoExchangePolIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangePolIcon.js +12 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeSolIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeSolIcon.js +24 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeTrxIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeTrxIcon.js +12 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeUsdcIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeUsdcIcon.js +13 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeUsdtIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyCryptoExchangeUsdtIcon.js +12 -0
- package/dist/react/Currencies/CurrencyOpbnbIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyOpbnbIcon.js +13 -0
- package/dist/react/Currencies/index.d.ts +15 -1
- package/dist/react/Currencies/index.js +15 -1
- package/dist/react/Illustration/DerivLightMoreIcon.d.ts +4 -0
- package/dist/react/Illustration/DerivLightMoreIcon.js +6 -0
- package/dist/react/Illustration/DerivLightOpbnbIcon.d.ts +4 -0
- package/dist/react/Illustration/DerivLightOpbnbIcon.js +6 -0
- package/dist/react/Illustration/assets/DerivLightMore.webp +0 -0
- package/dist/react/Illustration/assets/DerivLightOpbnb.webp +0 -0
- package/dist/react/Illustration/index.d.ts +2 -0
- package/dist/react/Illustration/index.js +2 -0
- package/dist/react/Markets/MarketStocksSpacexIcon.d.ts +10 -0
- package/dist/react/Markets/MarketStocksSpacexIcon.js +14 -0
- package/dist/react/Markets/index.d.ts +1 -0
- package/dist/react/Markets/index.js +1 -0
- package/dist/react/allIconsNames.d.ts +2 -6
- package/dist/react/allIconsNames.js +16331 -16259
- package/package.json +2 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeAdaIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeAdaIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#0033AD', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M15.982 22.374a.187.187 0 1 0 .022-.373.187.187 0 0 0-.022.373m1.627.092a.147.147 0 1 1-.003-.294.147.147 0 0 1 .003.294m-3.163-.008a.15.15 0 0 0 .079-.143.147.147 0 1 0-.08.143m.144 2.966a.46.46 0 0 1-.115-.329h-.001a.455.455 0 1 1 .454.481h-.025a.46.46 0 0 1-.313-.152M12.697 25a.147.147 0 1 1 .15.252.147.147 0 0 1-.15-.252m2.305-1.83a.227.227 0 1 1-.396-.223.227.227 0 0 1 .396.224m-1.647.644a.187.187 0 1 0 .205-.312.187.187 0 0 0-.205.312m.148 1.113a.227.227 0 1 1 .23.392.227.227 0 0 1-.23-.392m-.123 1.495a.187.187 0 0 0 .134.347.187.187 0 1 0-.134-.347m1.03-1.951a.268.268 0 0 1-.264-.317.268.268 0 1 1 .265.317m2.65-1.228a.227.227 0 0 0 .283-.353.227.227 0 1 0-.283.353m.036 1.418a.454.454 0 0 0-.052.908h.026a.454.454 0 0 0 .026-.908m-1.874-.082a.45.45 0 0 1-.148-.625.454.454 0 1 1 .148.625m3.397-.766a.187.187 0 1 0-.17-.334.187.187 0 0 0 .17.334m-1.265.252a.267.267 0 1 1 .464.263.267.267 0 0 1-.464-.263m-1.224-.552a.267.267 0 1 1-.271-.46.267.267 0 0 1 .271.46m-1.598 2.764a.266.266 0 0 0-.037-.492.267.267 0 1 0 .037.492m1.547-2.051a.455.455 0 1 1 .907-.074.455.455 0 0 1-.907.074m.863 1.613a.455.455 0 1 0-.813.411.455.455 0 0 0 .813-.41m.645-.076a.267.267 0 1 1 .005.535.267.267 0 0 1-.005-.535m1.019-.639a.227.227 0 1 0-.453-.025.227.227 0 0 0 .453.025m.546-.141a.147.147 0 1 1 .15.253.147.147 0 0 1-.15-.253m-.509 1.438a.188.188 0 0 0-.276.086.187.187 0 1 0 .276-.087M14.39 27.77a.146.146 0 0 1 .146.118.15.15 0 0 1-.087.165.147.147 0 1 1-.059-.282m3.164.009a.147.147 0 1 0 .132.262.147.147 0 0 0-.133-.262m-1.634-1.77a.454.454 0 1 1-.906.074.454.454 0 0 1 .906-.074m-.981.984a.227.227 0 1 0-.248.379.227.227 0 0 0 .248-.38m.954.896a.186.186 0 0 1 .282.172.187.187 0 1 1-.282-.172M16 26.687a.267.267 0 1 0-.033.533.267.267 0 0 0 .032-.533m.998.38a.227.227 0 1 1 .396.222.227.227 0 0 1-.396-.222' })));
|
|
11
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeAdaIcon);
|
|
12
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeAptIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeAptIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#D5FAD3', fillRule: 'evenodd', d: 'M16 19a6 6 0 1 1 0 12 6 6 0 0 1 0-12m-3.447 9.475c.888.861 2.102 1.4 3.444 1.4s2.577-.512 3.468-1.4H14.36l-.903-1.391zm-1.428-2.783c.072.491.216.96.424 1.392h1.907l.903-1.392zm.424-2.783c-.207.432-.353.9-.424 1.391h4.137l.903-1.391zM16 20.125a4.94 4.94 0 0 0-3.446 1.392h4.515l-.904 1.392.904 1.391h3.806l-.03-.183a4.8 4.8 0 0 0-.394-1.208h-2.48l-.902-1.392h2.378A4.94 4.94 0 0 0 16 20.125', clipRule: 'evenodd' }),
|
|
10
|
+
React.createElement("path", { fill: '#0F0E0B', d: 'M11.55 22.909c-.209.432-.354.9-.425 1.391h4.137l.903-1.391z' }),
|
|
11
|
+
React.createElement("path", { fill: '#0F0E0B', d: 'M20.875 24.3a4.8 4.8 0 0 0-.424-1.391h-2.48l-.902-1.392h2.378A4.94 4.94 0 0 0 16 20.125a4.94 4.94 0 0 0-3.446 1.392h4.515l-.904 1.392.904 1.391zm-7.419 2.784-.903 1.391c.888.861 2.102 1.4 3.444 1.4s2.577-.512 3.468-1.4H14.36zm.903-1.392h-3.234c.072.491.216.96.424 1.392h1.907zm.903 1.392h5.19c.207-.433.352-.9.423-1.392h-4.71l-.903-1.391-.903 1.39' })));
|
|
12
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeAptIcon);
|
|
13
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeBaseIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeBaseIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#0052FF', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M16 21.25a3.75 3.75 0 1 1-3.731 4.125H17.5v-.75h-5.23A3.75 3.75 0 0 1 16 21.25' })));
|
|
11
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeBaseIcon);
|
|
12
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeBnbIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeBnbIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#F3BA2F', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M17.174 24.511c-.029-.005-.045-.023-.06-.04l-.012-.013-.146-.146q-.444-.442-.884-.888c-.057-.057-.087-.057-.144 0q-.285.29-.573.578l-.455.457c-.05.05-.077.056-.13 0q-.275-.283-.56-.557c-.048-.047-.045-.075 0-.12q.875-.871 1.746-1.747c.037-.037.057-.033.091.002l1.74 1.74c.047.046.056.076.003.127q-.196.191-.39.387l-.17.17q-.019.019-.039.036zm.654 1.662-.028.03-.402.404-1.353 1.358c-.038.038-.056.031-.09-.002a660 660 0 0 0-1.752-1.757c-.042-.042-.04-.067 0-.106q.298-.288.587-.583c.046-.047.07-.023.096.005l.009.009.235.236q.403.4.8.806c.062.062.088.051.143-.004q.261-.265.524-.528.25-.25.499-.503c.056-.057.088-.056.144.002a25 25 0 0 0 .559.561l.01.01c.014.012.029.025.03.05l-.006.006z' }),
|
|
11
|
+
React.createElement("path", { fill: '#fff', d: 'm15.981 25.667.01.007c.025.002.038-.011.05-.024l.004-.004.002-.002.157-.158q.219-.22.44-.436c.041-.04.043-.062.002-.104a61 61 0 0 1-.607-.609c-.026-.026-.042-.033-.071-.004q-.31.316-.624.628c-.034.033-.022.048.006.075l.417.419.188.19q.013.012.026.021m2.352-1.337.013.011.034.032.17.168q.213.213.43.425c.024.025.03.034.002.06a70 70 0 0 0-.616.612c-.03.031-.049.038-.083.002a40 40 0 0 0-.59-.59c-.042-.041-.042-.064 0-.104l.422-.42.17-.172c.012-.012.023-.025.048-.024m-4.671 1.331.007.007c.02.002.029-.008.037-.017l.005-.004.155-.155.468-.464c.022-.021.024-.04-.003-.065a48 48 0 0 1-.605-.6c-.039-.04-.06-.037-.097.001q-.303.305-.611.606c-.023.022-.024.031-.001.054l.466.461.158.157z' })));
|
|
12
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeBnbIcon);
|
|
13
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeBtcIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeBtcIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#F7931A', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M18.68 24.41c.117-.786-.481-1.209-1.3-1.49l.266-1.066-.648-.161-.259 1.037q-.256-.064-.52-.122l.261-1.044-.648-.162-.265 1.065q-.212-.047-.414-.098v-.003l-.893-.223-.173.692s.481.11.471.117c.263.066.31.24.302.377l-.302 1.214.067.021-.068-.017-.424 1.7c-.032.08-.114.199-.297.153.006.01-.472-.117-.472-.117l-.321.742.844.21.461.12-.268 1.076.648.162.265-1.065q.265.07.517.134l-.265 1.06.648.161.268-1.075c1.106.21 1.937.125 2.287-.874.282-.805-.014-1.27-.596-1.572.424-.098.743-.377.828-.952m-1.482 2.077c-.2.805-1.555.37-1.995.26l.357-1.427c.44.11 1.848.327 1.638 1.167m.201-2.089c-.183.733-1.31.36-1.676.27l.322-1.295c.366.091 1.545.261 1.354 1.025' })));
|
|
11
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeBtcIcon);
|
|
12
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeDogeIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeDogeIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#C2A633', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'm12.621 24.512-.103-.093-.1-.094-.102-.096-.05-.047-.053-.046-.4-.381.407.376.048.048.05.047.101.094q.05.045.101.096zm-1.778-.02s.487.05.725.085c.22.031.91.137.91.137zm0 0q.204.019.41.041l.204.022.103.011.101.015.408.065.204.034.204.036a5 5 0 0 1-.204-.026l-.204-.03-.408-.06-.101-.016-.103-.012-.204-.024a12 12 0 0 1-.41-.055m1.586.349s-.52.132-.696.182c-.173.048-.696.207-.696.207z', clipRule: 'evenodd' }),
|
|
11
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'M12.429 24.84q-.173.053-.348.099l-.347.093-.346.101-.173.048-.174.047q.086-.03.172-.055l.173-.055.346-.106.35-.089q.17-.043.347-.082m-1.32.71c.058-.02.718-.329.871-.4.077-.037.3-.116.3-.116z', clipRule: 'evenodd' }),
|
|
12
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'M11.11 25.55q.075-.03.146-.064l.144-.067.288-.14c.096-.045.19-.095.288-.138q.076-.031.152-.055l.077-.025.076-.021c-.096.046-.197.084-.293.129-.096.048-.194.087-.293.13l-.293.128zm.064.27s.598-.351.803-.464c.108-.06.457-.233.457-.233z', clipRule: 'evenodd' }),
|
|
13
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'm11.174 25.82.306-.19.154-.093.156-.091q.078-.047.157-.091a1 1 0 0 1 .08-.041l.08-.04c.109-.053.216-.107.33-.152-.103.065-.209.12-.315.177l-.158.085q-.077.045-.156.088-.078.046-.157.088l-.158.087zm1.255-.62-.492.377c-.12.091-.475.347-.475.347z', clipRule: 'evenodd' }),
|
|
14
|
+
React.createElement("path", { fill: '#E2CC85', fillRule: 'evenodd', d: 'm14.563 27.502-.19-.36.11-.45.79-.305-.336-.69.166-.696.311-.623.963-.152.708-.674 1.528.115.3 1.634-.577 2.057-.33 1.066-1.334.05-.619-.43-.725-.302z', clipRule: 'evenodd' }),
|
|
15
|
+
React.createElement("path", { fill: '#F1D789', fillRule: 'evenodd', d: 'M16.903 27.49s-.185.085-.5.065c-.09-.122-.728-.18-.728-.18s-.08-.023-.22.035c-.143.057-.277.05-.402.081s-.25-.132-.345-.166c-.096-.036-.224-.122-.224-.122l-.268-.026-.54-.228-.858-.855-.233.365-.072.451.26.535.698.636 1.36.346.808-.238 1.01-.427z', clipRule: 'evenodd' }),
|
|
16
|
+
React.createElement("path", { fill: '#F4ECB4', fillRule: 'evenodd', d: 'm12.067 24.47.172-.522.206-.338.663-.056-.199.58-.554.987.23.88-.408.205-.125-.192-.1-.441-.008-.495z', clipRule: 'evenodd' }),
|
|
17
|
+
React.createElement("path", { fill: '#F3E19D', fillRule: 'evenodd', d: 'm12.81 27.454-.127-.177s-.034-.085-.014-.159c.019-.074.016-.08.007-.107-.01-.029-.092-.126-.087-.21s-.007-.112.056-.179c.065-.065.045-.177.045-.177l.085.052.019-.03s.03.025.03.063c.008-.053-.02-.295.043-.35.065-.056.178.259.178.259l-.07-.457-.18-.467-.319-.428-.019-.47v-.041s-.147.225-.187.403c-.03.122.04.27.026.446-.012.175-.026.162.016.23.043.07.147.212.106.315-.036.089-.158.027-.158.027s-.024.071-.057.098a.2.2 0 0 0-.048-.096l-.007.039s-.021-.067-.043-.152c-.029-.113-.06-.261-.088-.34-.011.045-.04.184-.04.184l.016.213.08.293.076.192.075.235.065.158.053.12.045.272.22.232.118.053z', clipRule: 'evenodd' }),
|
|
18
|
+
React.createElement("path", { fill: '#F2E8B0', fillRule: 'evenodd', d: 'M12.182 24.044s-.158.268-.203.54a3.6 3.6 0 0 0-.058.926c.029.371.084.6.129.763.077.27.276.647.276.647l.006-.014a1 1 0 0 1-.08-.2c-.025-.102-.035-.224-.06-.28-.02-.055-.057-.103-.074-.17-.017-.066-.02-.169-.07-.245a.5.5 0 0 1-.055-.194c-.01-.123.005-.26-.007-.372-.022-.188-.036-.315-.017-.413.02-.098.12-.377.183-.598.04-.142.016-.261.091-.385.075-.122.12-.23.137-.304.02-.068-.198.299-.198.299', clipRule: 'evenodd' }),
|
|
19
|
+
React.createElement("path", { fill: '#F5EEC0', fillRule: 'evenodd', d: 'M12.933 23.936s-.082.024-.12.067c-.04.04-.056.075-.108.143-.053.07-.056.126-.098.212s-.137.212-.149.257-.031.26-.055.36a.5.5 0 0 0 .024.226l.055-.012s0 .072.056.12c.055.048.065-.16.065-.16l.207-.699.311-.211.034-.171z', clipRule: 'evenodd' }),
|
|
20
|
+
React.createElement("path", { fill: '#E6DB9D', fillRule: 'evenodd', d: 'M13.084 24.252s-.146.01-.218.063c-.03.02-.041.038-.072.064-.057.048-.116.092-.144.154a1 1 0 0 0-.088.334c-.01.075-.01.144-.017.204-.01.081-.024.146-.016.192.01.093.106.142.115.247l.2-.1.187-.74.398-.249-.226-.252z', clipRule: 'evenodd' }),
|
|
21
|
+
React.createElement("path", { fill: '#E5CB7A', fillRule: 'evenodd', d: 'm12.034 29.228.003-.022c.029-.25.034-.439.055-.557.031-.168.052-.23.047-.294-.006-.1-.014-.174-.004-.252.014-.103.115-.225.112-.31-.002-.067-.036-.11-.065-.151l-.052-.075s.199-.137.197-.688l.012.005.098.278.067.082.257.48.331.32.49.33.306.334.031.89-.4.52-.066.12c-.522-.263-1-.603-1.419-1.01', clipRule: 'evenodd' }),
|
|
22
|
+
React.createElement("path", { fill: '#D8C173', fillRule: 'evenodd', d: 'M13.26 30.08s.006-.11.097-.183q.024.038.022.065a.58.58 0 0 1 .393-.264c.26-.047.324-.238.324-.238l.554-.504.634-.583.771-.27.36-.09s.007.027-.006.085c.067-.005.215-.039.37-.093.062-.024.12-.034.151-.002.046.043.052.144.055.204.075-.017.162-.088.23-.082.111.012.21.142.322.142.149 0 .216-.091.32-.163.062-.043.151-.096.201-.132.12-.088 1.395-.478 1.395-.478l.446.03.072.479-.038 1.254-.015.014-2.03 1.06-2.815.432a5.7 5.7 0 0 1-1.8-.62z', clipRule: 'evenodd' }),
|
|
23
|
+
React.createElement("path", { fill: '#F1D789', fillRule: 'evenodd', d: 'M12.205 29.388c.04-.084.076-.154.082-.18.005.051.014.162.033.28z', clipRule: 'evenodd' }),
|
|
24
|
+
React.createElement("path", { fill: '#E0CD81', fillRule: 'evenodd', d: 'm14.261 30.567.364-.101.031.01s.016.01.016.042c.046-.026.085-.021.113-.038.015.03.03.134.093.146.067.015.14-.029.212-.084.072-.058.154-.13.216-.159q.033.063.06.13c.081-.065.223-.33.425-.325a.77.77 0 0 1 .28-.338.6.6 0 0 1 .452-.126.8.8 0 0 1 .212-.19c.024.01.09.051.174.013.085-.04.18-.19.305-.21a.3.3 0 0 1 .194.042s.365-.363.617-.483c-.01-.029-.03-.139.266-.381.016.014.005.055.016.057a.7.7 0 0 0 .168-.1c.113-.085.248-.174.33-.198.153-.046.316.048.316.048a.2.2 0 0 1 .046-.022 1 1 0 0 0 .088-.019c-.002.05.026.137 0 .212q.045.025.096.04c-.017.036-.053.128-.113.171.05.025.058.053.13.077-.03.04-.077.11-.099.154-.021.045-.098.235-.132.306-.036.072-.084.204-.108.23s-.107.14-.172.195c.057-.021.293-.093.393-.12l-.326.482a5.7 5.7 0 0 1-4.663.54', clipRule: 'evenodd' }),
|
|
25
|
+
React.createElement("path", { fill: '#DFC57C', fillRule: 'evenodd', d: 'M13.108 24.226s-.084 0-.1.012c-.017.012.084.036.115.047a.27.27 0 0 1 .115.108c.017.041.607.279.607.279l.418-.022.144-.198-.274-.24.192-.566-.255.04-.611.365-.307.118z', clipRule: 'evenodd' }),
|
|
26
|
+
React.createElement("path", { fill: '#E5CC7C', fillRule: 'evenodd', d: 'M14.025 24.414q.01.015.025.023t.033.008c.086 0 .166.021.199.065a9 9 0 0 1 .208.293l.367.132.024-.432-.4-.279-.457.168v.022z', clipRule: 'evenodd' }),
|
|
27
|
+
React.createElement("path", { fill: '#D2C281', fillRule: 'evenodd', d: 'M13.953 24.574s.067.005.151-.027c.085-.03.224-.098.284-.071.084.036.067.148.158.25.056.062.157.06.214.127.057.066.254.035.254.035l.075.404-.3.384-.098.478h-.406l-.37-.147-.183-.442.091-.446z', clipRule: 'evenodd' }),
|
|
28
|
+
React.createElement("path", { fill: '#E2C270', fillRule: 'evenodd', d: 'M14.738 24.593a.1.1 0 0 0 .03.005c-.01.01-.035.031-.026.087s.041.125.015.168a.2.2 0 0 1 .046.08c.016.047.021.09.129.097a.2.2 0 0 0-.043.034s.075.065.113.125c.038-.001.141-.033.141-.033l.022.014.046-.019s-.043-.016-.012-.12c.029-.091.055-.087.057-.093a1 1 0 0 0 .022-.142c.014-.05.026-.204.026-.204l-.031-.339-.175-.106-.142-.137-.134.253-.088.088-.007.218z', clipRule: 'evenodd' }),
|
|
29
|
+
React.createElement("path", { fill: '#CCB360', fillRule: 'evenodd', d: 'M15.158 24.31s.031.088.043.156a.2.2 0 0 0 .007-.04s.024.133.029.189c.01-.002.019-.005.021.005s.024.117.02.177a.5.5 0 0 1 .162-.163.3.3 0 0 1 .132-.052c.075-.002.13.047.219.047.215 0 .41-.158.554-.207.106-.035.197-.062.261-.12a.7.7 0 0 0 .137-.17c.067-.116.137-.216.207-.229a.4.4 0 0 1-.096.007s.021-.022.058-.05c.036-.03.08-.066.141-.066.111 0 .166.017.229.017.062-.002.098-.017.098-.017s.065.046.211.046c.147.002.245.015.322.021.076.007.334-.021.407-.019a.4.4 0 0 1 .14.034l-.239-.691-.854-.747-.509.36-.782.783-.758.28-.158.178v.27z', clipRule: 'evenodd' }),
|
|
30
|
+
React.createElement("path", { fill: '#D5B457', fillRule: 'evenodd', d: 'M16.857 23.914s.021-.022.057-.05c.036-.03.08-.066.142-.066.11 0 .166.017.228.017.062-.002.098-.017.098-.017s.065.046.212.046c.146.002.245.014.321.02.077.008.334-.02.408-.018a.4.4 0 0 1 .139.034l-.108-.312-.125-.238-.357-.391-.433-.254-.148-.041-.388.235-.353.911-.006.192.228.108c.057-.096.12-.173.18-.182z', clipRule: 'evenodd' }),
|
|
31
|
+
React.createElement("path", { fill: '#D2B257', fillRule: 'evenodd', d: 'M16.852 23.979c-.034.002-.062-.005-.07-.03-.029-.08-.052-.092-.076-.092-.025 0-.058.052-.077.057-.02.005-.043-.06-.043-.06l-.021-.01s-.126.081-.214.178-.233.259-.298.288-.288.039-.365.055a.5.5 0 0 0-.173.085c-.011.012.035.026.041.038.007.012-.074.007-.081.02-.005.01.019.065.03.093a.2.2 0 0 1 .068-.017c.075-.002.129.048.218.048.216 0 .41-.158.555-.207.105-.036.197-.062.26-.12a.7.7 0 0 0 .138-.171q.055-.092.108-.155', clipRule: 'evenodd' }),
|
|
32
|
+
React.createElement("path", { fill: '#D2B159', fillRule: 'evenodd', d: 'M13.761 28.784s-.02-.072-.197-.258c-.05-.052-.082-.096-.116-.127-.084-.08-.134-.1-.194-.146-.132-.098-.275-.098-.386-.219-.11-.12-.24-.35-.33-.585a4 4 0 0 1-.112-.317c0-.007.024-.052.055-.045s.031.067.04.081l.052.067c.045.053.11.115.143.209a1 1 0 0 0-.034-.168s.171.108.317.22c.146.113.207.152.25.224.042.071.143.26.191.316s.71.264.71.264l.316.235.156.343-.122.192-.235.05-.382-.17z', clipRule: 'evenodd' }),
|
|
33
|
+
React.createElement("path", { fill: '#C2A44D', fillRule: 'evenodd', d: 'M12.913 27.603s.08.127.274.248c.175.105.452.202.698.259.142.034.284.06.41.062.344.005.58-.093.872-.125.158-.017.352-.03.554-.077.26-.062.413-.132.622-.23.151-.07.29-.123.402-.19.159-.093.274-.197.408-.228-.016.046-.034.127-.166.212l.166-.007s-.093.055-.257.18c-.101.076-.235.206-.372.293-.088.055-.184.096-.248.129a1.1 1.1 0 0 0-.316.23.1.1 0 0 1 .039 0s-.127.017-.219.065c-.019 0-.052-.006-.11.01-.046.015-.106.048-.168.065-.089.026-.118.015-.118.015l.015.029s-.115-.002-.154.002c.007.002.005.005.005.005l-.019.006a.2.2 0 0 1-.06.027l-.036.004c.005.012.043.077.06.116l-.233.174q.01.017.017.034c.006.022.01.053.016.067.017.03.026.034.026.034l-.072.017c-.038.01-.086.026-.153.036l-.062.005c.01.021.052.102-.027.197-.078.094-.103.108-.127.168l-.039-.025c-.026-.011-.062-.029-.074-.052a1 1 0 0 1-.03.091c-.024.065-.06.13-.066.178-.027-.03-.075-.086-.142-.075-.067.012-.12.103-.132.13 0-.017-.012-.03-.015-.01a.74.74 0 0 1-.244.425c-.002-.046-.002-.147-.007-.18-.02.02-.043.048-.183.108-.137.06-.115.12-.115.12s-.012-.096.062-.197c.075-.1.12-.148.12-.156a.04.04 0 0 0-.01-.022c-.009-.01-.028-.02-.028-.029.011-.004.127-.06.12-.174a.3.3 0 0 0-.081-.195c-.005-.004.045-.04.038-.052-.004-.007-.066-.052-.074-.077a.2.2 0 0 1 .01-.042q.01-.031.01-.05a.4.4 0 0 0-.04-.099c.007.002.056 0 .056 0s-.04-.062-.046-.091c-.007-.03-.021-.106-.03-.12.017.001.058.004.058 0 .002-.015-.036-.04-.02-.058a.1.1 0 0 1 .056.039c-.011-.031-.03-.092-.072-.116a.18.18 0 0 1 .142.01.2.2 0 0 1 .077.081s.034.027.086.065c.06.048.137.116.26.164.026.014.093.014.141.004a.2.2 0 0 0 .06-.024l.022-.01-.036-.06.036.002s.011-.026-.04-.077c.01-.011.025-.019.025-.038-.016-.002-.045-.027-.052-.036.01-.007.024-.03.04-.036-.014-.012-.05-.06-.066-.065a.3.3 0 0 0 .045-.022s-.081-.021-.107-.039c-.027-.019-.066-.052-.089-.062-.024-.01-.067-.014-.084-.034.016.005.042 0 .062 0l.026.002c-.002-.006-.002-.021.036-.026a.2.2 0 0 0 .052-.016s-.036-.002-.076-.041c-.041-.04-.075-.07-.098-.075-.025-.005-.07.017-.099.015-.038-.005-.055-.025-.055-.025s-.129.012-.415-.163a1.5 1.5 0 0 1-.356-.285.4.4 0 0 1-.067-.031c-.093-.049-.222-.15-.218-.282z', clipRule: 'evenodd' }),
|
|
34
|
+
React.createElement("path", { fill: '#CAA13E', fillRule: 'evenodd', d: 'M16.485 21.776q.035.01.058.038c.046.053.075.152-.03.258.042.014.058.019.094.014-.036.043-.117.134-.122.214-.005.065.036.084.036.084s-.063.072-.065.192a1 1 0 0 1 .096-.09c.071-.058.17-.123.237-.164q0 .026.007.05s.125-.102.23-.057c.048.022.027.089.027.089s.065-.025.11.02c.046.047.11.164.144.21.014.021.052.062.091.125q.08.133.132.279c.002-.05.015-.13.158-.08s.307.157.444.365.17.444.24.533a.8.8 0 0 1 .146.29c.005.06-.021.255.123.78.04-.163.103-.525.103-.525l.034-.32.038-.988-1.032-.857-.806-.586-.526.05z', clipRule: 'evenodd' }),
|
|
35
|
+
React.createElement("path", { fill: '#B59544', fillRule: 'evenodd', d: 'M18.403 23.247s-.015-.096-.258-.26c-.242-.16-.432-.16-.606-.298-.134-.108-.274-.355-.365-.437-.088-.08-.103-.313-.103-.313l.298-.25.443-.64.375-.413.18.25.25.293.138.588.05.861z', clipRule: 'evenodd' }),
|
|
36
|
+
React.createElement("path", { fill: '#C89D3A', fillRule: 'evenodd', d: 'M18.703 24.279a1.1 1.1 0 0 0-.048-.387 7 7 0 0 0-.269-.684c-.026-.147-.006-.159.022-.175.028-.017.134-.077.192-.288.058-.212.238-.219.238-.219l.11-.081.168.42.147.38.045.29.035.247-.08.524-.393.355z', clipRule: 'evenodd' }),
|
|
37
|
+
React.createElement("path", { fill: '#CEB052', fillRule: 'evenodd', d: 'M13.216 30.101a.1.1 0 0 0 .022-.02c.007-.009.011-.02.016-.023a.2.2 0 0 1 .08-.015c.024.005.088.031.122.03.07-.003.152-.056.28-.032.195.036.24.168.353.243.077.052.157.029.168.029h.026c.005 0 .041-.04.06-.039.04.002.043.034.068.036.057.007.168-.03.223-.015a.1.1 0 0 1 .07.07.11.11 0 0 1-.026.108c-.06.055-.118.108-.13.154l.043.036a5.7 5.7 0 0 1-1.375-.55z', clipRule: 'evenodd' }),
|
|
38
|
+
React.createElement("path", { fill: '#CCA847', fillRule: 'evenodd', d: 'M18.386 28.172s.152-.202.204-.302c.053-.103-.166-1.409-.166-1.409l.439-1.437-.012-.468s.022-.433.072-.62c.06.108.248.238.289.307.019-.132.084-.41.074-.708.036.055.123.612.123.612l.086.375.113.398.125.42.075.29.042.07.036.123.034.132.098.31.058.254.046.46q.015.054.02.109c.003.05-.006.08-.006.088 0 .009.017.11.01.187-.01.077-.01.137-.07.192s-.098.385-.098.385l-.108-.072s.021-.098-.029-.187a.19.19 0 0 0-.204-.094c-.055.012-.166.03-.202.06-.034.032-.117.128-.194.172-.096.057-.252.062-.336.081a.9.9 0 0 0-.276.144q-.116.075-.243.128', clipRule: 'evenodd' }),
|
|
39
|
+
React.createElement("path", { fill: '#C39D3C', fillRule: 'evenodd', d: 'm18.386 30.293.019.011a5.7 5.7 0 0 0 1.818-1.347 9 9 0 0 0-.021-.473c-.017-.158-.005-.319-.01-.412a6 6 0 0 0-.081-.571c-.027-.098-.077-.147-.085-.147a1.2 1.2 0 0 0-.047.23c0 .047-.01.157-.01.185-.007-.002-.01-.019-.01-.026-.01.024-.021.067-.026.072s.007-.04 0-.05-.02-.005-.017-.03l.007-.042s-.029.042-.05.151-.022.11-.03.12c-.006.012-.045.05-.047.066-.002.026.036.052.039.066.002.025-.034.137-.046.192-.011.056-.007.163-.019.219-.01.05-.02.08-.052.1l.047.012s.034.144-.052.267c-.031.042-.039.062-.072.1-.065.072-.116.154-.12.207l-.007-.047s-.101.117-.144.184c-.055.087-.132.082-.154.103s-.026.06-.019.091c-.019.005-.055.012-.08.087a.18.18 0 0 1-.086.103c-.045.026-.1.034-.129.04.024.007.034.007.046.015-.015.024-.082.062-.157.11a.33.33 0 0 0-.129.157c-.019.04-.047.067-.093.072.02.011.048.039.062.047-.021.005-.057.005-.122.06-.068.057-.092.073-.123.078', clipRule: 'evenodd' }),
|
|
40
|
+
React.createElement("path", { fill: '#D2BA6B', fillRule: 'evenodd', d: 'M17.035 30.743a.6.6 0 0 1 .12-.063c.151-.06.312-.072.375-.091.06-.02.108-.046.182-.06l-.005.047q-.33.105-.672.167', clipRule: 'evenodd' }),
|
|
41
|
+
React.createElement("path", { fill: '#C0993A', fillRule: 'evenodd', d: 'M19.828 26.76s-.03.168-.086.274-.115.253-.115.253q0-.05.011-.098c-.07.04-.24.138-.288.182a1 1 0 0 0-.141.147c.045-.134.093-.255.1-.31-.07.05-.396.32-.566.497l-.529.428a2 2 0 0 1-.188.088c-.091.04-.199.072-.279.103a.44.44 0 0 1 .103-.156c.05-.048.202-.212.226-.288.02-.08.026-.127-.002-.194-.027.006-.087.01-.128.021-.04.012-.084.055-.084.055s.031-.177.098-.345c-.05.002-.137.016-.137.016s.12-.202.327-.342a1 1 0 0 0-.185.057c-.12.05-.252.125-.35.166.055-.077.443-.631.674-1.148.23-.515.317-.647.367-.924.027-.137.02-.34.027-.52s.029-.341.014-.449c.06.075.286.285.293.756s-.215 1.107-.451 1.45c.057.016.207.036.36-.23.153-.267.151-.341.207-.452.007.055.005.075.005.075s.223-.271.329-.612c.021.147.084.276-.015.545-.088.243-.204.302-.204.302s.058-.01.142-.06c.015.035.012.076.036.09.024.015.057.04.062.063.026-.039.067-.088.08-.125-.01.076-.017.412.019.583.075-.007.152-.011.204-.146a.6.6 0 0 0-.012.324c.04-.027.076-.076.076-.076', clipRule: 'evenodd' }),
|
|
42
|
+
React.createElement("path", { fill: '#A88F33', fillRule: 'evenodd', d: 'M17.306 21.409s-.075.03-.202.03c-.111 0-.08-.042-.253-.042-.266 0-1.195.154-1.358.152-.106-.002.357.045.357.045l1.184.017.238-.02.088-.18z', clipRule: 'evenodd' }),
|
|
43
|
+
React.createElement("path", { fill: '#E3C571', fillRule: 'evenodd', d: 'M14.237 23.723s-.152.115-.216.204-.098.146-.17.218a.2.2 0 0 0 .05-.007s0 .02-.012.024a.07.07 0 0 1 .056.02c-.022.011-.08.07-.034.139.034.052.105.057.105.057s-.016.047.053.042c.148-.006.314-.072.391-.055.077.02.12.026.175.12.057.094.108.108.108.108s.034-.086.026-.215a.6.6 0 0 0 .046-.219l-.051-.371-.22-.28-.286.16z', clipRule: 'evenodd' }),
|
|
44
|
+
React.createElement("path", { fill: '#D8B65B', fillRule: 'evenodd', d: 'M14.508 23.667s.02.05.11.055c-.01.022-.01.025-.007.041l.005.04a.1.1 0 0 0 .027-.018c.004.021-.005.055 0 .08q.003.021.014.042l.005-.01c.002-.005.02.053.067.096a.04.04 0 0 1 .005-.019q.001.019.011.034l-.01-.007s.006.154.032.233l.011-.016c0-.005-.002.043-.006.077-.007.034-.002.081-.002.081a.3.3 0 0 1 .057-.034c.029-.012.077-.047.106-.127a1 1 0 0 0 .039-.139q.014.027.019.058c.002.024.047.011.047.011l.01-.105.058-.24.052-.149.253-.393.456-.351.398.091.336-.456-.579-.348-.548.057-.497.689-.398.624z', clipRule: 'evenodd' }),
|
|
45
|
+
React.createElement("path", { fill: '#D3AE4D', fillRule: 'evenodd', d: 'M17.376 22.67s-.034.008-.133.058c-.098.051-.165.067-.203.142a.4.4 0 0 0-.041.134s.067-.029.106-.039c.04-.01.086-.006.081.01a.1.1 0 0 1-.019.031s.077-.002.075.036a.2.2 0 0 1-.03.098c-.014.02-.074.048-.08.07-.017.046.006.048-.003.084-.007.037-.039.106-.144.229-.107.122-.153.209-.153.209s-.053-.099-.08-.183l-.122.067-.239-.832.005-.055s.021-.027.026-.075c-.036-.012-.04-.022-.088-.067s-.087-.101-.166-.14c-.012-.02-.026-.05-.085-.061-.058-.012-.093-.021-.093-.021s.031-.012.046-.037c-.036.005-.065.017-.144.015-.08-.002-.088-.005-.132.002-.043.007-.096.026-.115-.04-.022-.017-.067-.003-.106.055-.04.057-.053.102-.127.125a.3.3 0 0 1-.034.093c-.022.036-.056.072-.101.125-.072.085-.06.224-.175.33-.116.105.019-.294.019-.294l.184-.442.526-.513.815-.055.08.422.398.137z', clipRule: 'evenodd' }),
|
|
46
|
+
React.createElement("path", { fill: '#CAA13E', fillRule: 'evenodd', d: 'm17.505 22.764-.343-.494-.24-.185s-.17-.314-.182-.324a2 2 0 0 0-.274-.03l.019.047q.034.01.058.039c.045.052.074.15-.03.257.041.014.058.019.094.014-.036.043-.118.134-.123.214-.005.065.036.084.036.084s-.062.072-.065.192a1 1 0 0 1 .096-.09c.072-.058.171-.123.238-.164q0 .026.007.05s.125-.102.23-.057c.048.022.026.089.026.089s.066-.025.111.021c.046.046.11.163.144.209.014.021.052.062.091.125q.08.133.132.279c.002-.04.01-.094.077-.094z', clipRule: 'evenodd' }),
|
|
47
|
+
React.createElement("path", { fill: '#F4EFC8', fillRule: 'evenodd', d: 'M12.367 24.168s-.024-.06 0-.178.062-.172.075-.345.125-.389.125-.389l.311-.141.22.06.066.295-.279.154s-.014.065-.093.117-.187.093-.213.147a.4.4 0 0 0-.035.103s-.08-.017-.127.036c-.05.053-.048.1-.05.141', clipRule: 'evenodd' }),
|
|
48
|
+
React.createElement("path", { fill: '#EBCC73', fillRule: 'evenodd', d: 'M12.996 24.09s-.026.016-.046.057a1.2 1.2 0 0 1-.067-.381c-.002-.166-.011-.208.027-.265s.189-.117.168-.22c-.022-.098-.111-.14-.22-.111-.078.02-.135.182-.214.264-.06.062-.133.052-.152.086-.026.046-.002.092-.01.12a.6.6 0 0 1-.07.126c-.088.127-.237.307-.257.468.007-.091.002-.093.026-.194l-.014-.024.096-.315.062-.26.139-.433.244-.444.238-.266.248.017.029.371.142.699.298.367-.478.321z', clipRule: 'evenodd' }),
|
|
49
|
+
React.createElement("path", { fill: '#E5C66B', fillRule: 'evenodd', d: 'M13.145 24.221s-.041.01-.056.002c-.014-.007-.029-.016-.024-.026s.031-.026.031-.034a.027.027 0 0 0-.024-.03c-.023-.002-.03.013-.03.013s-.02-.017-.038-.02l.03-.002a.3.3 0 0 0-.084-.024c.025-.014.072-.057.103-.057s.05-.005.046-.021c-.005-.017-.03-.041-.055-.05.01-.013.016-.03-.007-.078-.025-.047-.015-.08-.007-.09.007-.015.031-.042.043-.058.011-.017.021-.039.04-.05l.072-.032c.034-.011.063-.026.082-.011.021.014.012.034.012.034s.067-.025.127.006c.06.03.207.048.207.048l.052.106-.347.298-.144.072z', clipRule: 'evenodd' }),
|
|
50
|
+
React.createElement("path", { fill: '#E6BD62', fillRule: 'evenodd', d: 'M13.627 23.734s-.108.072-.132.098c.014.002.039.012.03.026-.013.015-.082.065-.121.113a1 1 0 0 0-.094.137.5.5 0 0 1-.163.112c.08 0 .24-.098.3-.098-.002.03.017.062.05.065.035.003.133.022.265-.06.132-.08.088-.139.144-.177.105-.07.148-.133.206-.171a.4.4 0 0 1 .089-.048s.002-.03.019-.026a.03.03 0 0 1 .021.016s.101-.072.23-.091l-.006-.007s.01-.005.012-.01c0 0 .006-.01.011-.004.005.004.012.04.022.055.021-.01.062-.101.062-.101l.098-.28v-.257l-.077.015-.576.244-.35.363z', clipRule: 'evenodd' }),
|
|
51
|
+
React.createElement("path", { fill: '#B6933F', fillRule: 'evenodd', d: 'M15.285 22.477a.3.3 0 0 0 .089-.036c-.012.03-.012.065-.062.139-.05.073-.053.084-.093.16-.041.08-.046.195-.085.245a.2.2 0 0 1 .055-.016s-.038.034-.055.07c-.016.036-.046.11-.117.156s-.163.075-.261.183c-.099.105-.2.24-.25.288a.7.7 0 0 0 .072-.197c.01-.06-.002-.133.014-.212.017-.08.017-.137.096-.276.08-.139.216-.621.216-.621l.293-.093z', clipRule: 'evenodd' }),
|
|
52
|
+
React.createElement("path", { fill: '#C49937', fillRule: 'evenodd', d: 'M15.074 22.299s-.089.127-.113.24-.002.103-.017.158a.2.2 0 0 0 0 .103q.047-.075.123-.12c.083-.05.151-.087.192-.13.04-.045.075-.12.163-.177-.036-.005-.087-.022-.096-.02.036-.04.143-.102.252-.177.108-.077.101-.108.276-.185-.057.01-.084-.004-.132 0 .02-.04.086-.06.154-.127.067-.067-.043-.166-.043-.166l-.512.31z', clipRule: 'evenodd' }),
|
|
53
|
+
React.createElement("path", { fill: '#DFC068', fillRule: 'evenodd', d: 'm13.684 22.068.012-.093.147-.235.153-.413v-.564l-.012-.326.025-.214.018-.068.02-.026.125.065.172.235.017.454-.168.715-.48.523z', clipRule: 'evenodd' }),
|
|
54
|
+
React.createElement("path", { fill: '#A88F33', fillRule: 'evenodd', d: 'M14.066 20.103s-.077.002-.093.321c-.017.32-.025.488-.036.646-.012.158-.04.254-.053.348s-.021.22-.065.298c-.019.035-.06.148-.156.233a1 1 0 0 1-.293.163c-.043.01-.26.03-.348.08-.03.016-.084.035-.144.09a1.8 1.8 0 0 0-.386.524c-.173.34-.346 1.303-.346 1.303l.04-.065s.004-.087.09-.238c.085-.152.06-.322.178-.612.046-.11.103-.254.173-.377.11-.198.245-.37.38-.463a1.2 1.2 0 0 1 .463-.184l.26-.173s.046-.088.107-.19c.084-.14.192-.3.215-.53.036-.34-.05-.563-.045-.765s.006-.35.047-.387c.041-.036.012-.022.012-.022', clipRule: 'evenodd' }),
|
|
55
|
+
React.createElement("path", { fill: '#C99E3D', fillRule: 'evenodd', d: 'M14.066 21.627s.115-.283.168-.535c.01-.05.029-.1.034-.141.024-.238.03-.336 0-.466-.025-.096-.118-.183-.166-.25-.048-.07-.07-.096-.06-.11a.1.1 0 0 1 .084-.037.3.3 0 0 1 .207.096c.075.087.134.38.134.38l.062.387.158.487z', clipRule: 'evenodd' }),
|
|
56
|
+
React.createElement("path", { fill: '#B58634', fillRule: 'evenodd', d: 'M15.148 21.332s-.021.01-.06 0a.09.09 0 0 1-.039.082c-.04-.017-.422.016-.422.016s-.178-.031-.233-.266c-.039-.156.029-.372.007-.514-.034-.208-.082-.25-.087-.314-.005-.065-.01-.082-.01-.122-.02-.005-.034-.012-.055-.012-.005-.02.005-.036-.016-.07.011.005.09.015.184.103.077.072.077.098.088.113.015.014.132.115.183.215s.149.42.17.473a.4.4 0 0 0 .058.091c.057.07.14.186.232.205', clipRule: 'evenodd' }),
|
|
57
|
+
React.createElement("path", { fill: '#A88F33', fillRule: 'evenodd', d: 'M14.52 20.352q.087.143.158.296c.057.129.09.235.163.32-.04-.112-.108-.333-.149-.412a1 1 0 0 0-.173-.204', clipRule: 'evenodd' }),
|
|
58
|
+
React.createElement("path", { fill: '#E6C367', fillRule: 'evenodd', d: 'M13.859 21.948s-.098.025-.28.12q-.09.047-.173.082a3 3 0 0 1-.42.159l.014.016s0 .048.026.075c-.015.014-.209.147-.152.588.04-.014.085-.034.092-.034.011.002.014.034.029.034.014 0 .062-.019.113-.084-.002.026-.032.29.125.468.029-.034.103-.147.103-.147l.002-.036s.006-.125.047-.24a.6.6 0 0 1 .12-.199l.416-.593z', clipRule: 'evenodd' }),
|
|
59
|
+
React.createElement("path", { fill: '#DCBA5A', fillRule: 'evenodd', d: 'M13.47 22.82a.2.2 0 0 1-.061.03.24.24 0 0 1 .04-.189c.067-.098.214-.225.255-.326.026-.065.014-.228.247-.437s.325-.28.325-.28l.376-.19.463.182-.23.902-.178.423-.71-.134z', clipRule: 'evenodd' }),
|
|
60
|
+
React.createElement("path", { fill: '#E9CE77', fillRule: 'evenodd', d: 'm13.742 22.575.088-.11v-.08s.098-.026.204-.133.253-.315.382-.302.141.28.146.355.022.245.048.336c.029.091-.315.437-.315.437l-.233.178z', clipRule: 'evenodd' }),
|
|
61
|
+
React.createElement("path", { fill: '#CDAE50', fillRule: 'evenodd', d: 'M14.015 23.496s.072-.113.02-.137c.03-.07.088-.144.088-.144s.04-.1.173-.225c.132-.124.213-.207.235-.29a1 1 0 0 0 .021-.166q.021.018.046.031c.021.01.122.093.107.261s-.076.238-.076.238-.06.06-.103.091c-.046.031-.062.067-.14.07a.1.1 0 0 1 .027-.014s-.08-.01-.122.029c-.043.039-.134.158-.18.194z', clipRule: 'evenodd' }),
|
|
62
|
+
React.createElement("path", { fill: '#D2A83E', fillRule: 'evenodd', d: 'M17.244 21.608a1.2 1.2 0 0 0-.358-.07c-.204-.007-.502.005-.794.007-.314.002-.6-.108-.996-.128-.065-.038-.23-.208-.747.152.031-.002.375-.08.495.07.12.148.086.4.07.46-.032.135-.133.33-.173.467-.041.137-.031.209-.06.305-.03.096-.094.144-.056.254.05-.03.077-.03.161-.22.085-.19.067-.325.207-.485.137-.16.365-.381.451-.437s.775-.412 1.496-.071c.173-.019.303-.304.303-.304', clipRule: 'evenodd' }),
|
|
63
|
+
React.createElement("path", { fill: '#C29637', fillRule: 'evenodd', d: 'm14.64 21.476-.005-.022a.2.2 0 0 0-.026-.039s-.171-.03-.258-.021c-.151.017-.288.204-.352.3s-.144.245-.23.321a.03.03 0 0 0-.005-.021s.005.007-.005.017q-.014.013-.005.019l.015.014c.005 0 .139-.06.321-.23.194-.178.343-.269.42-.3a.6.6 0 0 1 .13-.038', clipRule: 'evenodd' }),
|
|
64
|
+
React.createElement("path", { fill: '#AC8132', fillRule: 'evenodd', d: 'M17.954 20.746s-.03.039-.07.081c-.086.091-.199.194-.295.3-.091.101-.194.18-.31.312s-.25.279-.283.321a.3.3 0 0 0-.055.149l-.036-.024q.012.023.029.042c.024.034.062.077.081.103q.036.051.05.11c.012.003.087.017.18-.136.094-.153.216-.321.216-.321l.194-.289.122-.244.154-.274z', clipRule: 'evenodd' }),
|
|
65
|
+
React.createElement("path", { fill: '#A88F33', fillRule: 'evenodd', d: 'M18.153 20.55s-.117.095-.163.153c-.045.058-.153.209-.153.209l.038-.005.198-.175.076-.137z', clipRule: 'evenodd' }),
|
|
66
|
+
React.createElement("path", { fill: '#A67A2E', fillRule: 'evenodd', d: 'M18.117 28.265s-.002-.08.043-.127c.046-.048.161-.118.274-.38.112-.262.125-.321.125-.321s-.202.173-.326.213c.029-.06.045-.103.06-.134-.017-.014-.087-.03-.093-.038.038-.04.06-.135.138-.198.101-.076.286-.208.43-.326.143-.118.424-.391.46-.47.022.03.027.05.027.05s-.142.184-.216.302c-.065.1-.06.158-.06.158l.134-.058s.039.144-.137.362c.077-.029.108-.011.151-.036-.072.046-.17.108-.264.28-.09.17-.215.369-.425.493-.204.131-.32.23-.32.23', clipRule: 'evenodd' }),
|
|
67
|
+
React.createElement("path", { fill: '#8C6228', fillRule: 'evenodd', d: 'M17.591 21.709s-.08.166-.091.295c-.002.03-.01.055-.01.091-.002.116.007.245-.019.305-.01-.024-.015-.04-.024-.05-.015.04-.041.167-.062.215a1 1 0 0 1-.03-.266c.002-.127.005-.151.005-.178-.005.04-.03.092-.04.123-.015-.027-.032-.06-.051-.089-.012.02-.026.048-.039.062l-.01-.086c-.001-.05-.004-.116-.002-.13a.6.6 0 0 1 .133-.222 2 2 0 0 0 .24-.396c.03-.067.162-.346.162-.346h.102l-.147.334s-.088.182-.134.25c-.046.067-.142.259-.185.333.031-.04.058-.062.089-.1a2 2 0 0 0 .113-.145', clipRule: 'evenodd' }),
|
|
68
|
+
React.createElement("path", { fill: '#CBA94C', fillRule: 'evenodd', d: 'M18.155 20.537a.4.4 0 0 1-.077.139c-.06.072-.189.168-.252.245a.66.66 0 0 0-.12.52c.019-.052.055-.156.151-.274.096-.117.2-.252.25-.357.05-.106.057-.19.057-.19l.02-.024-.013-.055z', clipRule: 'evenodd' }),
|
|
69
|
+
React.createElement("path", { fill: '#A88F33', fillRule: 'evenodd', d: 'M20.121 26.977s-.039-.106-.05-.202.019-.115-.017-.225c-.021-.067-.06-.058-.07-.067a.6.6 0 0 1-.014-.166.6.6 0 0 0-.012-.159c-.014-.011-.024-.021-.046-.093-.024-.072-.035-.108-.047-.129s-.046-.04-.046-.062c0-.043.039-.065.039-.077-.002-.024-.031-.005-.039-.012-.01-.011.024-.081.012-.09-.005-.006-.039.035-.048.023-.01-.011-.021-.127-.039-.203-.016-.075-.034-.13-.035-.152a15 15 0 0 0-.167-.49 2 2 0 0 1-.065-.234c-.01-.046-.016-.139-.021-.13s-.002.058-.01.056c-.007-.002-.03-.168-.039-.194-.006-.026-.047-.115-.057-.18s-.031-.235-.046-.35c-.014-.116-.021-.163-.021-.192a1 1 0 0 0-.012-.212 2 2 0 0 0-.091-.357c-.065-.163-.238-.58-.269-.684 0-.027.034-.012.034-.012s.085.212.147.375c.06.163.117.306.132.321.011.015.103.175.143.437.041.262.056.504.08.665.012.077.021.158.046.24.026.088.067.18.12.32q.07.174.098.3c.022.107.022.188.034.242.012.046.03.137.07.269s.101.302.142.407c.08.212.115.389.127.483.01.097.047.433.037.534', clipRule: 'evenodd' }),
|
|
70
|
+
React.createElement("path", { fill: '#BE9C44', fillRule: 'evenodd', d: 'm18.16 20.525-.005.012s.015.005.012.024l-.005.08c-.005.034-.015.06-.017.082 0 .045.007.098-.057.228-.02.035-.031.067-.04.088a.3.3 0 0 1-.051.084c.034-.019.156-.096.218-.084a.45.45 0 0 0-.148.134c.01.002.05.01.115 0 .108-.016.228-.055.334-.048.115.007.07-.139.07-.139l-.134-.293-.252-.177z', clipRule: 'evenodd' }),
|
|
71
|
+
React.createElement("path", { fill: '#A17C34', fillRule: 'evenodd', d: 'M18.818 22.722s-.112-.113-.158-.5c-.046-.388-.036-.96-.036-.96l-.091-.223s-.02-.148-.067-.204c-.048-.055-.142-.148-.185-.194-.042-.045-.09-.108-.12-.117.015-.025.08-.162.33-.164.249-.001.326.137.352.188s.143.269.187.685c.04.415.043.446.036.59-.005.08-.031.264-.077.461-.042.167-.087.353-.17.438', clipRule: 'evenodd' }),
|
|
72
|
+
React.createElement("path", { fill: '#8C6228', fillRule: 'evenodd', d: 'M18.465 23.052a.2.2 0 0 0 .108-.024c.036-.002.166.015.266-.112a.22.22 0 0 1-.022.177c.025-.024.06-.034.066-.04.001.035.035.146-.108.415.039-.043.084-.04.125-.046.002.05.029.22-.043.312-.047.062-.125.043-.125.043v-.041c-.002-.026-.012-.053-.005-.07a.4.4 0 0 1-.1-.07c-.085-.08-.195-.215-.203-.316-.01-.113.091-.137.091-.137a.1.1 0 0 1-.02-.027c-.006-.016-.01-.042-.03-.064', clipRule: 'evenodd' }),
|
|
73
|
+
React.createElement("path", { fill: '#92723A', fillRule: 'evenodd', d: 'M17.716 21.831s-.005-.007-.03.024q.007-.045.011-.088a.3.3 0 0 1 .048-.072c-.015.03-.025.055-.025.055s.036-.067.089-.107c.036-.03.081-.043.1-.07.022-.03.017-.034.022-.04 0 0 .048-.03.12-.122.01-.011.025-.024.034-.035.017-.007.056-.025.101-.048.048-.026.101-.062.134-.077.065-.029.134-.026.166-.072.025-.006.05-.08.046-.141.036.014.22.129.284.38.045.177-.037.45-.07.583s-.04.23-.087.29c-.06.08-.254.192-.302.248-.04.045-.163.16-.158.244.005.062.081.096.098.108s.017.026.048.02c.03-.008.042-.022.055-.022.015.002.015.005.021.005l.015-.002s-.005.088-.212.115l-.047.01c.024-.012.038-.012.065-.048-.03-.005-.113-.01-.134-.016a.3.3 0 0 1 .047-.058c.017-.014-.002-.019-.016-.011a1 1 0 0 0-.072.055c-.024.021-.046.05-.085.077a.19.19 0 0 1 .036-.166c-.011.002-.034.036-.055.029a.3.3 0 0 1 .007-.106.5.5 0 0 1 .075-.12l.304-.545.065-.413z', clipRule: 'evenodd' }),
|
|
74
|
+
React.createElement("path", { fill: '#B18E3E', fillRule: 'evenodd', d: 'M17.7 21.855s-.017.011.016.033c-.005.007-.016.031-.03.048-.017.02-.035.031-.042.048-.014.034-.026.057-.026.071a.35.35 0 0 1-.045.168 1 1 0 0 0-.043.082c-.024.043-.046.077-.05.096a1 1 0 0 0-.017.127l.029-.036q-.016.038-.043.07c.012-.01.046-.034.103-.084.08-.067.204-.18.356-.27-.046.017-.085.017-.116.022.024-.024.243-.28.357-.305a.05.05 0 0 0 .01-.03l-.098-.01-.2.042-.028-.153z', clipRule: 'evenodd' }),
|
|
75
|
+
React.createElement("path", { fill: '#543E26', fillRule: 'evenodd', d: 'M18.016 22.728s-.026.027-.05.092a.3.3 0 0 1-.048-.065c-.036-.06-.091-.137-.22-.094-.002-.04-.005-.062 0-.09a.5.5 0 0 0 .151-.135.6.6 0 0 0 .118-.19q.03-.023.096-.066c.062-.043.137-.101.148-.166-.029.012-.09.04-.184.036.036-.017.091-.034.084-.106l.027-.017a.1.1 0 0 0-.034-.004c-.002-.007-.005-.017-.022-.012s-.019.005-.021.012c-.007.002-.03 0-.046.011-.016.012-.062.05-.08.057l.017-.029s-.048.005-.082.02c-.062.021-.134.06-.206.098q.009-.018.014-.022l.017-.006c0-.003-.005-.02-.002-.027a1 1 0 0 1 .077-.132.25.25 0 0 0 .04-.11l.149-.075.417-.096.271.016-.034.188-.16.327-.136.298-.157.183z', clipRule: 'evenodd' }),
|
|
76
|
+
React.createElement("path", { fill: '#806031', fillRule: 'evenodd', d: 'M18.693 21.917s-.163.202-.209.233c.03-.062.21-.432.274-.535-.014-.011-.034-.011.012-.192-.039.091-.053.139-.085.163-.032.025-.036.017-.057.017a.04.04 0 0 0 .005-.024s-.137-.017-.23-.017c-.094 0-.28.05-.382.091-.082.034-.128.034-.157.056-.029.024-.045.05-.06.057-.012.007-.067.024-.08.043-.011.019-.03.04-.03.045s-.005.012.01.007a2 2 0 0 1 .252-.134c.138-.055.182-.046.244-.057.065-.012.158-.04.22-.04.063-.001.18 0 .207.006-.011.01-.021.021-.016.062 0 .012-.01.024-.02.052-.028.08-.084.212-.114.279-.043.091-.092.168-.116.215-.024.048-.076.173-.129.24-.052.067-.08.108-.096.123s-.134.1-.125.132a.65.65 0 0 0 .254-.168c.098-.11.118-.178.194-.238a.65.65 0 0 0 .173-.245c.03-.077.023-.102.061-.17', clipRule: 'evenodd' }),
|
|
77
|
+
React.createElement("path", { fill: '#B6903C', fillRule: 'evenodd', d: 'M15.178 23.424s-.022.088-.07.132c-.048.043-.132.08-.142.152-.012.072.084.108.084.108s-.052.086-.052.15c0 .068-.002.08.005.145l-.02.019s.005.062.053.1c.048.04.088.063.113.053l.01.024s.035-.09.06-.17c.024-.082.045-.07.055-.18s.115-.298.115-.298l.072-.161-.117-.091z', clipRule: 'evenodd' }),
|
|
78
|
+
React.createElement("path", { fill: '#685026', fillRule: 'evenodd', d: 'M15.396 23.582a1 1 0 0 0-.067.08c-.031.043-.055.082-.1.098-.046.017-.076.017-.073.062.003.046.046.065.07.089a.11.11 0 0 1 .036.11c.015-.006.04-.014.065-.067a21 21 0 0 1 .194-.372z', clipRule: 'evenodd' }),
|
|
79
|
+
React.createElement("path", { fill: '#D4B968', fillRule: 'evenodd', d: 'M16.065 22.846s.014-.039 0-.067c-.015-.03-.103-.04-.147-.072-.045-.034-.1-.058-.146-.043.006-.016.034-.052.011-.06-.021-.007-.1.03-.122.046s-.07.036-.08.047-.026.034-.035.024c-.01-.006-.015-.024-.031-.014a.4.4 0 0 0-.111.113.6.6 0 0 1-.147.218c-.099.096-.142.158-.112.194s.042.01.047.04a.3.3 0 0 1-.005.092c-.011.05-.03.098-.005.108.067.021.133-.02.147-.007.03.026-.016.12.053.139.07.02.138-.017.138-.017l.255-.136.244-.13.126-.247-.068-.207z', clipRule: 'evenodd' }),
|
|
80
|
+
React.createElement("path", { fill: '#CCA849', fillRule: 'evenodd', d: 'M15.825 23.437s-.043-.065.01-.122c.052-.058.127-.082.156-.118l-.021-.014a.2.2 0 0 1 .084-.08.08.08 0 0 0-.055-.026c-.048 0-.077.029-.12.029s-.048-.021-.048-.021.072-.007.065-.04-.02-.033-.02-.033.14-.058.164-.088c.024-.031.021-.067.026-.082.017 0 .113-.05.152-.03.038.022.011.08.011.08s.118-.088.178-.175c.052.005.076-.035.115-.035.047 0 .122.065.137.203.01.08.024.126.01.266-.007.08-.005.25.019.334.016.067.055.06.055.06a.1.1 0 0 1-.034.053c-.026.024-.03.088-.026.113l.014.052s-.03.036-.039.06c-.006.024-.038.041-.062.041-.023 0-.011-.002-.042 0s-.041.007-.06 0c-.02-.007-.035-.015-.027-.077.007-.062-.24-.206-.24-.206z', clipRule: 'evenodd' }),
|
|
81
|
+
React.createElement("path", { fill: '#585136', fillRule: 'evenodd', d: 'M15.362 24.05s.088.118.451.118c.173 0 .234-.017.27-.026a.73.73 0 0 0 .33-.24c.132-.156.103-.22.103-.22l-.076-.012-.25.034-.739.314z', clipRule: 'evenodd' }),
|
|
82
|
+
React.createElement("path", { fill: '#252211', fillRule: 'evenodd', d: 'M15.633 24.08s-.315.07-.315-.13c0-.194.194-.398.243-.434.05-.036.17-.076.17-.076h.291l.056.146-.025.317z', clipRule: 'evenodd' }),
|
|
83
|
+
React.createElement("path", { fill: '#C3B378', fillRule: 'evenodd', d: 'M15.923 23.499s-.06-.055-.197.02c-.137.074-.248.23-.254.371-.007.125.103.218.274.223a1 1 0 0 0 .242-.019l-.06-.075z', clipRule: 'evenodd' }),
|
|
84
|
+
React.createElement("path", { fill: '#E6D89C', fillRule: 'evenodd', d: 'M15.864 23.53s-.015-.012-.058.012c-.036.019-.088.07-.129.105-.026.022-.043.032-.057.048-.06.072-.111.19-.082.248.03.058.125.125.37.08z', clipRule: 'evenodd' }),
|
|
85
|
+
React.createElement("path", { fill: '#252211', fillRule: 'evenodd', d: 'M15.784 23.65s-.039.06-.039.157c0 .098.056.254.26.266.156.01.26-.225.374-.317.087-.07.14-.072.14-.072s-.09-.096-.325-.22c-.233-.125-.494-.142-.636.05.067-.004.284-.06.284-.06l.105.034z', clipRule: 'evenodd' }),
|
|
86
|
+
React.createElement("path", { fill: '#6F674D', fillRule: 'evenodd', d: 'M16.09 23.778c-.008-.015-.012-.034.016-.04.028-.004.04-.001.05.02s.02.039.005.048c-.015.007-.052 0-.072-.028m-.046-.137s-.01.007-.005-.007c.002-.017.014-.046.045-.039s.025.04.02.05-.031.027-.05.02a.02.02 0 0 1-.012-.01l-.001-.007q0-.004.003-.007', clipRule: 'evenodd' }),
|
|
87
|
+
React.createElement("path", { fill: '#AC924C', fillRule: 'evenodd', d: 'M13.416 23.703a.3.3 0 0 0 .165.055c.089-.002.202-.093.255-.151.03-.034.057-.07.086-.098.025-.024.041-.036.053-.053.016-.019.034-.055.042-.067-.021.017-.052.046-.084.066a1 1 0 0 1-.125.065c-.027.01-.298.153-.298.153z', clipRule: 'evenodd' }),
|
|
88
|
+
React.createElement("path", { fill: '#9F8E57', fillRule: 'evenodd', d: 'M13.533 22.985s.043-.029.125-.047c.08-.02.24-.034.24-.034l.132.057.052.2-.096.206-.122.077-.139-.223z', clipRule: 'evenodd' }),
|
|
89
|
+
React.createElement("path", { fill: '#EAC970', fillRule: 'evenodd', d: 'm13.36 23.163-.046.034s.012-.021.022-.086a.8.8 0 0 1 .134-.315c.074-.091.072-.086.072-.086a.05.05 0 0 0-.04.01.5.5 0 0 1 .135-.137c.062-.039.086-.05.151-.02.065.032.082.048.13.046.047-.002.088-.052.088-.052s.01.03-.026.103c-.036.072-.178.218-.178.218l-.295.202z', clipRule: 'evenodd' }),
|
|
90
|
+
React.createElement("path", { fill: '#D7BC6B', fillRule: 'evenodd', d: 'M13.578 22.961s.214.03.279-.03c.002.006.01.006.01.01l-.005.01.021-.001.027.004.02-.002a.04.04 0 0 1-.014.025c.01 0 .02.002.02.01 0 .007.001.03-.01.035a.04.04 0 0 1-.03-.002.1.1 0 0 0 .015.053c.02.036.06.077.115.065 0 0 .03.07-.093.225-.016.021-.034.05-.055.075a.3.3 0 0 0-.02.057s.207-.08.267-.261c.06-.183.072-.362.06-.53a.3.3 0 0 0-.021-.106c-.03-.06-.111-.05-.144-.016-.048.047-.127.166-.238.247-.113.082-.117.096-.204.132', clipRule: 'evenodd' }),
|
|
91
|
+
React.createElement("path", { fill: '#585136', fillRule: 'evenodd', d: 'M13.322 23.223s-.04.025-.062.116a.38.38 0 0 0 .043.242c.023.036.076.134.187.14a.2.2 0 0 0 .08-.017.5.5 0 0 0 .107-.067.3.3 0 0 0 .082-.07 13 13 0 0 1-.293-.238l-.106-.118z', clipRule: 'evenodd' }),
|
|
92
|
+
React.createElement("path", { fill: '#453A25', fillRule: 'evenodd', d: 'M13.588 23.61s.058-.005.092-.026c.034-.022-.2-.253-.2-.253l.017.25z', clipRule: 'evenodd' }),
|
|
93
|
+
React.createElement("path", { fill: '#84754B', fillRule: 'evenodd', d: 'M13.34 23.206s-.028.055-.028.07c-.005.047.01.197.02.244.013.05.076.128.157.128.05 0 .12-.032.12-.04s-.071-.018-.09-.055a.3.3 0 0 1-.02-.115c-.002-.03-.002-.065.01-.077.026-.029.03-.112.03-.112l.094-.173h-.122l-.147.09z', clipRule: 'evenodd' }),
|
|
94
|
+
React.createElement("path", { fill: '#252211', fillRule: 'evenodd', d: 'M13.305 23.26s.096-.128.182-.157c.087-.03.126-.012.126-.012l-.051.13-.072.079.005.04s-.012.108.06.183.125.072.156.072c.032 0 .12-.026.166-.134.041-.1.075-.23-.006-.36a.3.3 0 0 0-.248-.134c-.027 0-.24.01-.318.292', clipRule: 'evenodd' }),
|
|
95
|
+
React.createElement("path", { fill: '#F7F7E7', fillRule: 'evenodd', d: 'M15.77 23.691c-.036-.016-.002-.117.034-.148a.25.25 0 0 1 .161-.072c.029-.002.057.016.052.036-.006.036-.057.086-.102.122-.064.05-.104.08-.145.062', clipRule: 'evenodd' }),
|
|
96
|
+
React.createElement("path", { fill: '#F8F6DE', fillRule: 'evenodd', d: 'M13.828 23.14c.026-.001.06.02.067.049s-.017.093-.067.093c-.04 0-.062-.05-.062-.065q0-.019.01-.034c.001-.003.006-.037.052-.042', clipRule: 'evenodd' }),
|
|
97
|
+
React.createElement("path", { fill: '#D4C38B', fillRule: 'evenodd', d: 'M13.45 23.163s-.068.031-.099.096a.25.25 0 0 0-.019.154.4.4 0 0 0 .046.105c.016.022.039.037.055.034.017-.002.05-.045.05-.071 0-.027.002-.137.034-.198.029-.06-.068-.12-.068-.12', clipRule: 'evenodd' }),
|
|
98
|
+
React.createElement("path", { fill: '#E2D59D', fillRule: 'evenodd', d: 'M13.46 23.158c-.013.007-.032.017-.027.03.005.011.046.019.06.047a.1.1 0 0 1 .012.075.1.1 0 0 0 .034-.024c.021-.025.047-.058.07-.058.014 0 .029.007.042.007.022 0 .043-.007.046-.03.005-.028-.04-.054-.067-.05.005-.019.012-.047-.01-.067-.021-.019-.088.015-.103.025z', clipRule: 'evenodd' }),
|
|
99
|
+
React.createElement("path", { fill: '#CBAC5A', fillRule: 'evenodd', d: 'm15.002 25.198.143-.042.041.029s.03.062.075.07c-.014.03-.052.057-.05.08a.07.07 0 0 0 .02.038s-.128.214.126.429c-.06.024-.137.058-.177.077.029.006.09.019.117.043.026.023.026.03.05.045s.04.034.034.043c-.016-.01-.071-.039-.081-.012s-.24.017-.24.017l-.388.074s.014-.038-.027-.074c-.047-.043-.105.002-.167-.046-.082-.062-.085-.134-.111-.161a.5.5 0 0 1 .207-.058c-.005-.01-.022-.039-.012-.065.012-.034.06-.055.046-.096.021-.005.03-.005.084-.072.05-.067.082-.081.12-.086.04-.005.063 0 .135-.067.05-.048.034-.088.034-.088s.032-.01.02-.078', clipRule: 'evenodd' }),
|
|
100
|
+
React.createElement("path", { fill: '#D6BC6F', fillRule: 'evenodd', d: 'M14.578 25.22c.001-.01.01-.015.062-.01s.384-.031.474-.036c.092-.007.413-.002.57.031s.314.072.39.091c.077.022.102.03.099.04-.002.009-.02.018-.03.016s-.264-.08-.342-.096a3 3 0 0 0-.5-.058c-.138.002-.194-.002-.31.012a2.5 2.5 0 0 1-.37.026c-.059-.007-.046-.007-.043-.016', clipRule: 'evenodd' }),
|
|
101
|
+
React.createElement("path", { fill: '#DFC677', fillRule: 'evenodd', d: 'M15.36 25.98s.198.108.27.24a.104.104 0 0 1-.031.147s.113 0 .098.062c-.007.04-.194.144-.32.2-.127.055-.122.052-.184.061-.06.01-.225-.019-.26.03-.033.048-.018.098-.009.105.01.007.088.017.088.017s-.016.046-.179.05-.204.017-.214.034.031.007.106.02c.075.011.18.019.18.019s-.034.029-.122.052c-.101.026-.26.05-.307.08.024.016.06.04.076.043a.5.5 0 0 0-.107.038l.034.022s-.082.098-.13.122c-.047.024-.32.152-.415.127-.235-.062-.264-.32-.321-.339-.087-.029-.128.03-.204-.011.034-.024.052-.04.088-.056a6 6 0 0 1-.24-.146 2 2 0 0 0-.07-.134c-.038-.067-.096-.157-.138-.235-.094-.173-.098-.253-.183-.35.015-.02.065-.017.065-.017l.708.233 1.255.036.326-.466z', clipRule: 'evenodd' }),
|
|
102
|
+
React.createElement("path", { fill: '#C4A859', fillRule: 'evenodd', d: 'M13.5 26.691a.1.1 0 0 0 .026.021c.024.017.06.037.085.066.01-.015.034-.041.076 0 .043.04.096.011.13.02.033.013.035.017.035.017s.02-.016.063-.034c.026-.01.057-.016.09-.026.032-.006.066-.016.09-.016.02.014.097.096.405-.024.29-.113.357-.126.406-.108.005-.012.01-.034.084-.031 0-.031-.062-.137-.062-.137l-.343-.118h-.187l-.562.103-.312.178z', clipRule: 'evenodd' }),
|
|
103
|
+
React.createElement("path", { fill: '#927D49', fillRule: 'evenodd', d: 'M13.312 26.494s.007.053.085.108c.077.055.1.088.1.088s.015-.019.027-.038c.012-.022.021-.046.04-.053.04-.016.128.015.147.01.017-.005.012-.039.03-.039.04-.002.066.026.081.026s.05-.002.055-.01c.005-.007.007-.088.063-.127a.17.17 0 0 1 .153-.014c0 .014.002.05.04.052.04.002.044-.005.078.007s.075-.002.093.055c.016-.004.055-.01.046-.065.019-.014.036-.024.076-.081.01-.015.027-.031.04-.053.033 0 .074-.006.128.041q-.024.016-.03.031.02.022.038.046c.015.019.024.043.043.047.04.012.107-.004.182 0a.4.4 0 0 1 .159.048c.01-.005.01-.007.034-.002s.042.007.016-.024c.015.007.031.021.046.007s.026-.036.067-.041c.04-.005.055.002.072-.04.02-.053-.053-.053-.053-.053s.034-.032.072-.072c.046-.043.098-.098.11-.166.022-.125-.1-.142-.1-.142l-.594.183-.725-.036z', clipRule: 'evenodd' }),
|
|
104
|
+
React.createElement("path", { fill: '#6E6342', fillRule: 'evenodd', d: 'M12.78 24.78s-.02.025-.032.082c-.011.058-.006.05-.016.091s-.13.447-.084.584c.044.137.122.187.17.298.01.024.02.039.025.06.016.072.002.128.021.2a.2.2 0 0 0 .05.08c.058.061.152.118.193.16.057.06.138.182.242.193a.35.35 0 0 0 .2-.055c.057-.036.092-.086.153-.115.043-.022.088-.03.129-.04a.6.6 0 0 1 .207-.009c.07.015.235.065.326.065a1 1 0 0 0 .212-.029c.139-.04.307-.11.417-.142.065-.019.118-.024.171-.035.091-.022.168-.051.212-.106-.03-.034-.065-.087-.26-.085-.22.005-.474.127-.6.147-.125.02-.179.036-.319-.015-.137-.05-.141-.085-.141-.085s-.144-.1-.205-.357a.64.64 0 0 1 .157-.621c.04-.046.03-.087.03-.087s.104-.138.075-.268c-.03-.13-.23-.103-.23-.103z', clipRule: 'evenodd' }),
|
|
105
|
+
React.createElement("path", { fill: '#39331F', fillRule: 'evenodd', d: 'M12.946 25.213a.1.1 0 0 0-.012.052c.002.026.01.06.088.137.067.067.053.142.053.142s.033.007.125-.036c.072-.034.096.026.096.026a.2.2 0 0 1 .067-.021.14.14 0 0 0 .06-.02s.085.087.158.128c.067.036.106.06.14.036.03-.022.03-.066.028-.085a.3.3 0 0 0-.029-.05c-.021-.031-.055-.067-.057-.096-.005-.067.05-.147.038-.166-.011-.02-.055-.025-.163.014-.111.037-.593-.061-.593-.061', clipRule: 'evenodd' }),
|
|
106
|
+
React.createElement("path", { fill: '#292311', fillRule: 'evenodd', d: 'M13.2 25.647s-.056-.053-.036-.307q.035 0 .07.007s.03.197-.034.3', clipRule: 'evenodd' }),
|
|
107
|
+
React.createElement("path", { fill: '#252211', fillRule: 'evenodd', d: 'm12.806 24.587.021-.02c-.02.036-.108.18-.036.406.072.225.252.393.475.401s.34-.1.473-.264c.052-.065.112-.147.166-.202.08-.086.142-.11.142-.194 0-.17-.175-.248-.433-.324-.257-.077-.489-.067-.61-.015-.117.057-.167.117-.198.212', clipRule: 'evenodd' }),
|
|
108
|
+
React.createElement("path", { fill: '#3F3824', fillRule: 'evenodd', d: 'm13.632 25.723.02-.01s.004-.076.035-.074c.031.005.046.045.043.06-.002.014-.01.039-.041.036-.04 0-.057-.012-.057-.012', clipRule: 'evenodd' }),
|
|
109
|
+
React.createElement("path", { fill: '#2D2815', fillRule: 'evenodd', d: 'M13.546 25.397s.019-.007.042.017c.02 0 .103-.01.13.006.026.017.033.031.033.031s-.098.022-.151 0c-.054-.018-.054-.054-.054-.054', clipRule: 'evenodd' }),
|
|
110
|
+
React.createElement("path", { fill: '#82764F', fillRule: 'evenodd', d: 'M13.978 25.412a.24.24 0 0 0-.108-.053c-.01-.002-.012.005-.02.005-.004-.002-.006-.017-.006-.017l-.032.017s-.005.007.012.02c.014.011.039.02.046.04s.006.026.01.03c.001.001.035 0 .052-.01s.047-.026.045-.032', clipRule: 'evenodd' }),
|
|
111
|
+
React.createElement("path", { fill: '#2D2816', fillRule: 'evenodd', d: 'M13.487 25.609s.01-.067.075-.07c.067-.005.08.06.08.06l-.04.039c0-.001-.029-.042-.115-.03', clipRule: 'evenodd' }),
|
|
112
|
+
React.createElement("path", { fill: '#574F35', fillRule: 'evenodd', d: 'M13.91 25.32s-.037.04-.116.051c-.007-.01-.021-.03 0-.06q.033-.045.07-.031a.06.06 0 0 1 .045.04', clipRule: 'evenodd' }),
|
|
113
|
+
React.createElement("path", { fill: '#82764F', fillRule: 'evenodd', d: 'M14.056 25.368c.002-.01-.005-.012 0-.016.005-.005.031-.015.036-.01q.002.004 0 .02.001.014-.005.025c-.006.01-.026.015-.036.012s-.011-.017-.011-.02c.005-.001.016-.006.016-.01m.166-.105c0-.005.016-.014.026-.014.015 0 .015.011.017.014.005.002.005-.002.01.007.004.009.011.024.006.034s-.024.017-.029.015a.3.3 0 0 1-.03-.056', clipRule: 'evenodd' }),
|
|
114
|
+
React.createElement("path", { fill: '#6E6342', fillRule: 'evenodd', d: 'M13.888 25.39s.022.005.05.03l-.024.014s-.002-.022-.026-.044', clipRule: 'evenodd' }),
|
|
115
|
+
React.createElement("path", { fill: '#585136', fillRule: 'evenodd', d: 'M13.84 25.177c-.004-.005.015-.017.027-.015.011.002.016.01.029.012s.015-.005.02-.01c.004-.005.02-.002.023 0l.005.007q0-.006.003-.01l.007-.01a.03.03 0 0 1 .026-.004c.002.007.012.03.01.036s-.031.012-.036.007a.2.2 0 0 0 .03.04c.002.005-.022.017-.032.015a.4.4 0 0 1-.111-.068m.128-.161a.02.02 0 0 0-.01-.012c-.007-.002-.029 0-.029.012 0 .011.02.076.04.11.025.034.042.062.058.07a.023.023 0 0 0 .03-.01.6.6 0 0 0 .004-.125 1 1 0 0 0-.01-.17c-.005-.005-.024-.005-.03.004a1 1 0 0 0-.053.12', clipRule: 'evenodd' }),
|
|
116
|
+
React.createElement("path", { fill: '#574F35', fillRule: 'evenodd', d: 'M13.881 25.513s-.034-.022-.067-.007c-.03.014-.029.072-.029.072a.05.05 0 0 0 .043-.005c.021-.015.048-.04.053-.06', clipRule: 'evenodd' }),
|
|
117
|
+
React.createElement("path", { fill: '#82764F', fillRule: 'evenodd', d: 'M13.946 25.59c-.002-.02-.02-.02-.02-.03a.02.02 0 0 1 .008-.012.02.02 0 0 1 .014-.004c.01 0 .019.011.03.019.012.007.03.019.032.034s-.02.055-.043.055-.017-.043-.022-.063m.187-.027s-.039.012-.036 0 .012-.014.024-.014a.04.04 0 0 1 .024-.012q.009 0 .015.005s.026-.012.034-.005.002.007.007.014q.009.014.012.03c0 .007-.03.024-.053.02-.027-.005-.022-.033-.027-.038m.226-.044s.012.007.002.015a.2.2 0 0 1-.07.021c-.029 0-.055.005-.055-.005s.024-.029.039-.034l.01-.008.014-.003.07-.007c.011-.002.021.005.014.014-.002.007-.024.007-.024.007m.067-.3s-.014.032-.03.032c-.017-.002-.017-.007-.017-.012 0-.007.016-.024.014-.03-.005 0-.016 0-.014-.01 0-.01.016-.022.03-.02a.06.06 0 0 1 .04-.015c.016 0 .03.005.03.015s-.019.031-.026.036q-.012.014-.027.005m-.221.574s-.02.002-.02.012q0 .007.012.002l.012-.002c.002.002.002.012.016.012a.1.1 0 0 0 .034-.012q.02-.006.022-.02-.008-.024-.03-.024a.04.04 0 0 0-.02.005s-.006-.01-.022 0c-.017.01-.015.01-.01.015.009.008.006.012.006.012m-.11.101c0-.005.024-.014.031-.011.007.002.026.038.026.042s-.024.017-.034.017-.026-.017-.026-.02c0-.001.012-.004.012-.006.003-.005-.009-.017-.009-.022m-.077-.141c.005-.002.005-.007.012-.012l.007-.003.007.001a.02.02 0 0 1 .017-.012q.02-.003.02.005c0 .015.009.024.009.036s-.007.026-.031.036a.2.2 0 0 1-.062.005c-.005-.002-.01-.021-.005-.031a.1.1 0 0 1 .026-.025', clipRule: 'evenodd' }),
|
|
118
|
+
React.createElement("path", { fill: '#6E6342', fillRule: 'evenodd', d: 'M14.049 25.76s-.016.009-.016.014l-.002.014c0 .003.02-.002.024-.005 0-.002-.006-.019-.006-.024', clipRule: 'evenodd' }),
|
|
119
|
+
React.createElement("path", { fill: '#585136', fillRule: 'evenodd', d: 'M13.905 25.714c.01.002.026 0 .039.005.01.004.016.014.006.026s-.019.029-.04.026c-.025-.002-.048-.015-.048-.024a.05.05 0 0 1 .012-.034c.01-.008.014-.003.03 0', clipRule: 'evenodd' }),
|
|
120
|
+
React.createElement("path", { fill: '#574F35', fillRule: 'evenodd', d: 'M13.893 25.723s-.031.024-.039.036c-.01.012-.057.072-.072.085l.017-.025a.1.1 0 0 0-.041.053c-.012.036.065.055.116.07l.07.019a.5.5 0 0 1-.048-.088c-.02-.046-.03-.05-.017-.072.01-.022.025-.036.025-.053z', clipRule: 'evenodd' }),
|
|
121
|
+
React.createElement("path", { fill: '#252211', fillRule: 'evenodd', d: 'M12.786 25.8h.022c.014-.002.166-.058.324-.048q.178.012.35.058c.2.052.447.156.607.216.043.016.085.045.115.057.123.047.128.047.2.06.084.012.17-.017.26-.036.111-.024.3-.036.467-.06a1 1 0 0 0 .158-.036s-.132.132-.449.18q-.193.028-.386.004a1 1 0 0 1-.219-.038c-.057-.017-.174-.06-.319-.096-.1-.027-.214-.046-.343-.07-.318-.059-.664-.126-.787-.191', clipRule: 'evenodd' }),
|
|
122
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'M12.429 25.2a6 6 0 0 1-.238.187l-.24.185-.242.182q-.121.09-.25.173a4 4 0 0 1 .24-.185c.081-.059.166-.117.245-.177l.24-.184c.082-.06.161-.123.245-.18m-.424.68s.086-.072.194-.173c.134-.125.298-.286.35-.315z', clipRule: 'evenodd' }),
|
|
123
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'M12.005 25.88q.064-.065.134-.125l.07-.06.067-.063.127-.132a1 1 0 0 1 .067-.062.2.2 0 0 1 .038-.026c.012-.007.025-.02.041-.022-.01.015-.021.022-.03.034l-.032.031q-.033.032-.067.06l-.139.118c-.045.04-.088.085-.134.125zm.58-.389s-.316.31-.381.36z', clipRule: 'evenodd' }),
|
|
124
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'M12.585 25.491a1 1 0 0 1-.091.093l-.096.092-.093.093c-.034.029-.065.057-.101.084l.093-.091c.031-.031.065-.057.098-.088l.093-.092q.047-.048.097-.09m.015.168q-.045.122-.103.238c-.082.163-.204.367-.257.47z', clipRule: 'evenodd' }),
|
|
125
|
+
React.createElement("path", { fill: '#CFB66C', fillRule: 'evenodd', d: 'M12.6 25.659q-.002.053-.022.098a1 1 0 0 1-.086.18q-.027.042-.05.086l-.099.173q-.05.088-.102.171c.024-.062.057-.12.088-.178q.05-.085.096-.174a1 1 0 0 0 .04-.092q.024-.046.041-.088l.041-.088c.017-.03.03-.06.053-.088', clipRule: 'evenodd' }),
|
|
126
|
+
React.createElement("path", { fill: '#DEC270', fillRule: 'evenodd', d: 'M12.946 26.455s-.096.128-.087.289c.026-.085.06-.214.087-.289m.09.128s-.033.345-.061.515c.04-.196.047-.18.062-.515m.637.536s-.144.422-.147.54c.031-.121.091-.367.147-.54', clipRule: 'evenodd' }),
|
|
127
|
+
React.createElement("path", { fill: '#CBAF59', fillRule: 'evenodd', d: 'M14.009 26.43s.233.384.407.712a1.6 1.6 0 0 0-.407-.713', clipRule: 'evenodd' }),
|
|
128
|
+
React.createElement("path", { fill: '#E3C677', fillRule: 'evenodd', d: 'M14.635 26.995q.192.34.345.698a1.07 1.07 0 0 0-.345-.698', clipRule: 'evenodd' }),
|
|
129
|
+
React.createElement("path", { fill: '#ECD592', fillRule: 'evenodd', d: 'M16.476 27.562c.038-.024.115-.156.182-.19.067-.033.118-.04.178-.107.06-.07.077-.113.209-.168.184-.08.057-.183.057-.183l.065-.055c.048-.036.103-.08.098-.156-.006-.13-.03-.317-.137-.425.103-.022.3-.036.423-.067.142-.036.207-.087.207-.087s-.082-.139.05-.278c.132-.14.24-.224.32-.38-.092-.012-.23-.06-.586.075q.03.014.055.03s-.218.061-.298.128c-.139.117-.156.213-.306.285-.151.072-.302.053-.428.111-.125.058-.143.108-.189.13.01.01-.002.03.016.047-.011.016-.08.127-.148.127.007.026.065.046.065.046s-.043.03-.152.038c.056.058.108.12.253.212-.012.024-.06.06-.04.106s.076.108.297.158c-.112.005-.244.031-.422.007-.178-.021-.207-.034-.317-.007.012.012.043.012.07.043-.029.002-.211-.021-.273.06a.53.53 0 0 0-.089.317c-.034.016-.067.045-.05.105.016.06.103.08.158.118.055.04.06.055.113.046.055-.012.136-.067.184-.067s.081.035.081.035.13-.062.142-.05.002.086.015.098c.013.009.158-.078.197-.102', clipRule: 'evenodd' }),
|
|
130
|
+
React.createElement("path", { fill: '#fff', fillOpacity: 0.8, fillRule: 'evenodd', d: 'M19.298 23.677c-.607-1.567-2.107-1.857-2.107-1.857h-4.28l.017 1.596h.852v3.564h-.869v1.593h4.162c1.003 0 1.806-1.008 1.806-1.008 1.288-1.827.419-3.888.419-3.888m-2.203 2.814s-.326.471-.682.471h-.71l-.017-3.543h.912s.422.089.717.925c0 0 .392 1.197-.22 2.147', clipRule: 'evenodd' })));
|
|
131
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeDogeIcon);
|
|
132
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeEthIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeEthIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#EBF0F1', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#12100B', fillOpacity: 0.8, d: 'M16 20.5v6.212l2.81-1.63z' }),
|
|
11
|
+
React.createElement("path", { fill: '#12100B', fillOpacity: 0.45, d: 'm16 20.5-2.812 4.583 2.811 1.63z' }),
|
|
12
|
+
React.createElement("path", { fill: '#12100B', fillOpacity: 0.8, d: 'M16 27.238v2.26l2.813-3.892z' }),
|
|
13
|
+
React.createElement("path", { fill: '#12100B', fillOpacity: 0.45, d: 'M16 29.498v-2.26l-2.812-1.632z' }),
|
|
14
|
+
React.createElement("path", { fill: '#12100B', fillOpacity: 0.6, d: 'm16 26.715 2.81-1.633L16 23.828zm-2.812-1.632 2.811 1.632v-2.888z' })));
|
|
15
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeEthIcon);
|
|
16
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeLtcIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeLtcIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#BFBBBB', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'm13.91 26.205-.535.208.258-1.035.542-.217.78-3.161h1.923l-.57 2.323.53-.214-.255 1.032-.535.214-.318 1.306h2.895L18.298 28H13.47z' })));
|
|
11
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeLtcIcon);
|
|
12
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangePolIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangePolIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#8247E5', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M17.736 23.847a.45.45 0 0 0-.423 0l-.987.581-.67.37-.969.582a.45.45 0 0 1-.423 0l-.758-.458a.43.43 0 0 1-.211-.37v-.882c0-.14.07-.282.211-.37l.758-.44a.45.45 0 0 1 .423 0l.758.458a.43.43 0 0 1 .212.37v.582l.67-.388v-.6a.44.44 0 0 0-.212-.37l-1.41-.828a.45.45 0 0 0-.423 0l-1.445.846a.39.39 0 0 0-.212.353v1.656c0 .141.07.282.212.37l1.427.829c.124.07.282.07.423 0l.97-.564.67-.388.969-.564a.45.45 0 0 1 .423 0l.757.44a.43.43 0 0 1 .212.37v.882c0 .14-.07.282-.212.37l-.74.44a.45.45 0 0 1-.423 0l-.758-.44a.43.43 0 0 1-.211-.37v-.564l-.67.388v.581c0 .141.07.282.212.37l1.427.829a.45.45 0 0 0 .423 0l1.428-.829a.43.43 0 0 0 .211-.37v-1.674a.44.44 0 0 0-.211-.37z' })));
|
|
11
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangePolIcon);
|
|
12
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeSolIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeSolIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#000', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: 'url(#20425988a)', d: 'M13.722 22.42a.23.23 0 0 1 .156-.065h5.387a.11.11 0 0 1 .078.189l-1.064 1.064a.22.22 0 0 1-.157.064h-5.386a.11.11 0 0 1-.078-.188z' }),
|
|
11
|
+
React.createElement("path", { fill: 'url(#20425988b)', d: 'M13.722 26.393a.22.22 0 0 1 .156-.065h5.387a.11.11 0 0 1 .078.189l-1.064 1.064a.22.22 0 0 1-.157.064h-5.386a.11.11 0 0 1-.078-.188z' }),
|
|
12
|
+
React.createElement("path", { fill: 'url(#20425988c)', d: 'M18.122 24.33a.22.22 0 0 1 .157.064l1.064 1.064a.11.11 0 0 1-.078.188h-5.387a.22.22 0 0 1-.156-.065l-1.064-1.064a.11.11 0 0 1 .078-.188z' }),
|
|
13
|
+
React.createElement("defs", null,
|
|
14
|
+
React.createElement("linearGradient", { id: '20425988a', x1: 17.93, x2: 14.202, y1: 21.291, y2: 28.432, gradientUnits: 'userSpaceOnUse' },
|
|
15
|
+
React.createElement("stop", { stopColor: '#00FFA3' }),
|
|
16
|
+
React.createElement("stop", { offset: 1, stopColor: '#DC1FFF' })),
|
|
17
|
+
React.createElement("linearGradient", { id: '20425988b', x1: 17.93, x2: 14.202, y1: 21.291, y2: 28.432, gradientUnits: 'userSpaceOnUse' },
|
|
18
|
+
React.createElement("stop", { stopColor: '#00FFA3' }),
|
|
19
|
+
React.createElement("stop", { offset: 1, stopColor: '#DC1FFF' })),
|
|
20
|
+
React.createElement("linearGradient", { id: '20425988c', x1: 17.93, x2: 14.202, y1: 21.291, y2: 28.432, gradientUnits: 'userSpaceOnUse' },
|
|
21
|
+
React.createElement("stop", { stopColor: '#00FFA3' }),
|
|
22
|
+
React.createElement("stop", { offset: 1, stopColor: '#DC1FFF' })))));
|
|
23
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeSolIcon);
|
|
24
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeTrxIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeTrxIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#DC062B', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M17.678 22.834 13.147 22l2.384 6 3.323-4.048zm-.073.367.693.659-1.896.343zm-1.614.934-1.998-1.658 3.265.601zm-.143.293-.325 2.693-1.757-4.42zm.302.143 2.099-.38-2.408 2.933z' })));
|
|
11
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeTrxIcon);
|
|
12
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyCryptoExchangeUsdcIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyCryptoExchangeUsdcIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("path", { fill: '#FF444F', d: 'M16 0c2.55 0 4.94.682 7 1.873a14.1 14.1 0 0 1 4.863 4.69A13.94 13.94 0 0 1 30 14a13.98 13.98 0 0 1-7.102 12.184 7 7 0 1 0-13.796.001C4.862 23.779 2 19.224 2 14c0-3.55 1.322-6.793 3.5-9.26A13.97 13.97 0 0 1 16 0' }),
|
|
7
|
+
React.createElement("path", { fill: '#E12E3A', d: 'M16 0A13.97 13.97 0 0 0 5.5 4.74L23 1.872A13.94 13.94 0 0 0 16 0m8.313 25.267A13.98 13.98 0 0 0 30 14c0-2.733-.783-5.283-2.137-7.437z' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M20.468 17.985a21 21 0 0 0-.736-1.346q-.391-.69-.909-1.403-.16.207-.414.575-.241.368-.494.782-.242.413-.46.794a9 9 0 0 0-.322.598h-2.047q.506-.932 1.173-1.955.678-1.024 1.506-2.174l-2.564-3.84h2.173l1.553 2.483 1.518-2.484h2.047l-2.53 3.864q.966 1.254 1.621 2.323.656 1.059 1.035 1.783zm-11.086 0v-7.97h5.382v1.507h-3.588v1.564h3.185v1.472h-3.185v1.92h3.852v1.507z' }),
|
|
9
|
+
React.createElement("path", { fill: '#2775CA', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M12.5 23.775a3.723 3.723 0 0 0 2.225 4.8c.075.05.15.15.15.225v.35c0 .05 0 .075-.025.1-.025.1-.125.15-.225.1a4.5 4.5 0 0 1-2.925-2.925c-.75-2.375.55-4.9 2.925-5.65.025-.025.075-.025.1-.025.1.025.15.1.15.2v.35c0 .125-.05.2-.15.25a3.7 3.7 0 0 0-2.225 2.225m4.65-2.9c.025-.1.125-.15.225-.1a4.53 4.53 0 0 1 2.925 2.95c.75 2.375-.55 4.9-2.925 5.65-.025.025-.075.025-.1.025-.1-.025-.15-.1-.15-.2v-.35c0-.125.05-.2.15-.25a3.7 3.7 0 0 0 2.225-2.225 3.723 3.723 0 0 0-2.225-4.8c-.075-.05-.15-.15-.15-.25v-.35c0-.05 0-.075.025-.1' }),
|
|
11
|
+
React.createElement("path", { fill: '#fff', d: 'M16.075 24.65c1.05.125 1.575.425 1.575 1.3 0 .675-.5 1.2-1.25 1.325v.6c-.025.125-.1.2-.2.2h-.375c-.125-.025-.2-.1-.2-.2v-.6c-.825-.125-1.225-.575-1.325-1.2v-.025c0-.1.075-.175.175-.175h.425c.075 0 .15.05.175.15.075.375.3.65.95.65.475 0 .825-.275.825-.675s-.225-.55-.925-.675c-1.05-.125-1.55-.45-1.55-1.275 0-.625.475-1.125 1.225-1.225v-.575c.025-.125.1-.2.2-.2h.375c.125.025.2.1.2.2v.6c.575.05 1.025.475 1.125 1.025v.025a.17.17 0 0 1-.175.175h-.4a.19.19 0 0 1-.175-.125c-.125-.375-.375-.525-.825-.525-.5 0-.75.225-.75.575s.15.55.9.65' })));
|
|
12
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeUsdcIcon);
|
|
13
|
+
export default ForwardRef;
|