UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.72 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoCursor = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("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("g", { clipPath: "url(#clip0_8541_48)", children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.6399 6.59761L12.4256 1.85474C12.2959 1.77996 12.1488 1.7406 11.999 1.7406C11.8493 1.7406 11.7022 1.77996 11.5725 1.85474L3.35909 6.59761C3.25003 6.66057 3.15945 6.7511 3.09643 6.86012C3.0334 6.96914 3.00015 7.09281 3 7.21873V16.7811C3.00015 16.9071 3.0334 17.0307 3.09643 17.1398C3.15945 17.2488 3.25003 17.3393 3.35909 17.4023L11.5735 22.1451C11.7031 22.22 11.8503 22.2594 12 22.2594C12.1497 22.2594 12.2969 22.22 12.4265 22.1451L20.6409 17.4032C20.75 17.3403 20.8405 17.2497 20.9036 17.1407C20.9666 17.0317 20.9999 16.908 21 16.7821V7.21776C20.9999 7.09184 20.9666 6.96817 20.9036 6.85915C20.8405 6.75013 20.75 6.6596 20.6409 6.59664L20.6399 6.59761ZM12.1946 21.3367L20.1246 7.60209C20.2372 7.40701 20.0965 7.16342 19.8703 7.16342H4.01224C3.90451 7.16342 3.86666 7.30511 3.95983 7.35946L11.7472 11.8539C11.8239 11.8981 11.8875 11.9618 11.9318 12.0385C11.9761 12.1151 11.9995 12.2021 11.9995 12.2906V21.2833C11.9995 21.3911 12.1412 21.4289 12.1946 21.3367Z" }) }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_8541_48", children: _jsx("rect", { width: 24, height: 24 }) }) })] })); }; IconLogoCursor.iconName = "logo-cursor"; export default IconLogoCursor;