UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

25 lines 955 B
const React = require("react"); const { forwardRef } = require("react"); const D6Icon = ({ 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", { d: "M10.204 3.499a3.48 3.48 0 0 1 3.592 0l4.408 2.638C19.315 6.802 20 8.032 20 9.362v5.276c0 1.33-.685 2.56-1.796 3.225l-4.408 2.638a3.48 3.48 0 0 1-3.592 0l-4.408-2.638C4.685 17.198 4 15.97 4 14.638V9.362c0-1.33.685-2.56 1.796-3.225z" }), /*#__PURE__*/React.createElement("path", { d: "m12.184 12 7.186-4.143M12.184 12 5 7.857M12.184 12v8.285", opacity: 0.4 })); const ForwardRef = forwardRef(D6Icon); module.exports = ForwardRef;