@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines (13 loc) • 459 B
text/typescript
import { PopoverProps } from "./type.mjs";
import "react";
//#region src/Popover/groupContext.d.ts
type PopoverGroupSharedProps = Omit<PopoverProps, 'children' | 'content' | 'defaultOpen' | 'open' | 'ref'> & {
/**
* @description Whether to enable content layout animation when switching triggers
* @default false
*/
contentLayoutAnimation?: boolean;
};
//#endregion
export { PopoverGroupSharedProps };
//# sourceMappingURL=groupContext.d.mts.map