@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
58 lines (56 loc) • 2.98 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function StudioMicrophoneIcon({
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: "#3F3F3F",
d: "M48.11 28.54l-4.38 4.39-4.35 4.35-5.81 5.47s-1.276 1.393-3.19 1.92c-1.915.526-4.79-.15-6.57-1.92l-3.58-3.58c-2.77-2.78-2.77-7.32 0-10.1l4.31-4.3 5.51-5.51 4.39-4.39c2.78-2.78 7.32-2.78 10.09 0l.6.6 2.98 2.98c2.78 2.77 2.78 7.32 0 10.09z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#9B9B9A",
d: "M43.832 24.262l-4.38 4.39c-.925.928-4.35 2.456-5.278 3.33-.928.874-3.27 5.187-4.882 6.49-1.612 1.302-1.072 1.414-3.19 1.92s-4.79-.15-6.57-1.92l-.6-.6c-2.77-2.78-2.77-7.32 0-10.1l4.31-4.3 5.51-5.51 4.39-4.39c2.78-2.78 7.32-2.78 10.09 0l.6.6c2.78 2.78 2.78 7.32 0 10.09z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#D0CFCE",
d: "M21.902 54.688h27.843v5.297H21.902z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#3F3F3F",
d: "M47.051 54.688h2.694v5.297h-2.694z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#9B9B9A",
d: "M36.364 30.595l-.543-1.362c-.69 0-2.25.923-2.25 1.612v24.092l2.929-.25-.136-24.092z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#3F3F3F",
d: "M38.12 54.688l-.219-23.82c0-.689-.847-1.059-1.537-1.059l.136 24.879h1.62z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#D0CFCE",
d: "M32.42 28.088a.997.997 0 01-.707-.293l-7.598-7.597a1 1 0 010-1.414c.019-.019.044-.025.063-.042l-.026-.027s-.388.367-.779.758a1 1 0 000 1.414l7.495 7.57a.997.997 0 001.415 0 4.62 4.62 0 01.63-.52.992.992 0 01-.493.15zM41.027 35.658l-1.202 1.18a.982.982 0 00.263.86l.609.592a.994.994 0 00.708.294c.255 0 .51-.097.706-.292.39-.39.822-.792.822-.792l-1.906-1.842z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M29.392 18.596l4.387-4.386c2.776-2.777 7.32-2.777 10.096 0l3.578 3.577c2.776 2.777 2.776 7.32 0 10.097l-4.387 4.386M29.72 44.009a7.15 7.15 0 01-6.568-1.92l-3.578-3.578c-2.777-2.777-2.777-7.32 0-10.096l4.303-4.304M33.57 54.688V31.845a2.25 2.25 0 012.251-2.25h.543a2.25 2.25 0 012.25 2.25v22.843M22.44 54.688h27.305v5.297H22.44zM20.996 40.499l-2.423 2.469M41.636 36.304l.534.534M24.823 19.491l7.597 7.597"
})));
}
const ForwardRef = React.forwardRef(StudioMicrophoneIcon);
module.exports = ForwardRef;