@heroicons/react
Version:
16 lines (14 loc) • 522 B
JavaScript
const React = require("react");
function UserRemoveIcon(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", {
d: "M11 6a3 3 0 11-6 0 3 3 0 016 0zM14 17a6 6 0 00-12 0h12zM13 8a1 1 0 100 2h4a1 1 0 100-2h-4z"
}));
}
const ForwardRef = React.forwardRef(UserRemoveIcon);
module.exports = ForwardRef;