@geist-ui/react
Version:
Modern and minimalist React UI library.
14 lines (13 loc) • 536 B
TypeScript
import React from 'react';
interface Props {
line?: boolean;
title?: boolean;
disableAutoClose?: boolean;
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type PopoverItemProps = Props & NativeAttrs;
declare const PopoverItem: React.ForwardRefExoticComponent<Props & NativeAttrs & {
children?: React.ReactNode;
} & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>;
export default PopoverItem;