@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
26 lines • 990 B
JavaScript
import * as React from "react";
function FolderOpen02Icon({
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",
strokeLinejoin: "round",
d: "M19.579 10.484V7.442a1 1 0 0 0-1-1h-6.67a1 1 0 0 1-.707-.293L9.766 4.714a1 1 0 0 0-.707-.293H3.4a1 1 0 0 0-1 1V18.58a1 1 0 0 0 1 1h1.177a.855.855 0 0 0 .855-.855v0q0-.156.055-.3l2.734-7.29a1 1 0 0 1 .936-.65h11.056a1 1 0 0 1 .95 1.316l-2.366 7.095a1 1 0 0 1-.948.684H4.42"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FolderOpen02Icon);
export default ForwardRef;