@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.97 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCompany = (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: "M7.5 10.5C7.91421 10.5 8.25 10.8358 8.25 11.25C8.25 11.6642 7.91421 12 7.5 12H6.75C6.33579 12 6 11.6642 6 11.25C6 10.8358 6.33579 10.5 6.75 10.5H7.5Z" }), _jsx("path", { d: "M11.25 10.5C11.6642 10.5 12 10.8358 12 11.25C12 11.6642 11.6642 12 11.25 12H10.5C10.0858 12 9.75 11.6642 9.75 11.25C9.75 10.8358 10.0858 10.5 10.5 10.5H11.25Z" }), _jsx("path", { d: "M7.5 7C7.91421 7 8.25 7.33579 8.25 7.75C8.25 8.16421 7.91421 8.5 7.5 8.5H6.75C6.33579 8.5 6 8.16421 6 7.75C6 7.33579 6.33579 7 6.75 7H7.5Z" }), _jsx("path", { d: "M11.25 7C11.6642 7 12 7.33579 12 7.75C12 8.16421 11.6642 8.5 11.25 8.5H10.5C10.0858 8.5 9.75 8.16421 9.75 7.75C9.75 7.33579 10.0858 7 10.5 7H11.25Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13 3C14.1046 3 15 3.89543 15 5V8H19C20.1046 8 21 8.89543 21 10V19C21 20.0357 20.2128 20.887 19.2041 20.9893L19 21H12L11.7959 20.9893C10.8543 20.8938 10.1062 20.1457 10.0107 19.2041L10 19V16.5C10 16.2239 9.77614 16 9.5 16H8.5C8.22386 16 8 16.2239 8 16.5V19C8 20.0357 7.21278 20.887 6.2041 20.9893L6 21H5C3.89543 21 3 20.1046 3 19V5C3 3.89543 3.89543 3 5 3H13ZM5 4.5C4.72386 4.5 4.5 4.72386 4.5 5V19C4.5 19.2761 4.72386 19.5 5 19.5H6C6.27614 19.5 6.5 19.2761 6.5 19V16.5C6.5 15.3954 7.39543 14.5 8.5 14.5H9.5C10.6046 14.5 11.5 15.3954 11.5 16.5V19C11.5 19.2761 11.7239 19.5 12 19.5H13.5V5C13.5 4.72386 13.2761 4.5 13 4.5H5ZM15 19.5H19C19.2761 19.5 19.5 19.2761 19.5 19V10C19.5 9.72386 19.2761 9.5 19 9.5H15V19.5Z" })] }));
};
IconCompany.iconName = "company";
export default IconCompany;