native-base
Version:
Essential cross-platform UI components for React Native
67 lines (66 loc) • 1.47 kB
TypeScript
export declare const PopoverCloseButton: {
baseStyle: (props: any) => {
position: string;
right: number;
top: number;
zIndex: number;
colorScheme: string;
p: number;
_icon: {
size: number;
color: any;
};
};
};
export declare const PopoverBody: {
baseStyle: (props: any) => {
pt: string;
p: string;
_text: {
color: any;
};
};
};
export declare const PopoverContent: {
baseStyle: (props: any) => {
backgroundColor: any;
borderColor: any;
_text: {
color: any;
};
borderWidth: number;
rounded: string;
overflow: string;
};
};
export declare const PopoverHeader: {
baseStyle: (props: any) => {
_web: {
accessibilityRole: string;
};
py: string;
px: string;
borderBottomWidth: string;
borderColor: any;
_text: {
fontSize: string;
fontWeight: string;
color: any;
lineHeight: string;
};
};
};
export declare const PopoverArrow: {
baseStyle: (props: any) => {
borderColor: any;
};
};
export declare const PopoverFooter: {
baseStyle: (props: Record<string, any>) => {
p: string;
bg: any;
flexDirection: string;
justifyContent: string;
flexWrap: string;
};
};