@tripian/react 6.0.40 → 6.0.42

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,4 +1,8 @@
1
1
  import React from 'react';
2
- import IIconSvg from './IIconSvg';
3
- declare const Avatar: React.FC<IIconSvg>;
2
+ interface IAvatar {
3
+ fill?: string;
4
+ color?: string;
5
+ size?: string;
6
+ }
7
+ declare const Avatar: React.FC<IAvatar>;
4
8
  export default Avatar;
@@ -26,4 +26,5 @@ import Booking from './Booking';
26
26
  import Offer from './Offer';
27
27
  import Favorite from './Favorite';
28
28
  import Time from './Time';
29
- export { Add, Bars, Bicycle, Booking, Calendar, Car, Clock, Close, Delete, Drink, Favorite, Food, NextArrow, PreviousArrow, Retail, SwitchIcon, Time, ThumbsUp, ThumbsDown, ThumbsUpEmpty, ThumbsDownEmpty, LandingCalendar, LandingCellPhone, LandingProfile, LandingThumbsUp, Legs, Offer, Uber, };
29
+ import Avatar from './Avatar';
30
+ export { Add, Avatar, Bars, Bicycle, Booking, Calendar, Car, Clock, Close, Delete, Drink, Favorite, Food, NextArrow, PreviousArrow, Retail, SwitchIcon, Time, ThumbsUp, ThumbsDown, ThumbsUpEmpty, ThumbsDownEmpty, LandingCalendar, LandingCellPhone, LandingProfile, LandingThumbsUp, Legs, Offer, Uber, };