softicons.dev

caravan icon

Free caravan SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons commerce set.

Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
     fill="none" stroke="currentColor" stroke-width="2"
     stroke-linecap="round" stroke-linejoin="round">
  <path d="M2 9a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v8h3v-2.5L20 11h-3"/>
  <rect x="5" y="10" width="5" height="4" rx="1"/>
  <line x1="14" y1="10" x2="14" y2="14"/>
  <path d="M2 17h7"/>
  <path d="M13 17h9"/>
  <circle cx="11" cy="17" r="2"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/caravan.svg"
     width="24" height="24" alt="caravan icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { CaravanIcon } from "@softicons/react";

export default function Example() {
  return <CaravanIcon size={24} strokeWidth={2} />;
}
<script setup>
import { CaravanIcon } from "@softicons/vue";
</script>

<template>
  <CaravanIcon :size="24" :stroke-width="2" />
</template>
import { CaravanIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [CaravanIconComponent],
  template: `<caravan-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}