Skip to content

ship-cargo

boat • knots • nautical mile • maritime • sailing • cruise • ocean liner • tanker • vessel • navy • cargo • container • freighter • freight • shipping • port • harbor • dock • logistics • import • export

Created:

v1.35.0

Last changed:

v1.35.0

Contributors:

l0uisgrangekarsa-mistmerejguddas
html
<script>
import { createIcons, ShipCargo } from 'lucide';

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

<i data-lucide="ship-cargo"></i>  
tsx
import { ShipCargo } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Ship
112
8
11