@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.37 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconTint = (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 14ZM5.87619 16.1845C6.77351 18.6997 9.17652 20.5 12 20.5C14.969 20.5 17.4731 18.5093 18.2504 15.7899C16.2889 17.4759 13.3287 17.3893 11.4697 15.5303C10.1057 14.1664 7.89429 14.1664 6.53033 15.5303L5.87619 16.1845Z" }) }));
};
IconTint.iconName = "tint";
export default IconTint;