@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 921 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const TmIcon = ({
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: "M12.25 2.25c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10M5.25 8a.75.75 0 0 0 0 1.5h1.582v6.25a.75.75 0 0 0 1.5 0V9.5h1.585a.75.75 0 0 0 0-1.5zm13.088.026a.75.75 0 0 0-.844.341l-2.466 4.16-2.466-4.16a.75.75 0 0 0-1.395.383v7a.75.75 0 0 0 1.5 0v-4.263l1.716 2.896a.75.75 0 0 0 1.29 0l1.717-2.897v4.264a.75.75 0 0 0 1.5 0v-7a.75.75 0 0 0-.552-.724"
}));
const ForwardRef = forwardRef(TmIcon);
export default ForwardRef;