UNPKG

@astraicons/react

Version:

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

21 lines 894 B
import * as React from "react"; function MediumIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M7.64 6c3.116 0 5.641 2.543 5.641 5.68s-2.525 5.679-5.64 5.679S2 14.816 2 11.679 4.525 6 7.64 6m9.009.333c1.557 0 2.82 2.393 2.82 5.346s-1.263 5.347-2.82 5.347c-1.558 0-2.82-2.394-2.82-5.347 0-2.952 1.262-5.346 2.82-5.346m4.36.557c.547 0 .991 2.144.991 4.79 0 2.644-.444 4.79-.992 4.79s-.992-2.145-.992-4.79.444-4.79.992-4.79" })); } const ForwardRef = React.forwardRef(MediumIcon); export default ForwardRef;