1/** 2 * Copyright (c) Meta Platforms, Inc. and affiliates. 3 * 4 * This source code is licensed under the MIT license found in the 5 * LICENSE file in the root directory of this source tree. 6 * 7 * @flow 8 * @format 9 */ 10 11import * as React from 'react'; 12import Platform from '../../Utilities/Platform'; 13import StyleSheet, { 14 type ViewStyleProp, 15 type ColorValue, 16} from '../../StyleSheet/StyleSheet'; 17 18type Props = $ReadOnly<{| 19 +children: React.Node, 20 nativeID?: ?string, 21 style?: ?ViewStyleProp, 22 backgroundColor?: ?ColorValue, 23|}>; 24 25module.exports = class InputAccessoryView extends React.Component<Props> {}; 26