@janiscommerce/ui-native
Version:
components library for Janis app
12 lines (11 loc) • 530 B
TypeScript
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;