react-asc 25.7.4 → 25.8.1

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/index.d.ts CHANGED
@@ -119,6 +119,7 @@ interface IButtonProps extends React$1.ComponentProps<'button'> {
119
119
  endIcon?: React$1.ReactNode;
120
120
  shadow?: boolean;
121
121
  block?: boolean;
122
+ loading?: boolean;
122
123
  }
123
124
  declare const Button: React$1.FunctionComponent<IButtonProps>;
124
125
 
@@ -462,6 +463,7 @@ interface IIconButtonProps extends React$1.ComponentProps<'button'> {
462
463
  isActive?: boolean;
463
464
  variant?: VARIANT;
464
465
  shadow?: boolean;
466
+ loading?: boolean;
465
467
  }
466
468
  declare const IconButton: (props: IIconButtonProps) => JSX.Element;
467
469