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) 264 B
import React from 'react'; export interface FlipBackProps { /** Back face content */ children: React.ReactNode; } export declare function FlipBack(props: FlipBackProps): React.JSX.Element; export declare namespace FlipBack { var displayName: string; }