UNPKG

@sms-frontend/components

Version:

SMS Design React UI Library.

21 lines (20 loc) 460 B
import { CSSProperties, ReactNode } from 'react'; import { TooltipProps } from '../Tooltip'; /** * @title Popover */ export interface PopoverProps extends Omit<TooltipProps, 'mini'> { style?: CSSProperties; className?: string | string[]; /** * @zh 标题 * @en Title of the popup card */ title?: ReactNode; /** * @zh 是否禁用 * @en Whether to disabled * @version 2.11.0 */ disabled?: boolean; }