UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.59 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconBackgroundReplace = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M3 4C3 3.44772 3.44772 3 4 3H16C16.5523 3 17 3.44772 17 4V12C17 12.5519 16.5529 12.9993 16.0012 13C15.7251 13.0003 15.5015 13.2245 15.5018 13.5006C15.5022 13.7767 15.7263 14.0003 16.0024 14C17.1059 13.9987 18 13.1038 18 12V4C18 2.89543 17.1046 2 16 2H4C2.89543 2 2 2.89543 2 4V12C2 13.1038 2.89411 13.9987 3.99757 14C4.27371 14.0003 4.49784 13.7767 4.49817 13.5006C4.4985 13.2245 4.27491 13.0003 3.99877 13C3.44706 12.9993 3 12.5519 3 12V4Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 10C11.6569 10 13 8.65685 13 7C13 5.34315 11.6569 4 10 4C8.34315 4 7 5.34315 7 7C7 8.65685 8.34315 10 10 10ZM10 9C11.1046 9 12 8.10457 12 7C12 5.89543 11.1046 5 10 5C8.89543 5 8 5.89543 8 7C8 8.10457 8.89543 9 10 9Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 16C5 13.2386 7.23858 11 10 11C12.7614 11 15 13.2386 15 16C15 17.1046 14.1046 18 13 18H7C5.89543 18 5 17.1046 5 16ZM7 17C6.44772 17 6 16.5523 6 16C6 13.7909 7.79086 12 10 12C12.2091 12 14 13.7909 14 16C14 16.5523 13.5523 17 13 17H7Z" })] })); }; IconBackgroundReplace.iconName = "background-replace"; export default IconBackgroundReplace;