@bluxcc/core 0.1.24 → 0.2.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.
@@ -85,7 +85,7 @@ export declare const CloseEye: ({ fill }: {
85
85
  }) => import("react/jsx-runtime").JSX.Element;
86
86
  export declare const WarnIcon: () => import("react/jsx-runtime").JSX.Element;
87
87
  export declare const ErrorIcon: () => import("react/jsx-runtime").JSX.Element;
88
- export declare const InfoIcon: () => import("react/jsx-runtime").JSX.Element;
88
+ export declare const CopyIcon: () => import("react/jsx-runtime").JSX.Element;
89
89
  export declare const SuccessIcon: () => import("react/jsx-runtime").JSX.Element;
90
90
  export declare const KeyIcon: ({ fill }: {
91
91
  fill?: string;
@@ -105,3 +105,4 @@ export declare const QuestionMark: ({ fill }: {
105
105
  export declare const SmallQuestionMark: ({ fill }: {
106
106
  fill?: string;
107
107
  }) => import("react/jsx-runtime").JSX.Element;
108
+ export declare const GrayCube: () => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
- import React from "react";
2
- import { AlertType } from "../../store";
1
+ import React from 'react';
2
+ import { AlertType } from '../../store';
3
3
  interface AlertProps {
4
4
  type: AlertType;
5
5
  message: string;
@@ -1,6 +1,10 @@
1
1
  import { IAsset } from '../../types';
2
+ type IAssetWithDetails = IAsset & {
3
+ title: string;
4
+ subtitle: string;
5
+ };
2
6
  type AssetsProps = {
3
- assets: IAsset[];
7
+ assets: IAssetWithDetails[];
4
8
  };
5
9
  declare const Assets: ({ assets }: AssetsProps) => import("react/jsx-runtime").JSX.Element;
6
10
  export default Assets;
@@ -1,4 +1,4 @@
1
- import React from "react";
1
+ import React from 'react';
2
2
  interface OTPInputProps {
3
3
  otp: string[];
4
4
  setOtp: (otp: string[]) => void;