@vctrl/viewer
Version:
vctrl/viewer is a React component library for rendering and interacting with 3D models. It's part of the vectreal ecosystem and is designed to work seamlessly with the vctrl/hooks package for model loading and management.
14 lines (13 loc) • 490 B
TypeScript
export interface InfoPopoverProps {
/**
* Whether to add the info popover and it's trigger to the viewer.
*/
showInfo?: boolean;
/**
* The content to display in the popover. Can be a JSX element or a string.
*/
content?: JSX.Element | string;
}
export declare const defaultInfoPopoverProps: InfoPopoverProps;
declare const InfoPopover: (props: InfoPopoverProps) => false | import("react/jsx-runtime").JSX.Element | undefined;
export default InfoPopover;