AVIS / frontend /src /components /violation /AnnotatedImage.jsx
X2-0's picture
HF Clean Deploy
1c0c94d
Raw
History Blame Contribute Delete
327 Bytes
// Server-rendered annotated evidence (boxes coloured by disposition). Cache-busted.
export default function AnnotatedImage({ url, alt = 'annotated evidence' }) {
if (!url) return null
const src = `${url}${url.includes('?') ? '&' : '?'}t=${encodeURIComponent(url)}`
return <img className="annot" src={src} alt={alt} />
}