delivery truck emoji
delivery-truck from OpenMoji by OpenMoji · Default · Travel Places · CC-BY-SA-4.0 Attribution required.
- Name
- delivery-truck
- Set
- OpenMoji
- Style
- Default
- Category
- Travel Places
- Viewbox
- 72×72
- License
- CC BY-SA 4.0
The same emoji in other sets
More travel places icons from OpenMoji
Use the delivery truck emoji
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 72 72"><path fill="#fff" d="M61.337 52.959c.552-.014.85-1.022.85-1.022s2 .126 2.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99 0 0 0-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0 0-4.641 1.204-12.75 6.876c0 0-5.5 2.25-7.875 3.874S7 48.438 7 48.438s.25 3 .75 3.938c.076.143.398 1.232 2.582 1.28"/><path fill="#3f3f3f" d="M64.533 48.917h-9.318v.802a3.245 3.245 0 0 0 3.246 3.246h3.106c.985 0 1.917-.448 2.532-1.216L65 50.625zm-47.084.783H8.13v2.538l1.964 1.418h5.946l1.875-2.171z"/><circle cx="17.132" cy="52.702" r="3" fill="#9b9b9a"/><circle cx="55.215" cy="52.702" r="3" fill="#9b9b9a"/><path fill="#3f3f3f" d="M33.917 35.083v6.667l-14.167.396s6.917-7.896 14.167-7.063"/><path fill="#d0cfce" d="M14.415 45.721s.085-1.078-1.29-1.203s-3.898 1.203-4.038 1.563s-.35 1.432.28 1.625c.631.192 5.048-1.985 5.048-1.985"/><path fill="#d0cfce" d="M13.465 45.633s-1.965 1.66-3.577 1.918"/><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M22.834 52.672c8.269-.073 17.415-.264 25.334-.434"/><circle cx="17.132" cy="52.702" r="3"/><circle cx="55.215" cy="52.702" r="3"/><path stroke-linecap="round" stroke-linejoin="round" d="M33.917 36.083v5.667l-13.417.917m3.583 6.416l25-1m-35.618-2.45s-1.965 1.66-3.577 1.918"/><path stroke-linecap="round" stroke-linejoin="round" d="m61.337 51.959l.85-.022s2 .126 2.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99 0 0 0-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0 0-4.641 1.204-12.75 6.876c0 0-5.5 2.25-7.875 3.874S7 48.438 7 48.438s.25 3 .75 3.938c.076.143.398.232 2.582.28"/></g></svg>
React
import type { SVGProps } from "react";
export function OpenmojiDeliveryTruck(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 72 72"><path fill="#fff" d="M61.337 52.959c.552-.014.85-1.022.85-1.022s2 .126 2.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99 0 0 0-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0 0-4.641 1.204-12.75 6.876c0 0-5.5 2.25-7.875 3.874S7 48.438 7 48.438s.25 3 .75 3.938c.076.143.398 1.232 2.582 1.28"/><path fill="#3f3f3f" d="M64.533 48.917h-9.318v.802a3.245 3.245 0 0 0 3.246 3.246h3.106c.985 0 1.917-.448 2.532-1.216L65 50.625zm-47.084.783H8.13v2.538l1.964 1.418h5.946l1.875-2.171z"/><circle cx="17.132" cy="52.702" r="3" fill="#9b9b9a"/><circle cx="55.215" cy="52.702" r="3" fill="#9b9b9a"/><path fill="#3f3f3f" d="M33.917 35.083v6.667l-14.167.396s6.917-7.896 14.167-7.063"/><path fill="#d0cfce" d="M14.415 45.721s.085-1.078-1.29-1.203s-3.898 1.203-4.038 1.563s-.35 1.432.28 1.625c.631.192 5.048-1.985 5.048-1.985"/><path fill="#d0cfce" d="M13.465 45.633s-1.965 1.66-3.577 1.918"/><g fill="none" stroke="#000" strokeMiterlimit="10" strokeWidth="2"><path strokeLinecap="round" strokeLinejoin="round" d="M22.834 52.672c8.269-.073 17.415-.264 25.334-.434"/><circle cx="17.132" cy="52.702" r="3"/><circle cx="55.215" cy="52.702" r="3"/><path strokeLinecap="round" strokeLinejoin="round" d="M33.917 36.083v5.667l-13.417.917m3.583 6.416l25-1m-35.618-2.45s-1.965 1.66-3.577 1.918"/><path strokeLinecap="round" strokeLinejoin="round" d="m61.337 51.959l.85-.022s2 .126 2.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99 0 0 0-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0 0-4.641 1.204-12.75 6.876c0 0-5.5 2.25-7.875 3.874S7 48.438 7 48.438s.25 3 .75 3.938c.076.143.398.232 2.582.28"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 72 72"><path fill="#fff" d="M61.337 52.959c.552-.014.85-1.022.85-1.022s2 .126 2.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99 0 0 0-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0 0-4.641 1.204-12.75 6.876c0 0-5.5 2.25-7.875 3.874S7 48.438 7 48.438s.25 3 .75 3.938c.076.143.398 1.232 2.582 1.28"/><path fill="#3f3f3f" d="M64.533 48.917h-9.318v.802a3.245 3.245 0 0 0 3.246 3.246h3.106c.985 0 1.917-.448 2.532-1.216L65 50.625zm-47.084.783H8.13v2.538l1.964 1.418h5.946l1.875-2.171z"/><circle cx="17.132" cy="52.702" r="3" fill="#9b9b9a"/><circle cx="55.215" cy="52.702" r="3" fill="#9b9b9a"/><path fill="#3f3f3f" d="M33.917 35.083v6.667l-14.167.396s6.917-7.896 14.167-7.063"/><path fill="#d0cfce" d="M14.415 45.721s.085-1.078-1.29-1.203s-3.898 1.203-4.038 1.563s-.35 1.432.28 1.625c.631.192 5.048-1.985 5.048-1.985"/><path fill="#d0cfce" d="M13.465 45.633s-1.965 1.66-3.577 1.918"/><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M22.834 52.672c8.269-.073 17.415-.264 25.334-.434"/><circle cx="17.132" cy="52.702" r="3"/><circle cx="55.215" cy="52.702" r="3"/><path stroke-linecap="round" stroke-linejoin="round" d="M33.917 36.083v5.667l-13.417.917m3.583 6.416l25-1m-35.618-2.45s-1.965 1.66-3.577 1.918"/><path stroke-linecap="round" stroke-linejoin="round" d="m61.337 51.959l.85-.022s2 .126 2.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99 0 0 0-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0 0-4.641 1.204-12.75 6.876c0 0-5.5 2.25-7.875 3.874S7 48.438 7 48.438s.25 3 .75 3.938c.076.143.398.232 2.582.28"/></g></svg> </template>
CSS
.icon-delivery-truck {
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%2072%2072%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M61.337%2052.959c.552-.014.85-1.022.85-1.022s2%20.126%202.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99%200%200%200-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0%200-4.641%201.204-12.75%206.876c0%200-5.5%202.25-7.875%203.874S7%2048.438%207%2048.438s.25%203%20.75%203.938c.076.143.398%201.232%202.582%201.28%22%2F%3E%3Cpath%20fill%3D%22%233f3f3f%22%20d%3D%22M64.533%2048.917h-9.318v.802a3.245%203.245%200%200%200%203.246%203.246h3.106c.985%200%201.917-.448%202.532-1.216L65%2050.625zm-47.084.783H8.13v2.538l1.964%201.418h5.946l1.875-2.171z%22%2F%3E%3Ccircle%20cx%3D%2217.132%22%20cy%3D%2252.702%22%20r%3D%223%22%20fill%3D%22%239b9b9a%22%2F%3E%3Ccircle%20cx%3D%2255.215%22%20cy%3D%2252.702%22%20r%3D%223%22%20fill%3D%22%239b9b9a%22%2F%3E%3Cpath%20fill%3D%22%233f3f3f%22%20d%3D%22M33.917%2035.083v6.667l-14.167.396s6.917-7.896%2014.167-7.063%22%2F%3E%3Cpath%20fill%3D%22%23d0cfce%22%20d%3D%22M14.415%2045.721s.085-1.078-1.29-1.203s-3.898%201.203-4.038%201.563s-.35%201.432.28%201.625c.631.192%205.048-1.985%205.048-1.985%22%2F%3E%3Cpath%20fill%3D%22%23d0cfce%22%20d%3D%22M13.465%2045.633s-1.965%201.66-3.577%201.918%22%2F%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M22.834%2052.672c8.269-.073%2017.415-.264%2025.334-.434%22%2F%3E%3Ccircle%20cx%3D%2217.132%22%20cy%3D%2252.702%22%20r%3D%223%22%2F%3E%3Ccircle%20cx%3D%2255.215%22%20cy%3D%2252.702%22%20r%3D%223%22%2F%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M33.917%2036.083v5.667l-13.417.917m3.583%206.416l25-1m-35.618-2.45s-1.965%201.66-3.577%201.918%22%2F%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22m61.337%2051.959l.85-.022s2%20.126%202.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99%200%200%200-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0%200-4.641%201.204-12.75%206.876c0%200-5.5%202.25-7.875%203.874S7%2048.438%207%2048.438s.25%203%20.75%203.938c.076.143.398.232%202.582.28%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%2072%2072%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M61.337%2052.959c.552-.014.85-1.022.85-1.022s2%20.126%202.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99%200%200%200-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0%200-4.641%201.204-12.75%206.876c0%200-5.5%202.25-7.875%203.874S7%2048.438%207%2048.438s.25%203%20.75%203.938c.076.143.398%201.232%202.582%201.28%22%2F%3E%3Cpath%20fill%3D%22%233f3f3f%22%20d%3D%22M64.533%2048.917h-9.318v.802a3.245%203.245%200%200%200%203.246%203.246h3.106c.985%200%201.917-.448%202.532-1.216L65%2050.625zm-47.084.783H8.13v2.538l1.964%201.418h5.946l1.875-2.171z%22%2F%3E%3Ccircle%20cx%3D%2217.132%22%20cy%3D%2252.702%22%20r%3D%223%22%20fill%3D%22%239b9b9a%22%2F%3E%3Ccircle%20cx%3D%2255.215%22%20cy%3D%2252.702%22%20r%3D%223%22%20fill%3D%22%239b9b9a%22%2F%3E%3Cpath%20fill%3D%22%233f3f3f%22%20d%3D%22M33.917%2035.083v6.667l-14.167.396s6.917-7.896%2014.167-7.063%22%2F%3E%3Cpath%20fill%3D%22%23d0cfce%22%20d%3D%22M14.415%2045.721s.085-1.078-1.29-1.203s-3.898%201.203-4.038%201.563s-.35%201.432.28%201.625c.631.192%205.048-1.985%205.048-1.985%22%2F%3E%3Cpath%20fill%3D%22%23d0cfce%22%20d%3D%22M13.465%2045.633s-1.965%201.66-3.577%201.918%22%2F%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M22.834%2052.672c8.269-.073%2017.415-.264%2025.334-.434%22%2F%3E%3Ccircle%20cx%3D%2217.132%22%20cy%3D%2252.702%22%20r%3D%223%22%2F%3E%3Ccircle%20cx%3D%2255.215%22%20cy%3D%2252.702%22%20r%3D%223%22%2F%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M33.917%2036.083v5.667l-13.417.917m3.583%206.416l25-1m-35.618-2.45s-1.965%201.66-3.577%201.918%22%2F%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22m61.337%2051.959l.85-.022s2%20.126%202.313-1.187c.041-.174.288-13.79-1.529-17.571a.99.99%200%200%200-.78-.552c-3.042-.36-19.434-1.158-32.253.31c0%200-4.641%201.204-12.75%206.876c0%200-5.5%202.25-7.875%203.874S7%2048.438%207%2048.438s.25%203%20.75%203.938c.076.143.398.232%202.582.28%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/openmoji/delivery-truck.svg?color=%231a73e8&size=48