@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 889 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",
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("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M10 15.5v-7h3.111c.86 0 1.556.696 1.556 1.556v1.05c0 .86-.697 1.556-1.556 1.556h-2.644M12.723 12.778l1.555 2.722"
}));
const ForwardRef = forwardRef(RegisteredTrademarkIcon);
export default ForwardRef;