aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Content/ImageTag.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/components/Content/ImageTag.tsx')
-rw-r--r--webui/src/components/Content/ImageTag.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/components/Content/ImageTag.tsx b/webui/src/components/Content/ImageTag.tsx
index 29b01da3..94004f0e 100644
--- a/webui/src/components/Content/ImageTag.tsx
+++ b/webui/src/components/Content/ImageTag.tsx
@@ -8,10 +8,10 @@ const useStyles = makeStyles({
},
});
-const ImageTag = ({
+const ImageTag: React.FC<React.ImgHTMLAttributes<HTMLImageElement>> = ({
alt,
...props
-}: React.ImgHTMLAttributes<HTMLImageElement>) => {
+}) => {
const classes = useStyles();
return (
<>