@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
33 lines • 1.2 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const DiamondIcon = ({
title,
titleId,
...props
}, ref) => /*#__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",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12 4V3M16.691 4.032l-.74.74M7.729 4.773l-.741-.74",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
d: "m19.574 11.923-6.038 8.27c-.785 1.076-2.287 1.076-3.072 0l-6.038-8.27c-.687-.942-.525-2.316.359-3.037l1.787-1.459A1.86 1.86 0 0 1 7.749 7h8.502c.425 0 .838.15 1.177.427l1.787 1.459c.884.721 1.047 2.095.359 3.037ZM4 11.25h16"
}), /*#__PURE__*/React.createElement("path", {
d: "m11 7-2 4M13 7l2 4M12 11v10",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m20 16-1.5 2-1.5 2M7 20l-1.5-2L4 16",
opacity: 0.4
}));
const ForwardRef = forwardRef(DiamondIcon);
export default ForwardRef;