@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 783 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const D4Icon = ({
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", {
d: "M11.25 21.691c-1-.153-1.96-.613-2.73-1.382L3.69 15.48a4.923 4.923 0 0 1 0-6.96L8.52 3.69a4.9 4.9 0 0 1 2.73-1.383zM12.75 2.308a4.9 4.9 0 0 1 2.73 1.383L20.31 8.52a4.92 4.92 0 0 1 0 6.96L15.48 20.31a4.9 4.9 0 0 1-2.73 1.382z"
}));
const ForwardRef = forwardRef(D4Icon);
module.exports = ForwardRef;