@vandrei977/react-native-render-html
Version:
The hackable, full-featured Open Source HTML rendering solution for React Native.
10 lines • 496 B
TypeScript
import { PropsWithChildren, ReactElement } from 'react';
import { ViewStyle, ViewProps } from 'react-native';
import { IMGElementProps } from './img-types';
/**
* Container for the {@link IMGElement} component.
*/
export default function IMGElementContainer({ style, onPress, testID, children, ...otherProps }: PropsWithChildren<Pick<IMGElementProps, 'onPress' | 'testID'> & Omit<ViewProps, 'style'> & {
style: ViewStyle;
}>): ReactElement;
//# sourceMappingURL=IMGElementContainer.d.ts.map