@expo/html-elements
Version:
Universal semantic HTML React components for iOS, Android, web, and desktop
21 lines • 857 B
TypeScript
/**
* Copyright (c) Expo.
* Copyright (c) Nicolas Gallagher.
* 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.
*/
import * as React from 'react';
import { ViewProps } from 'react-native-web/dist/exports/View/types';
/**
* This is the View from react-native-web copied out in order to supply a custom `__element` property.
* In the past, you could use `createElement` to create an element with a custom HTML element, but this changed
* somewhere between 0.14...0.17.
*/
declare function View(props: ViewProps): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
declare namespace View {
var displayName: string;
}
export default View;
//# sourceMappingURL=RNWView.d.ts.map