@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 • 947 B
JavaScript
import * as React from "react";
function GitBranch04Icon({
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: "M15.008 16.5c0 1.38 1.118 2.5 2.496 2.5A2.5 2.5 0 0 0 20 16.5c0-1.38-1.117-2.5-2.496-2.5a2.5 2.5 0 0 0-2.496 2.5Zm0 0h-2.495a5.985 5.985 0 0 1-5.98-5.99V9M8.992 6.5c0 1.38-1.118 2.5-2.496 2.5A2.5 2.5 0 0 1 4 6.5C4 5.12 5.117 4 6.496 4a2.5 2.5 0 0 1 2.496 2.5Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(GitBranch04Icon);
export default ForwardRef;