UNPKG

@jinshuju/field-icons-react

Version:

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

36 lines 1.66 kB
const React = require("react"); function FieldIconPagination({ 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: "M2.75 3a.75.75 0 0 1 .75.75V6c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V3.75a.75.75 0 0 1 1.5 0V6a2.75 2.75 0 0 1-2.75 2.75H4.75A2.75 2.75 0 0 1 2 6V3.75A.75.75 0 0 1 2.75 3Z" }), /*#__PURE__*/React.createElement("path", { d: "M21.25 21a.75.75 0 0 1-.75-.75V18c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v2.25a.75.75 0 0 1-1.5 0V18a2.75 2.75 0 0 1 2.75-2.75h14.5A2.75 2.75 0 0 1 22 18v2.25a.75.75 0 0 1-.75.75Z" }), /*#__PURE__*/React.createElement("path", { d: "M3 11.25a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5H3Z" }), /*#__PURE__*/React.createElement("path", { d: "M9.25 12a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z" }), /*#__PURE__*/React.createElement("path", { d: "M17 11.25a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Z" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPagination); module.exports = ForwardRef;