2018-05-07 18:58:06 -07:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-05-07 18:58:06 -07:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2018-11-10 14:19:08 -08:00
|
|
|
#import <react/textlayoutmanager/RCTFontProperties.h>
|
2018-05-07 18:58:06 -07:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns UIFont instance corresponded to given font properties.
|
|
|
|
*/
|
|
|
|
UIFont *RCTFontWithFontProperties(RCTFontProperties fontProperties);
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|