@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.82 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconDialRotate = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M16.353.313a.75.75 0 0 0-1.206.89l.072.099-.372-.063a17 17 0 0 0-4.283-.18 15.6 15.6 0 0 0-4.064.879.75.75 0 1 0 .517 1.408 14.1 14.1 0 0 1 3.673-.791 15.6 15.6 0 0 1 3.905.162l.493.084-.204.15a.75.75 0 1 0 .89 1.208l1.61-1.188a.75.75 0 0 0 .157-1.05zM17.456 6.075c1.556.725 2.465 1.728 2.54 2.786Q20 8.93 20 9v10c0 2.21-3.582 4-8 4s-8-1.79-8-4V9c0-1.007.76-1.984 2.15-2.728 1.447-.776 3.45-1.233 5.571-1.27s4.184.35 5.735 1.073m-.633 1.36c-1.302-.608-3.13-.967-5.075-.933-1.95.034-3.705.457-4.89 1.092-1.24.665-1.37 1.257-1.357 1.441.017.24.302.89 1.677 1.53 1.301.608 3.129.967 5.075.933 1.949-.034 3.704-.457 4.889-1.092 1.24-.665 1.37-1.257 1.357-1.441-.017-.24-.302-.89-1.676-1.53m1.677 8.067c0 .23-.226.843-1.514 1.487-1.199.6-2.96 1.013-4.986 1.013-2.027 0-3.787-.414-4.986-1.013-1.288-.644-1.514-1.256-1.514-1.487v-4.17a7 7 0 0 0 1.044.593q.451.21.956.382v1.512a.75.75 0 0 0 1.5 0v-1.11c.716.144 1.474.237 2.25.273v1.265a.75.75 0 0 0 1.5 0v-1.265c.778-.036 1.535-.13 2.25-.274v1.111a.75.75 0 0 0 1.5 0v-1.512c.488-.166.942-.36 1.35-.579q.353-.189.65-.396zm-6.5 4c-2.678 0-5.048-.657-6.5-1.667V19c0 .23.226.843 1.514 1.487 1.199.6 2.96 1.013 4.986 1.013 2.027 0 3.787-.414 4.986-1.013C18.274 19.843 18.5 19.23 18.5 19v-1.165c-1.452 1.01-3.822 1.667-6.5 1.667", clipRule: "evenodd" }) }));
};
IconDialRotate.iconName = "dial-rotate";
export default IconDialRotate;