@nomercyicons/react
Version:
26 lines • 1.14 kB
JavaScript
const React = require("react");
function WorkspacePremiumRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.92 12.75l1.08-.82 1.07.81c.39.29.92-.08.78-.55l-.42-1.36 1.2-.95c.37-.28.16-.88-.32-.88h-1.4l-.43-1.34a.5.5 0 00-.95 0L11.09 9H9.68c-.47 0-.68.6-.31.89l1.19.95-.42 1.36c-.14.47.39.84.78.55zM6 21.61c0 .68.67 1.16 1.32.95L12 21l4.68 1.56a.998.998 0 001.32-.95v-6.33A7.96 7.96 0 0020 10c0-4.42-3.58-8-8-8s-8 3.58-8 8c0 2.03.76 3.87 2 5.28v6.33zM12 4c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z"
}));
}
const ForwardRef = React.forwardRef(WorkspacePremiumRoundedIcon);
module.exports = ForwardRef;