UNPKG

@astraicons/react

Version:

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

28 lines 1.05 kB
const React = require("react"); const { forwardRef } = require("react"); const AccountStatement1Icon = ({ 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("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M20.8 9c.11 0 .2-.09.197-.2A6 6 0 0 0 15.2 3.003a.195.195 0 0 0-.2.197v5.6c0 .11.09.2.2.2z", clipRule: "evenodd", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "M19.483 17a9 9 0 0 0 1.512-4.7.29.29 0 0 0-.295-.3h-5.86c-.165 0-.297.135-.317.3a2.54 2.54 0 1 1-2.822-2.823c.164-.02.299-.152.299-.318V3.3c0-.166-.134-.3-.3-.295A9 9 0 1 0 19.483 17Z" })); const ForwardRef = forwardRef(AccountStatement1Icon); module.exports = ForwardRef;