@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 990 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ErrorProfileIcon = ({
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: "M11.75 2a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5M7.75 11C5.196 11 3 12.898 3 15.386v1.364c0 3.241 2.867 5.75 6.25 5.75h5c3.383 0 6.25-2.509 6.25-5.75h-1.932a4 4 0 0 1-4-4V11z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20.27 11.618a.75.75 0 0 0-1.06-1.062l-.885.883-.883-.885a.75.75 0 1 0-1.062 1.06l.884.885-.885.883a.75.75 0 1 0 1.06 1.061l.884-.882.883.884a.75.75 0 1 0 1.062-1.06l-.883-.884z"
}));
const ForwardRef = forwardRef(ErrorProfileIcon);
module.exports = ForwardRef;