UNPKG

@janiscommerce/ui-native

Version:
12 lines (11 loc) 530 B
import React, { ReactElement } from 'react'; import { ViewProps } from 'react-native'; import type { IlayoutButtons } from './utils'; interface LayoutWithBottomButtonsProps extends ViewProps { children: ReactElement | string; buttons: Array<IlayoutButtons>; variant?: string; buttonBackgroundColor?: string; } declare const LayoutWithBottomButtons: ({ children, buttons, variant, buttonBackgroundColor, ...props }: LayoutWithBottomButtonsProps) => React.JSX.Element | null; export default LayoutWithBottomButtons;