@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
32 lines • 1.77 kB
JavaScript
const React = require("react");
function FieldIconMarquee({
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.25 5.75A2.75 2.75 0 0 1 10 3h4a2.75 2.75 0 0 1 2.75 2.75v12.5A2.75 2.75 0 0 1 14 21h-4a2.75 2.75 0 0 1-2.75-2.75V5.75ZM10 4.5c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25V5.75c0-.69-.56-1.25-1.25-1.25h-4Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M17.75 6.137a1.75 1.75 0 0 1 2.303-1.66l.75.334A1.75 1.75 0 0 1 22 6.47v11.058a1.75 1.75 0 0 1-1.197 1.66l-.75.334a1.75 1.75 0 0 1-2.303-1.66V6.137Zm1.83-.237a.25.25 0 0 0-.33.237v11.726c0 .17.167.29.33.237l.75-.334a.25.25 0 0 0 .17-.237V6.471a.25.25 0 0 0-.17-.237l-.75-.334Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.25 6.137a1.75 1.75 0 0 0-2.303-1.66l-.75.334A1.75 1.75 0 0 0 2 6.47v11.058a1.75 1.75 0 0 0 1.197 1.66l.75.334a1.75 1.75 0 0 0 2.303-1.66V6.137ZM4.421 5.9a.25.25 0 0 1 .329.237v11.726a.25.25 0 0 1-.329.237l-.75-.334a.25.25 0 0 1-.171-.237V6.471a.25.25 0 0 1 .17-.237l.751-.334Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconMarquee);
module.exports = ForwardRef;