@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
18 lines • 483 B
JavaScript
const React = require("react");
function FieldIconPlaceholder({
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",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPlaceholder);
module.exports = ForwardRef;