@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
15 lines (14 loc) • 1.45 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconTimeHistory = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
switch (props?.size) {
case "l":
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: "M15.536 5.386a7.5 7.5 0 0 0-11.013 6.03L5.72 10.22a.75.75 0 1 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0l-2.5-2.5a.75.75 0 1 1 1.06-1.06l1.236 1.236a9 9 0 1 1 2.62 6.908.75.75 0 0 1 1.06-1.06 7.5 7.5 0 1 0 8.84-11.918" }), _jsx("path", { d: "M12 6a.75.75 0 0 1 .75.75v4.94l2.03 2.03a.75.75 0 1 1-1.06 1.06l-2.25-2.25a.75.75 0 0 1-.22-.53V6.75A.75.75 0 0 1 12 6" })] }));
default:
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M3.5 3a.5.5 0 0 1 .5.5v2.894A7 7 0 1 1 3 10a.5.5 0 0 1 1 0 6 6 0 1 0 .804-3H7.5a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5" }), _jsx("path", { d: "M10.5 6.5a.5.5 0 0 0-1 0V10a.5.5 0 0 0 .146.354l2.5 2.5a.5.5 0 0 0 .708-.708L10.5 9.793z" })] }));
}
};
IconTimeHistory.iconName = "time-history";
export default IconTimeHistory;