UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 996 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconBriefcaseFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("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 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v2a4 4 0 0 1-1.293 2.945A3.99 3.99 0 0 1 18 15h-5.25v-.75a.75.75 0 0 0-1.5 0V15H6c-1.044 0-1.994-.4-2.707-1.055A4 4 0 0 1 2 11V9a2 2 0 0 1 2-2zm2-2.5h4a.5.5 0 0 1 .5.5v2h-5V5a.5.5 0 0 1 .5-.5", clipRule: "evenodd" }), _jsx("path", { d: "M3 15.61V19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-3.39a5.47 5.47 0 0 1-3 .89h-5.25v.75a.75.75 0 0 1-1.5 0v-.75H6a5.47 5.47 0 0 1-3-.89" })] })); }; IconBriefcaseFilled.iconName = "briefcase--filled"; export default IconBriefcaseFilled;