@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.13 kB
JavaScript
import * as React from "react";
function ErrorProfileIcon({
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", {
fillRule: "evenodd",
d: "M8.25 5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0M3.25 15c0-2.623 1.627-4.75 4.25-4.75h4.23c1.953 0 3.52 1.612 3.52 3.547q0 .263-.043.524a1.677 1.677 0 0 0 1.64 1.953l2.71.022c.66.006 1.193.543 1.193 1.204 0 2.9-2.35 5.25-5.25 5.25h-6a6.25 6.25 0 0 1-6.25-6.25z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M17.887 9.823a.75.75 0 1 0-1.062 1.06l.883.885-.885.883a.75.75 0 1 0 1.06 1.061l.885-.883.883.885a.75.75 0 1 0 1.061-1.06l-.883-.884.885-.883a.75.75 0 1 0-1.06-1.062l-.884.883z"
}));
}
const ForwardRef = React.forwardRef(ErrorProfileIcon);
export default ForwardRef;