Skip to content

clock-6

time • watch • alarm

Created:

v0.16.21

Last changed:

v0.16.21

Contributors:

wojtekmajericfennisdanielbayley
html
<i data-lucide="clock-6"></i>
tsx
import { Clock6 } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { Clock6 } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="clock-6"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-clock-6"></div>