@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 IconHeading6 = (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", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 12C16.4722 12 16.8463 12.1692 17.0957 12.3301C17.2209 12.4109 17.3188 12.492 17.3867 12.5547C17.4207 12.586 17.448 12.6129 17.4678 12.6338C17.4776 12.6441 17.4859 12.6531 17.4922 12.6602C17.4954 12.6637 17.4987 12.6673 17.501 12.6699L17.5039 12.6738L17.5059 12.6758C17.6846 12.8861 17.6594 13.202 17.4492 13.3809C17.2403 13.5584 16.9275 13.5344 16.748 13.3281L16.709 13.2891C16.6753 13.258 16.6222 13.2141 16.5537 13.1699C16.4156 13.0809 16.2276 13 16 13C15.7495 13 15.5979 13.0778 15.4863 13.1895C15.3606 13.3152 15.2516 13.5199 15.1699 13.8193C15.1375 13.9382 15.113 14.0645 15.0918 14.1963C15.3555 14.0713 15.6599 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.3643 18 14.8505 17.7565 14.501 17.3633C14.1598 16.9793 14 16.4814 14 16C14 15.2694 13.9964 14.3209 14.2051 13.5557C14.3109 13.1677 14.4832 12.7785 14.7793 12.4824C15.0896 12.1722 15.5005 12 16 12ZM16 15C15.6359 15 15.3995 15.1316 15.249 15.3008C15.0904 15.4793 15 15.7315 15 16C15 16.2685 15.0904 16.5207 15.249 16.6992C15.3995 16.8684 15.6359 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 15Z" }), _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" })] }));
};
IconHeading6.iconName = "heading6";
export default IconHeading6;