UNPKG

@jinshuju/field-icons-react

Version:

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

30 lines 1.56 kB
const React = require("react"); function FieldIconReservation({ 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.625 14.458a.75.75 0 0 0-1.5 0v2.079c0 .635.345 1.22.9 1.53l.986.547a.75.75 0 1 0 .728-1.311l-.985-.548a.25.25 0 0 1-.129-.218v-2.079Z" }), /*#__PURE__*/React.createElement("path", { d: "M7.875 1.875a.75.75 0 0 1 .75.75v.75h5.5v-.75a.75.75 0 0 1 1.5 0v.75h1.75a2.75 2.75 0 0 1 2.75 2.75v7.009a5.5 5.5 0 0 1-8.273 7.241H5.375a2.75 2.75 0 0 1-2.75-2.75v-11.5a2.75 2.75 0 0 1 2.75-2.75h1.75v-.75a.75.75 0 0 1 .75-.75Zm10.75 4.25c0-.69-.56-1.25-1.25-1.25h-1.75v.75a.75.75 0 0 1-1.5 0v-.75h-5.5v.75a.75.75 0 0 1-1.5 0v-.75h-1.75c-.69 0-1.25.56-1.25 1.25v2.25h14.5v-2.25Zm0 3.75h-14.5v7.75c0 .69.56 1.25 1.25 1.25h5.48a5.5 5.5 0 0 1 7.77-7.014V9.875Zm1.25 6.75a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconReservation); module.exports = ForwardRef;