UNPKG

@jinshuju/field-icons-react

Version:

First, install `@jinshuju/field-icons-react` from npm:

32 lines 1.69 kB
const React = require("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: "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: "M19.75 2.75a.75.75 0 0 0-1.5 0v1.5h-1.462a.75.75 0 0 0 0 1.5h1.462v1.5a.75.75 0 0 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z" }), /*#__PURE__*/React.createElement("path", { d: "M12 2.75c0-.414-.337-.753-.75-.722C6.077 2.41 2 6.729 2 12c0 5.523 4.477 10 10 10 5.27 0 9.589-4.077 9.972-9.25.03-.413-.308-.75-.722-.75s-.747.337-.783.75a8.5 8.5 0 1 1-9.217-9.217c.413-.036.75-.369.75-.783Z" }), /*#__PURE__*/React.createElement("path", { d: "M15 7.919c-.838-.873-1.97-1.419-3.25-1.419C9.046 6.5 7 8.936 7 11.75S9.046 17 11.75 17c1.362 0 2.557-.618 3.408-1.591.119.384.304.707.554.964.47.482 1.06.627 1.538.627a.75.75 0 0 0 0-1.5.62.62 0 0 1-.462-.173c-.114-.117-.288-.402-.288-1.077v-6.5a.75.75 0 0 0-1.5 0v.169ZM11.75 8C13.464 8 15 9.593 15 11.75c0 2.156-1.536 3.75-3.25 3.75S8.5 13.906 8.5 11.75C8.5 9.593 10.036 8 11.75 8Z" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconAge); module.exports = ForwardRef;