Skip to content

ship-wheel

steering • rudder • boat • knots • nautical mile • maritime • sailing • yacht • cruise • ocean liner • tanker • vessel • navy • trip

Created:

v0.265.0

Last changed:

v0.265.0

Contributors:

danielbayley
html
<i data-lucide="ship-wheel"></i>
tsx
import { ShipWheel } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { ShipWheel } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="ship-wheel"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-ship-wheel"></div>