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.

12 lines (11 loc) 357 B
import React from 'react'; export interface FlipTargetProps { /** Target element */ children: React.ReactNode; /** Key of the prop that should be used to get element ref */ refProp?: string; } export declare function FlipTarget(props: FlipTargetProps): React.JSX.Element; export declare namespace FlipTarget { var displayName: string; }