car front icon
Free car front 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="m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"/>
<path d="M7 14h.01"/>
<path d="M17 14h.01"/>
<rect x="3" y="10" width="18" height="8" rx="2"/>
<path d="M5 18v2"/>
<path d="M19 18v2"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/car-front.svg"
width="24" height="24" alt="car front icon">
<!-- …or paste the raw SVG from the SVG tab -->import { CarFrontIcon } from "@softicons/react";
export default function Example() {
return <CarFrontIcon size={24} strokeWidth={2} />;
}<script setup>
import { CarFrontIcon } from "@softicons/vue";
</script>
<template>
<CarFrontIcon :size="24" :stroke-width="2" />
</template>import { CarFrontIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [CarFrontIconComponent],
template: `<car-front-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}