@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.02 kB
JavaScript
const React = require("react");
function FigmaIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M9 2.447h6A3.553 3.553 0 0 1 16.903 9a3.55 3.55 0 0 1 .61 5.512 3.553 3.553 0 0 1-4.96.063V18a3.552 3.552 0 1 1-5.456-3 3.55 3.55 0 0 1 0-6A3.552 3.552 0 0 1 9 2.447m0 6h2.447V3.553H9a2.447 2.447 0 0 0 0 4.894m0 1.106a2.447 2.447 0 1 0 0 4.894h2.447V9.553zm0 6A2.447 2.447 0 1 0 11.447 18v-2.447zm6-7.106a2.447 2.447 0 1 0 0-4.894h-2.447v4.894zm0 1.106a2.447 2.447 0 1 0 0 4.894 2.447 2.447 0 0 0 0-4.894",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(FigmaIcon);
module.exports = ForwardRef;