mirror of https://github.com/usememos/memos.git
25 lines
554 B
TypeScript
25 lines
554 B
TypeScript
import showPreviewImageDialog from "./PreviewImageDialog";
|
|
import "../less/image.less";
|
|
|
|
interface Props {
|
|
imgUrls: string[];
|
|
index: number;
|
|
className?: string;
|
|
}
|
|
|
|
const Image: React.FC<Props> = (props: Props) => {
|
|
const { className, imgUrls, index } = props;
|
|
|
|
const handleImageClick = () => {
|
|
showPreviewImageDialog(imgUrls, index);
|
|
};
|
|
|
|
return (
|
|
<div className={"image-container " + className} onClick={handleImageClick}>
|
|
<img src={imgUrls[index]} decoding="async" loading="lazy" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Image;
|