@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
28 lines • 1.98 kB
JavaScript
const React = require("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: "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: "m16.395 5.495.087-.005a.75.75 0 0 1 .745.662l.005.088v3.243h1.514a3 3 0 0 1 3 3V20c.39 0 .707.29.75.663l.006.087a.75.75 0 0 1-.663.745l-.088.005H2.248a.75.75 0 1 1 0-1.5h-.003v-7.517a3 3 0 0 1 3-3h1.486V6.24a.75.75 0 0 1 .664-.745l.087-.005a.75.75 0 0 1 .745.662l.005.088v3.243h3V6.24a.75.75 0 0 1 .663-.745l.087-.005a.75.75 0 0 1 .745.662l.005.088v3.243h3V6.24a.75.75 0 0 1 .663-.746Zm-.402 10.911c-1.33.716-2.671 1.078-4.015 1.078-1.34 0-2.667-.36-3.971-1.074-.83.706-1.69 1.074-2.577 1.074-.578 0-1.14-.156-1.685-.46v2.96h16.5V17.03a3.395 3.395 0 0 1-1.665.453c-.886 0-1.75-.37-2.587-1.078Zm2.753-5.422h-2.168a.752.752 0 0 1-.192 0h-4.308a.756.756 0 0 1-.192 0H7.578a.756.756 0 0 1-.192 0h-2.14a1.5 1.5 0 0 0-1.5 1.5v2.686c.595.555 1.155.814 1.684.814.557 0 1.157-.284 1.805-.894l.14-.136.42-.42.504.311c1.236.764 2.46 1.139 3.68 1.139 1.141 0 2.298-.328 3.478-.995l.254-.148.5-.302.416.412c.71.706 1.36 1.033 1.954 1.033.526 0 1.08-.258 1.665-.811v-2.69a1.5 1.5 0 0 0-1.5-1.5ZM11.996 2.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm4.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm-9 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconBirthday);
module.exports = ForwardRef;