import { Camera, Aperture, Clock, Hash, Box, Layers } from 'lucide-react'; export default function MetadataPanel({ worldData }) { if (!worldData) return null; const stats = [ { icon: Box, label: 'Points', value: worldData.pointCount?.toLocaleString() || '50,000' }, { icon: Layers, label: 'Resolution', value: worldData.resolution || '8K' }, { icon: Aperture, label: 'Aperture', value: worldData.aperture || 'f/2.8' }, { icon: Clock, label: 'Shutter', value: worldData.shutterSpeed || '1/60s' }, { icon: Hash, label: 'ISO', value: worldData.iso || '400' }, ]; return (

Capture Metadata

{stats.map((stat) => (
{stat.label}

{stat.value}

))}

360° Capture Info

Stitching Software {worldData.software || 'Insta360 Studio'}
Projection Equirectangular
Format .ply Gaussian Splat
); }