@rango-dev/ui 0.1.10-next.73 → 0.1.10-next.75

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.
Files changed (89) hide show
  1. package/dist/components/Icon/AddCircleIcon.d.ts +1 -1
  2. package/dist/components/Icon/AddIcon.d.ts +1 -1
  3. package/dist/components/Icon/AddWalletIcon.d.ts +1 -1
  4. package/dist/components/Icon/AngleDownIcon.d.ts +2 -2
  5. package/dist/components/Icon/AngleLeftIcon.d.ts +1 -1
  6. package/dist/components/Icon/AngleRightIcon.d.ts +1 -1
  7. package/dist/components/Icon/AngleUpIcon.d.ts +1 -1
  8. package/dist/components/Icon/BagIcon.d.ts +1 -1
  9. package/dist/components/Icon/BanIcon.d.ts +1 -1
  10. package/dist/components/Icon/CheckCircleIcon.d.ts +1 -1
  11. package/dist/components/Icon/CheckIcon.d.ts +1 -1
  12. package/dist/components/Icon/CheckSquareIcon.d.ts +1 -1
  13. package/dist/components/Icon/CheckWalletIcon.d.ts +1 -1
  14. package/dist/components/Icon/DeleteCircleIcon.d.ts +1 -1
  15. package/dist/components/Icon/DeleteWalletIcon.d.ts +1 -1
  16. package/dist/components/Icon/DownloadIcon.d.ts +1 -1
  17. package/dist/components/Icon/GasIcon.d.ts +1 -1
  18. package/dist/components/Icon/HistoryIcon.d.ts +1 -1
  19. package/dist/components/Icon/HorizontalSwapIcon.d.ts +1 -1
  20. package/dist/components/Icon/Icons.stories.d.ts +1 -2
  21. package/dist/components/Icon/InfoCircleIcon.d.ts +1 -1
  22. package/dist/components/Icon/MinusCircleIcon.d.ts +1 -1
  23. package/dist/components/Icon/RetryLeftIcon.d.ts +1 -1
  24. package/dist/components/Icon/RetryRightIcon.d.ts +1 -1
  25. package/dist/components/Icon/SearchIcon.d.ts +1 -1
  26. package/dist/components/Icon/SearchMinusIcon.d.ts +1 -1
  27. package/dist/components/Icon/SettingIcon.d.ts +1 -1
  28. package/dist/components/Icon/SignatureIcon.d.ts +1 -1
  29. package/dist/components/Icon/SwapWalletIcon.d.ts +1 -1
  30. package/dist/components/Icon/TrashIcon.d.ts +1 -1
  31. package/dist/components/Icon/TryAgainIcon.d.ts +1 -1
  32. package/dist/components/Icon/VerticalSwapIcon.d.ts +1 -1
  33. package/dist/components/Icon/WalletIconIcon.d.ts +1 -1
  34. package/dist/components/Icon/WarningIcon.d.ts +1 -1
  35. package/dist/components/TextField/TextField.stories.d.ts +1 -1
  36. package/dist/containers/ConfirmWallets/types.d.ts +1 -0
  37. package/dist/ui.cjs.development.js +139 -110
  38. package/dist/ui.cjs.development.js.map +1 -1
  39. package/dist/ui.cjs.production.min.js +1 -1
  40. package/dist/ui.cjs.production.min.js.map +1 -1
  41. package/dist/ui.esm.js +140 -111
  42. package/dist/ui.esm.js.map +1 -1
  43. package/package.json +2 -2
  44. package/src/components/Alert/Alert.tsx +9 -5
  45. package/src/components/BestRoute/BestRoute.tsx +3 -3
  46. package/src/components/Icon/AddCircleIcon.tsx +25 -23
  47. package/src/components/Icon/AddIcon.tsx +26 -23
  48. package/src/components/Icon/AddWalletIcon.tsx +44 -42
  49. package/src/components/Icon/AngleDownIcon.tsx +24 -24
  50. package/src/components/Icon/AngleLeftIcon.tsx +26 -24
  51. package/src/components/Icon/AngleRightIcon.tsx +26 -24
  52. package/src/components/Icon/AngleUpIcon.tsx +26 -24
  53. package/src/components/Icon/BagIcon.tsx +33 -31
  54. package/src/components/Icon/BanIcon.tsx +26 -24
  55. package/src/components/Icon/CheckCircleIcon.tsx +33 -31
  56. package/src/components/Icon/CheckIcon.tsx +24 -22
  57. package/src/components/Icon/CheckSquareIcon.tsx +31 -29
  58. package/src/components/Icon/CheckWalletIcon.tsx +39 -37
  59. package/src/components/Icon/DeleteCircleIcon.tsx +25 -23
  60. package/src/components/Icon/DeleteWalletIcon.tsx +44 -42
  61. package/src/components/Icon/DownloadIcon.tsx +31 -29
  62. package/src/components/Icon/GasIcon.tsx +31 -29
  63. package/src/components/Icon/HistoryIcon.tsx +34 -32
  64. package/src/components/Icon/HorizontalSwapIcon.tsx +33 -31
  65. package/src/components/Icon/InfoCircleIcon.tsx +33 -31
  66. package/src/components/Icon/MinusCircleIcon.tsx +25 -23
  67. package/src/components/Icon/RetryLeftIcon.tsx +25 -23
  68. package/src/components/Icon/RetryRightIcon.tsx +25 -23
  69. package/src/components/Icon/SearchIcon.tsx +25 -23
  70. package/src/components/Icon/SearchMinusIcon.tsx +25 -23
  71. package/src/components/Icon/SettingIcon.tsx +33 -31
  72. package/src/components/Icon/SignatureIcon.tsx +26 -24
  73. package/src/components/Icon/SwapWalletIcon.tsx +44 -42
  74. package/src/components/Icon/TrashIcon.tsx +25 -23
  75. package/src/components/Icon/TryAgainIcon.tsx +25 -23
  76. package/src/components/Icon/VerticalSwapIcon.tsx +32 -30
  77. package/src/components/Icon/WalletIconIcon.tsx +34 -32
  78. package/src/components/Icon/WarningIcon.tsx +31 -29
  79. package/src/components/LiquiditySourceList/LiquiditySourceList.tsx +31 -25
  80. package/src/components/Radio/Radio.tsx +2 -2
  81. package/src/components/SelectableWalletList/SelectableWalletList.tsx +2 -1
  82. package/src/components/Switch/Switch.tsx +1 -1
  83. package/src/components/Tooltip/Tooltip.tsx +7 -1
  84. package/src/components/Typography/Typography.tsx +1 -0
  85. package/src/containers/ConfirmSwap/ConfirmSwap.tsx +3 -3
  86. package/src/containers/ConfirmWallets/ConfirmWallets.tsx +1 -1
  87. package/src/containers/ConfirmWallets/types.ts +1 -0
  88. package/src/containers/History/History.tsx +4 -3
  89. package/src/containers/SwapHistory/SwapHistory.tsx +4 -4
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const AddCircleIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const AddCircleIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const AddIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const AddIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const AddWalletIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const AddWalletIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const AngleDownIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const AngleDownIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const AngleLeftIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const AngleLeftIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const AngleRightIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const AngleRightIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const AngleUpIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const AngleUpIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const BagIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const BagIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const BanIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const BanIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const CheckCircleIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const CheckCircleIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const CheckIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const CheckIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const CheckSquareIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const CheckSquareIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const CheckWalletIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const CheckWalletIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const DeleteCircleIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const DeleteCircleIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const DeleteWalletIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const DeleteWalletIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const DownloadIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const DownloadIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const GasIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const GasIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const HistoryIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const HistoryIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const HorizontalSwapIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const HorizontalSwapIcon: React.FC<IconProps>;
@@ -1,5 +1,4 @@
1
- import React from 'react';
2
1
  import { IconProps } from './types';
3
- declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react").ReactFramework, IconProps & React.RefAttributes<SVGSVGElement>>;
2
+ declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react").ReactFramework, IconProps>;
4
3
  export default _default;
5
4
  export declare const Main: (props: IconProps) => JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const InfoCircleIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const InfoCircleIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const MinusCircleIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const MinusCircleIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const RetryLeftIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const RetryLeftIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const RetryRightIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const RetryRightIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const SearchIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const SearchIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const SearchMinusIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const SearchMinusIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const SettingsIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const SettingsIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const SignatureIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const SignatureIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const SwapWalletIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const SwapWalletIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const TrashIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const TrashIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const TryAgainIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const TryAgainIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const VerticalSwapIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const VerticalSwapIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const WalletIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const WalletIcon: React.FC<IconProps>;
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { IconProps } from './types';
3
- export declare const WarningIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
3
+ export declare const WarningIcon: React.FC<IconProps>;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { PropTypes } from './TextField';
3
- declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react").ReactFramework, Pick<React.PropsWithChildren<PropTypes>, "color" | "height" | "translate" | "width" | "list" | "onChange" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "hidden" | "size" | "type" | "onClick" | "prefix" | "suffix" | "disabled" | "children" | "className" | "id" | "lang" | "max" | "min" | "name" | "role" | "tabIndex" | "crossOrigin" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "checked" | "step" | "defaultValue" | "accept" | "alt" | "autoComplete" | "autoFocus" | "capture" | "enterKeyHint" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "maxLength" | "minLength" | "multiple" | "placeholder" | "readOnly" | "required" | "src" | "value" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "nonce" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React.RefAttributes<HTMLInputElement>>;
3
+ declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react").ReactFramework, Pick<React.PropsWithChildren<PropTypes>, "color" | "height" | "translate" | "width" | "list" | "onChange" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "type" | "onClick" | "size" | "prefix" | "suffix" | "disabled" | "children" | "id" | "defaultChecked" | "checked" | "name" | "className" | "lang" | "max" | "min" | "role" | "tabIndex" | "crossOrigin" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "step" | "defaultValue" | "accept" | "alt" | "autoComplete" | "autoFocus" | "capture" | "enterKeyHint" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "maxLength" | "minLength" | "multiple" | "placeholder" | "readOnly" | "required" | "src" | "value" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "nonce" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> & React.RefAttributes<HTMLInputElement>>;
4
4
  export default _default;
5
5
  export declare const Main: (args: PropTypes) => JSX.Element;
6
6
  export declare const WithPrefix: (args: PropTypes) => JSX.Element;
@@ -5,4 +5,5 @@ export interface SelectableWallet {
5
5
  address: string;
6
6
  image: string;
7
7
  selected: boolean;
8
+ name: string;
8
9
  }