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