UNPKG

@gfazioli/mantine-flip

Version:

Flip component is a wrapper for any component that can be flipped. It is used to create cards, flip boxes and more.

10 lines (9 loc) 290 B
interface FlipContext { toggleFlip: () => void; flipped: boolean; } export declare const FlipContextProvider: ({ children, value }: { value: FlipContext; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element, useFlipContext: () => FlipContext; export {};