UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

49 lines (47 loc) 1.34 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function CopyrightIcon({ 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("circle", { cx: 36, cy: 36, r: 26.68, fill: "#fff", fillRule: "evenodd" }), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round" }, /*#__PURE__*/React.createElement("path", { strokeMiterlimit: 10, strokeWidth: 8.693, d: "M43.02 48.48a10.832 10.832 0 01-7.212 2.734c-5.999 0-10.87-4.865-10.87-10.87v-8.693 8.693-8.693c0-6.003 4.869-10.87 10.87-10.87 2.769 0 5.295 1.035 7.212 2.734", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("circle", { cx: 36, cy: 36, r: 26.68, strokeWidth: 4.74 }))); } const ForwardRef = React.forwardRef(CopyrightIcon); module.exports = ForwardRef;