@dossierhq/design
Version:
The design system for Dossier.
20 lines (19 loc) • 581 B
TypeScript
import type { CSSProperties, FunctionComponent, ReactNode } from 'react';
interface HoverRevealStackProps {
children: ReactNode;
}
interface HoverRevealStackItemProps {
style?: CSSProperties;
forceVisible?: boolean;
left?: boolean;
top?: boolean;
right?: boolean;
bottom?: boolean;
children: ReactNode;
}
/** @public */
export interface HoverRevealStackComponent extends FunctionComponent<HoverRevealStackProps> {
Item: FunctionComponent<HoverRevealStackItemProps>;
}
export declare const HoverRevealStack: HoverRevealStackComponent;
export {};