UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.52 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconCaveFilled = (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", { d: "M17.4326 9.33803C17.5535 9.94266 16.9337 10.4268 16.3763 10.1631L14.0706 9.07206C13.6962 8.8949 13.2491 9.0548 13.0719 9.42922C12.8948 9.80363 13.0547 10.2508 13.4291 10.4279L18.7561 12.9486C19.2976 13.2048 19.6957 13.6902 19.841 14.2713L21.1481 19.4999H22.25C22.6642 19.4999 23 19.8357 23 20.2499C23 20.6642 22.6642 20.9999 22.25 20.9999H16.8844C16.0364 20.9999 15.2806 20.4652 14.9984 19.6656L13.9475 16.6881C13.9076 16.5749 13.8283 16.4799 13.7241 16.4204L11.5562 15.1816C11.3424 15.0594 11.0715 15.1111 10.9177 15.3034L9.7497 16.7634C9.70642 16.8175 9.67486 16.88 9.65701 16.9469L8.97212 19.5153C8.73865 20.3908 7.94575 20.9999 7.03965 20.9999H1.75C1.33579 20.9999 1 20.6642 1 20.2499C1 19.8357 1.33579 19.4999 1.75 19.4999H2.8308L4.19168 12.2419C4.26596 11.8457 4.4582 11.4813 4.74321 11.1963L7.78835 8.15113C7.83623 8.10325 7.87388 8.04615 7.89903 7.98328L9.31758 4.43689C9.74125 3.37772 10.9636 2.88689 12.0021 3.35894L15.7276 5.05231C16.3131 5.31849 16.735 5.85006 16.8611 6.48081L17.4326 9.33803Z" }) })); }; IconCaveFilled.iconName = "cave--filled"; export default IconCaveFilled;