@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
25 lines • 963 B
JavaScript
const React = require("react");
function Data03Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M17.76 4.32a1.92 1.92 0 1 0 3.84 0 1.92 1.92 0 0 0-3.84 0Zm0 0H6.6m11.16 15.36a1.92 1.92 0 1 0 3.84 0 1.92 1.92 0 0 0-3.84 0Zm0 0h-5.52a.96.96 0 0 1-.96-.96V5.28M17.4 12h-6m10.2 0a1.92 1.92 0 1 1-3.84 0 1.92 1.92 0 0 1 3.84 0ZM6.24 4.32a1.92 1.92 0 1 1-3.84 0 1.92 1.92 0 0 1 3.84 0Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Data03Icon);
module.exports = ForwardRef;