UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.52 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconDiscountIncrease = (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: "M14.8536 2.14645C14.6583 1.95118 14.3417 1.95118 14.1464 2.14645L11.1464 5.14645C10.9512 5.34171 10.9512 5.65829 11.1464 5.85355C11.3417 6.04882 11.6583 6.04882 11.8536 5.85355L14 3.70711V5.5C14 11.299 9.29899 16 3.5 16C3.22386 16 3 16.2239 3 16.5C3 16.7761 3.22386 17 3.5 17C9.85127 17 15 11.8513 15 5.5V3.70711L17.1464 5.85355C17.3417 6.04882 17.6583 6.04882 17.8536 5.85355C18.0488 5.65829 18.0488 5.34171 17.8536 5.14645L14.8536 2.14645Z" }), _jsx("path", { d: "M8.85355 5.85355L3.85355 10.8536C3.65829 11.0488 3.34171 11.0488 3.14645 10.8536C2.95118 10.6583 2.95118 10.3417 3.14645 10.1464L8.14645 5.14645C8.34171 4.95118 8.65829 4.95118 8.85355 5.14645C9.04882 5.34171 9.04882 5.65829 8.85355 5.85355Z" }), _jsx("path", { d: "M5 6C5 6.55228 4.55228 7 4 7C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5C4.55228 5 5 5.44772 5 6Z" }), _jsx("path", { d: "M8 11C8.55228 11 9 10.5523 9 10C9 9.44772 8.55228 9 8 9C7.44772 9 7 9.44772 7 10C7 10.5523 7.44772 11 8 11Z" })] })); }; IconDiscountIncrease.iconName = "discount-increase"; export default IconDiscountIncrease;