Limited offer — lifetime access:$75$60

Alarm clock

SVG

Free Alarm clock SVG Icon

Download as SVG or copy the code for HTML, React, and more.

How to use

All snippets use a self-contained data URI — no external URL required.

HTML

Drop into any HTML page as a standard image element.

<img
  src="data:image/svg+xml;base64,…"
  alt="Alarm clock 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="Alarm clock icon"
  width={24}
  height={24}
/>

CSS background

Use as a background image — no external assets needed.

.icon-alarm-clock {
  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="alarm_clock" data-name="alarm clock" xmlns="http://www.w3.org/2000/svg" 
…

Related SVG icons

Calendar cross SVG icon
Calendar minus SVG icon
Calendar heart SVG icon
Calendar plus SVG icon
Calendar schedule SVG icon
Calendar search SVG icon
Calendar SVG icon
Calendar star SVG icon