@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 838 B
JavaScript
import * as React from "react";
function FieldIconBirthday({
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",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8m0-5s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1M2 21h20M7 8v3m5-3v3m5-3v3M7 4h.01M12 4h.01M17 4h.01"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconBirthday);
export default ForwardRef;