import type { Photo } from '../photo'; import ImageCaption from './components/ImageCaption'; import ImagePhotoGrid from './components/ImagePhotoGrid'; import ImageContainer from './components/ImageContainer'; import type { NextImageSize } from '@/services/next-image'; import { TbCone } from 'react-icons/tb'; import { formatFocalLength } from '@/focal'; export default function FocalLengthImageResponse({ focal, photos, width, height, fontFamily, }: { focal: number, photos: Photo[] width: NextImageSize height: number fontFamily: string }) { return ( , }}> {formatFocalLength(focal)} ); }