rsuite
Version:
A suite of react components
15 lines (10 loc) • 343 B
TypeScript
import * as React from 'react';
import { StandardProps } from '../@types/common';
export interface PopoverProps extends StandardProps {
/** Primary content */
children?: React.ReactNode;
/** The title of the component. */
title?: React.ReactNode;
}
declare const Popover: React.ComponentType<PopoverProps>;
export default Popover;