@heroicons/react
Version:
18 lines (16 loc) • 521 B
JavaScript
const React = require("react");
function UserIcon(props, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(UserIcon);
module.exports = ForwardRef;