UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.62 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconFlameFilled = (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: "M11.0577 2.77984C11.3097 3.00413 11.3809 3.369 11.2317 3.67156C11.0436 4.05337 10.9375 4.48344 10.9375 4.94042C10.9375 5.50145 11.0975 6.02284 11.3739 6.46413C11.8834 7.27734 12.7854 7.81542 13.8125 7.81542C14.4336 7.81542 15.0066 7.61935 15.476 7.28565C15.8173 7.04298 16.1035 6.72769 16.3117 6.36284C16.4391 6.13966 16.6718 5.99723 16.9285 5.98539C17.1852 5.97354 17.4301 6.09394 17.5775 6.30444C19.1041 8.48494 20 11.1404 20 14.0029C20 18.3595 16.5176 21.9028 12.1845 22.0008C12.1234 22.0036 12.0618 22.005 12 22.005C11.9382 22.005 11.8766 22.0036 11.8155 22.0008C7.48243 21.9028 4 18.3595 4 14.0029C4 9.26591 6.45169 5.10199 10.1519 2.71014C10.4351 2.52703 10.8058 2.55555 11.0577 2.77984ZM12 20.5029C12.0439 20.5029 12.0877 20.5025 12.1315 20.5016C13.4511 20.4332 14.5 19.3416 14.5 18.005C14.5 16.7495 13.8079 15.4439 13.0231 14.388C12.6545 13.8921 12.2845 13.4767 12 13.1794C11.7155 13.4767 11.3455 13.8921 10.9769 14.388C10.1921 15.4439 9.5 16.7495 9.5 18.005C9.5 19.3416 10.5489 20.4332 11.8685 20.5016C11.9123 20.5025 11.9561 20.5029 12 20.5029Z" }) })); }; IconFlameFilled.iconName = "flame--filled"; export default IconFlameFilled;