UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 1.56 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconProfileFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": 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", { d: "M9 8.5h2.25v2.75H8.5V9a.5.5 0 0 1 .5-.5M8.5 12.75V15a.5.5 0 0 0 .5.5h2.25v-2.75zM12.75 12.75v2.75H15a.5.5 0 0 0 .5-.5v-2.25zM15.5 11.25V9a.5.5 0 0 0-.5-.5h-2.25v2.75z" }), _jsx("path", { fillRule: "evenodd", d: "M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm2 6a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2z", clipRule: "evenodd" })] })); default: return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M8 7h1.5v2.5H7V8a1 1 0 0 1 1-1M13 9.5V8a1 1 0 0 0-1-1h-1.5v2.5zM10.5 10.5H13V12a1 1 0 0 1-1 1h-1.5zM9.5 10.5V13H8a1 1 0 0 1-1-1v-1.5z" }), _jsx("path", { fillRule: "evenodd", d: "M5 3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm1 5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2z", clipRule: "evenodd" })] })); } }; IconProfileFilled.iconName = "profile--filled"; export default IconProfileFilled;