UNPKG

hpg-r3f-model-scene

Version:

Pretty Footer react component used in ant.design

11 lines (10 loc) 359 B
import React from 'react'; import type { INodeMaterial } from '../../interface'; import type { iNode } from '../../utils'; export interface EarthProps { material: INodeMaterial; materialChange?: (inode: iNode) => void; exportScene?: (renderInfo: any) => void; } declare const Earth: (props: EarthProps) => React.JSX.Element; export default Earth;