@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
48 lines (46 loc) • 2.2 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function LevelSliderIcon({
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("path", {
fill: "#d0cfce",
d: "M51.885 5.95H19.95c-1.102 0-2 .897-2 2v56.142c0 1.102.898 2 2 2h31.935c1.102 0 2-.898 2-2V7.95c0-1.103-.898-2-2-2z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#3f3f3f",
d: "M29.102 23.468v9.678h13.797v-9.678H29.101z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#9b9b9a",
d: "M39.073 13.958c0-1.103-2.237-3-3.34-3 0 0-2.687.57-2.687 1.673l-.295 10.816 6.625.021-.303-9.51zM32.733 33.412v24.546c0 1.103 1.048 3 3 3s3.34-1.897 3.34-3V33.412h-6.34z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M32.733 23.097v-9.139a3 3 0 013-3h.34a3 3 0 013 3v9.139M39.073 33.412v24.546a3 3 0 01-3 3h-.34a3 3 0 01-3-3V33.412M29.102 23.447h13.797v9.699H29.102zM33.021 28.333h5.889"
}), /*#__PURE__*/React.createElement("path", {
d: "M51.885 67.092H19.95a3 3 0 01-3-3V7.95a3 3 0 013-3h31.935a3 3 0 013 3v56.142a3 3 0 01-3 3zM47.911 18.26h2.648M47.911 12.631h2.648M47.922 23.468h2.637M47.911 28.203h2.648M47.922 33.412h2.637M47.911 39.041h2.648M47.912 44.249h2.647M47.901 48.984h2.658M47.892 54.193h2.667M47.907 58.909h2.652M21.282 18.26h2.648M21.282 12.631h2.648M21.293 23.468h2.637M21.282 28.203h2.648M21.293 33.412h2.637M21.282 39.041h2.648M21.283 44.249h2.647M21.272 48.984h2.658M21.263 54.193h2.667M21.277 58.909h2.653"
})));
}
const ForwardRef = React.forwardRef(LevelSliderIcon);
export default ForwardRef;