@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
28 lines • 1.18 kB
JavaScript
const React = require("react");
function FieldIconGender({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
d: "M15.75 2.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0V4.31l-2.331 2.332A7.001 7.001 0 0 1 11.5 17.71v.79h2a.75.75 0 0 1 0 1.5h-2v1.5a.75.75 0 0 1-1.5 0V20H8a.75.75 0 0 1 0-1.5h2v-.79a7.001 7.001 0 1 1 5.412-12.182l2.277-2.278H16.5a.75.75 0 0 1-.75-.75Zm-5 13.75a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconGender);
module.exports = ForwardRef;