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