UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.31 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconCapture = (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", { d: "M2.75 2C2.33579 2 2 2.33579 2 2.75V5.25C2 5.66421 2.33579 6 2.75 6C3.16421 6 3.5 5.66421 3.5 5.25V3.5H5.25C5.66421 3.5 6 3.16421 6 2.75C6 2.33579 5.66421 2 5.25 2H2.75Z" }), _jsx("path", { d: "M2 18.75V21.25C2 21.4489 2.07902 21.6397 2.21967 21.7803C2.36032 21.921 2.55109 22 2.75 22H5.25C5.66421 22 6 21.6642 6 21.25C6 20.8358 5.66421 20.5 5.25 20.5H3.5L3.5 18.75C3.5 18.3358 3.16421 18 2.75 18C2.33579 18 2 18.3358 2 18.75Z" }), _jsx("path", { d: "M18.75 22C18.3358 22 18 21.6642 18 21.25C18 20.8358 18.3358 20.5 18.75 20.5H20.5V18.75C20.5 18.3358 20.8358 18 21.25 18C21.6642 18 22 18.3358 22 18.75V21.25C22 21.4489 21.921 21.6397 21.7803 21.7803C21.6397 21.921 21.4489 22 21.25 22H18.75Z" }), _jsx("path", { d: "M22 5.25V2.75C22 2.33579 21.6642 2 21.25 2H18.75C18.3358 2 18 2.33579 18 2.75C18 3.16421 18.3358 3.5 18.75 3.5L20.5 3.5V5.25C20.5 5.66421 20.8358 6 21.25 6C21.6642 6 22 5.66421 22 5.25Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 9C13.6569 9 15 10.3431 15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9ZM12 10.5C12.8284 10.5 13.5 11.1716 13.5 12C13.5 12.8284 12.8284 13.5 12 13.5C11.1716 13.5 10.5 12.8284 10.5 12C10.5 11.1716 11.1716 10.5 12 10.5Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 6.5L15.2969 5.4453C15.1114 5.1671 14.7992 5 14.4648 5H9.53518C9.20083 5 8.8886 5.1671 8.70313 5.4453L8 6.5H6C4.89543 6.5 4 7.39543 4 8.5V16C4 17.1046 4.89543 18 6 18H18C19.1046 18 20 17.1046 20 16V8.5C20 7.39543 19.1046 6.5 18 6.5H16ZM9.24808 7.33205C8.96988 7.74935 8.50153 8 8 8H6C5.72386 8 5.5 8.22386 5.5 8.5V16C5.5 16.2761 5.72386 16.5 6 16.5H18C18.2761 16.5 18.5 16.2761 18.5 16V8.5C18.5 8.22386 18.2761 8 18 8H16C15.4985 8 15.0301 7.74935 14.7519 7.33205L14.1972 6.5H9.80278L9.24808 7.33205Z" })] })); }; IconCapture.iconName = "capture"; export default IconCapture;