clock-9
  
  html
  
<i data-lucide="clock-9"></i>
  
  tsx
  
import { Clock9 } from 'lucide-react';
const App = () => {
  return (
    <Clock9 />
  );
};
export default App;
  
  vue
  
<script setup>
  import { Clock9 } from 'lucide-vue-next';
</script>
<template>
  <Clock9 />
</template>
  
  svelte
  
<script>
import { Clock9 } from 'lucide-svelte';
</script>
<Clock9 />
  
  tsx
  
import { Clock9 } from 'lucide-preact';
const App = () => {
  return (
    <Clock9 />
  );
};
export default App;
  
  tsx
  
import { Clock9 } from 'lucide-solid';
const App = () => {
  return (
    <Clock9 />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, Clock9 } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ Clock9 })
  ],
})
// app.component.html
<lucide-icon name="clock-9"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-clock-9"></div>


