Skip to content

luggage

baggage • luggage • travel • suitcase

Created:

v0.56.0

Last changed:

v0.56.0

Contributors:

karsa-mistmere
html
<i data-lucide="luggage"></i>
tsx
import { Luggage } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-luggage"></div>