@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.21 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNumber3 = (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.864 14.3099C15.864 16.5639 13.75 17.2779 11.958 17.2779C9.96999 17.2779 8.27599 16.5639 8.13599 14.2679H10.236C10.264 15.3039 11.02 15.8219 11.944 15.8219C12.924 15.8219 13.764 15.2619 13.764 14.1419C13.764 12.8679 12.602 12.5459 11.608 12.5459C11.384 12.5459 11.146 12.5739 10.922 12.5879V11.1739C11.104 11.1879 11.286 11.2019 11.468 11.2019C12.462 11.2019 13.596 10.9079 13.596 9.63392C13.596 8.68192 12.826 8.16392 12 8.16392C11.356 8.16392 10.474 8.51392 10.474 9.57792C10.474 9.57792 8.33199 9.57792 8.31799 9.57792C8.31799 7.54792 10.418 6.72192 12.042 6.72192C13.666 6.72192 15.654 7.42192 15.654 9.45192C15.654 10.7399 14.758 11.6079 13.498 11.8039C14.87 12.0139 15.864 12.7839 15.864 14.3099Z" }) }));
};
IconNumber3.iconName = "number3";
export default IconNumber3;