12 lines
287 B
Objective-C
12 lines
287 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface RCTTabBarItem : UIView
|
|
|
|
@property (nonatomic, copy) NSString *icon;
|
|
@property (nonatomic, assign, getter=isSelected) BOOL selected;
|
|
@property (nonatomic, readonly) UITabBarItem *barItem;
|
|
|
|
@end
|