Add Icon
Free SVG icon from the VS Code Codicons collection. Download or copy for use in any project.
The Add 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/306981.svg" alt="Add icon" width="24" height="24">
React JSX
<img src="https://proicons.com/icon/306981.svg" alt="Add icon" width={24} height={24} />
Vue template
<img src="https://proicons.com/icon/306981.svg" alt="Add icon" :width="24" :height="24" />
CSS background
.icon-add {
background-image: url('https://proicons.com/icon/306981.svg');
background-size: contain;
background-repeat: no-repeat;
width: 24px;
height: 24px;
display: inline-block;
}
SVG markup
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8 1.5C8 1.22386 7.77614 1 7.5 1C7.22386 1 7 1.22386 7 1.5V7H1.5C1.22386 7 1 7.22386 1 7.5C1 7.77614 1.22386 8 1.5 8H7V13.5C7 13.7761 7.22386 14 7.5 14C7.77614 14 8 13.7761 8 13.5V8H13.5C13.7761 8 14 7.77614 14 7.5C14 7.22386 13.7761 7 13.5 7H8V1.5Z"/></svg>
Copied!