videx-3d
Version:
React 3D component library designed for sub surface visualizations in the browser
21 lines (20 loc) • 572 B
TypeScript
/**
* Panel props
* @expand
*/
export type PanelProps = {
width?: number;
height?: number;
offset?: [number, number];
opacity?: number;
padding?: number;
origin?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
};
/**
* A simple HTML panel that can be used as an overlay on the 3d canvas.
* @see {@link OutputPanel}
* @group Components
*/
export declare const Panel: import('react').ForwardRefExoticComponent<PanelProps & {
children?: import('react').ReactNode | undefined;
} & import('react').RefAttributes<HTMLDivElement>>;