mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7bb2ba5494
Summary: title Reviewed By: rickhanlonii Differential Revision: D15804045 fbshipit-source-id: 6969984441e9c87750abbc0a046fb7b447a78c91
23 lines
590 B
JavaScript
23 lines
590 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
'use strict';
|
|
|
|
import type {ColorValue} from '../../StyleSheet/StyleSheetTypes';
|
|
import type {ViewProps} from '../View/ViewPropTypes';
|
|
|
|
import codegenNativeComponent from '../../Utilities/codegenNativeComponent';
|
|
|
|
type NativeProps = $ReadOnly<{|
|
|
...ViewProps,
|
|
backgroundColor?: ?ColorValue,
|
|
|}>;
|
|
|
|
export default codegenNativeComponent<NativeProps>('RCTInputAccessoryView');
|