@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
24 lines • 818 B
JavaScript
import * as React from "react";
function FieldIconAge({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "none",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeWidth: 1.8,
d: "M17 5h2m0 0h2m-2 0v2m0-2V3m-8 .055a9.001 9.001 0 1 0 9.915 10.187M16 8v6c0 1.5 1.5 2 1.5 2M16 12c0 2.485-1.79 4.5-4 4.5S8 14.485 8 12s1.79-4.5 4-4.5 4 2.015 4 4.5Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconAge);
export default ForwardRef;