UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

41 lines (39 loc) 2.31 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function CounterClockWiseIcon({ title, titleId, size, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 72 72", fill: "currentColor", "aria-hidden": "true", ref: svgRef, width: size ? typeof size === "string" ? sizeMap[size] : size : "16px", "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("g", { fill: "#3F3F3F" }, /*#__PURE__*/React.createElement("path", { d: "M20.771 30.421l-3.709 4.1c.683-7.708 5.642-14.356 12.963-17.014a19.282 19.282 0 016.6-1.167c5.482 0 10.76 2.375 14.477 6.516l.61.68 3.857-3.608-.61-.68C50.253 14.006 43.572 11 36.629 11c-2.848 0-5.66.496-8.356 1.476-9.208 3.343-15.56 11.828-16.433 21.583L8.55 30.421l-3.344 3.117 9.455 10.45 9.453-10.45-3.342-3.117zM67 38.347l-9.455-10.45-9.453 10.45 3.342 3.117 3.693-4.082c-.65 7.75-5.62 14.442-12.973 17.112a19.291 19.291 0 01-6.6 1.166c-5.482 0-10.76-2.375-14.477-6.516l-.61-.68-3.856 3.608.61.68C21.925 57.993 28.607 61 35.55 61c2.848 0 5.659-.497 8.355-1.475 9.249-3.357 15.62-11.902 16.447-21.712l3.303 3.65L67 38.348z" })), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2 }, /*#__PURE__*/React.createElement("path", { d: "M20.771 30.421l-3.709 4.1c.683-7.708 5.642-14.356 12.963-17.014a19.282 19.282 0 016.6-1.167c5.482 0 10.76 2.375 14.477 6.516l.61.68 3.857-3.608-.61-.68C50.253 14.006 43.572 11 36.629 11c-2.848 0-5.66.496-8.356 1.476-9.208 3.343-15.56 11.828-16.433 21.583L8.55 30.421l-3.344 3.117 9.455 10.45 9.453-10.45-3.342-3.117zM67 38.347l-9.455-10.45-9.453 10.45 3.342 3.117 3.693-4.082c-.65 7.75-5.62 14.442-12.973 17.112a19.291 19.291 0 01-6.6 1.166c-5.482 0-10.76-2.375-14.477-6.516l-.61-.68-3.856 3.608.61.68C21.925 57.993 28.607 61 35.55 61c2.848 0 5.659-.497 8.355-1.475 9.249-3.357 15.62-11.902 16.447-21.712l3.303 3.65L67 38.348z" }))); } const ForwardRef = React.forwardRef(CounterClockWiseIcon); module.exports = ForwardRef;