@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
44 lines (42 loc) • 1.59 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function AngularIcon({
title,
titleId,
size,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
preserveAspectRatio: "xMinYMin meet",
viewBox: "0 0 256 270",
fill: "currentColor",
"aria-hidden": "true",
height: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "#B3B3B3",
d: "M127.606.341L.849 44.95 20.88 211.022l106.86 58.732 107.412-59.528L255.175 44.16 127.606.341z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#A6120D",
d: "M242.532 53.758L127.31 14.466v241.256l96.561-53.441 18.66-148.523z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#DD1B16",
d: "M15.073 54.466l17.165 148.525 95.07 52.731V14.462L15.074 54.465z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#F2F2F2",
d: "M159.027 142.898L127.31 157.73H93.881l-15.714 39.305-29.228.54L127.31 23.227l31.717 119.672zm-3.066-7.467l-28.44-56.303-23.329 55.334h23.117l28.652.97z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#B3B3B3",
d: "M127.309 23.226l.21 55.902 26.47 55.377h-26.62l-.06 23.189 36.81.035 17.204 39.852 27.967.518-81.981-174.873z"
}));
}
const ForwardRef = React.forwardRef(AngularIcon);
module.exports = ForwardRef;