UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.11 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconCave = (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: "M17.7255 10.8033L16.861 6.48078C16.7349 5.85003 16.313 5.31845 15.7275 5.05228L12.002 3.35891C10.9635 2.88686 9.74115 3.37769 9.31748 4.43686L7.89893 7.98325C7.87378 8.04612 7.83613 8.10322 7.78825 8.1511L4.74311 11.1962C4.4581 11.4812 4.26586 11.8457 4.19158 12.2419L2.83068 19.5H1.75C1.33579 19.5 1 19.8358 1 20.25C1 20.6642 1.33579 21 1.75 21H7.03965C7.94575 21 8.73865 20.3908 8.97212 19.5153L9.65701 16.947C9.67486 16.8801 9.70642 16.8176 9.7497 16.7635L10.9177 15.3034C11.0715 15.1112 11.3424 15.0595 11.5562 15.1817L13.7241 16.4205C13.8283 16.48 13.9076 16.575 13.9475 16.6882L14.9984 19.6656C15.2806 20.4653 16.0364 21 16.8844 21H22.25C22.6642 21 23 20.6642 23 20.25C23 19.8358 22.6642 19.5 22.25 19.5H21.1481L19.371 12.3916C19.2258 11.8107 18.828 11.3255 18.2869 11.0692L17.7255 10.8033ZM11.3813 4.72446C11.1217 4.60645 10.8161 4.72916 10.7102 4.99395L9.29165 8.54033C9.19105 8.79181 9.04043 9.02024 8.84891 9.21176L5.80377 12.2569C5.73252 12.3281 5.68446 12.4193 5.66589 12.5183L4.35682 19.5H7.03965C7.26618 19.5 7.4644 19.3477 7.52277 19.1288L8.20766 16.5605C8.27906 16.2928 8.4053 16.0428 8.57839 15.8264L9.74642 14.3664C10.3617 13.5973 11.4453 13.3906 12.3004 13.8793L14.4683 15.1181C14.8851 15.3562 15.2023 15.7363 15.362 16.1889L16.4129 19.1664C16.4835 19.3663 16.6724 19.5 16.8844 19.5H19.6019L17.9158 12.7554C17.8795 12.6102 17.78 12.4888 17.6447 12.4248L13.4289 10.4278C13.0546 10.2505 12.8949 9.80329 13.0722 9.42895C13.2495 9.0546 13.6967 8.89489 14.0711 9.07221L16.0357 10.0028L15.3901 6.77496C15.3586 6.61727 15.2531 6.48437 15.1067 6.41783L11.3813 4.72446Z" }) })); }; IconCave.iconName = "cave"; export default IconCave;