React Shimmer Effect
npm install react-shimmer-effect> Animation is about creating illustion of life.
React-Shimmer-Effect, component that simulates a shimmer effect for the children elements.More customisable is on the way.
``bash`
npm i react-shimmer-effect
`jsx
import React, { Component } from "react";
import Shimmer from "react-shimmer-effect";
import injectSheet from "react-jss";
const StyleSheet = {
container: {
border: "0px solid rgba(255, 255, 255, 1)",
boxShadow: "0px 0px 20px rgba(0, 0, 0, .1)",
borderRadius: "4px",
backgroundColor: "white",
display: "flex",
padding: "16px",
width: "200px"
},
circle: {
height: "56px",
width: "56px",
borderRadius: "50%"
},
line: {
width: "96px",
height: "8px",
alignSelf: "center",
marginLeft: "16px",
borderRadius: "8px"
}
};
class App extends Component {
render() {
const { classes } = this.props;
return (
export default injectSheet(StyleSheet)(App);
``

MIT © eTechist