@protonradio/proton-ui 0.7.5-beta6 → 0.7.5-beta8

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
@@ -374,13 +374,14 @@ declare interface IconProps {
374
374
  * ImageOverlay component for displaying an image with a blur effect.
375
375
  * @interface ImageBackdropProps
376
376
  */
377
- export declare function ImageBackdrop({ imageUrl, onLoad, onBackgroundEvent, }: ImageBackdropProps): JSX_2.Element;
377
+ export declare function ImageBackdrop({ image, onBackgroundEvent, }: ImageBackdropProps): JSX_2.Element;
378
378
 
379
379
  declare interface ImageBackdropProps {
380
380
  /**
381
381
  * The URL of the image to display in the overlay.
382
382
  */
383
383
  imageUrl?: string;
384
+ image?: React.ReactNode;
384
385
  /**
385
386
  * Callback function to handle the image load event.
386
387
  */