@bluxcc/core 0.1.25 → 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.
@@ -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,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;