@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 873 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconMouseFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M11.25 1.673a8.8 8.8 0 0 0-2.427.565l-.973.379a2.32 2.32 0 0 0-1.34 1.376L5.9 5.701A19.6 19.6 0 0 0 4.833 10.5h6.417zM4.752 12a19.6 19.6 0 0 0 .448 4.5c.697 3.194 3.586 5.5 6.855 5.5 3.206 0 6.032-2.233 6.715-5.365A20 20 0 0 0 19.23 12zM19.147 10.5a20 20 0 0 0-1.092-4.93l-.566-1.577a2.32 2.32 0 0 0-1.34-1.376l-.972-.38a8.8 8.8 0 0 0-2.427-.564V10.5z" }) }));
};
IconMouseFilled.iconName = "mouse--filled";
export default IconMouseFilled;