UNPKG

589 BTypeScriptView Raw
1import React from 'react';
2import { View } from 'react-native';
3declare type Props = React.ComponentProps<typeof View> & {
4 iconSize: number;
5 iconColor?: string;
6 orientation: 'horizontal' | 'vertical';
7};
8export default class AdOptionsView extends React.Component<Props> {
9 static defaultProps: {
10 iconSize: number;
11 orientation: string;
12 };
13 shouldAlignHorizontal: () => boolean;
14 render(): JSX.Element;
15}
16export declare type NativeAdOptionsView = React.Component<Props>;
17export declare const NativeAdOptionsView: React.ComponentType<any>;
18export {};