design-system-silkhaus 1.0.0-beta.pnpm → 1.1.0-beta.promo-dialog.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/dist/index.d.ts CHANGED
@@ -348,6 +348,21 @@ declare interface Option_2 {
348
348
  id?: number;
349
349
  }
350
350
 
351
+ export declare const PromoDialog: default_2.ForwardRefExoticComponent<PromoDialogProps & default_2.RefAttributes<HTMLDivElement>>;
352
+
353
+ export declare interface PromoDialogProps {
354
+ bannerImageUrlDesktop?: string;
355
+ bannerImageUrlMobile?: string;
356
+ heading?: string;
357
+ discountText?: string;
358
+ desc?: string;
359
+ warningText?: string;
360
+ primaryBtnText?: string | ReactNode;
361
+ secondaryBtnText?: string | ReactNode;
362
+ onPrimaryBtnClick?: () => void;
363
+ onSecondaryBtnClick?: () => void;
364
+ }
365
+
351
366
  export declare const QuestionMarkIcon: FC<{
352
367
  className?: string;
353
368
  }>;