uiinfinity-components
Version:
Beautiful UI components with smooth animations and 3D effects
11 lines • 399 B
TypeScript
import * as React from "react";
interface FlipCardProps {
className?: string;
frontContent: React.ReactNode;
backContent: React.ReactNode;
trigger?: "hover" | "click";
direction?: "horizontal" | "vertical";
}
declare const FlipCard: React.ForwardRefExoticComponent<FlipCardProps & React.RefAttributes<HTMLDivElement>>;
export { FlipCard };
//# sourceMappingURL=flip-card.d.ts.map