nice-ui
Version:
React design system, components, and utilities
8 lines (7 loc) • 323 B
TypeScript
import * as React from 'react';
import { PopupControlledProps } from './PopupControlled';
import type { AnchorPointComputeSpec } from '../../utils/popup/types';
export interface PopupProps extends Omit<PopupControlledProps, 'open'> {
anchor?: AnchorPointComputeSpec;
}
export declare const Popup: React.FC<PopupProps>;