Vercel/src/photo/PhotoSmall.tsx
2024-02-29 22:47:34 -06:00

45 lines
989 B
TypeScript

import { Photo, titleForPhoto } from '.';
import ImageSmall from '@/components/ImageSmall';
import Link from 'next/link';
import { clsx } from 'clsx/lite';
import { pathForPhoto } from '@/site/paths';
import { Camera } from '@/camera';
import { FilmSimulation } from '@/simulation';
export default function PhotoSmall({
photo,
tag,
camera,
simulation,
selected,
priority,
}: {
photo: Photo
tag?: string
camera?: Camera
simulation?: FilmSimulation
selected?: boolean
priority?: boolean
}) {
return (
<Link
href={pathForPhoto(photo, tag, camera, simulation)}
className={clsx(
'flex w-full h-full',
'active:brightness-75',
selected && 'brightness-50',
)}
prefetch={false}
>
<ImageSmall
src={photo.url}
aspectRatio={photo.aspectRatio}
blurData={photo.blurData}
className="w-full"
alt={titleForPhoto(photo)}
priority={priority}
/>
</Link>
);
};