@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.32 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconDeliveryFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M2 6C2 4.89543 2.89543 4 4 4H14C15.1046 4 16 4.89543 16 6V15.1449C14.7091 15.5291 13.7302 16.6381 13.5354 18H10.4646C10.2219 16.3039 8.76324 15 7 15C5.25496 15 3.80819 16.2771 3.54334 17.9476C2.65882 17.741 2 16.9475 2 16V6Z" }), _jsx("path", { d: "M17.5 15.0354C19.0153 15.2522 20.2176 16.4396 20.4567 17.9476C21.3412 17.741 22 16.9475 22 16V12.554C22 12.1915 21.9015 11.8358 21.715 11.525L19.5826 7.97101C19.2212 7.3686 18.5701 7 17.8676 7H17.5V15.0354Z" }), _jsx("path", { d: "M19 18.5C19 19.6046 18.1046 20.5 17 20.5C15.8954 20.5 15 19.6046 15 18.5C15 17.3954 15.8954 16.5 17 16.5C18.1046 16.5 19 17.3954 19 18.5Z" }), _jsx("path", { d: "M7 20.5C8.10457 20.5 9 19.6046 9 18.5C9 17.3954 8.10457 16.5 7 16.5C5.89543 16.5 5 17.3954 5 18.5C5 19.6046 5.89543 20.5 7 20.5Z" })] }));
};
IconDeliveryFilled.iconName = "delivery--filled";
export default IconDeliveryFilled;