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

