UNPKG

@astraicons/react

Version:

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

20 lines 965 B
const React = require("react"); const { forwardRef } = require("react"); const CopyrightIcon = ({ 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-.745 5.75a2.306 2.306 0 0 0-2.306 2.306v3.888a2.306 2.306 0 0 0 2.306 2.306h1.555a2.306 2.306 0 0 0 2.306-2.306v-.194a.75.75 0 0 0-1.5 0v.194c0 .445-.36.806-.806.806h-1.555a.806.806 0 0 1-.806-.806v-3.888c0-.445.361-.806.806-.806h1.555c.445 0 .806.36.806.806v.777a.75.75 0 0 0 1.5 0v-.777A2.306 2.306 0 0 0 12.81 7.75z" })); const ForwardRef = forwardRef(CopyrightIcon); module.exports = ForwardRef;