Free Security camera SVG Icon
Download as SVG or copy the code for HTML, React, and more.
How to use
All snippets below use a self-contained data URI ā no external URL required. Copy and paste into your project.
HTML
Drop into any HTML page as a standard image element.
<img
src="data:image/svg+xml;base64,ā¦"
alt="Security camera icon"
width="24"
height="24"
/>React / Next.js
Use in any React component or Next.js page.
<img
src="data:image/svg+xml;base64,ā¦"
alt="Security camera icon"
width={24}
height={24}
/>CSS background
Use as a background image ā no external assets needed.
.icon-security-camera {
background-image: url("data:image/svg+xml;base64,ā¦");
background-size: contain;
background-repeat: no-repeat;
width: 24px;
height: 24px;
}Inline SVG
Paste directly into HTML for full CSS control over strokes, fills, and colors.
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 4
ā¦Related SVG icons