Skip to content

mail-clock

email • message • letter • unread • scheduled • delayed • sendlater • delivery • reminder • pending • outgoing • timer

Created:

v1.34.0

Last changed:

v1.34.0

Contributors:

colebemiskarsa-mistmereericfennis
html
<script>
import { createIcons, MailClock } from 'lucide';

createIcons({
  icons: {
    MailClock
  }
});
</script>

<i data-lucide="mail-clock"></i>  
tsx
import { MailClock } from 'lucide-react';

const App = () => {
  return (
    <MailClock />
  );
};

export default App;
vue
<script setup>
import { MailClock } from '@lucide/vue';
</script>

<template>
  <MailClock />
</template>
svelte
<script>
import { MailClock } from 'lucide-svelte';
</script>

<MailClock />
tsx
import { MailClock } from 'lucide-preact';

const App = () => {
  return (
    <MailClock />
  );
};

export default App;
tsx
import { MailClock } from 'lucide-solid';

const App = () => {
  return (
    <MailClock />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, MailClock } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ MailClock })
  ],
})

// app.component.html
<lucide-icon name="mail-clock"></lucide-icon>
html
<div class="icon-mail-clock"></div>

See this icon in action

Bug
Feature
Mail
112
8
11