@make-software/csprclick-ui 1.3.0 → 1.4.3
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/cjs/lib/assets/animations/dotsDark.gif +0 -0
- package/dist/cjs/lib/assets/animations/dotsLight.gif +0 -0
- package/dist/cjs/lib/assets/animations/spinnerDark.gif +0 -0
- package/dist/cjs/lib/assets/animations/spinnerLight.gif +0 -0
- package/dist/cjs/lib/assets/generic-wallet-logo-dark.svg +4 -0
- package/dist/cjs/lib/assets/generic-wallet-logo.svg +4 -0
- package/dist/cjs/lib/assets/icons/ic-error.svg +10 -0
- package/dist/cjs/lib/assets/icons/ic-no-provider.png +0 -0
- package/dist/cjs/lib/assets/logos/casper-signer-sign.png +0 -0
- package/dist/cjs/lib/assets/logos/casper-wallet-sign.png +0 -0
- package/dist/cjs/lib/assets/logos/cspr-click-mono-black.png +0 -0
- package/dist/cjs/lib/assets/logos/walletconnect-logo.svg +16 -0
- package/dist/cjs/lib/assets/logos/walletconnect-white-bg.svg +3 -0
- package/dist/cjs/lib/index.js +11 -6
- package/dist/cjs/lib/lib/Click.d.ts +1 -1
- package/dist/cjs/lib/lib/ProviderConnection/ProviderConnection.d.ts +1 -1
- package/dist/cjs/lib/lib/{ProviderConnection/components → TransactionReview}/DeploySignatureInstructions.d.ts +3 -1
- package/dist/cjs/lib/lib/{ProviderConnection/components → TransactionReview}/MessageSignatureInstructions.d.ts +2 -1
- package/dist/cjs/lib/lib/TransactionReview/TransactionReviewHandler.d.ts +2 -0
- package/dist/cjs/lib/lib/WalletConnect/WalletConnectConnection.d.ts +22 -0
- package/dist/cjs/lib/lib/WalletConnect/components/ListAccounts.d.ts +13 -0
- package/dist/cjs/lib/lib/WalletConnect/components/NewPairing.d.ts +10 -0
- package/dist/cjs/lib/lib/WalletConnect/components/PairedWalletListItem.d.ts +13 -0
- package/dist/cjs/lib/lib/WalletConnect/components/PairedWallets.d.ts +13 -0
- package/dist/cjs/lib/lib/components/AccountIdenticon.d.ts +9 -0
- package/dist/cjs/lib/lib/components/AccountListItemMenu.d.ts +2 -1
- package/dist/cjs/lib/lib/components/WalletLogo.d.ts +3 -2
- package/dist/cjs/lib/lib/constants/index.d.ts +1 -0
- package/dist/cjs/lib/lib/index.d.ts +1 -0
- package/dist/cjs/lib/lib/types/wallet.d.ts +2 -11
- package/dist/index.d.ts +14 -13
- package/dist/lib/assets/animations/dotsDark.gif +0 -0
- package/dist/lib/assets/animations/dotsLight.gif +0 -0
- package/dist/lib/assets/animations/spinnerDark.gif +0 -0
- package/dist/lib/assets/animations/spinnerLight.gif +0 -0
- package/dist/lib/assets/generic-wallet-logo-dark.svg +4 -0
- package/dist/lib/assets/generic-wallet-logo.svg +4 -0
- package/dist/lib/assets/icons/ic-error.svg +10 -0
- package/dist/lib/assets/icons/ic-no-provider.png +0 -0
- package/dist/lib/assets/logos/casper-signer-sign.png +0 -0
- package/dist/lib/assets/logos/casper-wallet-sign.png +0 -0
- package/dist/lib/assets/logos/cspr-click-mono-black.png +0 -0
- package/dist/lib/assets/logos/walletconnect-logo.svg +16 -0
- package/dist/lib/assets/logos/walletconnect-white-bg.svg +3 -0
- package/dist/lib/index.js +11 -6
- package/package.json +10 -9
- package/package.json.local +9 -5
- package/dist/cjs/lib/lib/CustomerActionWindow/CustomerActionWindow.d.ts +0 -9
- package/dist/cjs/lib/lib/components/ModalHeader.d.ts +0 -7
|
@@ -12,5 +12,5 @@ interface ClickProviderProps {
|
|
|
12
12
|
children: any;
|
|
13
13
|
}
|
|
14
14
|
export declare function ClickProvider(props: ClickProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
export declare function useClickRef(): CSPRClickSDK
|
|
15
|
+
export declare function useClickRef(): CSPRClickSDK;
|
|
16
16
|
export default ClickProvider;
|
|
@@ -20,5 +20,5 @@ interface ProviderConnectionProps {
|
|
|
20
20
|
themeMode?: ThemeModeType;
|
|
21
21
|
onModalClose?: () => void;
|
|
22
22
|
}
|
|
23
|
-
export declare const ProviderConnection: ({ clickRef, event, themeMode, onModalClose }: ProviderConnectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare const ProviderConnection: ({ clickRef, event, themeMode, onModalClose, }: ProviderConnectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
24
|
export default ProviderConnection;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import { ThemeModeType } from
|
|
1
|
+
import { ThemeModeType } from '../types';
|
|
2
2
|
interface DeploySignatureInstructionsProps {
|
|
3
3
|
deployHash: string;
|
|
4
|
+
deviceTitle: string;
|
|
5
|
+
warningInfo?: any;
|
|
4
6
|
themeMode?: ThemeModeType;
|
|
5
7
|
}
|
|
6
8
|
export declare const DeploySignatureInstructions: (props: DeploySignatureInstructionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { ThemeModeType } from "
|
|
1
|
+
import { ThemeModeType } from "../types";
|
|
2
2
|
interface MessageSignatureInstructionsProps {
|
|
3
3
|
message: string;
|
|
4
4
|
messageHash: string;
|
|
5
|
+
deviceTitle: string;
|
|
5
6
|
themeMode?: ThemeModeType;
|
|
6
7
|
}
|
|
7
8
|
export declare const MessageSignatureInstructions: (props: MessageSignatureInstructionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AccountType, WCConnectionStatusEvent, WCPairing } from '@make-software/csprclick-core-types';
|
|
2
|
+
import { CSPRClickSDK } from '@make-software/csprclick-core-client';
|
|
3
|
+
import { ThemeModeType } from '../types';
|
|
4
|
+
export type WalletConnectStatus = {
|
|
5
|
+
status: WCConnectionStatusEvent;
|
|
6
|
+
pairings?: WCPairing[];
|
|
7
|
+
pairingUri?: string;
|
|
8
|
+
accounts?: AccountType[];
|
|
9
|
+
deployHash?: string;
|
|
10
|
+
signatureHex?: string;
|
|
11
|
+
message?: string;
|
|
12
|
+
msgHash?: string;
|
|
13
|
+
error?: any;
|
|
14
|
+
};
|
|
15
|
+
interface WalletConnectConnectionProps {
|
|
16
|
+
clickRef: CSPRClickSDK;
|
|
17
|
+
event: WalletConnectStatus;
|
|
18
|
+
themeMode?: ThemeModeType;
|
|
19
|
+
onModalClose?: () => void;
|
|
20
|
+
}
|
|
21
|
+
export declare const WalletConnectConnection: ({ clickRef, event, themeMode, onModalClose, }: WalletConnectConnectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export default WalletConnectConnection;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AccountType } from '@make-software/csprclick-core-types';
|
|
2
|
+
import { CSPRClickSDK } from '@make-software/csprclick-core-client';
|
|
3
|
+
import { ThemeModeType } from '../../types';
|
|
4
|
+
interface ListAccountsProps {
|
|
5
|
+
appName: string;
|
|
6
|
+
clickRef: CSPRClickSDK;
|
|
7
|
+
accounts: Array<AccountType>;
|
|
8
|
+
onAccountClick: (acc: AccountType) => Promise<void>;
|
|
9
|
+
onUseAnotherAccountClick: () => Promise<void>;
|
|
10
|
+
themeMode?: ThemeModeType;
|
|
11
|
+
}
|
|
12
|
+
export declare const ListAccounts: (props: ListAccountsProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ThemeModeType } from '../../types';
|
|
2
|
+
import { CSPRClickSDK } from "@make-software/csprclick-core-client";
|
|
3
|
+
interface NewPairingProps {
|
|
4
|
+
pairingUri: string;
|
|
5
|
+
appName: string;
|
|
6
|
+
themeMode?: ThemeModeType;
|
|
7
|
+
clickRef: CSPRClickSDK;
|
|
8
|
+
}
|
|
9
|
+
export declare const NewPairing: ({ pairingUri, appName, clickRef }: NewPairingProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { WCPairing } from '@make-software/csprclick-core-types';
|
|
2
|
+
import { ThemeModeType } from '../../types';
|
|
3
|
+
interface PairedWalletListItemProps {
|
|
4
|
+
wallet?: WCPairing;
|
|
5
|
+
isNarrowItem?: boolean;
|
|
6
|
+
onClick: (wallet: WCPairing | null) => void;
|
|
7
|
+
onUnpair?: (e: any, wallet: WCPairing) => void;
|
|
8
|
+
themeMode?: ThemeModeType;
|
|
9
|
+
withBalance?: boolean;
|
|
10
|
+
isItemActive?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare const PairedWalletListItem: ({ wallet, onClick, onUnpair, isNarrowItem, isItemActive, themeMode }: PairedWalletListItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default PairedWalletListItem;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { WCPairing } from '@make-software/csprclick-core-types';
|
|
2
|
+
import { CSPRClickSDK } from '@make-software/csprclick-core-client';
|
|
3
|
+
import { ThemeModeType } from '../../types';
|
|
4
|
+
interface PairedWalletsProps {
|
|
5
|
+
appName: string;
|
|
6
|
+
clickRef: CSPRClickSDK;
|
|
7
|
+
pairings: Array<WCPairing>;
|
|
8
|
+
onWalletClick: (wallet: WCPairing) => Promise<void>;
|
|
9
|
+
onNewPairing: () => Promise<void>;
|
|
10
|
+
themeMode?: ThemeModeType;
|
|
11
|
+
}
|
|
12
|
+
export declare const PairedWallets: ({ pairings, onWalletClick, themeMode, onNewPairing, appName, clickRef }: PairedWalletsProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const CanvasContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
2
|
+
size: number;
|
|
3
|
+
}, never>;
|
|
4
|
+
interface AccountIdenticonProps {
|
|
5
|
+
hex: string;
|
|
6
|
+
size: 'xs' | 'sm' | 'm' | 'l' | number;
|
|
7
|
+
}
|
|
8
|
+
export declare const AccountIdenticon: ({ hex, size }: AccountIdenticonProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -2,6 +2,7 @@ interface AccountListItemMenuProps {
|
|
|
2
2
|
onMenuOpen: () => void;
|
|
3
3
|
onCloseSession: (e: any) => void;
|
|
4
4
|
isItemActive?: boolean;
|
|
5
|
+
title?: string;
|
|
5
6
|
}
|
|
6
|
-
declare const AccountListItemMenu: ({ onMenuOpen, onCloseSession, isItemActive }: AccountListItemMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare const AccountListItemMenu: ({ onMenuOpen, onCloseSession, isItemActive, title }: AccountListItemMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default AccountListItemMenu;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ThemeModeType } from '
|
|
1
|
+
import { ThemeModeType } from '@make-software/cspr-ui';
|
|
2
2
|
export declare enum Size {
|
|
3
3
|
small = "small",
|
|
4
4
|
default = "default"
|
|
@@ -7,6 +7,7 @@ interface WalletLogoProps {
|
|
|
7
7
|
providerKey: string;
|
|
8
8
|
size?: Size.small | Size.default;
|
|
9
9
|
themeMode?: ThemeModeType;
|
|
10
|
+
logoPath?: string;
|
|
10
11
|
}
|
|
11
|
-
declare const WalletLogo: ({ providerKey, size, themeMode }: WalletLogoProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare const WalletLogo: ({ providerKey, size, themeMode, logoPath }: WalletLogoProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export default WalletLogo;
|
|
@@ -10,4 +10,5 @@ export * from './TopBar/components/AccountMenuItem';
|
|
|
10
10
|
export * from './TopBar/components/BuyCSPRMenuItem';
|
|
11
11
|
export * from './TopBar/components/CopyHashMenuItem';
|
|
12
12
|
export * from './TopBar/components/ViewAccountOnExplorerMenuItem';
|
|
13
|
+
export * from './components/AccountIdenticon';
|
|
13
14
|
export * from './types';
|
|
@@ -1,17 +1,8 @@
|
|
|
1
|
-
import { AccountType } from '@make-software/csprclick-core-types';
|
|
2
|
-
export declare enum WalletKeys {
|
|
3
|
-
CasperWallet = "casper-wallet",
|
|
4
|
-
CasperSigner = "casper-signer",
|
|
5
|
-
Ledger = "ledger",
|
|
6
|
-
Torus = "torus-wallet",
|
|
7
|
-
CasperDash = "casperdash",
|
|
8
|
-
MetamaskSnap = "metamask-snap"
|
|
9
|
-
}
|
|
10
|
-
export type ProviderKeys = WalletKeys.CasperWallet | WalletKeys.CasperSigner;
|
|
1
|
+
import { AccountType, WALLET_KEYS } from '@make-software/csprclick-core-types';
|
|
11
2
|
export type Provider = {
|
|
12
3
|
connected: boolean;
|
|
13
4
|
icon: string;
|
|
14
|
-
key:
|
|
5
|
+
key: WALLET_KEYS;
|
|
15
6
|
text: string;
|
|
16
7
|
};
|
|
17
8
|
export type Options = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { AccountType, BadgeSettings } from '@make-software/csprclick-core-types';
|
|
2
|
+
import { WALLET_KEYS, AccountType, BadgeSettings } from '@make-software/csprclick-core-types';
|
|
3
3
|
import CSPRClickSDK from '@make-software/csprclick-core-client/sdk';
|
|
4
4
|
import { CsprClickInitOptions } from '@make-software/csprclick-core-client';
|
|
5
5
|
import React from 'react';
|
|
@@ -89,19 +89,10 @@ declare const getThemesByColor: (theme: getThemesByColorProps) => {
|
|
|
89
89
|
light: any;
|
|
90
90
|
};
|
|
91
91
|
|
|
92
|
-
declare enum WalletKeys {
|
|
93
|
-
CasperWallet = "casper-wallet",
|
|
94
|
-
CasperSigner = "casper-signer",
|
|
95
|
-
Ledger = "ledger",
|
|
96
|
-
Torus = "torus-wallet",
|
|
97
|
-
CasperDash = "casperdash",
|
|
98
|
-
MetamaskSnap = "metamask-snap"
|
|
99
|
-
}
|
|
100
|
-
type ProviderKeys = WalletKeys.CasperWallet | WalletKeys.CasperSigner;
|
|
101
92
|
type Provider = {
|
|
102
93
|
connected: boolean;
|
|
103
94
|
icon: string;
|
|
104
|
-
key:
|
|
95
|
+
key: WALLET_KEYS;
|
|
105
96
|
text: string;
|
|
106
97
|
};
|
|
107
98
|
type Options = {
|
|
@@ -130,7 +121,7 @@ interface ClickProviderProps {
|
|
|
130
121
|
children: any;
|
|
131
122
|
}
|
|
132
123
|
declare function ClickProvider(props: ClickProviderProps): react_jsx_runtime.JSX.Element;
|
|
133
|
-
declare function useClickRef(): CSPRClickSDK
|
|
124
|
+
declare function useClickRef(): CSPRClickSDK;
|
|
134
125
|
|
|
135
126
|
interface ClickModalProps {
|
|
136
127
|
modalAction: string;
|
|
@@ -168,6 +159,7 @@ declare const MODAL_ACTIONS: {
|
|
|
168
159
|
CHOSE_ACCOUNT: string;
|
|
169
160
|
LEDGER_PROVIDER_UI: string;
|
|
170
161
|
METAMASK_PROVIDER_UI: string;
|
|
162
|
+
WALLETCONNECT_PROVIDER_UI: string;
|
|
171
163
|
BUY_CSPR: string;
|
|
172
164
|
};
|
|
173
165
|
type MODAL_ACTIONS = string;
|
|
@@ -227,4 +219,13 @@ declare const CopyHashMenuItem: (props: any) => react_jsx_runtime.JSX.Element;
|
|
|
227
219
|
|
|
228
220
|
declare const ViewAccountOnExplorerMenuItem: (props: any) => react_jsx_runtime.JSX.Element;
|
|
229
221
|
|
|
230
|
-
|
|
222
|
+
declare const CanvasContainer: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
|
223
|
+
size: number;
|
|
224
|
+
}, never>;
|
|
225
|
+
interface AccountIdenticonProps {
|
|
226
|
+
hex: string;
|
|
227
|
+
size: 'xs' | 'sm' | 'm' | 'l' | number;
|
|
228
|
+
}
|
|
229
|
+
declare const AccountIdenticon: ({ hex, size }: AccountIdenticonProps) => react_jsx_runtime.JSX.Element;
|
|
230
|
+
|
|
231
|
+
export { AccountIdenticon, AccountMenuItem, type AccountMenuItemProps, type BadgeBackgroundColor, type BadgeProps, BannerLink, BuyCSPRMenuItem, CURRENCY, CUSTOM, CanvasContainer, ClickModal, ClickProvider, ClickUI, CopyHashMenuItem, CsprClickThemes, type Currency, type CurrencySettings, CurrencyType, type CustomTopBarMenuItem, type CustomTopBarMenuSettings, LANGUAGE, Lang, type LanguageSettings, MODAL_ACTIONS, NETWORK, type Network, type NetworkSettings, OneClickSignInInner, type Options, type Provider, SignIn, type SignInSceneProps, ThemeModeType, TopBar, type TopBarSettings, ViewAccountOnExplorerMenuItem, getThemesByColor, type getThemesByColorProps, mappedColors, useClickBadge, useClickRef };
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="41" height="40" viewBox="0 0 41 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" width="40" height="40" rx="6" fill="#1B254A"/>
|
|
3
|
+
<path d="M28.9 14.4002H12.9C12.6878 14.4002 12.4843 14.3159 12.3343 14.1659C12.1843 14.0159 12.1 13.8124 12.1 13.6002C12.1 13.388 12.1843 13.1845 12.3343 13.0345C12.4843 12.8845 12.6878 12.8002 12.9 12.8002H26.5C26.7122 12.8002 26.9157 12.7159 27.0657 12.5659C27.2157 12.4159 27.3 12.2124 27.3 12.0002C27.3 11.788 27.2157 11.5845 27.0657 11.4345C26.9157 11.2845 26.7122 11.2002 26.5 11.2002H12.9C12.2635 11.2002 11.653 11.4531 11.2029 11.9031C10.7529 12.3532 10.5 12.9637 10.5 13.6002V26.4002C10.5 27.0367 10.7529 27.6472 11.2029 28.0973C11.653 28.5473 12.2635 28.8002 12.9 28.8002H28.9C29.3243 28.8002 29.7313 28.6316 30.0314 28.3316C30.3314 28.0315 30.5 27.6245 30.5 27.2002V16.0002C30.5 15.5758 30.3314 15.1689 30.0314 14.8688C29.7313 14.5688 29.3243 14.4002 28.9 14.4002ZM25.3 22.4002C25.0627 22.4002 24.8307 22.3298 24.6333 22.198C24.436 22.0661 24.2822 21.8787 24.1913 21.6594C24.1005 21.4401 24.0768 21.1989 24.1231 20.9661C24.1694 20.7333 24.2836 20.5195 24.4515 20.3517C24.6193 20.1838 24.8331 20.0696 25.0659 20.0233C25.2987 19.977 25.5399 20.0007 25.7592 20.0915C25.9785 20.1824 26.1659 20.3362 26.2978 20.5335C26.4296 20.7309 26.5 20.9629 26.5 21.2002C26.5 21.5185 26.3736 21.8237 26.1485 22.0487C25.9235 22.2738 25.6183 22.4002 25.3 22.4002Z" fill="#8D92A6"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="41" height="40" viewBox="0 0 41 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" width="40" height="40" rx="6" fill="#F5F5F7"/>
|
|
3
|
+
<path d="M28.9 14.4002H12.9C12.6878 14.4002 12.4843 14.3159 12.3343 14.1659C12.1843 14.0159 12.1 13.8124 12.1 13.6002C12.1 13.388 12.1843 13.1845 12.3343 13.0345C12.4843 12.8845 12.6878 12.8002 12.9 12.8002H26.5C26.7122 12.8002 26.9157 12.7159 27.0657 12.5659C27.2157 12.4159 27.3 12.2124 27.3 12.0002C27.3 11.788 27.2157 11.5845 27.0657 11.4345C26.9157 11.2845 26.7122 11.2002 26.5 11.2002H12.9C12.2635 11.2002 11.653 11.4531 11.2029 11.9031C10.7529 12.3532 10.5 12.9637 10.5 13.6002V26.4002C10.5 27.0367 10.7529 27.6472 11.2029 28.0973C11.653 28.5473 12.2635 28.8002 12.9 28.8002H28.9C29.3243 28.8002 29.7313 28.6316 30.0314 28.3316C30.3314 28.0315 30.5 27.6245 30.5 27.2002V16.0002C30.5 15.5758 30.3314 15.1689 30.0314 14.8688C29.7313 14.5688 29.3243 14.4002 28.9 14.4002ZM25.3 22.4002C25.0627 22.4002 24.8307 22.3298 24.6333 22.198C24.436 22.0661 24.2822 21.8787 24.1913 21.6594C24.1005 21.4401 24.0768 21.1989 24.1231 20.9661C24.1694 20.7333 24.2836 20.5195 24.4515 20.3517C24.6193 20.1838 24.8331 20.0696 25.0659 20.0233C25.2987 19.977 25.5399 20.0007 25.7592 20.0915C25.9785 20.1824 26.1659 20.3362 26.2978 20.5335C26.4296 20.7309 26.5 20.9629 26.5 21.2002C26.5 21.5185 26.3736 21.8237 26.1485 22.0487C25.9235 22.2738 25.6183 22.4002 25.3 22.4002Z" fill="#D2D3D9"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1414_5763)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9995 1.89429L16.0942 10.6036C16.6244 11.4999 16.6358 12.6109 16.1242 13.5179C15.6119 14.4259 14.6545 14.9898 13.6002 15L3.39104 15C2.34761 14.9915 1.38833 14.4259 0.876015 13.517C0.364123 12.6089 0.376079 11.4955 0.904559 10.6069L6.00114 1.89433C6.51898 1.00292 7.47263 0.45485 8.50371 0.456057C9.53469 0.457264 10.488 1.00761 10.9995 1.89429ZM9.23038 4.8186H7.77539V9.90941H9.23038L9.23038 4.8186ZM9.22819 11.3637C9.22819 11.7654 8.90248 12.091 8.50069 12.091C8.0989 12.091 7.77319 11.7654 7.77319 11.3637C7.77319 10.9621 8.0989 10.6365 8.50069 10.6365C8.90248 10.6365 9.22819 10.9621 9.22819 11.3637Z" fill="#E6332A"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_1414_5763">
|
|
7
|
+
<rect width="16" height="16" fill="white" transform="translate(0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1262_134949)">
|
|
3
|
+
<mask id="mask0_1262_134949" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
|
|
4
|
+
<path d="M0 0H40V40H0V0Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_1262_134949)">
|
|
7
|
+
<path d="M20 39.9501C31.0181 39.9501 39.9501 31.0181 39.9501 20C39.9501 8.98197 31.0181 0.0500488 20 0.0500488C8.98197 0.0500488 0.0500488 8.98197 0.0500488 20C0.0500488 31.0181 8.98197 39.9501 20 39.9501Z" fill="#3396FF" stroke="#66B1FF" stroke-width="0.09"/>
|
|
8
|
+
<path d="M12.252 14.8965C16.5311 10.7236 23.4691 10.7236 27.7482 14.8965L28.2632 15.3987C28.4772 15.6073 28.4772 15.9456 28.2632 16.1542L26.5015 17.8722C26.3945 17.9765 26.2211 17.9765 26.1141 17.8722L25.4054 17.1811C22.4201 14.27 17.5801 14.27 14.5948 17.1811L13.8358 17.9212C13.7288 18.0255 13.5554 18.0255 13.4484 17.9212L11.6867 16.2032C11.4727 15.9946 11.4727 15.6563 11.6867 15.4477L12.252 14.8965ZM31.3917 18.4494L32.9596 19.9784C33.1736 20.187 33.1736 20.5253 32.9596 20.7339L25.8896 27.6283C25.6757 27.837 25.3288 27.837 25.1148 27.6283L20.097 22.7352C20.0435 22.683 19.9568 22.683 19.9033 22.7352L14.8855 27.6283C14.6716 27.837 14.3247 27.837 14.1107 27.6283L7.0406 20.7338C6.82664 20.5252 6.82664 20.1869 7.0406 19.9783L8.60855 18.4493C8.82251 18.2407 9.1694 18.2407 9.38336 18.4493L14.4012 23.3425C14.4547 23.3947 14.5414 23.3947 14.5949 23.3425L19.6126 18.4493C19.8265 18.2406 20.1734 18.2406 20.3874 18.4493L25.4053 23.3425C25.4588 23.3947 25.5455 23.3947 25.599 23.3425L30.6169 18.4494C30.8308 18.2407 31.1777 18.2407 31.3917 18.4494Z" fill="white"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_1262_134949">
|
|
13
|
+
<rect width="40" height="40" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="61" height="60" viewBox="0 0 61 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.2156 22.1913C24.9997 15.543 35.9988 15.543 42.7829 22.1913L43.5993 22.9914C43.9385 23.3239 43.9385 23.8628 43.5993 24.1953L40.8064 26.9323C40.6367 27.0986 40.3618 27.0986 40.1921 26.9323L39.0686 25.8313C34.3358 21.1932 26.6626 21.1932 21.9298 25.8313L20.7266 27.0104C20.557 27.1766 20.2821 27.1766 20.1124 27.0104L17.3195 24.2733C16.9802 23.9409 16.9802 23.402 17.3195 23.0695L18.2156 22.1913ZM48.559 27.852L51.0449 30.2879C51.384 30.6204 51.384 31.1593 51.0449 31.4918L39.8364 42.4762C39.4972 42.8086 38.9472 42.8086 38.608 42.4762L30.6528 34.6803C30.568 34.5971 30.4305 34.5971 30.3457 34.6803L22.3908 42.4762C22.0516 42.8086 21.5016 42.8086 21.1624 42.4762L9.95362 31.4917C9.61442 31.1592 9.61442 30.6203 9.95362 30.2878L12.4394 27.8518C12.7786 27.5194 13.3286 27.5194 13.6678 27.8518L21.623 35.6478C21.7078 35.731 21.8452 35.731 21.9301 35.6478L29.8849 27.8518C30.2241 27.5194 30.7741 27.5194 31.1133 27.8518L39.0685 35.6478C39.1533 35.731 39.2908 35.731 39.3756 35.6478L47.3306 27.852C47.6699 27.5195 48.2198 27.5195 48.559 27.852Z" fill="#3396FF"/>
|
|
3
|
+
</svg>
|