UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.09 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconHandPointUp = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { viewBox: "0 0 24 24", 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: "M7.5 4.25C7.5 3.00736 8.50736 2 9.75 2C10.9926 2 12 3.00736 12 4.25V7.12803C12.2346 7.04512 12.487 7 12.75 7C13.6257 7 14.3846 7.50032 14.7564 8.23071C15.0561 8.08299 15.3933 8 15.75 8C16.7876 8 17.6612 8.70235 17.9212 9.65757C18.1777 9.55589 18.4573 9.5 18.75 9.5C19.9926 9.5 21 10.5074 21 11.75V13.7748C21 18.3174 17.3174 22 12.7748 22C9.5711 22 6.65893 20.1399 5.31192 17.2332L3.21866 12.7161C2.68586 11.5664 3.19154 10.2027 4.34514 9.67837C5.46286 9.17031 6.78223 9.63741 7.33131 10.7356L7.5 11.0729V4.25ZM8.99423 14.3435C8.99882 14.3073 9.00077 14.2706 9 14.2338V4.25C9 3.83579 9.33579 3.5 9.75 3.5C10.1642 3.5 10.5 3.83579 10.5 4.25V11.25C10.5 11.6642 10.8358 12 11.25 12C11.6642 12 12 11.6642 12 11.25V9.25C12 8.83579 12.3358 8.5 12.75 8.5C13.1642 8.5 13.5 8.83579 13.5 9.25V11.75C13.5 12.1642 13.8358 12.5 14.25 12.5C14.6642 12.5 15 12.1642 15 11.75V10.25C15 9.83579 15.3358 9.5 15.75 9.5C16.1642 9.5 16.5 9.83579 16.5 10.25V12.25C16.5 12.6642 16.8358 13 17.25 13C17.6642 13 18 12.6642 18 12.25V11.75C18 11.3358 18.3358 11 18.75 11C19.1642 11 19.5 11.3358 19.5 11.75V13.7748C19.5 17.489 16.489 20.5 12.7748 20.5C10.1553 20.5 7.77425 18.9791 6.67288 16.6025L4.57962 12.0854C4.39695 11.6912 4.57032 11.2237 4.96584 11.0439C5.34906 10.8697 5.80141 11.0299 5.98967 11.4064L7.57191 14.5709C7.58769 14.6042 7.60584 14.6361 7.62616 14.6665C7.74432 14.8431 7.93551 14.9668 8.15655 14.9942C8.24396 15.0053 8.3339 15.001 8.42224 14.9801C8.51072 14.9593 8.59317 14.9229 8.66648 14.8738C8.8431 14.7557 8.96674 14.5645 8.99423 14.3435Z" }) })); }; IconHandPointUp.iconName = "hand-point-up"; export default IconHandPointUp;