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

