UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.46 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoJs = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 3H17V17H3V3ZM11.333 14.5585L12.4043 13.9382C12.6863 14.3988 13.0528 14.7371 13.7012 14.7371C14.2463 14.7371 14.5939 14.4645 14.5939 14.0886C14.5939 13.6375 14.2368 13.4777 13.6354 13.2147L13.3065 13.0736C12.3573 12.6696 11.7276 12.1621 11.7276 11.0908C11.7276 10.104 12.4795 9.35217 13.6542 9.35217C14.4906 9.35217 15.092 9.64353 15.5243 10.4048L14.4999 11.0626C14.2744 10.6585 14.0301 10.4988 13.6542 10.4988C13.2689 10.4988 13.0245 10.7431 13.0245 11.0626C13.0245 11.4573 13.2689 11.6171 13.8327 11.8614L14.1616 12.0024C15.2799 12.4817 15.9096 12.9703 15.9096 14.0698C15.9096 15.254 14.9792 15.9023 13.7294 15.9023C12.5077 15.9023 11.7183 15.3197 11.333 14.5585ZM8.65416 15.9022C7.60174 15.9022 6.99079 15.3572 6.68066 14.6995L7.75205 14.0511C7.95875 14.4175 8.14678 14.7276 8.59778 14.7276C9.03008 14.7276 9.30264 14.5585 9.30264 13.9007V9.42737H10.6183V13.9193C10.6183 15.282 9.81953 15.9022 8.65416 15.9022Z" }) })); }; IconLogoJs.iconName = "logo-js"; export default IconLogoJs;