Skip to content

van

minivan • cart • wagon • truck • lorry • trailer • camper • vehicle • drive • trip • journey • van • transport • carriage • delivery • travel

Created:

v0.556.0

Last changed:

v0.556.0

Contributors:

Ahmed-Dghaieskarsa-mistmere
html
<script>
import { createIcons, van } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Van
112
8
11