Skip to content

landmark

bank • building • capitol • finance • money

Created:

v0.16.2

Last changed:

v0.133.0

Contributors:

conniumericfennis
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>