@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.68 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconMicArm = (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: "M8.16406 4.9722C8.64085 2.9697 11.4677 2.90699 12.0332 4.88626L14.9619 15.1382C15.0235 15.3525 15.2204 15.5005 15.4434 15.5005H20.25C20.6642 15.5005 21 15.8363 21 16.2505C20.9998 16.6645 20.6641 17.0005 20.25 17.0005H15.4434C14.5506 17.0005 13.7651 16.4086 13.5195 15.5503L10.5908 5.29837C10.4494 4.80355 9.74322 4.81923 9.62402 5.31985L7.20801 15.4634C6.99335 16.3641 6.18866 17.0005 5.2627 17.0005H5C4.72386 17.0005 4.5 17.2244 4.5 17.5005V20.2505C4.49975 20.6645 4.16406 21.0005 3.75 21.0005C3.33594 21.0005 3.00025 20.6645 3 20.2505V17.5005C3 16.3959 3.89543 15.5005 5 15.5005H5.2627C5.49393 15.5005 5.6951 15.3415 5.74902 15.1167L8.16406 4.9722Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19 6.00052C20.1046 6.00052 21 6.89595 21 8.00052V12.0005L20.9893 12.2046C20.8936 13.146 20.1455 13.8943 19.2041 13.9898L19 14.0005H18L17.7959 13.9898C16.7874 13.8875 16.0002 13.036 16 12.0005V8.00052C16 6.89595 16.8954 6.00052 18 6.00052H19ZM18 7.50052C17.7239 7.50052 17.5 7.72438 17.5 8.00052V12.0005C17.5002 12.2764 17.724 12.5005 18 12.5005H19C19.276 12.5005 19.4998 12.2764 19.5 12.0005V8.00052C19.5 7.72438 19.2761 7.50052 19 7.50052H18Z" })] }));
};
IconMicArm.iconName = "mic-arm";
export default IconMicArm;