@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
23 lines • 783 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 { type View, type PressableProps } from 'react-native';
import { type SlotProps } from '../../Slot';
import { RefAttributes } from 'react';
import { CrossedMethods } from '@crossed/styled';
export type FloatingTriggerProps = Omit<SlotProps<PressableProps>, 'Comp' | 'style'> & {
/**
* Crossed style
*/
style?: CrossedMethods<any>;
};
export declare const FloatingTrigger: import("react").NamedExoticComponent<Omit<SlotProps<PressableProps>, "style" | "Comp"> & {
/**
* Crossed style
*/
style?: CrossedMethods<any>;
} & RefAttributes<View>>;
//# sourceMappingURL=Trigger.d.ts.map