Sitepoint Icon
Free SVG icon from the Simple Icons collection. Download or copy for use in any project.
The Sitepoint 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/316043.svg" alt="Sitepoint icon" width="24" height="24">
React JSX
<img src="https://proicons.com/icon/316043.svg" alt="Sitepoint icon" width={24} height={24} />
Vue template
<img src="https://proicons.com/icon/316043.svg" alt="Sitepoint icon" :width="24" :height="24" />
CSS background
.icon-sitepoint {
background-image: url('https://proicons.com/icon/316043.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>SitePoint</title><path d="M2.471 10.533l1.771 1.688 5.598 5.141 2.4-2.291c.21-.297.194-.705-.046-.985L9.99 12.184l.01-.005-2.371-2.266c-.279-.314-.27-.78.021-1.079l6.39-6.076L11.146 0 2.475 8.238c-.664.633-.664 1.66 0 2.295h-.004zm19.056 2.937l-1.77-1.691-5.595-5.142-2.411 2.291c-.221.3-.207.705.045.985l2.205 1.891h-.006l2.369 2.265c.27.314.27.766-.029 1.064l-6.391 6.075L12.855 24l8.67-8.238c.664-.633.666-1.659 0-2.295l.002.003z"/></svg>
Copied!