@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.02 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconDelivery = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M14 18h-4a3 3 0 1 1-6 0 2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v1h.868a2 2 0 0 1 1.715.971l2.132 3.554A2 2 0 0 1 22 12.554V16a2 2 0 0 1-2 2 3 3 0 1 1-6 0m1-12.5H4a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h.401a2.999 2.999 0 0 1 5.198 0H14.4a3 3 0 0 1 1.099-1.099V6a.5.5 0 0 0-.5-.5m4.599 11A3 3 0 0 0 17 15V8.5h.868a.5.5 0 0 1 .428.243l2.133 3.554a.5.5 0 0 1 .071.257V16a.5.5 0 0 1-.5.5zM7 19.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m10 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3", clipRule: "evenodd" }) }));
};
IconDelivery.iconName = "delivery";
export default IconDelivery;