React component to display user avatars from Gravatar or initials from UI-Avatars.com
npm install --save react-gravatar-or-initials
View example here
import React, { Component } from 'react'
import Avatar from 'react-gravatar-or-initials'
import 'react-gravatar-or-initials/dist/index.css'
class Example extends Component {
render() {
return (
<Avatar
email='hello@snehanshu.com'
name='Snehanshu Phukon'
size={120}
fontSize={0.5}
initialsLength={2}
color='8b5d5d'
bgColor='f0e9e9'
uppercase
/>
)
}
}
View example here
MIT © pSnehanshu