@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
56 lines (54 loc) • 3.66 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function FlexedBicepsIcon({
title,
titleId,
size,
colored,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 72 72",
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
"aria-hidden": "true",
width: 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("g", {
fill: "#FCEA2B"
}, /*#__PURE__*/React.createElement("path", {
d: "M63.11 54.165c-10.969 9.44-26.36 11.68-46.41 11.563 0 0-3.74 1.15-4.597-3.565 0 0-.77-20.887 3.809-35.548 0 0-.195-5.981.029-9.898a2.574 2.574 0 01.828-1.753c5.757-5.319 8.349-6.098 8.349-6.098l8.368-1.481c1.325.906 4.228 4.18 3.75 9.995l.107-.4 3.215.902c1.123.341 1.859 1.525 1.841 2.654-.01 1.17-2.805 2.046-2.805 2.046l-6.118 1.383c-1.831 2.874-5.594 3.176-7.279 3.098-.088-.243-.593-.02-.193 0 .594 1.5 1.289 5.115 1.922 11.807l.176 1.86c.048.527.316 4.73.384 7.477 1.812-4.413 6.636-12.561 15.735-13.847 13.463-1.92 20.165 8.495 20.165 8.495s.234.272.526.77c2.066 3.448 1.247 7.91-1.802 10.54z"
}), /*#__PURE__*/React.createElement("path", {
d: "M26.508 26.81c-.41-.02-.74-.06-.94-.09l.64-.49c.11.14.21.33.3.58z"
}), /*#__PURE__*/React.createElement("path", {
d: "M26.508 26.81c-.41-.02-.74-.06-.94-.09l.64-.49c.11.14.21.33.3.58z"
})), /*#__PURE__*/React.createElement("g", {
fill: "#F1B31C"
}, /*#__PURE__*/React.createElement("path", {
d: "M21.922 26.23s5.344-4.986 1.615-6.38l12.76-.419.672-1.142.22-1.844c1.07.178 3.364.946 3.64 1.012 0 0 2.405 1.873.45 4.093l-7.78 2.235s-4.723 3.803-11.577 2.445z"
}), /*#__PURE__*/React.createElement("path", {
d: "M21.922 26.23c.794 9.218 2.56 25.641 2.07 27.745-.045.7.655.81 1.012.296.829-.667 2.767-2.597 3.818-5.195 0-5.762-.666-12.458-2.219-22.262-.57-1.585-2.939-1.566-4.681-.584zM48.199 34.1s10.239 6.972 3.106 16.42c0 0 2.132 8.516.155 9.85-1.977 1.334 20.619-5.545 12.136-18.563 0 0-5.158-7.573-15.397-7.708z"
})), /*#__PURE__*/React.createElement("g", {
fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'),
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M27.468 40.552c-.428-4.28-1.132-12.72-1.954-13.754 0 0 5.2 1.11 7.811-2.974M34.503 53.088s10.802 2.701 19.287-4.327"
}), /*#__PURE__*/React.createElement("path", {
d: "M27.72 50.631s2.868-14.473 16.368-16.393S64.3 42.753 64.3 42.753s.23.275.527.77c2.073 3.456 1.25 7.934-1.803 10.564-10.992 9.464-26.426 11.712-46.518 11.597 0 0-3.75 1.145-4.61-3.574 0 0-.769-20.94 3.818-35.627 0 0-.197-6 .03-9.928.04-.67.334-1.297.827-1.752 5.78-5.332 8.375-6.115 8.375-6.115l8.388-1.484c1.436.984 4.725 4.739 3.57 11.495"
}), /*#__PURE__*/React.createElement("path", {
d: "M25.589 19.295s1.816 2.59 3.632-.284V16l-.46-1.658-.36-.278M29.544 19.295s1.816 2.59 3.633-.284V16l-.873-2.125M36.82 19.011c-1.961 1.89-3.32 0-3.32 0M20.301 16.447a3.732 3.732 0 011.278 2.432c.033.288.131.57.336.774.595.594 1.959 1.517 3.323-.642V16l-.636-1.268M40.356 18.289c1.926.57 2.262 3.427-.702 4.1l-6.329 1.435"
})));
}
const ForwardRef = React.forwardRef(FlexedBicepsIcon);
module.exports = ForwardRef;