Skip to content

Commit fae770b

Browse files
lunaleapsfacebook-github-bot
authored andcommitted
InputAccessoryView
Summary: Changelog: [Internal] Flow InputAccessoryView Reviewed By: yungsters Differential Revision: D39855166 fbshipit-source-id: 9c389854e6d76a0c0e881190cd1808088de324fd
1 parent 2ff08e8 commit fae770b

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
11+
import * as React from 'react';
12+
import Platform from '../../Utilities/Platform';
13+
import StyleSheet, {
14+
type ViewStyleProp,
15+
type ColorValue,
16+
} from '../../StyleSheet/StyleSheet';
17+
18+
type Props = $ReadOnly<{|
19+
+children: React.Node,
20+
nativeID?: ?string,
21+
style?: ?ViewStyleProp,
22+
backgroundColor?: ?ColorValue,
23+
|}>;
24+
25+
module.exports = class InputAccessoryView extends React.Component<Props> {};

0 commit comments

Comments
 (0)