traffic light icon
traffic-light from Huge Icons by Hugeicons · Stroke · MIT Free for personal and commercial use.
- Name
- traffic-light
- Set
- Huge Icons
- Style
- Stroke
- Viewbox
- 24×24
- License
- MIT
The same icon in other sets
Related icons in Huge Icons
Use the traffic light icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-width="1.5"><path d="M13.5 6.5a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0Z"/><path d="M12 17c-1.87 0-2.804 0-3.5-.402A3 3 0 0 1 7.402 15.5C7 14.804 7 13.87 7 12V7c0-1.87 0-2.804.402-3.5A3 3 0 0 1 8.5 2.402C9.196 2 10.13 2 12 2s2.804 0 3.5.402A3 3 0 0 1 16.598 3.5C17 4.196 17 5.13 17 7v5c0 1.87 0 2.804-.402 3.5a3 3 0 0 1-1.098 1.098C14.804 17 13.87 17 12 17Z"/><path stroke-linecap="round" stroke-linejoin="round" d="M12 17v5M7 8l-1.044-.877C4.641 6.02 3.984 5.468 4 4.966c.007-.204.073-.4.189-.564C4.475 4 5.316 4 7 4m10 4l1.044-.877C19.358 6.02 20.016 5.468 20 4.966a1.03 1.03 0 0 0-.189-.564C19.525 4 18.684 4 17 4m0 11l1.044-.876c1.314-1.104 1.972-1.657 1.956-2.158a1.03 1.03 0 0 0-.189-.564C19.525 11 18.684 11 17 11M7 15l-1.044-.876C4.641 13.02 3.984 12.467 4 11.966c.007-.204.073-.4.189-.564C4.475 11 5.316 11 7 11"/></g></svg>
React
import type { SVGProps } from "react";
export function HugeiconsTrafficLight(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" strokeWidth="1.5"><path d="M13.5 6.5a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0Z"/><path d="M12 17c-1.87 0-2.804 0-3.5-.402A3 3 0 0 1 7.402 15.5C7 14.804 7 13.87 7 12V7c0-1.87 0-2.804.402-3.5A3 3 0 0 1 8.5 2.402C9.196 2 10.13 2 12 2s2.804 0 3.5.402A3 3 0 0 1 16.598 3.5C17 4.196 17 5.13 17 7v5c0 1.87 0 2.804-.402 3.5a3 3 0 0 1-1.098 1.098C14.804 17 13.87 17 12 17Z"/><path strokeLinecap="round" strokeLinejoin="round" d="M12 17v5M7 8l-1.044-.877C4.641 6.02 3.984 5.468 4 4.966c.007-.204.073-.4.189-.564C4.475 4 5.316 4 7 4m10 4l1.044-.877C19.358 6.02 20.016 5.468 20 4.966a1.03 1.03 0 0 0-.189-.564C19.525 4 18.684 4 17 4m0 11l1.044-.876c1.314-1.104 1.972-1.657 1.956-2.158a1.03 1.03 0 0 0-.189-.564C19.525 11 18.684 11 17 11M7 15l-1.044-.876C4.641 13.02 3.984 12.467 4 11.966c.007-.204.073-.4.189-.564C4.475 11 5.316 11 7 11"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-width="1.5"><path d="M13.5 6.5a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0Z"/><path d="M12 17c-1.87 0-2.804 0-3.5-.402A3 3 0 0 1 7.402 15.5C7 14.804 7 13.87 7 12V7c0-1.87 0-2.804.402-3.5A3 3 0 0 1 8.5 2.402C9.196 2 10.13 2 12 2s2.804 0 3.5.402A3 3 0 0 1 16.598 3.5C17 4.196 17 5.13 17 7v5c0 1.87 0 2.804-.402 3.5a3 3 0 0 1-1.098 1.098C14.804 17 13.87 17 12 17Z"/><path stroke-linecap="round" stroke-linejoin="round" d="M12 17v5M7 8l-1.044-.877C4.641 6.02 3.984 5.468 4 4.966c.007-.204.073-.4.189-.564C4.475 4 5.316 4 7 4m10 4l1.044-.877C19.358 6.02 20.016 5.468 20 4.966a1.03 1.03 0 0 0-.189-.564C19.525 4 18.684 4 17 4m0 11l1.044-.876c1.314-1.104 1.972-1.657 1.956-2.158a1.03 1.03 0 0 0-.189-.564C19.525 11 18.684 11 17 11M7 15l-1.044-.876C4.641 13.02 3.984 12.467 4 11.966c.007-.204.073-.4.189-.564C4.475 11 5.316 11 7 11"/></g></svg> </template>
CSS
.icon-traffic-light {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22M13.5%206.5a1.5%201.5%200%201%201-3%200a1.5%201.5%200%200%201%203%200Zm0%206a1.5%201.5%200%201%201-3%200a1.5%201.5%200%200%201%203%200Z%22%2F%3E%3Cpath%20d%3D%22M12%2017c-1.87%200-2.804%200-3.5-.402A3%203%200%200%201%207.402%2015.5C7%2014.804%207%2013.87%207%2012V7c0-1.87%200-2.804.402-3.5A3%203%200%200%201%208.5%202.402C9.196%202%2010.13%202%2012%202s2.804%200%203.5.402A3%203%200%200%201%2016.598%203.5C17%204.196%2017%205.13%2017%207v5c0%201.87%200%202.804-.402%203.5a3%203%200%200%201-1.098%201.098C14.804%2017%2013.87%2017%2012%2017Z%22%2F%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M12%2017v5M7%208l-1.044-.877C4.641%206.02%203.984%205.468%204%204.966c.007-.204.073-.4.189-.564C4.475%204%205.316%204%207%204m10%204l1.044-.877C19.358%206.02%2020.016%205.468%2020%204.966a1.03%201.03%200%200%200-.189-.564C19.525%204%2018.684%204%2017%204m0%2011l1.044-.876c1.314-1.104%201.972-1.657%201.956-2.158a1.03%201.03%200%200%200-.189-.564C19.525%2011%2018.684%2011%2017%2011M7%2015l-1.044-.876C4.641%2013.02%203.984%2012.467%204%2011.966c.007-.204.073-.4.189-.564C4.475%2011%205.316%2011%207%2011%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22M13.5%206.5a1.5%201.5%200%201%201-3%200a1.5%201.5%200%200%201%203%200Zm0%206a1.5%201.5%200%201%201-3%200a1.5%201.5%200%200%201%203%200Z%22%2F%3E%3Cpath%20d%3D%22M12%2017c-1.87%200-2.804%200-3.5-.402A3%203%200%200%201%207.402%2015.5C7%2014.804%207%2013.87%207%2012V7c0-1.87%200-2.804.402-3.5A3%203%200%200%201%208.5%202.402C9.196%202%2010.13%202%2012%202s2.804%200%203.5.402A3%203%200%200%201%2016.598%203.5C17%204.196%2017%205.13%2017%207v5c0%201.87%200%202.804-.402%203.5a3%203%200%200%201-1.098%201.098C14.804%2017%2013.87%2017%2012%2017Z%22%2F%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M12%2017v5M7%208l-1.044-.877C4.641%206.02%203.984%205.468%204%204.966c.007-.204.073-.4.189-.564C4.475%204%205.316%204%207%204m10%204l1.044-.877C19.358%206.02%2020.016%205.468%2020%204.966a1.03%201.03%200%200%200-.189-.564C19.525%204%2018.684%204%2017%204m0%2011l1.044-.876c1.314-1.104%201.972-1.657%201.956-2.158a1.03%201.03%200%200%200-.189-.564C19.525%2011%2018.684%2011%2017%2011M7%2015l-1.044-.876C4.641%2013.02%203.984%2012.467%204%2011.966c.007-.204.073-.4.189-.564C4.475%2011%205.316%2011%207%2011%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/hugeicons/traffic-light.svg?color=%231a73e8&size=48