apphouse
Version:
Component library for React that uses observable state management and theme-able components.
14 lines (13 loc) • 382 B
TypeScript
/// <reference types="react" />
export interface FlipProps {
/**
* The orientation of the flip
* @default bottomToTop
*/
direction?: 'bottomToTop' | 'topToBottom';
children: React.ReactNode;
}
/**
* A component that flips the direction of the children element
*/
export declare const Flip: (props: FlipProps) => import("react/jsx-runtime").JSX.Element;