@playcanvas/blocks
Version:
High level abstract 3D primitives for React
18 lines (17 loc) • 487 B
TypeScript
type ControlsProps = {
/**
* The className of the controls
*/
className?: string;
/**
* When enabled, the controls will be hidden when the user is not interacting with the asset.
* @defaultValue false
*/
autoHide?: boolean;
/**
* The children of the controls
*/
children: React.ReactNode;
};
export declare function Controls({ className, autoHide, children }: ControlsProps): import("react/jsx-runtime").JSX.Element;
export {};