@chainberry/ui-components 1.0.36 → 1.0.37

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/index.d.ts CHANGED
@@ -1984,6 +1984,15 @@ declare type SourceWallet = {
1984
1984
  fiatRate: number;
1985
1985
  };
1986
1986
 
1987
+ /** A plain circular spinner — a ring with one open segment that rotates.
1988
+ Color follows the surrounding text (`text-*`); size/thickness are props. */
1989
+ export declare function Spinner({ size, thickness, className, 'aria-label': ariaLabel, }: {
1990
+ size?: number;
1991
+ thickness?: number;
1992
+ className?: string;
1993
+ 'aria-label'?: string;
1994
+ }): JSX.Element;
1995
+
1987
1996
  declare const STATUS_META: Record<TxStatus, {
1988
1997
  label: string;
1989
1998
  tone: BadgeTone;