@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
38 lines • 1.81 kB
JavaScript
const React = require("react");
function FieldIconDate({
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: "M7.5 12.25a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.75 16a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.5 12.25a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.75 16a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.5 12.25a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.5 2a.75.75 0 0 1 .75.75V4h5.5V2.75a.75.75 0 0 1 1.5 0V4H18a3 3 0 0 1 3 3v11a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1.75V2.75A.75.75 0 0 1 8.5 2Zm6.25 3.5h-5.5v1.25a.75.75 0 0 1-1.5 0V5.5H6A1.5 1.5 0 0 0 4.5 7v1.25h15V7A1.5 1.5 0 0 0 18 5.5h-1.75v1.25a.75.75 0 0 1-1.5 0V5.5ZM4.5 9.75V18A1.5 1.5 0 0 0 6 19.5h12a1.5 1.5 0 0 0 1.5-1.5V9.75h-15Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconDate);
module.exports = ForwardRef;