@mindly/ui-components 7.3.0-dev.4 → 7.3.0-dev.6

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.
@@ -1,2 +1,2 @@
1
- export * from './ExploreCardSwiperFeature';
1
+ export { default as ExploreCardSwiperFeature } from './ExploreCardSwiperFeature';
2
2
  export * from './types';
@@ -7,6 +7,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
7
7
  success: "";
8
8
  brand: "";
9
9
  info: "";
10
+ personalized: "";
10
11
  };
11
12
  size: {
12
13
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -25,6 +26,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
25
26
  success: "";
26
27
  brand: "";
27
28
  info: "";
29
+ personalized: "";
28
30
  };
29
31
  size: {
30
32
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -43,6 +45,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
43
45
  success: "";
44
46
  brand: "";
45
47
  info: "";
48
+ personalized: "";
46
49
  };
47
50
  size: {
48
51
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -61,6 +64,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
61
64
  success: "";
62
65
  brand: "";
63
66
  info: "";
67
+ personalized: "";
64
68
  };
65
69
  size: {
66
70
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -79,6 +83,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
79
83
  success: "";
80
84
  brand: "";
81
85
  info: "";
86
+ personalized: "";
82
87
  };
83
88
  size: {
84
89
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -97,6 +102,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
97
102
  success: "";
98
103
  brand: "";
99
104
  info: "";
105
+ personalized: "";
100
106
  };
101
107
  size: {
102
108
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -115,6 +121,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
115
121
  success: "";
116
122
  brand: "";
117
123
  info: "";
124
+ personalized: "";
118
125
  };
119
126
  size: {
120
127
  S: "px-2 py-1 text-xs/[140%] font-semibold";
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  export type BadgeType = 'default' | 'accent';
3
- export type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
3
+ export type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info' | 'personalized';
4
4
  export type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
5
5
  variant: BadgeVariants;
6
6
  size?: 'S' | 'M';