Coggle Icon
Free SVG icon from the Simple Icons collection. Download or copy for use in any project.
The Coggle 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/313936.svg" alt="Coggle icon" width="24" height="24">
React JSX
<img src="https://proicons.com/icon/313936.svg" alt="Coggle icon" width={24} height={24} />
Vue template
<img src="https://proicons.com/icon/313936.svg" alt="Coggle icon" :width="24" :height="24" />
CSS background
.icon-coggle {
background-image: url('https://proicons.com/icon/313936.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>Coggle</title><path d="M3.684 0A3.683 3.683 0 0 0 0 3.684v10.92c2.052-.535 3.606-1.577 5.158-3.13h7.367v7.368c-1.88 1.88-5.438 4.598-8.052 5.158h15.843A3.683 3.683 0 0 0 24 20.316V8.881c-1.544.537-3.087 1.575-4.63 3.119l-4.74 4.736V9.37H7.265l3.683-3.685c2.35-2.35 5.96-5.119 8.58-5.684H3.684z"/></svg>
Copied!