mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-14 21:14:15 +00:00
16 lines
409 B
JavaScript
Executable File
16 lines
409 B
JavaScript
Executable File
import React from "react"
|
|
import { LazyLoadImage } from "react-lazy-load-image-component"
|
|
|
|
import "react-lazy-load-image-component/src/effects/blur.css"
|
|
import "./index.less"
|
|
|
|
export default (props) => {
|
|
return <LazyLoadImage
|
|
src={props.src}
|
|
effect="blur"
|
|
wrapperClassName="image-wrapper"
|
|
onError={(e) => {
|
|
e.target.src = "/broken-image.svg"
|
|
}}
|
|
/>
|
|
} |