15 lines
529 B
JavaScript
15 lines
529 B
JavaScript
export default function MeetingTable({ position = [0, 0, 0] }) {
|
|
return (
|
|
<group position={position}>
|
|
<mesh castShadow receiveShadow position={[0, 0.8, 0]}>
|
|
<cylinderGeometry args={[1.55, 1.55, 0.18, 28]} />
|
|
<meshStandardMaterial color="#bf8d61" roughness={0.88} />
|
|
</mesh>
|
|
<mesh castShadow receiveShadow position={[0, 0.36, 0]}>
|
|
<cylinderGeometry args={[0.22, 0.28, 0.72, 16]} />
|
|
<meshStandardMaterial color="#8e603b" roughness={0.86} />
|
|
</mesh>
|
|
</group>
|
|
);
|
|
}
|