softicons.dev

bus front icon

Free bus 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">
  <rect x="4" y="3" width="16" height="16" rx="2"/>
  <path d="M4 6 2 7"/>
  <path d="M10 6h4"/>
  <path d="m22 7-2-1"/>
  <path d="M4 11h16"/>
  <path d="M8 15h.01"/>
  <path d="M16 15h.01"/>
  <path d="M6 19v2"/>
  <path d="M18 21v-2"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/bus-front.svg"
     width="24" height="24" alt="bus front icon">

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

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

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

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