UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.84 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconGameCapture = (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("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 8.5C13.933 8.5 15.5 10.067 15.5 12C15.5 13.933 13.933 15.5 12 15.5C10.067 15.5 8.5 13.933 8.5 12C8.5 10.067 10.067 8.5 12 8.5ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.375 4.5C17.7672 4.5 19.136 4.863 20.3447 5.55371L20.9922 5.92383C21.6153 6.27991 22 6.94342 22 7.66113V16.3389C22 17.0566 21.6153 17.7201 20.9922 18.0762L20.3447 18.4463L20.1162 18.5713C18.9647 19.1804 17.6803 19.5 16.375 19.5H7.625L7.36426 19.4961C6.14892 19.4565 4.95863 19.1399 3.88379 18.5713L3.65527 18.4463L3.00781 18.0762C2.38466 17.7201 2 17.0566 2 16.3389V7.66113C2 6.98826 2.33782 6.36298 2.89355 5.99414L3.00781 5.92383L3.65527 5.55371C4.78863 4.90609 6.06223 4.54628 7.36426 4.50391L7.625 4.5H16.375ZM7.625 6C6.49382 6 5.38155 6.29523 4.39941 6.85645L3.75195 7.22656C3.59617 7.31558 3.5 7.4817 3.5 7.66113V16.3389C3.5 16.5183 3.59617 16.6844 3.75195 16.7734L4.39941 17.1436C5.38155 17.7048 6.49382 18 7.625 18H16.375C17.5062 18 18.6185 17.7048 19.6006 17.1436L20.248 16.7734C20.4038 16.6844 20.5 16.5183 20.5 16.3389V7.66113C20.5 7.4817 20.4038 7.31558 20.248 7.22656L19.6006 6.85645C18.6185 6.29523 17.5062 6 16.375 6H7.625Z" })] })); }; IconGameCapture.iconName = "game-capture"; export default IconGameCapture;