@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.33 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconAccessories = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.2041 3.01074C17.2128 3.113 18 3.96435 18 5V11H19L19.2041 11.0107C20.2128 11.113 21 11.9643 21 13V19C21 20.0357 20.2128 20.887 19.2041 20.9893L19 21H5C3.96435 21 3.113 20.2128 3.01074 19.2041L3 19V9C3 7.89543 3.89543 7 5 7H6V5C6 3.89543 6.89543 3 8 3H16L16.2041 3.01074ZM5 8.5C4.72386 8.5 4.5 8.72386 4.5 9V19C4.5 19.2761 4.72386 19.5 5 19.5H9.06543C9.04066 19.4038 9.021 19.3053 9.01074 19.2041L9 19V13C9 11.8954 9.89543 11 11 11H12.5V9C12.5 8.72386 12.2761 8.5 12 8.5H5ZM11 12.5C10.7239 12.5 10.5 12.7239 10.5 13V19C10.5 19.2761 10.7239 19.5 11 19.5H19C19.2761 19.5 19.5 19.2761 19.5 19V13C19.5 12.7239 19.2761 12.5 19 12.5H11ZM8 4.5C7.72386 4.5 7.5 4.72386 7.5 5V7H12L12.2041 7.01074C13.2128 7.113 14 7.96435 14 9V11H16.5V5C16.5 4.72386 16.2761 4.5 16 4.5H8Z" }) }));
};
IconAccessories.iconName = "accessories";
export default IconAccessories;