//
//  RNMonthYearPicker.h
//  react-native-month-year-picker
//
//  Created by Kien Tran on 08/04/2023.
//

#import <React/UIView+React.h>

@interface RNMonthYearPicker : UIPickerView

@property (nonatomic, copy) RCTBubblingEventBlock onChange;

@property (nonatomic, copy) NSDate* value;
@property (nonatomic, copy) NSDate* minimumDate;
@property (nonatomic, copy) NSDate* maximumDate;
@property (nonatomic, strong) UIColor* textColor;

- (void)setLocale:(NSLocale *)useLocale;

+ (nullable UIColor *)colorFromString:(NSString *)colorString;

@end
