@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
20 lines • 821 B
TypeScript
/**
* Copyright (c) Paymium.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root of this projects source tree.
*/
import { PropsWithChildren, ReactNode } from 'react';
import { AnimatedProps } from 'react-native-reanimated';
import { ViewProps } from 'react-native';
import { CrossedMethods } from '@crossed/styled';
export type LayoutProps = PropsWithChildren<{
footer: ReactNode;
showFooter: boolean;
stickyFooter: boolean;
style?: CrossedMethods<any>;
paddingRight?: number;
animatedStyle?: AnimatedProps<ViewProps>['style'];
}>;
export declare const Layout: ({ footer, showFooter, stickyFooter, style, children, paddingRight, animatedStyle, ...rest }: LayoutProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Layout.d.ts.map