@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 995 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconTimer = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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", { d: "M9.75 1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5zM11.47 13.53a.75.75 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0" }), _jsx("path", { fillRule: "evenodd", d: "M12 21a8 8 0 1 0 0-16 8 8 0 0 0 0 16m6.5-8a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0", clipRule: "evenodd" }), _jsx("path", { d: "M2.984 6.813a.75.75 0 0 1 0-1.06l1.768-1.769a.75.75 0 0 1 1.06 1.061L4.046 6.813a.75.75 0 0 1-1.06 0M19.248 3.984a.75.75 0 0 0-1.06 1.061l1.767 1.768a.75.75 0 1 0 1.06-1.06z" })] }));
};
IconTimer.iconName = "timer";
export default IconTimer;