@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.27 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNumber8 = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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: "M15.85 14.2751C15.85 16.5151 13.918 17.2851 12.098 17.2851C10.32 17.2851 8.15002 16.6131 8.15002 14.3591C8.15002 12.8051 9.24202 12.0351 10.572 11.7691C10.11 11.7411 8.44402 11.2791 8.44402 9.47309C8.44402 7.41509 10.362 6.71509 12.028 6.71509C13.638 6.71509 15.598 7.37309 15.598 9.40309C15.598 10.7331 14.674 11.5031 13.498 11.7691C13.946 11.8111 15.85 12.2451 15.85 14.2751ZM13.652 9.61309C13.652 8.61909 12.924 8.03109 12.028 8.03109C11.132 8.03109 10.362 8.57709 10.362 9.59909C10.362 10.6351 11.104 11.0831 12.014 11.0831C12.882 11.0831 13.652 10.5931 13.652 9.61309ZM13.876 14.1491C13.876 12.9871 12.98 12.4411 11.972 12.4411C10.992 12.4411 10.138 13.0151 10.138 14.1351C10.138 15.2691 10.978 15.8851 11.986 15.8851C12.98 15.8851 13.876 15.2831 13.876 14.1491Z" }) }));
};
IconNumber8.iconName = "number8";
export default IconNumber8;