softicons.dev

alarm clock check icon

Free alarm clock check SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface set.

Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
     fill="none" stroke="currentColor" stroke-width="2"
     stroke-linecap="round" stroke-linejoin="round">
  <circle cx="12" cy="13" r="8"/>
  <path d="M5 3 2 6"/>
  <path d="m22 6-3-3"/>
  <path d="m6 19-2 2"/>
  <path d="m18 19 2 2"/>
  <path d="m9 13 2 2 4-4"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/alarm-clock-check.svg"
     width="24" height="24" alt="alarm clock check icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { AlarmClockCheckIcon } from "@softicons/react";

export default function Example() {
  return <AlarmClockCheckIcon size={24} strokeWidth={2} />;
}
<script setup>
import { AlarmClockCheckIcon } from "@softicons/vue";
</script>

<template>
  <AlarmClockCheckIcon :size="24" :stroke-width="2" />
</template>
import { AlarmClockCheckIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [AlarmClockCheckIconComponent],
  template: `<alarm-clock-check-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}