@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 904 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const RegisteredTrademarkIcon = ({
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 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m-2 5.75a.75.75 0 0 0-.75.75v7a.75.75 0 0 0 1.5 0v-2.088h1.47l1.407 2.46a.75.75 0 0 0 1.303-.744l-1.057-1.848a2.3 2.3 0 0 0 1.544-2.174v-1.05a2.306 2.306 0 0 0-2.306-2.306zm3.111 1.5c.445 0 .806.36.806.806v1.05c0 .445-.36.806-.806.806H10.75V9.25z"
}));
const ForwardRef = forwardRef(RegisteredTrademarkIcon);
export default ForwardRef;