UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 902 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconTextSizeIncrease = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M20.72 5.53a.75.75 0 0 0 1.06-1.06l-2.25-2.25a.75.75 0 0 0-1.06 0l-2.25 2.25a.75.75 0 1 0 1.06 1.06L19 3.81z" }), _jsx("path", { fillRule: "evenodd", d: "M12 4a.75.75 0 0 1 .697.474l5.75 14.5a.75.75 0 1 1-1.394.552L15.456 15.5H8.544l-1.597 4.026a.75.75 0 0 1-1.394-.552l5.75-14.5A.75.75 0 0 1 12 4m0 2.785L14.861 14H9.14z", clipRule: "evenodd" })] })); }; IconTextSizeIncrease.iconName = "text-size-increase"; export default IconTextSizeIncrease;