UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.21 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconBackgroundReplaceFilled = (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: "M2 4C2 2.89543 2.89543 2 4 2H16C17.1046 2 18 2.89543 18 4V12C18 13.1046 17.1046 14 16 14H15.6586C15.0711 12.3378 13.772 11.0118 12.1273 10.388C13.2523 9.68015 14 8.42739 14 7C14 4.79086 12.2091 3 10 3C7.79086 3 6 4.79086 6 7C6 8.42739 6.74765 9.68015 7.87271 10.388C6.22803 11.0118 4.92891 12.3378 4.34141 14H4C2.89543 14 2 13.1046 2 12V4Z" }), _jsx("path", { d: "M13 7C13 8.65685 11.6569 10 10 10C8.34315 10 7 8.65685 7 7C7 5.34315 8.34315 4 10 4C11.6569 4 13 5.34315 13 7Z" }), _jsx("path", { d: "M10 11C7.23858 11 5 13.2386 5 16C5 17.1046 5.89543 18 7 18H13C14.1046 18 15 17.1046 15 16C15 13.2386 12.7614 11 10 11Z" })] })); }; IconBackgroundReplaceFilled.iconName = "background-replace--filled"; export default IconBackgroundReplaceFilled;