ship wheel icon
Free ship wheel 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">
<circle cx="12" cy="12" r="8"/>
<circle cx="12" cy="12" r="2"/>
<path d="M12 2v4"/>
<path d="M12 18v4"/>
<path d="m4.93 4.93 2.83 2.83"/>
<path d="m16.24 16.24 2.83 2.83"/>
<path d="M2 12h4"/>
<path d="M18 12h4"/>
<path d="m4.93 19.07 2.83-2.83"/>
<path d="m16.24 7.76 2.83-2.83"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/ship-wheel.svg"
width="24" height="24" alt="ship wheel icon">
<!-- …or paste the raw SVG from the SVG tab -->import { ShipWheelIcon } from "@softicons/react";
export default function Example() {
return <ShipWheelIcon size={24} strokeWidth={2} />;
}<script setup>
import { ShipWheelIcon } from "@softicons/vue";
</script>
<template>
<ShipWheelIcon :size="24" :stroke-width="2" />
</template>import { ShipWheelIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [ShipWheelIconComponent],
template: `<ship-wheel-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}