@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 CurrencyCryptoExchangeUsdtIcon: ({ 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 CurrencyCryptoExchangeUsdtIcon = ({ 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: '#53AE94', d: 'M22 25a6 6 0 1 1-12 0 6 6 0 0 1 12 0' }),
|
|
10
|
+
React.createElement("path", { fill: '#fff', d: 'M16.74 24.2v-.892h2.042v-1.36h-5.558v1.36h2.041v.892c-1.659.076-2.906.405-2.906.798 0 .394 1.248.722 2.906.8v2.858h1.476v-2.86c1.656-.076 2.901-.404 2.901-.797s-1.245-.722-2.901-.798m.001 1.355c-.041.002-.255.014-.732.014-.38 0-.649-.01-.743-.015-1.466-.064-2.56-.32-2.56-.625s1.094-.56 2.56-.625v.997c.096.006.37.022.75.022.455 0 .684-.018.726-.022v-.997c1.462.065 2.554.32 2.554.625 0 .304-1.093.56-2.555.626' })));
|
|
11
|
+
const ForwardRef = forwardRef(CurrencyCryptoExchangeUsdtIcon);
|
|
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 CurrencyOpbnbIcon: ({ 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 CurrencyOpbnbIcon = ({ 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("g", { clipPath: 'url(#92e2ea31a)' },
|
|
7
|
+
React.createElement("path", { fill: '#25272F', d: 'M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16' }),
|
|
8
|
+
React.createElement("path", { fill: '#F0B90B', d: 'M10.693 9.063 16 6l5.307 3.063-1.95 1.132L16 8.263l-3.356 1.932zm10.614 3.864-1.95-1.132L16 13.727l-3.356-1.932-1.951 1.132v2.263l3.356 1.932v3.863L16 22.117l1.951-1.132v-3.863l3.356-1.932zm0 6.127V16.79l-1.95 1.132v2.263zm1.386.8-3.356 1.931v2.264l5.307-3.064V14.86l-1.951 1.131zm-1.952-8.859 1.952 1.132v2.263l1.95-1.132v-2.263l-1.95-1.132zm-6.692 11.61v2.263L16 26l1.951-1.132v-2.263L16 23.737zm-3.356-3.551 1.95 1.131v-2.263l-1.95-1.132zm3.356-8.059L16 12.127l1.951-1.132L16 9.863zm-4.742 1.132 1.951-1.132-1.95-1.132-1.952 1.132v2.264l1.951 1.131zm0 3.863-1.95-1.132v6.127l5.306 3.064v-2.264l-3.356-1.931z' })),
|
|
9
|
+
React.createElement("defs", null,
|
|
10
|
+
React.createElement("clipPath", { id: '92e2ea31a' },
|
|
11
|
+
React.createElement("path", { fill: '#fff', d: 'M0 0h32v32H0z' })))));
|
|
12
|
+
const ForwardRef = forwardRef(CurrencyOpbnbIcon);
|
|
13
|
+
export default ForwardRef;
|
|
@@ -47,7 +47,6 @@ export { default as CurrencyXrpIcon } from './CurrencyXrpIcon';
|
|
|
47
47
|
export { default as CurrencyXtzIcon } from './CurrencyXtzIcon';
|
|
48
48
|
export { default as CurrencyZecIcon } from './CurrencyZecIcon';
|
|
49
49
|
export { default as CurrencyP2PIcon } from './CurrencyP2PIcon';
|
|
50
|
-
export { default as CurrencyP2pUsdIcon } from './CurrencyP2pUsdIcon';
|
|
51
50
|
export { default as CurrencyAedIcon } from './CurrencyAedIcon';
|
|
52
51
|
export { default as CurrencyPyusdIcon } from './CurrencyPyusdIcon';
|
|
53
52
|
export { default as CurrencyEurcIcon } from './CurrencyEurcIcon';
|
|
@@ -75,3 +74,18 @@ export { default as CurrencyUsdcBnbIcon } from './CurrencyUsdcBnbIcon';
|
|
|
75
74
|
export { default as CurrencyUsdcOptimismIcon } from './CurrencyUsdcOptimismIcon';
|
|
76
75
|
export { default as CurrencyUsdcAptosIcon } from './CurrencyUsdcAptosIcon';
|
|
77
76
|
export { default as CurrencyUsdcAbtriumIcon } from './CurrencyUsdcAbtriumIcon';
|
|
77
|
+
export { default as CurrencyP2pUsdIcon } from './CurrencyP2pUsdIcon';
|
|
78
|
+
export { default as CurrencyCryptoExchangeSolIcon } from './CurrencyCryptoExchangeSolIcon';
|
|
79
|
+
export { default as CurrencyCryptoExchangeLtcIcon } from './CurrencyCryptoExchangeLtcIcon';
|
|
80
|
+
export { default as CurrencyCryptoExchangeDogeIcon } from './CurrencyCryptoExchangeDogeIcon';
|
|
81
|
+
export { default as CurrencyCryptoExchangeEthIcon } from './CurrencyCryptoExchangeEthIcon';
|
|
82
|
+
export { default as CurrencyCryptoExchangeBtcIcon } from './CurrencyCryptoExchangeBtcIcon';
|
|
83
|
+
export { default as CurrencyCryptoExchangeAptIcon } from './CurrencyCryptoExchangeAptIcon';
|
|
84
|
+
export { default as CurrencyCryptoExchangeAdaIcon } from './CurrencyCryptoExchangeAdaIcon';
|
|
85
|
+
export { default as CurrencyCryptoExchangeTrxIcon } from './CurrencyCryptoExchangeTrxIcon';
|
|
86
|
+
export { default as CurrencyCryptoExchangePolIcon } from './CurrencyCryptoExchangePolIcon';
|
|
87
|
+
export { default as CurrencyCryptoExchangeBnbIcon } from './CurrencyCryptoExchangeBnbIcon';
|
|
88
|
+
export { default as CurrencyCryptoExchangeUsdtIcon } from './CurrencyCryptoExchangeUsdtIcon';
|
|
89
|
+
export { default as CurrencyCryptoExchangeUsdcIcon } from './CurrencyCryptoExchangeUsdcIcon';
|
|
90
|
+
export { default as CurrencyCryptoExchangeBaseIcon } from './CurrencyCryptoExchangeBaseIcon';
|
|
91
|
+
export { default as CurrencyOpbnbIcon } from './CurrencyOpbnbIcon';
|
|
@@ -47,7 +47,6 @@ export { default as CurrencyXrpIcon } from './CurrencyXrpIcon';
|
|
|
47
47
|
export { default as CurrencyXtzIcon } from './CurrencyXtzIcon';
|
|
48
48
|
export { default as CurrencyZecIcon } from './CurrencyZecIcon';
|
|
49
49
|
export { default as CurrencyP2PIcon } from './CurrencyP2PIcon';
|
|
50
|
-
export { default as CurrencyP2pUsdIcon } from './CurrencyP2pUsdIcon';
|
|
51
50
|
export { default as CurrencyAedIcon } from './CurrencyAedIcon';
|
|
52
51
|
export { default as CurrencyPyusdIcon } from './CurrencyPyusdIcon';
|
|
53
52
|
export { default as CurrencyEurcIcon } from './CurrencyEurcIcon';
|
|
@@ -75,3 +74,18 @@ export { default as CurrencyUsdcBnbIcon } from './CurrencyUsdcBnbIcon';
|
|
|
75
74
|
export { default as CurrencyUsdcOptimismIcon } from './CurrencyUsdcOptimismIcon';
|
|
76
75
|
export { default as CurrencyUsdcAptosIcon } from './CurrencyUsdcAptosIcon';
|
|
77
76
|
export { default as CurrencyUsdcAbtriumIcon } from './CurrencyUsdcAbtriumIcon';
|
|
77
|
+
export { default as CurrencyP2pUsdIcon } from './CurrencyP2pUsdIcon';
|
|
78
|
+
export { default as CurrencyCryptoExchangeSolIcon } from './CurrencyCryptoExchangeSolIcon';
|
|
79
|
+
export { default as CurrencyCryptoExchangeLtcIcon } from './CurrencyCryptoExchangeLtcIcon';
|
|
80
|
+
export { default as CurrencyCryptoExchangeDogeIcon } from './CurrencyCryptoExchangeDogeIcon';
|
|
81
|
+
export { default as CurrencyCryptoExchangeEthIcon } from './CurrencyCryptoExchangeEthIcon';
|
|
82
|
+
export { default as CurrencyCryptoExchangeBtcIcon } from './CurrencyCryptoExchangeBtcIcon';
|
|
83
|
+
export { default as CurrencyCryptoExchangeAptIcon } from './CurrencyCryptoExchangeAptIcon';
|
|
84
|
+
export { default as CurrencyCryptoExchangeAdaIcon } from './CurrencyCryptoExchangeAdaIcon';
|
|
85
|
+
export { default as CurrencyCryptoExchangeTrxIcon } from './CurrencyCryptoExchangeTrxIcon';
|
|
86
|
+
export { default as CurrencyCryptoExchangePolIcon } from './CurrencyCryptoExchangePolIcon';
|
|
87
|
+
export { default as CurrencyCryptoExchangeBnbIcon } from './CurrencyCryptoExchangeBnbIcon';
|
|
88
|
+
export { default as CurrencyCryptoExchangeUsdtIcon } from './CurrencyCryptoExchangeUsdtIcon';
|
|
89
|
+
export { default as CurrencyCryptoExchangeUsdcIcon } from './CurrencyCryptoExchangeUsdcIcon';
|
|
90
|
+
export { default as CurrencyCryptoExchangeBaseIcon } from './CurrencyCryptoExchangeBaseIcon';
|
|
91
|
+
export { default as CurrencyOpbnbIcon } from './CurrencyOpbnbIcon';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import illustrationSrc from './assets/DerivLightMore.webp';
|
|
4
|
+
const DerivLightMoreIcon = ({ title, titleId, alt, ...props }, ref) => (React.createElement("img", { src: illustrationSrc, ref: ref, role: 'img', alt: alt ?? title ?? '', "aria-labelledby": titleId, ...props }));
|
|
5
|
+
const ForwardRef = forwardRef(DerivLightMoreIcon);
|
|
6
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import illustrationSrc from './assets/DerivLightOpbnb.webp';
|
|
4
|
+
const DerivLightOpbnbIcon = ({ title, titleId, alt, ...props }, ref) => (React.createElement("img", { src: illustrationSrc, ref: ref, role: 'img', alt: alt ?? title ?? '', "aria-labelledby": titleId, ...props }));
|
|
5
|
+
const ForwardRef = forwardRef(DerivLightOpbnbIcon);
|
|
6
|
+
export default ForwardRef;
|
|
Binary file
|
|
Binary file
|
|
@@ -173,6 +173,7 @@ export { default as DerivLightMigrateStrategyIcon } from './DerivLightMigrateStr
|
|
|
173
173
|
export { default as DerivLightMissionIcon } from './DerivLightMissionIcon';
|
|
174
174
|
export { default as DerivLightMobileNotVerifiedIcon } from './DerivLightMobileNotVerifiedIcon';
|
|
175
175
|
export { default as DerivLightMobileVerifiedIcon } from './DerivLightMobileVerifiedIcon';
|
|
176
|
+
export { default as DerivLightMoreIcon } from './DerivLightMoreIcon';
|
|
176
177
|
export { default as DerivLightMt5CryptoIcon } from './DerivLightMt5CryptoIcon';
|
|
177
178
|
export { default as DerivLightMt5FinancialIcon } from './DerivLightMt5FinancialIcon';
|
|
178
179
|
export { default as DerivLightMt5GoldIcon } from './DerivLightMt5GoldIcon';
|
|
@@ -192,6 +193,7 @@ export { default as DerivLightNimcSlipFrontKycIcon } from './DerivLightNimcSlipF
|
|
|
192
193
|
export { default as DerivLightNimcSlipKycIcon } from './DerivLightNimcSlipKycIcon';
|
|
193
194
|
export { default as DerivLightNoDistractionsIcon } from './DerivLightNoDistractionsIcon';
|
|
194
195
|
export { default as DerivLightNoRecentTransactionsIcon } from './DerivLightNoRecentTransactionsIcon';
|
|
196
|
+
export { default as DerivLightOpbnbIcon } from './DerivLightOpbnbIcon';
|
|
195
197
|
export { default as DerivLightOptimismIcon } from './DerivLightOptimismIcon';
|
|
196
198
|
export { default as DerivLightOptionsIcon } from './DerivLightOptionsIcon';
|
|
197
199
|
export { default as DerivLightOrderIcon } from './DerivLightOrderIcon';
|
|
@@ -173,6 +173,7 @@ export { default as DerivLightMigrateStrategyIcon } from './DerivLightMigrateStr
|
|
|
173
173
|
export { default as DerivLightMissionIcon } from './DerivLightMissionIcon';
|
|
174
174
|
export { default as DerivLightMobileNotVerifiedIcon } from './DerivLightMobileNotVerifiedIcon';
|
|
175
175
|
export { default as DerivLightMobileVerifiedIcon } from './DerivLightMobileVerifiedIcon';
|
|
176
|
+
export { default as DerivLightMoreIcon } from './DerivLightMoreIcon';
|
|
176
177
|
export { default as DerivLightMt5CryptoIcon } from './DerivLightMt5CryptoIcon';
|
|
177
178
|
export { default as DerivLightMt5FinancialIcon } from './DerivLightMt5FinancialIcon';
|
|
178
179
|
export { default as DerivLightMt5GoldIcon } from './DerivLightMt5GoldIcon';
|
|
@@ -192,6 +193,7 @@ export { default as DerivLightNimcSlipFrontKycIcon } from './DerivLightNimcSlipF
|
|
|
192
193
|
export { default as DerivLightNimcSlipKycIcon } from './DerivLightNimcSlipKycIcon';
|
|
193
194
|
export { default as DerivLightNoDistractionsIcon } from './DerivLightNoDistractionsIcon';
|
|
194
195
|
export { default as DerivLightNoRecentTransactionsIcon } from './DerivLightNoRecentTransactionsIcon';
|
|
196
|
+
export { default as DerivLightOpbnbIcon } from './DerivLightOpbnbIcon';
|
|
195
197
|
export { default as DerivLightOptimismIcon } from './DerivLightOptimismIcon';
|
|
196
198
|
export { default as DerivLightOptionsIcon } from './DerivLightOptionsIcon';
|
|
197
199
|
export { default as DerivLightOrderIcon } from './DerivLightOrderIcon';
|
|
@@ -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 MarketStocksSpacexIcon: ({ 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,14 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const MarketStocksSpacexIcon = ({ 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("g", { clipPath: 'url(#ee60e99ea)' },
|
|
7
|
+
React.createElement("path", { fill: '#282C38', d: 'M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', d: 'M29.376 7.22c.505.767.945 1.58 1.313 2.431q-.047-.111-.096-.221c-6.473 2.66-13.307 6.6-19.125 12.433H6l.611-.607c2.132-2.055 9.31-8.709 23.292-13.179a16 16 0 0 0-.527-.857' }),
|
|
9
|
+
React.createElement("path", { fill: '#fff', d: 'M27.052 21.861h-5.413l-4.81-3.496h.002a56 56 0 0 1 2.733-2.007zM11.759 10.556l3.9 2.78.002-.001v.003l-.003-.002A64 64 0 0 0 12.7 15.19l-6.347-4.634z' })),
|
|
10
|
+
React.createElement("defs", null,
|
|
11
|
+
React.createElement("clipPath", { id: 'ee60e99ea' },
|
|
12
|
+
React.createElement("path", { fill: '#fff', d: 'M0 0h32v32H0z' })))));
|
|
13
|
+
const ForwardRef = forwardRef(MarketStocksSpacexIcon);
|
|
14
|
+
export default ForwardRef;
|
|
@@ -177,6 +177,7 @@ export { default as MarketStocksVirginGalacticIcon } from './MarketStocksVirginG
|
|
|
177
177
|
export { default as MarketStocksPerformanceShippingIncIcon } from './MarketStocksPerformanceShippingIncIcon';
|
|
178
178
|
export { default as MarketStocksRivianIcon } from './MarketStocksRivianIcon';
|
|
179
179
|
export { default as MarketStocksPalantirTechnologiesIcon } from './MarketStocksPalantirTechnologiesIcon';
|
|
180
|
+
export { default as MarketStocksSpacexIcon } from './MarketStocksSpacexIcon';
|
|
180
181
|
export { default as MarketIndicesAustralia200Icon } from './MarketIndicesAustralia200Icon';
|
|
181
182
|
export { default as MarketIndicesEuro50Icon } from './MarketIndicesEuro50Icon';
|
|
182
183
|
export { default as MarketIndicesFrance40Icon } from './MarketIndicesFrance40Icon';
|
|
@@ -177,6 +177,7 @@ export { default as MarketStocksVirginGalacticIcon } from './MarketStocksVirginG
|
|
|
177
177
|
export { default as MarketStocksPerformanceShippingIncIcon } from './MarketStocksPerformanceShippingIncIcon';
|
|
178
178
|
export { default as MarketStocksRivianIcon } from './MarketStocksRivianIcon';
|
|
179
179
|
export { default as MarketStocksPalantirTechnologiesIcon } from './MarketStocksPalantirTechnologiesIcon';
|
|
180
|
+
export { default as MarketStocksSpacexIcon } from './MarketStocksSpacexIcon';
|
|
180
181
|
export { default as MarketIndicesAustralia200Icon } from './MarketIndicesAustralia200Icon';
|
|
181
182
|
export { default as MarketIndicesEuro50Icon } from './MarketIndicesEuro50Icon';
|
|
182
183
|
export { default as MarketIndicesFrance40Icon } from './MarketIndicesFrance40Icon';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const allIconsNames: {
|
|
2
2
|
type: string;
|
|
3
3
|
name: string;
|
|
4
|
-
contents:
|
|
4
|
+
contents: {
|
|
5
5
|
type: string;
|
|
6
6
|
name: string;
|
|
7
7
|
contents: ({
|
|
@@ -16,9 +16,5 @@ export declare const allIconsNames: {
|
|
|
16
16
|
name: string;
|
|
17
17
|
contents?: undefined;
|
|
18
18
|
})[];
|
|
19
|
-
}
|
|
20
|
-
type: string;
|
|
21
|
-
name: string;
|
|
22
|
-
contents?: undefined;
|
|
23
|
-
})[];
|
|
19
|
+
}[];
|
|
24
20
|
}[];
|