UNPKG

native-base

Version:

Essential cross-platform UI components for React Native

17 lines (16 loc) 707 B
import React from 'react'; import { InterfaceBoxProps } from '../Box'; import type { CustomProps } from '../../../components/types'; export interface InterfaceZStackProps extends InterfaceBoxProps<IZStackProps> { /** * The direction to stack the elements. */ reversed?: boolean; } export declare type IZStackProps = InterfaceZStackProps & CustomProps<'ZStack'>; declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<InterfaceZStackProps & { variant?: unknown; size?: import("../../types/utils").ThemeComponentSizeType<"ZStack">; colorScheme?: import("../../types/utils").ColorSchemeType; } & React.RefAttributes<unknown>>>; export default _default;