Gravatar Icon
Free SVG icon from the Simple Icons collection. Download or copy for use in any project.
The Gravatar icon is available as a free SVG and is ready to drop into any web or app project.
img tag
<img src="https://proicons.com/icon/314570.svg" alt="Gravatar icon" width="24" height="24">
React JSX
<img src="https://proicons.com/icon/314570.svg" alt="Gravatar icon" width={24} height={24} />
Vue template
<img src="https://proicons.com/icon/314570.svg" alt="Gravatar icon" :width="24" :height="24" />
CSS background
.icon-gravatar {
background-image: url('https://proicons.com/icon/314570.svg');
background-size: contain;
background-repeat: no-repeat;
width: 24px;
height: 24px;
display: inline-block;
}
SVG markup
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Gravatar</title><path d="M12 0c-1.326 0-2.4 1.074-2.4 2.4v8.4c0 1.324 1.074 2.398 2.4 2.398s2.4-1.074 2.4-2.398V5.21c2.795.99 4.799 3.654 4.799 6.789 0 3.975-3.225 7.199-7.199 7.199S4.801 15.975 4.801 12c0-1.989.805-3.789 2.108-5.091.938-.938.938-2.458 0-3.396s-2.458-.938-3.396 0C1.344 5.686 0 8.686 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0"/></svg>
Copied!