UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 944 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoMiro = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { viewBox: "0 0 24 24", 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: "M16.5 3C18.9853 3 21 5.01472 21 7.5V16.5C21 18.9853 18.9853 21 16.5 21H7.5C5.01472 21 3 18.9853 3 16.5V7.5C3 5.01472 5.01472 3 7.5 3H16.5ZM8.43066 10.1533L6.79688 17.5967H8.43066L11.5625 9.62207L10.0645 17.5967H11.6992L14.6943 9.08984L13.333 17.5967H14.9668L17.9629 8.29199L14.9668 6.43164H13.333L14.6943 8.82324L11.6992 6.43164H10.0645L11.5625 9.35547L8.43066 6.43164H6.79688L8.43066 10.1533Z" }) })); }; IconLogoMiro.iconName = "logo-miro"; export default IconLogoMiro;