UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

39 lines (37 loc) 1.05 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function RadioIcon({ title, titleId, size, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", width: size ? typeof size === "string" ? sizeMap[size] : size : "16px", strokeWidth: 2, className: "feather feather-radio", viewBox: "0 0 24 24", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, r: 2 }), /*#__PURE__*/React.createElement("path", { d: "M16.24 7.76a6 6 0 010 8.49m-8.48-.01a6 6 0 010-8.49m11.31-2.82a10 10 0 010 14.14m-14.14 0a10 10 0 010-14.14" })); } const ForwardRef = React.forwardRef(RadioIcon); module.exports = ForwardRef;