@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
24 lines • 866 B
JavaScript
const React = require("react");
function FileIcon({
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", {
d: "M13.167 3v4.5c0 .621.522 1.125 1.166 1.125H19M13.367 3H7.333C6.045 3 5 4.007 5 5.25v13.5C5 19.993 6.045 21 7.333 21h9.334C17.955 21 19 19.993 19 18.75V8.432a2.2 2.2 0 0 0-.683-1.591l-3.3-3.182A2.38 2.38 0 0 0 13.367 3Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FileIcon);
module.exports = ForwardRef;