@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.04 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const OffIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 12,
r: 9,
strokeLinecap: "round"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12 9V6"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M7.889 12H7.11C6.497 12 6 12.498 6 13.111v1.778C6 15.503 6.497 16 7.111 16h.778C8.503 16 9 15.502 9 14.889V13.11C9 12.497 8.503 12 7.889 12M14 12h-3v4m2.576-1.81h-2.125M19 12h-3v4m2.576-1.81h-2.125"
}));
const ForwardRef = forwardRef(OffIcon);
module.exports = ForwardRef;