@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 947 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconUsbC = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M14.2061 6.00488C16.3194 6.11211 18 7.85996 18 10C18 12.2091 16.2091 14 14 14H6C3.79086 14 2 12.2091 2 10C2 7.79086 3.79086 6 6 6H14L14.2061 6.00488ZM6 7C4.34315 7 3 8.34315 3 10C3 11.6569 4.34315 13 6 13H14C15.6569 13 17 11.6569 17 10C17 8.34315 15.6569 7 14 7H6ZM14.1006 9.50977C14.3286 9.55629 14.5 9.75829 14.5 10C14.5 10.2417 14.3286 10.4437 14.1006 10.4902L14 10.5H6C5.72386 10.5 5.5 10.2761 5.5 10C5.5 9.72386 5.72386 9.5 6 9.5H14L14.1006 9.50977Z" }) }));
};
IconUsbC.iconName = "usb-c";
export default IconUsbC;