rsuite
Version:
A suite of react components
19 lines (18 loc) • 663 B
TypeScript
import React from 'react';
import type { WithAsProps, RsRefForwardingComponent } from '../internals/types';
export interface PopoverProps extends WithAsProps {
/** The title of the component. */
title?: React.ReactNode;
/** The component is visible by default. */
visible?: boolean;
/** The content full the container */
full?: boolean;
/** Whether show the arrow indicator */
arrow?: boolean;
}
/**
* The `Popover` component is used to display a popup window for a target component.
* @see https://rsuitejs.com/components/popover
*/
declare const Popover: RsRefForwardingComponent<'div', PopoverProps>;
export default Popover;