@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.36 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8.244 13.111c0-.2-.162-.361-.361-.361h-.778c-.199 0-.36.162-.36.361v1.778c0 .2.161.361.36.361h.778c.2 0 .361-.162.361-.361z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M21.744 12c0 5.385-4.365 9.75-9.75 9.75s-9.75-4.365-9.75-9.75 4.365-9.75 9.75-9.75 9.75 4.365 9.75 9.75m-11.5 0v4a.75.75 0 0 0 1.5 0v-1.06h1.826a.75.75 0 0 0 0-1.5h-1.826v-.69h2.25a.75.75 0 1 0 0-1.5h-3a.75.75 0 0 0-.75.75m5 0v4a.75.75 0 0 0 1.5 0v-1.06h1.826a.75.75 0 0 0 0-1.5h-1.826v-.69h2.25a.75.75 0 1 0 0-1.5h-3a.75.75 0 0 0-.75.75m-4-6v3a.75.75 0 0 0 1.5 0V6a.75.75 0 1 0-1.5 0M7.883 16.75a1.86 1.86 0 0 0 1.861-1.861V13.11a1.86 1.86 0 0 0-1.861-1.861h-.778a1.86 1.86 0 0 0-1.86 1.861v1.778c0 1.027.833 1.861 1.86 1.861z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(OffIcon);
module.exports = ForwardRef;