summaryrefslogtreecommitdiff
path: root/client/src/components/BlurryLoadImg.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-11-01 14:10:11 -0700
committerMichael Hunteman <michael@huntm.net>2024-11-01 14:10:11 -0700
commitfab698d676d43a46b0fd5df592915ca12111dbcb (patch)
tree0106ff4ac6583f0761b43474939fd2db0fbf0f76 /client/src/components/BlurryLoadImg.tsx
parent59d6e1c7470b8f544dc128825ea5ff55ac34b992 (diff)
Blurry load
Diffstat (limited to 'client/src/components/BlurryLoadImg.tsx')
-rw-r--r--client/src/components/BlurryLoadImg.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/client/src/components/BlurryLoadImg.tsx b/client/src/components/BlurryLoadImg.tsx
new file mode 100644
index 0000000..c28aa45
--- /dev/null
+++ b/client/src/components/BlurryLoadImg.tsx
@@ -0,0 +1,15 @@
+import React from 'react';
+import { ClassAttributes, ImgHTMLAttributes } from 'react';
+import { JSX } from 'react/jsx-runtime';
+import { useBlurryLoad } from '../useBlurryLoad.ts';
+
+export const BlurryLoadImg = (
+ props: JSX.IntrinsicAttributes &
+ ClassAttributes<HTMLImageElement> &
+ ImgHTMLAttributes<HTMLImageElement> & { 'data-large': string }
+) => {
+ useBlurryLoad();
+ return (
+ <img alt="" {...props} className={`blurry-load ${props.className}`}></img>
+ );
+};