@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.63 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconHeading3 = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M16 12C16.4799 12 16.9641 12.1585 17.3379 12.4492C17.7171 12.7442 18 13.1929 18 13.75C18 14.2263 17.8404 14.6718 17.4863 15C17.8404 15.3282 18 15.7737 18 16.25C18 16.8071 17.7171 17.2558 17.3379 17.5508C16.9641 17.8415 16.4799 18 16 18C15.3206 18 14.826 17.658 14.5215 17.3535C14.3679 17.1999 14.2538 17.0477 14.1777 16.9336C14.1394 16.8761 14.1095 16.8272 14.0889 16.791C14.0786 16.773 14.0705 16.7574 14.0645 16.7461C14.0616 16.7408 14.0595 16.7361 14.0576 16.7324C14.0567 16.7307 14.0554 16.7289 14.0547 16.7275L14.0537 16.7256L14.0527 16.7246C13.9292 16.4776 14.0294 16.1762 14.2764 16.0527C14.4923 15.9448 14.7489 16.0079 14.8926 16.1904L14.9473 16.2764C14.9491 16.2797 14.953 16.2861 14.958 16.2949C14.9686 16.3135 14.9857 16.3428 15.0098 16.3789C15.0587 16.4523 15.1321 16.5501 15.2285 16.6465C15.424 16.842 15.6794 17 16 17C16.2701 17 16.5359 16.9085 16.7246 16.7617C16.9078 16.6192 17 16.4428 17 16.25C17 15.9913 16.918 15.8266 16.7959 15.7197C16.665 15.6053 16.4221 15.5 16 15.5C15.7239 15.5 15.5 15.2761 15.5 15C15.5 14.7239 15.7239 14.5 16 14.5C16.4221 14.5 16.665 14.3947 16.7959 14.2803C16.918 14.1734 17 14.0087 17 13.75C17 13.5572 16.9078 13.3808 16.7246 13.2383C16.5359 13.0915 16.2701 13 16 13C15.6794 13 15.424 13.158 15.2285 13.3535C15.1321 13.4499 15.0587 13.5477 15.0098 13.6211C14.9857 13.6572 14.9686 13.6865 14.958 13.7051C14.953 13.7139 14.9491 13.7203 14.9473 13.7236L14.9463 13.7246L14.9453 13.7266L14.8926 13.8096C14.7489 13.9921 14.4923 14.0552 14.2764 13.9473C14.0294 13.8238 13.9292 13.5234 14.0527 13.2764L14.0547 13.2725C14.0554 13.2711 14.0567 13.2693 14.0576 13.2676C14.0595 13.2639 14.0616 13.2592 14.0645 13.2539C14.0705 13.2426 14.0786 13.227 14.0889 13.209C14.1095 13.1728 14.1394 13.1239 14.1777 13.0664C14.2538 12.9523 14.3679 12.8001 14.5215 12.6465C14.826 12.342 15.3206 12 16 12Z" }), _jsx("path", { d: "M11.5 3C11.7761 3 12 3.22386 12 3.5V14.5C12 14.7761 11.7761 15 11.5 15C11.2239 15 11 14.7761 11 14.5V9H4V14.5C4 14.7761 3.77614 15 3.5 15C3.22386 15 3 14.7761 3 14.5V3.5C3 3.22386 3.22386 3 3.5 3C3.77614 3 4 3.22386 4 3.5V8H11V3.5C11 3.22386 11.2239 3 11.5 3Z" })] }));
};
IconHeading3.iconName = "heading3";
export default IconHeading3;