softicons.dev

car icon

Free car 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="M5 11l1.6-4.8A2 2 0 0 1 8.5 5h7a2 2 0 0 1 1.9 1.2L19 11"/>
  <path d="M3 17v-4a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4h-2"/>
  <path d="M7 17h10"/>
  <circle cx="7.5" cy="17.5" r="1.5"/>
  <circle cx="16.5" cy="17.5" r="1.5"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/car.svg"
     width="24" height="24" alt="car icon">

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

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

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

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