Skip to content

bridge

overpass • cross over • traverse • viaduct • suspension • infrastructure • transportation • crossing • road • river • gate • golden • travel • landmark • route • maritime • clearance

Created:

v1.40.0

Last changed:

v1.40.0

Contributors:

Nykoulajamiemlaw
html
<script>
import { createIcons, Bridge } from 'lucide';

createIcons({
  icons: {
    Bridge
  }
});
</script>

<i data-lucide="bridge"></i>  
tsx
import { Bridge } from 'lucide-react';

const App = () => {
  return (
    <Bridge />
  );
};

export default App;
vue
<script setup>
import { Bridge } from '@lucide/vue';
</script>

<template>
  <Bridge />
</template>
svelte
<script>
import { Bridge } from 'lucide-svelte';
</script>

<Bridge />
tsx
import { Bridge } from 'lucide-preact';

const App = () => {
  return (
    <Bridge />
  );
};

export default App;
tsx
import { Bridge } from 'lucide-solid';

const App = () => {
  return (
    <Bridge />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Bridge } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Bridge })
  ],
})

// app.component.html
<lucide-icon name="bridge"></lucide-icon>
html
<div class="icon-bridge"></div>

See this icon in action

Bug
Feature
Bridge
112
8
11