@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.03 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconBriefcase = (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: "M8 5v2H4a2 2 0 0 0-2 2v3c0 1.014.378 1.94 1 2.646V19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-4.354c.622-.705 1-1.632 1-2.646V9a2 2 0 0 0-2-2h-4V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2m6-.5h-4a.5.5 0 0 0-.5.5v2h5V5a.5.5 0 0 0-.5-.5m6 4a.5.5 0 0 1 .5.5v3a2.5 2.5 0 0 1-2.5 2.5h-5.25v-.75a.75.75 0 0 0-1.5 0v.75H6A2.5 2.5 0 0 1 3.5 12V9a.5.5 0 0 1 .5-.5zM11.25 16H6c-.53 0-1.037-.103-1.5-.29V19a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5v-3.29c-.463.187-.97.29-1.5.29h-5.25v.75a.75.75 0 0 1-1.5 0z", clipRule: "evenodd" }) }));
};
IconBriefcase.iconName = "briefcase";
export default IconBriefcase;