UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.47 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSubscript = (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.4999 12.0002C16.776 12.0002 16.9999 12.224 16.9999 12.5002V17.0002H17.9999C18.276 17.0002 18.4999 17.224 18.4999 17.5002C18.4999 17.7762 18.276 18.0001 17.9999 18.0002H14.9999C14.7238 18.0002 14.5 17.7763 14.4999 17.5002C14.4999 17.224 14.7238 17.0002 14.9999 17.0002H15.9999V13.0002H14.9999C14.7238 13.0002 14.5 12.7763 14.4999 12.5002C14.4999 12.224 14.7238 12.0002 14.9999 12.0002H16.4999Z" }), _jsx("path", { d: "M11.0956 4.20621C11.258 3.9829 11.5705 3.93349 11.7939 4.09586C12.0171 4.25829 12.0666 4.57081 11.9042 4.7941L8.1171 10.0002L11.9042 15.2062C12.0665 15.4295 12.0171 15.7421 11.7939 15.9045C11.5706 16.0668 11.258 16.0173 11.0956 15.7941L7.49991 10.8498L3.90421 15.7941C3.74183 16.0174 3.42928 16.0667 3.20597 15.9045C2.98266 15.7421 2.93326 15.4295 3.09562 15.2062L6.88175 10.0002L3.09562 4.7941C2.93325 4.57078 2.98266 4.25826 3.20597 4.09586C3.42929 3.9335 3.74181 3.98291 3.90421 4.20621L7.49991 9.14957L11.0956 4.20621Z" })] })); }; IconSubscript.iconName = "subscript"; export default IconSubscript;