@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.06 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const AddFolderIcon = ({
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: "M16.496 13.25a.75.75 0 0 1 .75.75v.747h.748a.75.75 0 0 1 0 1.5h-.748v.747a.75.75 0 0 1-1.5 0v-.747H15a.75.75 0 0 1 0-1.5h.746V14a.75.75 0 0 1 .75-.75m-10.683-11A3.56 3.56 0 0 0 2.25 5.813v4.437H21.7c-.317-1.949-2.093-3.359-4.078-3.34-1.022.01-2.123-.02-3.091-.132-1-.117-1.741-.31-2.132-.556-.463-.29-.625-.558-.982-1.144l-.135-.22c-.804-1.31-2.138-2.608-3.959-2.608zm15.937 9.5H2.25v4.75c0 2.9 2.35 5.25 5.25 5.25h9c2.9 0 5.25-2.35 5.25-5.25z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(AddFolderIcon);
module.exports = ForwardRef;