@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.07 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNumber10 = (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.5061 6.72192C18.46 6.72192 19.342 9.31171 19.342 11.9436C19.342 14.6316 18.4461 17.2776 15.4641 17.2776C12.4964 17.2774 11.6428 14.5618 11.6428 11.9299C11.6428 9.31204 12.5944 6.72213 15.5061 6.72192ZM9.02563 17.0979H6.95337V8.99146C6.29539 9.59343 5.48344 10.0275 4.65747 10.3215V8.59985C5.79136 8.20789 6.37913 7.80167 7.26099 6.97583H9.02563V17.0979ZM15.5344 8.17798C13.7705 8.17801 13.7561 10.8099 13.7561 12.0979C13.7561 13.3018 13.8264 15.8075 15.4641 15.8079C17.1441 15.8079 17.2424 13.3296 17.2424 12.0696C17.2424 10.8094 17.2143 8.17798 15.5344 8.17798Z" }) }));
};
IconNumber10.iconName = "number10";
export default IconNumber10;