grommet
Version:
focus on the essential experience
18 lines (14 loc) • 554 B
TypeScript
import * as React from "react";
export interface DropProps {
align?: {top?: "top" | "bottom",bottom?: "top" | "bottom",right?: "left" | "right",left?: "left" | "right"};
onClickOutside?: ((...args: any[]) => any);
onEsc?: ((...args: any[]) => any);
responsive?: boolean;
restrictFocus?: boolean;
stretch?: boolean;
target: object;
elevation?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | string;
plain?: boolean;
}
declare const Drop: React.ComponentClass<DropProps & JSX.IntrinsicElements['div']>;
export { Drop };