traffic cone icon
Free traffic cone 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="M9.3 6.2a4.55 4.55 0 0 0 5.4 0"/>
<path d="M7.9 10.7c.9.8 2.4 1.3 4.1 1.3s3.2-.5 4.1-1.3"/>
<path d="M13.9 3.5a1.93 1.93 0 0 0-3.8-.1l-3 10c-.1.2-.1.4-.1.6 0 1.7 2.2 3 5 3s5-1.3 5-3c0-.2 0-.4-.1-.5Z"/>
<path d="m7.5 12.2-4.7 2.7c-.5.3-.8.7-.8 1.1 0 1.7 3.6 3 8 3s8-1.3 8-3c0-.4-.3-.8-.8-1.1l-4.7-2.7"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/traffic-cone.svg"
width="24" height="24" alt="traffic cone icon">
<!-- …or paste the raw SVG from the SVG tab -->import { TrafficConeIcon } from "@softicons/react";
export default function Example() {
return <TrafficConeIcon size={24} strokeWidth={2} />;
}<script setup>
import { TrafficConeIcon } from "@softicons/vue";
</script>
<template>
<TrafficConeIcon :size="24" :stroke-width="2" />
</template>import { TrafficConeIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [TrafficConeIconComponent],
template: `<traffic-cone-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}