UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 787 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconDiffuse = (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: "M10.2 3H6.6v2.6h3.6v2.6H6.6v3.6H3V19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7.2h-3.6V8.2H21V5.6h-3.6V3h-3.6v2.6h3.6v2.6h-3.6v3.6h3.6v3.6h-3.6v-3.6h-3.6V8.2h3.6V5.6h-3.6zm0 8.8H6.6v3.6h3.6z", clipRule: "evenodd" }), _jsx("path", { d: "M3 5.6h3.6v2.6H3z" })] })); }; IconDiffuse.iconName = "diffuse"; export default IconDiffuse;