@tripian/react 6.0.36 → 6.0.37

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