@remba/image-glow
v1.0.5
Published
A React component for creating glowing image hover effect using background-image css property.
Downloads
163
Maintainers
Readme
React Image Glow [:Hover]
A React component for creating glowing image hover effect using background-image css property.
Installation
npm install @remba/image-glow
Usage
import ImageGlow from "@remba/image-glow";
function App() {
return (
<ImageGlow
url="https://example.com/image.jpg"
size={1}
shadowSize={0.5}
blurAmount={4}
/>
);
}