UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.19 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconTintFilled = (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: "M4 14C4 9.43633 8.62821 4.87268 10.8441 2.94922C11.5154 2.36654 12.4846 2.36654 13.1559 2.94922C15.3718 4.87268 20 9.43633 20 14C20 18.4183 16.4183 22 12 22C7.58172 22 4 18.4183 4 14ZM5.5 14C5.5 12.1946 6.43404 10.2317 7.7999 8.37267C9.14191 6.54612 10.7618 5.00695 11.8274 4.08199C11.8882 4.02919 11.9485 4.01221 12 4.01221C12.0515 4.01221 12.1118 4.02919 12.1726 4.08199C13.2382 5.00695 14.8581 6.54612 16.2001 8.37267C17.4345 10.0527 18.3162 11.8177 18.4745 13.4745L18.4697 13.4697L17.4697 14.4697C16.1057 15.8336 13.8943 15.8336 12.5303 14.4697C10.5952 12.5345 7.46677 12.52 5.51375 14.4261C5.50463 14.2853 5.5 14.1432 5.5 14Z" }) })); }; IconTintFilled.iconName = "tint--filled"; export default IconTintFilled;