@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
33 lines • 1.06 kB
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 { AnimatedProps } from 'react-native-reanimated';
import { View, ViewProps } from 'react-native';
import { ReactNode, RefAttributes } from 'react';
import { CrossedMethods } from '@crossed/styled';
export type FloatingContentProps = Omit<Partial<AnimatedProps<ViewProps>>, 'children' | 'style'> & {
/**
* Crossed style
*/
style?: CrossedMethods<any>;
/**
* Animated view style
*/
animatedStyle?: AnimatedProps<ViewProps>['style'];
children?: ReactNode;
};
export declare const FloatingContent: import("react").NamedExoticComponent<Omit<Partial<AnimatedProps<ViewProps>>, "children" | "style"> & {
/**
* Crossed style
*/
style?: CrossedMethods<any>;
/**
* Animated view style
*/
animatedStyle?: AnimatedProps<ViewProps>["style"];
children?: ReactNode;
} & RefAttributes<View>>;
//# sourceMappingURL=Content.d.ts.map