design-system-silkhaus 0.0.87-beta.develop-long-term-pricing.4 → 0.0.87-beta.listing-card.0

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
@@ -71,6 +71,15 @@ declare interface AsteriskProps {
71
71
  className?: string;
72
72
  }
73
73
 
74
+ export declare const Badge: default_2.ForwardRefExoticComponent<BadgeProps & default_2.RefAttributes<HTMLDivElement>>;
75
+
76
+ export declare type BadgeProps = {
77
+ icon?: default_2.ReactNode;
78
+ label: string;
79
+ variant: 'dark' | 'light' | 'amenity';
80
+ className?: string;
81
+ };
82
+
74
83
  export declare const BookingQuoteCard: default_2.ForwardRefExoticComponent<BookingQuoteCardProps & default_2.RefAttributes<HTMLDivElement>>;
75
84
 
76
85
  export declare interface BookingQuoteCardProps extends default_2.HTMLAttributes<HTMLDivElement> {
@@ -284,6 +293,15 @@ export declare interface RoundedProgressBarProps {
284
293
  textClass?: string;
285
294
  }
286
295
 
296
+ export declare const SlickImageCarousel: default_2.ForwardRefExoticComponent<SlickImageCarouselProps & default_2.RefAttributes<HTMLDivElement>>;
297
+
298
+ export declare type SlickImageCarouselProps = {
299
+ images: string[];
300
+ dots?: boolean;
301
+ infinite?: boolean;
302
+ className?: string;
303
+ };
304
+
287
305
  export declare interface Step {
288
306
  number: number;
289
307
  title: string;