@matbea-ui/matbea-ui 0.2.0 → 1.0.0
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/matbea-ui.cjs.js +28707 -1490
- package/dist/matbea-ui.cjs.js.map +1 -1
- package/dist/matbea-ui.es.js +28254 -1481
- package/dist/matbea-ui.es.js.map +1 -1
- package/dist/types/index.d.ts +1069 -14
- package/package.json +13 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { ReactNode, ButtonHTMLAttributes, ChangeEvent, FocusEventHandler } from 'react';
|
|
4
|
-
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
3
|
+
import react__default, { ReactNode, ButtonHTMLAttributes, ChangeEvent, FocusEventHandler, HTMLAttributes } from 'react';
|
|
5
4
|
import * as styled_components from 'styled-components';
|
|
5
|
+
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
6
|
+
import { Middleware } from 'stylis';
|
|
6
7
|
|
|
7
8
|
type ButtonVariant = "primary" | "secondary" | "tertiary";
|
|
8
9
|
type ButtonSize = "default" | "medium" | "small";
|
|
@@ -17,8 +18,10 @@ type ButtonProps = {
|
|
|
17
18
|
icon?: ReactNode;
|
|
18
19
|
iconPosition?: IconPosition;
|
|
19
20
|
children?: ReactNode;
|
|
21
|
+
ref?: React.Ref<HTMLButtonElement>;
|
|
22
|
+
disabled?: boolean;
|
|
20
23
|
} & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
21
|
-
declare const Button: ({ variant, size, form, fullWidth, icon, iconPosition, children, disabled, ...rest }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
declare const Button: ({ variant, size, form, fullWidth, icon, iconPosition, children, disabled, ref, ...rest }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
22
25
|
|
|
23
26
|
type CopyTooltipProps = {
|
|
24
27
|
label: string;
|
|
@@ -28,7 +31,7 @@ type CopyTooltipProps = {
|
|
|
28
31
|
};
|
|
29
32
|
declare const CopyTooltip: React.FC<CopyTooltipProps>;
|
|
30
33
|
|
|
31
|
-
type TypographyVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "body-xl-semibold" | "body-xl" | "body-l-semibold" | "body-l" | "body-m-bold" | "body-m-semibold" | "body-m" | "body-s-semibold" | "body-s" | "button" | "form-input" | "avatar-basic" | "avatar-m" | "avatar-s";
|
|
34
|
+
type TypographyVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "body-xl-semibold" | "body-xl" | "body-l-semibold" | "body-l" | "body-m-bold" | "body-m-semibold" | "body-m" | "body-s-semibold" | "body-xl-bold" | "body-s" | "button" | "form-input" | "avatar-basic" | "avatar-m" | "avatar-s";
|
|
32
35
|
|
|
33
36
|
type ElementTypeProp = React.ElementType;
|
|
34
37
|
type TypographyOwnProps = {
|
|
@@ -48,9 +51,9 @@ declare const Typography: TypographyComponent;
|
|
|
48
51
|
|
|
49
52
|
type InformerType = "success" | "error" | "info" | "warning";
|
|
50
53
|
type InformerProps = {
|
|
51
|
-
label
|
|
52
|
-
description
|
|
53
|
-
type
|
|
54
|
+
label?: string;
|
|
55
|
+
description?: string;
|
|
56
|
+
type?: InformerType;
|
|
54
57
|
icon?: boolean;
|
|
55
58
|
};
|
|
56
59
|
declare const Informer: React.FC<InformerProps>;
|
|
@@ -60,8 +63,10 @@ type TextFieldProps = {
|
|
|
60
63
|
defaultValue?: string;
|
|
61
64
|
placeholder?: string;
|
|
62
65
|
label?: string;
|
|
66
|
+
labelVariant?: TypographyVariant;
|
|
63
67
|
error?: string;
|
|
64
68
|
disabled?: boolean;
|
|
69
|
+
labelColor?: string;
|
|
65
70
|
icon?: React.ReactNode;
|
|
66
71
|
action?: React.ReactNode;
|
|
67
72
|
name?: string;
|
|
@@ -72,6 +77,60 @@ type TextFieldProps = {
|
|
|
72
77
|
className?: string;
|
|
73
78
|
};
|
|
74
79
|
declare const TextField: react.ForwardRefExoticComponent<TextFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
80
|
+
declare const Label: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<styled_components.FastOmit<styled_components_dist_types.Substitute<{
|
|
81
|
+
variant?: TypographyVariant;
|
|
82
|
+
color?: string;
|
|
83
|
+
align?: "left" | "center" | "right" | "justify";
|
|
84
|
+
uppercase?: boolean;
|
|
85
|
+
truncate?: boolean;
|
|
86
|
+
inline?: boolean;
|
|
87
|
+
} & Omit<Omit<any, "ref">, keyof {
|
|
88
|
+
variant?: TypographyVariant;
|
|
89
|
+
color?: string;
|
|
90
|
+
align?: "left" | "center" | "right" | "justify";
|
|
91
|
+
uppercase?: boolean;
|
|
92
|
+
truncate?: boolean;
|
|
93
|
+
inline?: boolean;
|
|
94
|
+
}> & {
|
|
95
|
+
as?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
96
|
+
forwardedAs?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
97
|
+
}, {
|
|
98
|
+
variant?: TypographyVariant;
|
|
99
|
+
color?: string;
|
|
100
|
+
align?: "left" | "center" | "right" | "justify";
|
|
101
|
+
uppercase?: boolean;
|
|
102
|
+
truncate?: boolean;
|
|
103
|
+
inline?: boolean;
|
|
104
|
+
} & Omit<Omit<any, "ref">, keyof {
|
|
105
|
+
variant?: TypographyVariant;
|
|
106
|
+
color?: string;
|
|
107
|
+
align?: "left" | "center" | "right" | "justify";
|
|
108
|
+
uppercase?: boolean;
|
|
109
|
+
truncate?: boolean;
|
|
110
|
+
inline?: boolean;
|
|
111
|
+
}> & {
|
|
112
|
+
as?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
113
|
+
forwardedAs?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
114
|
+
}>, never>, {
|
|
115
|
+
$color?: string;
|
|
116
|
+
}>> & string & Omit<(<C extends "symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view" = "span">(props: {
|
|
117
|
+
variant?: TypographyVariant;
|
|
118
|
+
color?: string;
|
|
119
|
+
align?: "left" | "center" | "right" | "justify";
|
|
120
|
+
uppercase?: boolean;
|
|
121
|
+
truncate?: boolean;
|
|
122
|
+
inline?: boolean;
|
|
123
|
+
} & Omit<react.PropsWithoutRef<react.ComponentProps<C>>, keyof {
|
|
124
|
+
variant?: TypographyVariant;
|
|
125
|
+
color?: string;
|
|
126
|
+
align?: "left" | "center" | "right" | "justify";
|
|
127
|
+
uppercase?: boolean;
|
|
128
|
+
truncate?: boolean;
|
|
129
|
+
inline?: boolean;
|
|
130
|
+
}> & {
|
|
131
|
+
as?: C | undefined;
|
|
132
|
+
forwardedAs?: C | undefined;
|
|
133
|
+
}) => React.ReactElement | null), keyof react.Component<any, {}, any>>;
|
|
75
134
|
|
|
76
135
|
declare const Container: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
77
136
|
|
|
@@ -87,7 +146,7 @@ declare const HamburgerButton: React.FC<HamburgerButtonProps>;
|
|
|
87
146
|
|
|
88
147
|
declare const Loader: () => react_jsx_runtime.JSX.Element;
|
|
89
148
|
|
|
90
|
-
|
|
149
|
+
interface RadioButtonProps {
|
|
91
150
|
checked?: boolean;
|
|
92
151
|
defaultChecked?: boolean;
|
|
93
152
|
disabled?: boolean;
|
|
@@ -96,7 +155,7 @@ type RadioButtonProps = {
|
|
|
96
155
|
label?: string;
|
|
97
156
|
onChange?: (value: boolean) => void;
|
|
98
157
|
className?: string;
|
|
99
|
-
}
|
|
158
|
+
}
|
|
100
159
|
declare const RadioButton: React.FC<RadioButtonProps>;
|
|
101
160
|
|
|
102
161
|
type SelectOption = {
|
|
@@ -110,6 +169,8 @@ type SelectFieldProps = {
|
|
|
110
169
|
defaultValue?: string;
|
|
111
170
|
placeholder?: string;
|
|
112
171
|
label?: string;
|
|
172
|
+
searchInput?: boolean;
|
|
173
|
+
searchPlaceholder?: string;
|
|
113
174
|
error?: string;
|
|
114
175
|
disabled?: boolean;
|
|
115
176
|
icon?: React.ReactNode;
|
|
@@ -205,6 +266,95 @@ declare const Checkbox: React.FC<CheckboxProps>;
|
|
|
205
266
|
|
|
206
267
|
declare const Logo: () => react_jsx_runtime.JSX.Element;
|
|
207
268
|
|
|
269
|
+
interface ButtonSwitcherProps {
|
|
270
|
+
active: boolean;
|
|
271
|
+
leftButtonLabel: string | React.ReactNode;
|
|
272
|
+
rightButtonLabel: string | React.ReactNode;
|
|
273
|
+
}
|
|
274
|
+
declare const ButtonSwitcher: React.FC<ButtonSwitcherProps>;
|
|
275
|
+
|
|
276
|
+
declare const Avatar: (props: HTMLAttributes<HTMLDivElement> & {
|
|
277
|
+
size?: number;
|
|
278
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
279
|
+
|
|
280
|
+
interface LangCountrySelectProps {
|
|
281
|
+
currentLang: string;
|
|
282
|
+
currentCurrency: string;
|
|
283
|
+
currentCountry: string;
|
|
284
|
+
countries: SelectFieldProps["options"];
|
|
285
|
+
currencies: SelectFieldProps["options"];
|
|
286
|
+
languages: SelectFieldProps["options"];
|
|
287
|
+
handleSave?: ({ lang, currency, country, }: {
|
|
288
|
+
lang: string;
|
|
289
|
+
currency: string;
|
|
290
|
+
country: string;
|
|
291
|
+
}) => void;
|
|
292
|
+
labelLang: string;
|
|
293
|
+
labelCurrency: string;
|
|
294
|
+
labelCountry: string;
|
|
295
|
+
saveText?: string;
|
|
296
|
+
searchPlaceholder?: string;
|
|
297
|
+
}
|
|
298
|
+
declare const LangCountrySelect: React.FC<LangCountrySelectProps>;
|
|
299
|
+
|
|
300
|
+
interface SkeletonProps {
|
|
301
|
+
$variant?: SkeletonVariant;
|
|
302
|
+
$width?: string | number;
|
|
303
|
+
$height?: string | number;
|
|
304
|
+
className?: string;
|
|
305
|
+
$animation?: SkeletonAnimation;
|
|
306
|
+
$borderRadius?: string | number;
|
|
307
|
+
}
|
|
308
|
+
type SkeletonVariant = "text" | "circular" | "rectangular";
|
|
309
|
+
type SkeletonAnimation = "pulse" | "wave" | false;
|
|
310
|
+
|
|
311
|
+
declare const Skeleton: React.FC<SkeletonProps>;
|
|
312
|
+
|
|
313
|
+
interface ModalProps {
|
|
314
|
+
children: React.ReactNode;
|
|
315
|
+
title: string;
|
|
316
|
+
onClose?: () => void;
|
|
317
|
+
open: boolean;
|
|
318
|
+
}
|
|
319
|
+
declare const Modal: React.FC<ModalProps>;
|
|
320
|
+
|
|
321
|
+
interface Country {
|
|
322
|
+
id: number;
|
|
323
|
+
name: string;
|
|
324
|
+
localName?: string;
|
|
325
|
+
iso2: string;
|
|
326
|
+
iso3?: string;
|
|
327
|
+
dialCode: string;
|
|
328
|
+
format?: string;
|
|
329
|
+
priority?: number;
|
|
330
|
+
regions: string[];
|
|
331
|
+
areaCodes?: string[];
|
|
332
|
+
}
|
|
333
|
+
interface PhoneInputProps {
|
|
334
|
+
value?: string;
|
|
335
|
+
defaultValue?: string;
|
|
336
|
+
placeholder?: string;
|
|
337
|
+
label?: string;
|
|
338
|
+
error?: string;
|
|
339
|
+
disabled?: boolean;
|
|
340
|
+
name?: string;
|
|
341
|
+
defaultCountry?: string | number;
|
|
342
|
+
preferredCountries?: (string | number)[];
|
|
343
|
+
onlyCountries?: (string | number)[];
|
|
344
|
+
excludeCountries?: (string | number)[];
|
|
345
|
+
onChange?: (value: string, country: Country) => void;
|
|
346
|
+
onFocus?: React.FocusEventHandler<HTMLInputElement>;
|
|
347
|
+
onBlur?: React.FocusEventHandler<HTMLInputElement>;
|
|
348
|
+
className?: string;
|
|
349
|
+
searchPlaceholder?: string;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
declare const PhoneInput: react.ForwardRefExoticComponent<PhoneInputProps & react.RefAttributes<HTMLInputElement>>;
|
|
353
|
+
|
|
354
|
+
declare const countries: Country[];
|
|
355
|
+
|
|
356
|
+
declare const getFlagIconComponent: (iso2: string) => React.ComponentType | null;
|
|
357
|
+
|
|
208
358
|
type ApplicationDataVariant = "primary" | "secondary";
|
|
209
359
|
interface ApplicationDataProps {
|
|
210
360
|
label: string;
|
|
@@ -219,7 +369,7 @@ type ApplicationInfoVariant = "primary" | "secondary";
|
|
|
219
369
|
|
|
220
370
|
interface ApplicationInfoProps {
|
|
221
371
|
children: React.ReactNode;
|
|
222
|
-
actions
|
|
372
|
+
actions?: React.ReactNode;
|
|
223
373
|
variant?: ApplicationInfoVariant;
|
|
224
374
|
}
|
|
225
375
|
declare const ApplicationInfo: React.FC<ApplicationInfoProps>;
|
|
@@ -274,6 +424,33 @@ interface TransactionStatusProps {
|
|
|
274
424
|
}
|
|
275
425
|
declare const TransactionStatus: React.FC<TransactionStatusProps>;
|
|
276
426
|
|
|
427
|
+
interface InputMessageProps {
|
|
428
|
+
onChangeMessage?: (value: string) => void;
|
|
429
|
+
message?: string;
|
|
430
|
+
onChangeFiles?: (files: File[]) => void;
|
|
431
|
+
files?: File[];
|
|
432
|
+
handleClickEmoji?: (value: string) => void;
|
|
433
|
+
onSend?: () => void;
|
|
434
|
+
}
|
|
435
|
+
declare const InputMessage: React.FC<InputMessageProps>;
|
|
436
|
+
|
|
437
|
+
type MessageVariant = "self" | "other";
|
|
438
|
+
|
|
439
|
+
interface ChatMessageProps {
|
|
440
|
+
children: React.ReactNode;
|
|
441
|
+
variant?: MessageVariant;
|
|
442
|
+
longName?: string;
|
|
443
|
+
date?: string;
|
|
444
|
+
}
|
|
445
|
+
declare const ChatMessage: React.FC<ChatMessageProps>;
|
|
446
|
+
|
|
447
|
+
interface ChatProps {
|
|
448
|
+
children: React.ReactNode;
|
|
449
|
+
inputMessage: React.ReactNode;
|
|
450
|
+
longName: string;
|
|
451
|
+
}
|
|
452
|
+
declare const Chat: React.FC<ChatProps>;
|
|
453
|
+
|
|
277
454
|
declare const maskEmail: (email: string, keep?: number, stars?: number) => string;
|
|
278
455
|
declare const formatCardNumber: (cardNum: number) => string;
|
|
279
456
|
declare const copyToClipboard: (text: string) => Promise<void>;
|
|
@@ -319,12 +496,890 @@ declare const theme: {
|
|
|
319
496
|
};
|
|
320
497
|
readonly media: {
|
|
321
498
|
readonly maxWidth: {
|
|
322
|
-
readonly mobile: "@media (max-width:
|
|
323
|
-
readonly tablet: "@media (max-width:
|
|
499
|
+
readonly mobile: "@media (max-width: 576px)";
|
|
500
|
+
readonly tablet: "@media (max-width: 1023px)";
|
|
324
501
|
};
|
|
325
502
|
};
|
|
326
503
|
};
|
|
327
504
|
type AppTheme = typeof theme;
|
|
328
505
|
|
|
329
|
-
|
|
330
|
-
|
|
506
|
+
interface IconProps extends react__default.SVGProps<SVGSVGElement> {
|
|
507
|
+
size?: number;
|
|
508
|
+
children?: react__default.ReactNode;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
declare const LogoAbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
512
|
+
|
|
513
|
+
declare const LogoAbsolutIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
514
|
+
|
|
515
|
+
declare const LogoAcbaCreditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
516
|
+
|
|
517
|
+
declare const LogoAlphabankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
518
|
+
|
|
519
|
+
declare const LogoArmEconomBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
520
|
+
|
|
521
|
+
declare const LogoArshidBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
522
|
+
|
|
523
|
+
declare const LogoBankcentercreditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
524
|
+
|
|
525
|
+
declare const LogoBankofGeorgiaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
526
|
+
|
|
527
|
+
declare const LogoEurobankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
528
|
+
|
|
529
|
+
declare const LogoForteBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
530
|
+
|
|
531
|
+
declare const LogoHalykBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
532
|
+
|
|
533
|
+
declare const LogoHomecreditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
534
|
+
|
|
535
|
+
declare const LogoHumoCardIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
536
|
+
|
|
537
|
+
declare const LogoJysanBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
538
|
+
|
|
539
|
+
declare const LogoKaspiBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
540
|
+
|
|
541
|
+
declare const LogoMonobankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
542
|
+
|
|
543
|
+
declare const LogoMtsbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
544
|
+
|
|
545
|
+
declare const LogoNetellerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
546
|
+
|
|
547
|
+
declare const LogoOshadbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
548
|
+
|
|
549
|
+
declare const LogoOtkrutieIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
550
|
+
|
|
551
|
+
declare const LogoPochtabankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
552
|
+
|
|
553
|
+
declare const LogoPrivatebankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
554
|
+
|
|
555
|
+
declare const LogoPumbIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
556
|
+
|
|
557
|
+
declare const LogoQiwiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
558
|
+
|
|
559
|
+
declare const LogoRayfuzenbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
560
|
+
|
|
561
|
+
declare const LogoRevolutIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
562
|
+
|
|
563
|
+
declare const LogoRnkbIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
564
|
+
|
|
565
|
+
declare const LogoRosbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
566
|
+
|
|
567
|
+
declare const LogoRosselhozbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
568
|
+
|
|
569
|
+
declare const LogoRusstandartIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
570
|
+
|
|
571
|
+
declare const LogoSberIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
572
|
+
|
|
573
|
+
declare const LogoSbpIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
574
|
+
|
|
575
|
+
declare const LogoSotovuyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
576
|
+
|
|
577
|
+
declare const LogoTbcBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
578
|
+
|
|
579
|
+
declare const LogoTinkoffIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
580
|
+
|
|
581
|
+
declare const LogoUkrsibbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
582
|
+
|
|
583
|
+
declare const LogoUzCardIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
584
|
+
|
|
585
|
+
declare const LogoVtbIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
586
|
+
|
|
587
|
+
declare const LogoWiseIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
588
|
+
|
|
589
|
+
declare const LogoYoumoneyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
590
|
+
|
|
591
|
+
declare const ArrowIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
592
|
+
|
|
593
|
+
declare const AttachIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
594
|
+
|
|
595
|
+
declare const CheckIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
596
|
+
|
|
597
|
+
declare const CloseIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
598
|
+
|
|
599
|
+
declare const DashboardIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
600
|
+
|
|
601
|
+
declare const EmojiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
602
|
+
|
|
603
|
+
declare const ExchangeIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
604
|
+
|
|
605
|
+
declare const HamburgerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
606
|
+
|
|
607
|
+
declare const HeadphonesIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
608
|
+
|
|
609
|
+
declare const HistoryIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
610
|
+
|
|
611
|
+
declare const P2PIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
612
|
+
|
|
613
|
+
declare const ReciveCryptoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
614
|
+
|
|
615
|
+
declare const SearchIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
616
|
+
|
|
617
|
+
declare const SendCryptoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
618
|
+
|
|
619
|
+
declare const SettingsIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
620
|
+
|
|
621
|
+
declare const TopUpIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
622
|
+
|
|
623
|
+
declare const UserIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
624
|
+
|
|
625
|
+
declare const UsersIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
626
|
+
|
|
627
|
+
declare const WalletIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
628
|
+
|
|
629
|
+
declare const CircleSendCryptoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
630
|
+
|
|
631
|
+
declare const ClockIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
632
|
+
|
|
633
|
+
declare const Close2Icon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
634
|
+
|
|
635
|
+
declare const CopyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
636
|
+
|
|
637
|
+
declare const DepositIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
638
|
+
|
|
639
|
+
declare const DepositSimpleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
640
|
+
|
|
641
|
+
declare const DropdownIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
642
|
+
|
|
643
|
+
declare const DropdownSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
644
|
+
|
|
645
|
+
declare const DropdownUpIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
646
|
+
|
|
647
|
+
declare const EditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
648
|
+
|
|
649
|
+
declare const ErrorBigIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
650
|
+
|
|
651
|
+
declare const ExchangeArrowsIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
652
|
+
|
|
653
|
+
declare const ExchangeSimpleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
654
|
+
|
|
655
|
+
declare const HideUiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
656
|
+
|
|
657
|
+
declare const InfoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
658
|
+
|
|
659
|
+
declare const LinkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
660
|
+
|
|
661
|
+
declare const LogoutIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
662
|
+
|
|
663
|
+
declare const MessageSendIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
664
|
+
|
|
665
|
+
declare const PlusIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
666
|
+
|
|
667
|
+
declare const ScanQrIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
668
|
+
|
|
669
|
+
declare const ShowUiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
670
|
+
|
|
671
|
+
declare const SuccessfullBigIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
672
|
+
|
|
673
|
+
declare const SuccessfullSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
674
|
+
|
|
675
|
+
declare const UpSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
676
|
+
|
|
677
|
+
declare const WalletFillIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
678
|
+
|
|
679
|
+
declare const WarningIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
680
|
+
|
|
681
|
+
declare const WithdrawIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
683
|
+
declare const WithdrawSimpleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
684
|
+
|
|
685
|
+
declare const CountryBrIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
686
|
+
|
|
687
|
+
declare const CountryCzechIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
688
|
+
|
|
689
|
+
declare const CountryKzIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
690
|
+
|
|
691
|
+
declare const CountryRusIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
692
|
+
|
|
693
|
+
declare const AaveIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
694
|
+
|
|
695
|
+
declare const AlgorandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
696
|
+
|
|
697
|
+
declare const AvalancheIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
698
|
+
|
|
699
|
+
declare const BatIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
700
|
+
|
|
701
|
+
declare const BitcoinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
702
|
+
|
|
703
|
+
declare const BnbSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
704
|
+
|
|
705
|
+
declare const BtgIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
706
|
+
|
|
707
|
+
declare const BusdIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
708
|
+
|
|
709
|
+
declare const CakeIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
710
|
+
|
|
711
|
+
declare const CardanoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
712
|
+
|
|
713
|
+
declare const ChainlinkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
714
|
+
|
|
715
|
+
declare const CosmosIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
716
|
+
|
|
717
|
+
declare const DashSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
718
|
+
|
|
719
|
+
declare const DecentralandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
720
|
+
|
|
721
|
+
declare const DigibyteIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
722
|
+
|
|
723
|
+
declare const DogeSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
724
|
+
|
|
725
|
+
declare const ElrondIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
726
|
+
|
|
727
|
+
declare const EnjinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
728
|
+
|
|
729
|
+
declare const EosIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
730
|
+
|
|
731
|
+
declare const EtcIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
732
|
+
|
|
733
|
+
declare const EthIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
734
|
+
|
|
735
|
+
declare const EurIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
736
|
+
|
|
737
|
+
declare const FantomIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
738
|
+
|
|
739
|
+
declare const FilecoinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
740
|
+
|
|
741
|
+
declare const FtxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
742
|
+
|
|
743
|
+
declare const HederaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
744
|
+
|
|
745
|
+
declare const IcomputerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
746
|
+
|
|
747
|
+
declare const NeoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
748
|
+
|
|
749
|
+
declare const IcxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
750
|
+
|
|
751
|
+
declare const IlsIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
752
|
+
|
|
753
|
+
declare const IotaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
754
|
+
|
|
755
|
+
declare const KlaytnIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
756
|
+
|
|
757
|
+
declare const LariIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
758
|
+
|
|
759
|
+
declare const LiskIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
760
|
+
|
|
761
|
+
declare const LitecoinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
762
|
+
|
|
763
|
+
declare const LunaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
764
|
+
|
|
765
|
+
declare const MakerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
766
|
+
|
|
767
|
+
declare const MaticIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
768
|
+
|
|
769
|
+
declare const NearIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
770
|
+
|
|
771
|
+
declare const NemIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
772
|
+
|
|
773
|
+
declare const OmgnetworkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
774
|
+
|
|
775
|
+
declare const OmiseIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
776
|
+
|
|
777
|
+
declare const OntologyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
778
|
+
|
|
779
|
+
declare const PaxgIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
780
|
+
|
|
781
|
+
declare const PolkaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
782
|
+
|
|
783
|
+
declare const QnekworkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
784
|
+
|
|
785
|
+
declare const QutumIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
786
|
+
|
|
787
|
+
declare const RippleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
788
|
+
|
|
789
|
+
declare const RubIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
790
|
+
|
|
791
|
+
declare const SandboxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
792
|
+
|
|
793
|
+
declare const SolanaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
794
|
+
|
|
795
|
+
declare const StellarIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
796
|
+
|
|
797
|
+
declare const StepnIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
798
|
+
|
|
799
|
+
declare const SushiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
800
|
+
|
|
801
|
+
declare const SynthetixIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
802
|
+
|
|
803
|
+
declare const TetherIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
804
|
+
|
|
805
|
+
declare const TezosIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
806
|
+
|
|
807
|
+
declare const ThegraphIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
808
|
+
|
|
809
|
+
declare const ThetaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
810
|
+
|
|
811
|
+
declare const TrxSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
812
|
+
|
|
813
|
+
declare const UniswapIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
814
|
+
|
|
815
|
+
declare const UsdIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
816
|
+
|
|
817
|
+
declare const UsdcIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
818
|
+
|
|
819
|
+
declare const VechainIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
820
|
+
|
|
821
|
+
declare const WavesIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
822
|
+
|
|
823
|
+
declare const XmrSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
824
|
+
|
|
825
|
+
declare const ZcashSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
826
|
+
|
|
827
|
+
declare const ZilliqaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
828
|
+
|
|
829
|
+
declare const ZrxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
830
|
+
|
|
831
|
+
declare const AcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
832
|
+
|
|
833
|
+
declare const AdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
834
|
+
|
|
835
|
+
declare const AeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
836
|
+
|
|
837
|
+
declare const AfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
838
|
+
|
|
839
|
+
declare const AgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
840
|
+
|
|
841
|
+
declare const AiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
842
|
+
|
|
843
|
+
declare const AlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
844
|
+
|
|
845
|
+
declare const AmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
846
|
+
|
|
847
|
+
declare const AoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
848
|
+
|
|
849
|
+
declare const AqFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
850
|
+
|
|
851
|
+
declare const ArFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
852
|
+
|
|
853
|
+
declare const ArabFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
854
|
+
|
|
855
|
+
declare const AsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
856
|
+
|
|
857
|
+
declare const AtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
858
|
+
|
|
859
|
+
declare const AuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
860
|
+
|
|
861
|
+
declare const AwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
862
|
+
|
|
863
|
+
declare const AxFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
864
|
+
|
|
865
|
+
declare const AzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
866
|
+
|
|
867
|
+
declare const BaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
868
|
+
|
|
869
|
+
declare const BbFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
870
|
+
|
|
871
|
+
declare const BdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
872
|
+
|
|
873
|
+
declare const BeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
874
|
+
|
|
875
|
+
declare const BfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
876
|
+
|
|
877
|
+
declare const BgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
878
|
+
|
|
879
|
+
declare const BhFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
880
|
+
|
|
881
|
+
declare const BiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
882
|
+
|
|
883
|
+
declare const BjFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
884
|
+
|
|
885
|
+
declare const BlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
886
|
+
|
|
887
|
+
declare const BmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
888
|
+
|
|
889
|
+
declare const BnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
890
|
+
|
|
891
|
+
declare const BoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
892
|
+
|
|
893
|
+
declare const BqFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
894
|
+
|
|
895
|
+
declare const BrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
896
|
+
|
|
897
|
+
declare const BsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
898
|
+
|
|
899
|
+
declare const BtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
900
|
+
|
|
901
|
+
declare const BvFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
902
|
+
|
|
903
|
+
declare const BwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
904
|
+
|
|
905
|
+
declare const ByFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
906
|
+
|
|
907
|
+
declare const BzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
908
|
+
|
|
909
|
+
declare const CaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
910
|
+
|
|
911
|
+
declare const CcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
912
|
+
|
|
913
|
+
declare const CdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
914
|
+
|
|
915
|
+
declare const CeftaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
916
|
+
|
|
917
|
+
declare const CfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
918
|
+
|
|
919
|
+
declare const CgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
920
|
+
|
|
921
|
+
declare const ChFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
922
|
+
|
|
923
|
+
declare const CiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
924
|
+
|
|
925
|
+
declare const CkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
926
|
+
|
|
927
|
+
declare const ClFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare const CmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
930
|
+
|
|
931
|
+
declare const CnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare const CoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
934
|
+
|
|
935
|
+
declare const CpFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
936
|
+
|
|
937
|
+
declare const CrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
938
|
+
|
|
939
|
+
declare const CuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
940
|
+
|
|
941
|
+
declare const CvFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
942
|
+
|
|
943
|
+
declare const CwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
944
|
+
|
|
945
|
+
declare const CxFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
946
|
+
|
|
947
|
+
declare const CyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
948
|
+
|
|
949
|
+
declare const CzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
950
|
+
|
|
951
|
+
declare const DeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
952
|
+
|
|
953
|
+
declare const DgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
954
|
+
|
|
955
|
+
declare const DjFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
956
|
+
|
|
957
|
+
declare const DkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
958
|
+
|
|
959
|
+
declare const DmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
960
|
+
|
|
961
|
+
declare const DoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
962
|
+
|
|
963
|
+
declare const DzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
964
|
+
|
|
965
|
+
declare const EacFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
966
|
+
|
|
967
|
+
declare const EcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
968
|
+
|
|
969
|
+
declare const EeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
970
|
+
|
|
971
|
+
declare const EgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
972
|
+
|
|
973
|
+
declare const EhFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
974
|
+
|
|
975
|
+
declare const ErFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
976
|
+
|
|
977
|
+
declare const EsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
978
|
+
|
|
979
|
+
declare const EsCtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
980
|
+
|
|
981
|
+
declare const EsGaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
982
|
+
|
|
983
|
+
declare const EsPvFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
984
|
+
|
|
985
|
+
declare const EtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
986
|
+
|
|
987
|
+
declare const EuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
988
|
+
|
|
989
|
+
declare const FiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
990
|
+
|
|
991
|
+
declare const FjFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
992
|
+
|
|
993
|
+
declare const FkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
994
|
+
|
|
995
|
+
declare const FmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
996
|
+
|
|
997
|
+
declare const FoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
998
|
+
|
|
999
|
+
declare const FrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1000
|
+
|
|
1001
|
+
declare const GaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1002
|
+
|
|
1003
|
+
declare const GbFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1004
|
+
|
|
1005
|
+
declare const GbEngFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1006
|
+
|
|
1007
|
+
declare const GbNirFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1008
|
+
|
|
1009
|
+
declare const GbSctFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1010
|
+
|
|
1011
|
+
declare const GbWlsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1012
|
+
|
|
1013
|
+
declare const GdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1014
|
+
|
|
1015
|
+
declare const GeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1016
|
+
|
|
1017
|
+
declare const GfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1018
|
+
|
|
1019
|
+
declare const GgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1020
|
+
|
|
1021
|
+
declare const GhFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1022
|
+
|
|
1023
|
+
declare const GiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1024
|
+
|
|
1025
|
+
declare const GlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1026
|
+
|
|
1027
|
+
declare const GmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1028
|
+
|
|
1029
|
+
declare const GnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1030
|
+
|
|
1031
|
+
declare const GpFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1032
|
+
|
|
1033
|
+
declare const GqFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1034
|
+
|
|
1035
|
+
declare const GrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1036
|
+
|
|
1037
|
+
declare const GsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1038
|
+
|
|
1039
|
+
declare const GtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1040
|
+
|
|
1041
|
+
declare const GuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1042
|
+
|
|
1043
|
+
declare const GwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1044
|
+
|
|
1045
|
+
declare const GyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1046
|
+
|
|
1047
|
+
declare const HkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1048
|
+
|
|
1049
|
+
declare const HmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1050
|
+
|
|
1051
|
+
declare const HnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1052
|
+
|
|
1053
|
+
declare const HrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1054
|
+
|
|
1055
|
+
declare const HtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1056
|
+
|
|
1057
|
+
declare const HuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1058
|
+
|
|
1059
|
+
declare const IcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1060
|
+
|
|
1061
|
+
declare const IdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1062
|
+
|
|
1063
|
+
declare const IeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1064
|
+
|
|
1065
|
+
declare const IlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1066
|
+
|
|
1067
|
+
declare const ImFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1068
|
+
|
|
1069
|
+
declare const InFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1070
|
+
|
|
1071
|
+
declare const IoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1072
|
+
|
|
1073
|
+
declare const IqFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1074
|
+
|
|
1075
|
+
declare const IrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1076
|
+
|
|
1077
|
+
declare const IsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1078
|
+
|
|
1079
|
+
declare const ItFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1080
|
+
|
|
1081
|
+
declare const JeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1082
|
+
|
|
1083
|
+
declare const JmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1084
|
+
|
|
1085
|
+
declare const JoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1086
|
+
|
|
1087
|
+
declare const JpFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1088
|
+
|
|
1089
|
+
declare const KeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1090
|
+
|
|
1091
|
+
declare const KgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1092
|
+
|
|
1093
|
+
declare const KhFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1094
|
+
|
|
1095
|
+
declare const KiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1096
|
+
|
|
1097
|
+
declare const KmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1098
|
+
|
|
1099
|
+
declare const KnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1100
|
+
|
|
1101
|
+
declare const KpFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1102
|
+
|
|
1103
|
+
declare const KrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1104
|
+
|
|
1105
|
+
declare const KwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1106
|
+
|
|
1107
|
+
declare const KyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1108
|
+
|
|
1109
|
+
declare const KzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1110
|
+
|
|
1111
|
+
declare const LaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1112
|
+
|
|
1113
|
+
declare const LbFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1114
|
+
|
|
1115
|
+
declare const LcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1116
|
+
|
|
1117
|
+
declare const LiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1118
|
+
|
|
1119
|
+
declare const LkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1120
|
+
|
|
1121
|
+
declare const LrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1122
|
+
|
|
1123
|
+
declare const LsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1124
|
+
|
|
1125
|
+
declare const LtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1126
|
+
|
|
1127
|
+
declare const LuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1128
|
+
|
|
1129
|
+
declare const LvFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1130
|
+
|
|
1131
|
+
declare const LyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1132
|
+
|
|
1133
|
+
declare const MaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1134
|
+
|
|
1135
|
+
declare const McFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1136
|
+
|
|
1137
|
+
declare const MdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1138
|
+
|
|
1139
|
+
declare const MeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1140
|
+
|
|
1141
|
+
declare const MfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1142
|
+
|
|
1143
|
+
declare const MgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1144
|
+
|
|
1145
|
+
declare const MhFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1146
|
+
|
|
1147
|
+
declare const MkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1148
|
+
|
|
1149
|
+
declare const MlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1150
|
+
|
|
1151
|
+
declare const MmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1152
|
+
|
|
1153
|
+
declare const MnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1154
|
+
|
|
1155
|
+
declare const MoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1156
|
+
|
|
1157
|
+
declare const MpFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1158
|
+
|
|
1159
|
+
declare const MqFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1160
|
+
|
|
1161
|
+
declare const MrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1162
|
+
|
|
1163
|
+
declare const MsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1164
|
+
|
|
1165
|
+
declare const MtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1166
|
+
|
|
1167
|
+
declare const MuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1168
|
+
|
|
1169
|
+
declare const MvFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1170
|
+
|
|
1171
|
+
declare const MwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1172
|
+
|
|
1173
|
+
declare const MxFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1174
|
+
|
|
1175
|
+
declare const MyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1176
|
+
|
|
1177
|
+
declare const MzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1178
|
+
|
|
1179
|
+
declare const NaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1180
|
+
|
|
1181
|
+
declare const NcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1182
|
+
|
|
1183
|
+
declare const NeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1184
|
+
|
|
1185
|
+
declare const NfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1186
|
+
|
|
1187
|
+
declare const NgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1188
|
+
|
|
1189
|
+
declare const NiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1190
|
+
|
|
1191
|
+
declare const NlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1192
|
+
|
|
1193
|
+
declare const NoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1194
|
+
|
|
1195
|
+
declare const NpFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1196
|
+
|
|
1197
|
+
declare const NrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1198
|
+
|
|
1199
|
+
declare const NuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1200
|
+
|
|
1201
|
+
declare const NzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1202
|
+
|
|
1203
|
+
declare const OmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1204
|
+
|
|
1205
|
+
declare const PaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1206
|
+
|
|
1207
|
+
declare const PeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1208
|
+
|
|
1209
|
+
declare const PfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1210
|
+
|
|
1211
|
+
declare const PgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1212
|
+
|
|
1213
|
+
declare const PhFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1214
|
+
|
|
1215
|
+
declare const PkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1216
|
+
|
|
1217
|
+
declare const PlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1218
|
+
|
|
1219
|
+
declare const PmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1220
|
+
|
|
1221
|
+
declare const PnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1222
|
+
|
|
1223
|
+
declare const PrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1224
|
+
|
|
1225
|
+
declare const PsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1226
|
+
|
|
1227
|
+
declare const PtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1228
|
+
|
|
1229
|
+
declare const PwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1230
|
+
|
|
1231
|
+
declare const PyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1232
|
+
|
|
1233
|
+
declare const QaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1234
|
+
|
|
1235
|
+
declare const ReFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1236
|
+
|
|
1237
|
+
declare const RoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1238
|
+
|
|
1239
|
+
declare const RsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1240
|
+
|
|
1241
|
+
declare const RuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1242
|
+
|
|
1243
|
+
declare const RwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1244
|
+
|
|
1245
|
+
declare const SaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1246
|
+
|
|
1247
|
+
declare const SbFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1248
|
+
|
|
1249
|
+
declare const ScFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1250
|
+
|
|
1251
|
+
declare const SdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1252
|
+
|
|
1253
|
+
declare const SeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1254
|
+
|
|
1255
|
+
declare const SgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1256
|
+
|
|
1257
|
+
declare const ShFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1258
|
+
|
|
1259
|
+
declare const SiFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1260
|
+
|
|
1261
|
+
declare const SjFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1262
|
+
|
|
1263
|
+
declare const SkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1264
|
+
|
|
1265
|
+
declare const SlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1266
|
+
|
|
1267
|
+
declare const SmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1268
|
+
|
|
1269
|
+
declare const SnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1270
|
+
|
|
1271
|
+
declare const SoFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1272
|
+
|
|
1273
|
+
declare const SrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1274
|
+
|
|
1275
|
+
declare const SsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1276
|
+
|
|
1277
|
+
declare const StFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1278
|
+
|
|
1279
|
+
declare const SvFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1280
|
+
|
|
1281
|
+
declare const SxFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1282
|
+
|
|
1283
|
+
declare const SyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1284
|
+
|
|
1285
|
+
declare const SzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1286
|
+
|
|
1287
|
+
declare const TaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1288
|
+
|
|
1289
|
+
declare const TcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1290
|
+
|
|
1291
|
+
declare const TdFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1292
|
+
|
|
1293
|
+
declare const TfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1294
|
+
|
|
1295
|
+
declare const TgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1296
|
+
|
|
1297
|
+
declare const ThFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1298
|
+
|
|
1299
|
+
declare const TjFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1300
|
+
|
|
1301
|
+
declare const TkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1302
|
+
|
|
1303
|
+
declare const TlFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1304
|
+
|
|
1305
|
+
declare const TmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1306
|
+
|
|
1307
|
+
declare const TnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1308
|
+
|
|
1309
|
+
declare const ToFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1310
|
+
|
|
1311
|
+
declare const TrFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1312
|
+
|
|
1313
|
+
declare const TtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1314
|
+
|
|
1315
|
+
declare const TvFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1316
|
+
|
|
1317
|
+
declare const TwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1318
|
+
|
|
1319
|
+
declare const TzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1320
|
+
|
|
1321
|
+
declare const UaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1322
|
+
|
|
1323
|
+
declare const UgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1324
|
+
|
|
1325
|
+
declare const UmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1326
|
+
|
|
1327
|
+
declare const UnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1328
|
+
|
|
1329
|
+
declare const UsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1330
|
+
|
|
1331
|
+
declare const UyFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1332
|
+
|
|
1333
|
+
declare const UzFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1334
|
+
|
|
1335
|
+
declare const VaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1336
|
+
|
|
1337
|
+
declare const VcFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1338
|
+
|
|
1339
|
+
declare const VeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1340
|
+
|
|
1341
|
+
declare const VgFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1342
|
+
|
|
1343
|
+
declare const ViFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1344
|
+
|
|
1345
|
+
declare const VnFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1346
|
+
|
|
1347
|
+
declare const VuFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1348
|
+
|
|
1349
|
+
declare const WfFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1350
|
+
|
|
1351
|
+
declare const WsFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1352
|
+
|
|
1353
|
+
declare const XkFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1354
|
+
|
|
1355
|
+
declare const XxFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1356
|
+
|
|
1357
|
+
declare const YeFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1358
|
+
|
|
1359
|
+
declare const YtFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1360
|
+
|
|
1361
|
+
declare const ZaFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1362
|
+
|
|
1363
|
+
declare const ZmFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1364
|
+
|
|
1365
|
+
declare const ZwFlagIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
1366
|
+
|
|
1367
|
+
declare const CONFIG: {
|
|
1368
|
+
minFontSize: number;
|
|
1369
|
+
minLineHeight: number;
|
|
1370
|
+
minValue: number;
|
|
1371
|
+
excludeProps: string[];
|
|
1372
|
+
scaleVariable: string;
|
|
1373
|
+
vhVariable: string;
|
|
1374
|
+
};
|
|
1375
|
+
declare const adaptiveScalePlugin: Middleware;
|
|
1376
|
+
declare const createAdaptiveScalePlugin: (customConfig?: Partial<typeof CONFIG>) => Middleware;
|
|
1377
|
+
|
|
1378
|
+
declare const StyledProvider: ({ children }: {
|
|
1379
|
+
children: React.ReactNode;
|
|
1380
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1381
|
+
|
|
1382
|
+
declare const GlobalStyles: react.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
|
1383
|
+
|
|
1384
|
+
export { AaveIcon, AcFlagIcon, AdFlagIcon, AeFlagIcon, AfFlagIcon, AgFlagIcon, AiFlagIcon, AlFlagIcon, AlgorandIcon, AmFlagIcon, AoFlagIcon, ApplicationData, ApplicationInfo, ApplicationStatus, AqFlagIcon, ArFlagIcon, ArabFlagIcon, ArrowIcon, AsFlagIcon, AtFlagIcon, AttachIcon, AuFlagIcon, AvalancheIcon, Avatar, AwFlagIcon, AxFlagIcon, AzFlagIcon, BaFlagIcon, BalanceRow, BatIcon, BbFlagIcon, BdFlagIcon, BeFlagIcon, BfFlagIcon, BgFlagIcon, BhFlagIcon, BiFlagIcon, BitcoinIcon, BjFlagIcon, BlFlagIcon, BmFlagIcon, BnFlagIcon, BnbSmallIcon, BoFlagIcon, BqFlagIcon, BrFlagIcon, BsFlagIcon, BtFlagIcon, BtgIcon, BusdIcon, Button, ButtonSwitcher, BvFlagIcon, BwFlagIcon, ByFlagIcon, BzFlagIcon, CaFlagIcon, CakeIcon, CardanoIcon, CcFlagIcon, CdFlagIcon, CeftaFlagIcon, CfFlagIcon, CgFlagIcon, ChFlagIcon, ChainlinkIcon, Chat, ChatMessage, CheckIcon, Checkbox, CiFlagIcon, CircleSendCryptoIcon, CkFlagIcon, ClFlagIcon, ClockIcon, Close2Icon, CloseIcon, CmFlagIcon, CnFlagIcon, CoFlagIcon, Container, CopyIcon, CopyTooltip, CosmosIcon, Counter, CountryBrIcon, CountryCzechIcon, CountryKzIcon, CountryRusIcon, CpFlagIcon, CrFlagIcon, CuFlagIcon, CurrencyName, CurrencyRate, CvFlagIcon, CwFlagIcon, CxFlagIcon, CyFlagIcon, CzFlagIcon, DashSmallIcon, DashboardIcon, DeFlagIcon, DecentralandIcon, DepositIcon, DepositSimpleIcon, DgFlagIcon, DigibyteIcon, DjFlagIcon, DkFlagIcon, DmFlagIcon, DoFlagIcon, DogeSmallIcon, DropdownIcon, DropdownSmallIcon, DropdownUpIcon, DzFlagIcon, EacFlagIcon, EcFlagIcon, EditIcon, EeFlagIcon, EgFlagIcon, EhFlagIcon, ElrondIcon, EmojiIcon, EnjinIcon, EosIcon, ErFlagIcon, ErrorBigIcon, EsCtFlagIcon, EsFlagIcon, EsGaFlagIcon, EsPvFlagIcon, EtFlagIcon, EtcIcon, EthIcon, EuFlagIcon, EurIcon, ExchangeArrowsIcon, ExchangeIcon, ExchangeSimpleIcon, FantomIcon, FiFlagIcon, FilecoinIcon, FjFlagIcon, FkFlagIcon, FmFlagIcon, FoFlagIcon, FrFlagIcon, FtxIcon, GaFlagIcon, GbEngFlagIcon, GbFlagIcon, GbNirFlagIcon, GbSctFlagIcon, GbWlsFlagIcon, GdFlagIcon, GeFlagIcon, GfFlagIcon, GgFlagIcon, GhFlagIcon, GiFlagIcon, GlFlagIcon, GlobalStyles, GmFlagIcon, GnFlagIcon, GpFlagIcon, GqFlagIcon, GrFlagIcon, GsFlagIcon, GtFlagIcon, GuFlagIcon, GwFlagIcon, GyFlagIcon, HamburgerButton, HamburgerIcon, HeadphonesIcon, HederaIcon, HideUiIcon, HistoryIcon, HkFlagIcon, HmFlagIcon, HnFlagIcon, HrFlagIcon, HtFlagIcon, HuFlagIcon, IcFlagIcon, IcomputerIcon, IcxIcon, IdFlagIcon, IeFlagIcon, IlFlagIcon, IlsIcon, ImFlagIcon, InFlagIcon, InfoIcon, Informer, InputMessage, IoFlagIcon, IotaIcon, IqFlagIcon, IrFlagIcon, IsFlagIcon, ItFlagIcon, JeFlagIcon, JmFlagIcon, JoFlagIcon, JpFlagIcon, KeFlagIcon, KgFlagIcon, KhFlagIcon, KiFlagIcon, KlaytnIcon, KmFlagIcon, KnFlagIcon, KpFlagIcon, KrFlagIcon, KwFlagIcon, KyFlagIcon, KzFlagIcon, LaFlagIcon, Label, LangCountrySelect, LariIcon, LbFlagIcon, LcFlagIcon, LiFlagIcon, LinkIcon, LiskIcon, LitecoinIcon, LkFlagIcon, Loader, Logo, LogoAbankIcon, LogoAbsolutIcon, LogoAcbaCreditIcon, LogoAlphabankIcon, LogoArmEconomBankIcon, LogoArshidBankIcon, LogoBankcentercreditIcon, LogoBankofGeorgiaIcon, LogoEurobankIcon, LogoForteBankIcon, LogoHalykBankIcon, LogoHomecreditIcon, LogoHumoCardIcon, LogoJysanBankIcon, LogoKaspiBankIcon, LogoMonobankIcon, LogoMtsbankIcon, LogoNetellerIcon, LogoOshadbankIcon, LogoOtkrutieIcon, LogoPochtabankIcon, LogoPrivatebankIcon, LogoPumbIcon, LogoQiwiIcon, LogoRayfuzenbankIcon, LogoRevolutIcon, LogoRnkbIcon, LogoRosbankIcon, LogoRosselhozbankIcon, LogoRusstandartIcon, LogoSberIcon, LogoSbpIcon, LogoSotovuyIcon, LogoTbcBankIcon, LogoTinkoffIcon, LogoUkrsibbankIcon, LogoUzCardIcon, LogoVtbIcon, LogoWiseIcon, LogoYoumoneyIcon, LogoutIcon, LrFlagIcon, LsFlagIcon, LtFlagIcon, LuFlagIcon, LunaIcon, LvFlagIcon, LyFlagIcon, MaFlagIcon, MakerIcon, MaticIcon, McFlagIcon, MdFlagIcon, MeFlagIcon, MessageSendIcon, MfFlagIcon, MgFlagIcon, MhFlagIcon, MkFlagIcon, MlFlagIcon, MmFlagIcon, MnFlagIcon, MoFlagIcon, Modal, MpFlagIcon, MqFlagIcon, MrFlagIcon, MsFlagIcon, MtFlagIcon, MuFlagIcon, MvFlagIcon, MwFlagIcon, MxFlagIcon, MyFlagIcon, MzFlagIcon, NaFlagIcon, NcFlagIcon, NeFlagIcon, NearIcon, NemIcon, NeoIcon, NfFlagIcon, NgFlagIcon, NiFlagIcon, NlFlagIcon, NoFlagIcon, NpFlagIcon, NrFlagIcon, NuFlagIcon, NzFlagIcon, OmFlagIcon, OmgnetworkIcon, OmiseIcon, OntologyIcon, P2PIcon, PaFlagIcon, PaxgIcon, PeFlagIcon, PfFlagIcon, PgFlagIcon, PhFlagIcon, PhoneInput, PkFlagIcon, PlFlagIcon, PlusIcon, PmFlagIcon, PnFlagIcon, PolkaIcon, PrFlagIcon, PsFlagIcon, PtFlagIcon, PwFlagIcon, PyFlagIcon, QaFlagIcon, QnekworkIcon, QutumIcon, RadioButton, ReFlagIcon, ReciveCryptoIcon, Requisites, RippleIcon, RoFlagIcon, RsFlagIcon, RuFlagIcon, RubIcon, RwFlagIcon, SaFlagIcon, SandboxIcon, SbFlagIcon, ScFlagIcon, ScanQrIcon, SdFlagIcon, SeFlagIcon, SearchIcon, SelectField, SendCryptoIcon, SettingsIcon, SgFlagIcon, ShFlagIcon, ShowUiIcon, SiFlagIcon, SjFlagIcon, SkFlagIcon, Skeleton, SlFlagIcon, SmFlagIcon, SnFlagIcon, SoFlagIcon, SolanaIcon, SrFlagIcon, SsFlagIcon, StFlagIcon, StellarIcon, StepnIcon, StyledProvider, SuccessfullBigIcon, SuccessfullSmallIcon, SushiIcon, SvFlagIcon, Switcher, SxFlagIcon, SyFlagIcon, SynthetixIcon, SzFlagIcon, TaFlagIcon, TabList, Table, TcFlagIcon, TdFlagIcon, TetherIcon, TextField, TezosIcon, TfFlagIcon, TgFlagIcon, ThFlagIcon, ThegraphIcon, ThetaIcon, TjFlagIcon, TkFlagIcon, TlFlagIcon, TmFlagIcon, TnFlagIcon, ToFlagIcon, Tooltip, TopUpIcon, TrFlagIcon, TransactionStatus, TrxSmallIcon, TtFlagIcon, TvFlagIcon, TwFlagIcon, Typography, TzFlagIcon, UaFlagIcon, UgFlagIcon, UmFlagIcon, UnFlagIcon, UniswapIcon, UpSmallIcon, UsFlagIcon, UsdIcon, UsdcIcon, UserAccount, UserIcon, UsersIcon, UyFlagIcon, UzFlagIcon, VaFlagIcon, VcFlagIcon, VeFlagIcon, VechainIcon, VgFlagIcon, ViFlagIcon, VnFlagIcon, VuFlagIcon, WalletFillIcon, WalletIcon, WarningIcon, WavesIcon, WfFlagIcon, WithdrawIcon, WithdrawSimpleIcon, WsFlagIcon, XkFlagIcon, XmrSmallIcon, XxFlagIcon, YeFlagIcon, YtFlagIcon, ZaFlagIcon, ZcashSmallIcon, ZilliqaIcon, ZmFlagIcon, ZrxIcon, ZwFlagIcon, adaptiveScalePlugin, copyToClipboard, countries, createAdaptiveScalePlugin, formatCardNumber, getFlagIconComponent, maskEmail, theme };
|
|
1385
|
+
export type { AppTheme, ApplicationDataProps, ApplicationInfoProps, ApplicationStatusProps, ChatProps, CurrencyNameProps, InformerProps, InformerType, LangCountrySelectProps, RadioButtonProps, RequisitesProps, SelectFieldProps, SelectOption, SkeletonProps, TextFieldProps, TransactionStatusProps, TypographyVariant };
|