UNPKG

@astraicons/react

Version:

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

20 lines 925 B
import * as React from "react"; import { forwardRef } from "react"; const IaIcon = ({ 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: "M16.5 2.25c2.9 0 5.25 2.35 5.25 5.25v9c0 2.9-2.35 5.25-5.25 5.25h-9a5.25 5.25 0 0 1-5.25-5.25v-9c0-2.9 2.35-5.25 5.25-5.25zM8.25 7a.75.75 0 0 0-.75.75v8a.75.75 0 0 0 1.5 0v-8A.75.75 0 0 0 8.25 7m5.667 0a.75.75 0 0 0-.665.403l-.047.11-2.667 8a.75.75 0 0 0 1.424.474l.57-1.709h2.77l.57 1.71a.75.75 0 1 0 1.423-.475l-2.667-8A.75.75 0 0 0 13.917 7m.886 5.778H13.03l.885-2.657z" })); const ForwardRef = forwardRef(IaIcon); export default ForwardRef;