UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.18 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconNumber6Square = (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: "M12.187 16.143c1.606 0 2.882-1.122 2.882-2.838 0-1.595-1.078-2.607-2.464-2.607-.869 0-1.529.32-1.98 1.111.011-1.067.231-2.882 1.562-2.882.627 0 1.045.33 1.045 1.067h1.584c0-1.507-1.177-2.145-2.574-2.145-2.387 0-3.168 2.068-3.168 4.224s.76 4.07 3.113 4.07m.033-4.367c.902 0 1.32.715 1.32 1.595 0 .891-.45 1.617-1.353 1.617-.88 0-1.386-.704-1.386-1.584 0-.869.385-1.628 1.42-1.628", clipRule: "evenodd" }), _jsx("path", { fillRule: "evenodd", d: "M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2-.5h14a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5", clipRule: "evenodd" })] })); }; IconNumber6Square.iconName = "number6-square"; export default IconNumber6Square;