@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.14 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconHeading5 = (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: "M17.5 12C17.7761 12 18 12.2239 18 12.5C18 12.7761 17.7761 13 17.5 13H15V14.1592C15.271 14.0679 15.6046 14 16 14C16.6357 14 17.1495 14.2435 17.499 14.6367C17.8402 15.0207 18 15.5186 18 16C18 16.4814 17.8402 16.9793 17.499 17.3633C17.1495 17.7565 16.6357 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.3641 17 16.6005 16.8684 16.751 16.6992C16.9096 16.5207 17 16.2685 17 16C17 15.7315 16.9096 15.4793 16.751 15.3008C16.6005 15.1316 16.3641 15 16 15C15.5864 15 15.2875 15.1028 15.0986 15.1973C15.0034 15.2449 14.9348 15.2913 14.8936 15.3223C14.8742 15.3368 14.8606 15.3474 14.8535 15.3535L14.8525 15.3545L14.8516 15.3564L14.8496 15.3574L14.7969 15.4023C14.6573 15.5054 14.4721 15.5297 14.3086 15.4619C14.1218 15.3845 14 15.2022 14 15V12.5C14 12.2239 14.2239 12 14.5 12H17.5Z" }), _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" })] }));
};
IconHeading5.iconName = "heading5";
export default IconHeading5;