@ecohouse/ui 0.1.19 → 0.1.21

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.cts CHANGED
@@ -109,6 +109,9 @@ interface ArrowRightIconProps {
109
109
  /** Native — react-native-svg (peer dependency). */
110
110
  declare function ArrowRightIcon({ size, color, strokeWidth, }: ArrowRightIconProps): react.JSX.Element;
111
111
 
112
+ declare function AppleIcon({ size, color }: IconProps): react.JSX.Element;
113
+ declare function GooglePlayIcon({ size }: IconProps): react.JSX.Element;
114
+
112
115
  declare function BagIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
113
116
 
114
117
  declare function BellIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
@@ -146,6 +149,8 @@ declare function ChevronLeftIcon({ size, color, strokeWidth }: IconProps): react
146
149
 
147
150
  declare function ClockIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
148
151
 
152
+ declare function CloseIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
153
+
149
154
  declare function SaveHeartIcon({ size, color, strokeWidth, fillOpacity, }: IconProps): react.JSX.Element;
150
155
  declare function RatingStarIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
151
156
  declare function CardLocationIcon({ size, color, strokeWidth, secondaryColor, }: IconProps): react.JSX.Element;
@@ -200,6 +205,9 @@ declare function MailIcon({ size, color, strokeWidth }: IconProps): react.JSX.El
200
205
  /** Native — react-native-svg (peer dependency). */
201
206
  declare function MapViewIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
202
207
 
208
+ declare function MapExpandIcon(props: IconProps): react.JSX.Element;
209
+ declare function MapCollapseIcon(props: IconProps): react.JSX.Element;
210
+
203
211
  interface MenuIconProps extends IconProps {
204
212
  open?: boolean;
205
213
  }
@@ -266,6 +274,7 @@ declare function VideoIcon({ size, color, strokeWidth }: IconProps): react.JSX.E
266
274
 
267
275
  declare const icons: {
268
276
  readonly areaExpand: typeof AreaExpandIcon;
277
+ readonly apple: typeof AppleIcon;
269
278
  readonly arrowRight: typeof ArrowRightIcon;
270
279
  readonly bag: typeof BagIcon;
271
280
  readonly bell: typeof BellIcon;
@@ -279,6 +288,7 @@ declare const icons: {
279
288
  readonly chevronDown: typeof ChevronDownIcon;
280
289
  readonly chevronLeft: typeof ChevronLeftIcon;
281
290
  readonly clock: typeof ClockIcon;
291
+ readonly close: typeof CloseIcon;
282
292
  readonly clockFilled: typeof ClockFilledIcon;
283
293
  readonly copy: typeof CopyIcon;
284
294
  readonly bathrooms: typeof BathroomsIcon;
@@ -289,6 +299,7 @@ declare const icons: {
289
299
  readonly guests: typeof GuestsIcon;
290
300
  readonly heart: typeof HeartIcon;
291
301
  readonly globe: typeof GlobeIcon;
302
+ readonly googlePlay: typeof GooglePlayIcon;
292
303
  readonly helpCircle: typeof HelpCircleIcon;
293
304
  readonly home: typeof HomeIcon;
294
305
  readonly instagram: typeof InstagramIcon;
@@ -300,6 +311,8 @@ declare const icons: {
300
311
  readonly logOut: typeof LogOutIcon;
301
312
  readonly mail: typeof MailIcon;
302
313
  readonly mapView: typeof MapViewIcon;
314
+ readonly mapCollapse: typeof MapCollapseIcon;
315
+ readonly mapExpand: typeof MapExpandIcon;
303
316
  readonly menu: typeof MenuIcon;
304
317
  readonly minus: typeof MinusIcon;
305
318
  readonly navigate: typeof NavigateIcon;
@@ -325,11 +338,11 @@ declare const icons: {
325
338
  type IconName = keyof typeof icons;
326
339
  declare const iconNames: IconName[];
327
340
  declare const iconGroups: {
328
- readonly navigation: readonly ["arrowRight", "chevronDown", "chevronLeft", "home", "listView", "locationPin", "mapView", "menu", "navigate"];
329
- readonly actions: readonly ["show", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "search", "calendar", "calendarOutline", "ratingStar", "saveHeart", "share", "filters", "heart", "star", "starFilled", "minus", "plus", "sort"];
341
+ readonly navigation: readonly ["arrowRight", "chevronDown", "chevronLeft", "home", "listView", "locationPin", "mapCollapse", "mapExpand", "mapView", "menu", "navigate"];
342
+ readonly actions: readonly ["show", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "search", "calendar", "calendarOutline", "close", "ratingStar", "saveHeart", "share", "filters", "heart", "star", "starFilled", "minus", "plus", "sort"];
330
343
  readonly objects: readonly ["bag", "bathrooms", "bedrooms", "building", "cardLocation", "clock", "clockFilled", "guests", "qrCode", "user", "usersAlt", "video", "whatsApp"];
331
344
  readonly communication: readonly ["mail", "phone"];
332
- readonly social: readonly ["facebook", "instagram", "linkedin"];
345
+ readonly social: readonly ["apple", "facebook", "googlePlay", "instagram", "linkedin"];
333
346
  readonly interface: readonly ["areaExpand", "globe", "layoutGrid", "sidebar", "settings", "helpCircle", "logOut", "tooltipArrow"];
334
347
  };
335
348
  type IconGroup = keyof typeof iconGroups;
@@ -341,6 +354,16 @@ interface IconByNameProps extends IconProps {
341
354
  }
342
355
  declare function Icon({ name, ...props }: IconByNameProps): react.JSX.Element;
343
356
 
357
+ declare const amenityNames: readonly ["kitchen", "wifi", "tv", "washer", "ac", "bbq", "forestView", "pets"];
358
+ type AmenityName = (typeof amenityNames)[number];
359
+
360
+ interface AmenityIconProps {
361
+ name: AmenityName;
362
+ size?: number;
363
+ color?: string;
364
+ }
365
+ declare function AmenityIcon({ name, size, color }: AmenityIconProps): react.JSX.Element;
366
+
344
367
  type BadgeVariant = "default" | "transparent";
345
368
  interface BadgeProps extends Omit<ViewProps, "style" | "children"> {
346
369
  label: string;
@@ -978,4 +1001,4 @@ declare const textareaTypography: {
978
1001
  };
979
1002
  };
980
1003
 
981
- export { AreaExpandIcon, ArrowRightIcon, Avatar, type AvatarMenuItem, type AvatarProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, SidebarIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
1004
+ export { AmenityIcon, type AmenityIconProps, type AmenityName, AppleIcon, AreaExpandIcon, ArrowRightIcon, Avatar, type AvatarMenuItem, type AvatarProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, SidebarIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
package/dist/index.d.ts CHANGED
@@ -109,6 +109,9 @@ interface ArrowRightIconProps {
109
109
  /** Native — react-native-svg (peer dependency). */
110
110
  declare function ArrowRightIcon({ size, color, strokeWidth, }: ArrowRightIconProps): react.JSX.Element;
111
111
 
112
+ declare function AppleIcon({ size, color }: IconProps): react.JSX.Element;
113
+ declare function GooglePlayIcon({ size }: IconProps): react.JSX.Element;
114
+
112
115
  declare function BagIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
113
116
 
114
117
  declare function BellIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
@@ -146,6 +149,8 @@ declare function ChevronLeftIcon({ size, color, strokeWidth }: IconProps): react
146
149
 
147
150
  declare function ClockIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
148
151
 
152
+ declare function CloseIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
153
+
149
154
  declare function SaveHeartIcon({ size, color, strokeWidth, fillOpacity, }: IconProps): react.JSX.Element;
150
155
  declare function RatingStarIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
151
156
  declare function CardLocationIcon({ size, color, strokeWidth, secondaryColor, }: IconProps): react.JSX.Element;
@@ -200,6 +205,9 @@ declare function MailIcon({ size, color, strokeWidth }: IconProps): react.JSX.El
200
205
  /** Native — react-native-svg (peer dependency). */
201
206
  declare function MapViewIcon({ size, color, strokeWidth }: IconProps): react.JSX.Element;
202
207
 
208
+ declare function MapExpandIcon(props: IconProps): react.JSX.Element;
209
+ declare function MapCollapseIcon(props: IconProps): react.JSX.Element;
210
+
203
211
  interface MenuIconProps extends IconProps {
204
212
  open?: boolean;
205
213
  }
@@ -266,6 +274,7 @@ declare function VideoIcon({ size, color, strokeWidth }: IconProps): react.JSX.E
266
274
 
267
275
  declare const icons: {
268
276
  readonly areaExpand: typeof AreaExpandIcon;
277
+ readonly apple: typeof AppleIcon;
269
278
  readonly arrowRight: typeof ArrowRightIcon;
270
279
  readonly bag: typeof BagIcon;
271
280
  readonly bell: typeof BellIcon;
@@ -279,6 +288,7 @@ declare const icons: {
279
288
  readonly chevronDown: typeof ChevronDownIcon;
280
289
  readonly chevronLeft: typeof ChevronLeftIcon;
281
290
  readonly clock: typeof ClockIcon;
291
+ readonly close: typeof CloseIcon;
282
292
  readonly clockFilled: typeof ClockFilledIcon;
283
293
  readonly copy: typeof CopyIcon;
284
294
  readonly bathrooms: typeof BathroomsIcon;
@@ -289,6 +299,7 @@ declare const icons: {
289
299
  readonly guests: typeof GuestsIcon;
290
300
  readonly heart: typeof HeartIcon;
291
301
  readonly globe: typeof GlobeIcon;
302
+ readonly googlePlay: typeof GooglePlayIcon;
292
303
  readonly helpCircle: typeof HelpCircleIcon;
293
304
  readonly home: typeof HomeIcon;
294
305
  readonly instagram: typeof InstagramIcon;
@@ -300,6 +311,8 @@ declare const icons: {
300
311
  readonly logOut: typeof LogOutIcon;
301
312
  readonly mail: typeof MailIcon;
302
313
  readonly mapView: typeof MapViewIcon;
314
+ readonly mapCollapse: typeof MapCollapseIcon;
315
+ readonly mapExpand: typeof MapExpandIcon;
303
316
  readonly menu: typeof MenuIcon;
304
317
  readonly minus: typeof MinusIcon;
305
318
  readonly navigate: typeof NavigateIcon;
@@ -325,11 +338,11 @@ declare const icons: {
325
338
  type IconName = keyof typeof icons;
326
339
  declare const iconNames: IconName[];
327
340
  declare const iconGroups: {
328
- readonly navigation: readonly ["arrowRight", "chevronDown", "chevronLeft", "home", "listView", "locationPin", "mapView", "menu", "navigate"];
329
- readonly actions: readonly ["show", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "search", "calendar", "calendarOutline", "ratingStar", "saveHeart", "share", "filters", "heart", "star", "starFilled", "minus", "plus", "sort"];
341
+ readonly navigation: readonly ["arrowRight", "chevronDown", "chevronLeft", "home", "listView", "locationPin", "mapCollapse", "mapExpand", "mapView", "menu", "navigate"];
342
+ readonly actions: readonly ["show", "bell", "camera", "key", "check", "checkBadge", "checkSuccess", "copy", "search", "calendar", "calendarOutline", "close", "ratingStar", "saveHeart", "share", "filters", "heart", "star", "starFilled", "minus", "plus", "sort"];
330
343
  readonly objects: readonly ["bag", "bathrooms", "bedrooms", "building", "cardLocation", "clock", "clockFilled", "guests", "qrCode", "user", "usersAlt", "video", "whatsApp"];
331
344
  readonly communication: readonly ["mail", "phone"];
332
- readonly social: readonly ["facebook", "instagram", "linkedin"];
345
+ readonly social: readonly ["apple", "facebook", "googlePlay", "instagram", "linkedin"];
333
346
  readonly interface: readonly ["areaExpand", "globe", "layoutGrid", "sidebar", "settings", "helpCircle", "logOut", "tooltipArrow"];
334
347
  };
335
348
  type IconGroup = keyof typeof iconGroups;
@@ -341,6 +354,16 @@ interface IconByNameProps extends IconProps {
341
354
  }
342
355
  declare function Icon({ name, ...props }: IconByNameProps): react.JSX.Element;
343
356
 
357
+ declare const amenityNames: readonly ["kitchen", "wifi", "tv", "washer", "ac", "bbq", "forestView", "pets"];
358
+ type AmenityName = (typeof amenityNames)[number];
359
+
360
+ interface AmenityIconProps {
361
+ name: AmenityName;
362
+ size?: number;
363
+ color?: string;
364
+ }
365
+ declare function AmenityIcon({ name, size, color }: AmenityIconProps): react.JSX.Element;
366
+
344
367
  type BadgeVariant = "default" | "transparent";
345
368
  interface BadgeProps extends Omit<ViewProps, "style" | "children"> {
346
369
  label: string;
@@ -978,4 +1001,4 @@ declare const textareaTypography: {
978
1001
  };
979
1002
  };
980
1003
 
981
- export { AreaExpandIcon, ArrowRightIcon, Avatar, type AvatarMenuItem, type AvatarProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, SidebarIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };
1004
+ export { AmenityIcon, type AmenityIconProps, type AmenityName, AppleIcon, AreaExpandIcon, ArrowRightIcon, Avatar, type AvatarMenuItem, type AvatarProps, BRAND_LOGO_COLORS, BRAND_LOGO_DEFAULT_HEIGHT, BRAND_LOGO_DEFAULT_WIDTH, Badge, type BadgeProps, type BadgeVariant, BagIcon, BathroomsIcon, BedroomsIcon, BellIcon, BrandLogo, type BrandLogoProps, type BrandLogoVariant, BuildingIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, CalendarOutlineIcon, CameraIcon, CardLocationIcon, CheckBadgeIcon, CheckIcon, CheckSuccessIcon, Checkbox, type CheckboxProps, type CheckboxVariant, ChevronDownIcon, ChevronLeftIcon, ClockFilledIcon, ClockIcon, CloseIcon, CommentCard, type CommentCardProps, CopyIcon, Counter, type CounterProps, DatePicker, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DateRange, FacebookIcon, FavoritesButton, type FavoritesButtonProps, FiltersIcon, GlobeIcon, GooglePlayIcon, type GreyStep, GuestsIcon, HeartIcon, HelpCircleIcon, HomeIcon, Icon, type IconByNameProps, type IconComponent, type IconGroup, type IconName, type IconProps, Input, type InputIcon, type InputProps, type InputSize, InstagramIcon, KeyIcon, type LanguageOption, LanguageSwitcher, type LanguageSwitcherProps, LayoutGridIcon, LinkedInIcon, ListViewIcon, LocationPinIcon, LogOutIcon, MailIcon, MapCollapseIcon, MapExpandIcon, MapViewIcon, MenuIcon, type MenuIconProps, MenuItem, type MenuItemProps, MinusIcon, NavigateIcon, PhoneIcon, PlusIcon, QrCodeIcon, Range, type RangeProps, type RangeValue, RatingInput, type RatingInputProps, RatingStarIcon, SaveHeartIcon, SearchIcon, SegmentedToggle, type SegmentedToggleOption, type SegmentedToggleProps, Select, type SelectIcon, type SelectMultipleProps, type SelectOption, type SelectProps, type SelectSingleProps, SettingsIcon, ShareIcon, ShowIcon, SidebarIcon, SortIcon, StarFilledIcon, StarIcon, type StarIconProps, StatCard, type StatCardProps, Textarea, type TextareaProps, Toggle, type ToggleProps, TooltipArrowIcon, UserIcon, UsersAltIcon, VideoIcon, WhatsAppIcon, avatarTypography, badgeTypography, buttonTypography, colors, commentCardTypography, counterTypography, datePickerTypography, defaultLanguageOptions, fonts, getIconsByGroup, grey, iconGroupNames, iconGroups, iconNames, icons, inputTypography, languageSwitcherTypography, ratingTypography, segmentedToggleTypography, selectTypography, statCardTypography, textareaTypography };