2015-03-23 22:07:33 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-03-06 17:54:10 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface RCTTabBarItem : UIView
|
|
|
|
|
2015-06-25 13:00:02 +00:00
|
|
|
@property (nonatomic, copy) id icon;
|
2015-03-06 17:54:10 +00:00
|
|
|
@property (nonatomic, assign, getter=isSelected) BOOL selected;
|
|
|
|
@property (nonatomic, readonly) UITabBarItem *barItem;
|
|
|
|
|
|
|
|
@end
|