UNPKG

@astraicons/react

Version:

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

38 lines 1.02 kB
const React = require("react"); const { forwardRef } = require("react"); const TmIcon = ({ 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("rect", { width: 20, height: 20, x: 2, y: 2, rx: 10 }), /*#__PURE__*/React.createElement("g", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, opacity: 0.4 }, /*#__PURE__*/React.createElement("path", { d: "M7.332 8.5v7M5 8.5h4.667" })), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M11.666 15.5v-7l3.111 5.25 3.111-5.25v7", opacity: 0.4 })); const ForwardRef = forwardRef(TmIcon); module.exports = ForwardRef;