primereact
Version:
PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime
34 lines (30 loc) • 934 B
JavaScript
'use client';
import * as React from 'react';
import { IconBase } from 'primereact/iconbase';
function _extends() {
return _extends = Object.assign ? Object.assign.bind() : function (n) {
for (var e = 1; e < arguments.length; e++) {
var t = arguments[e];
for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
}
return n;
}, _extends.apply(null, arguments);
}
var BlankIcon = /*#__PURE__*/React.memo(/*#__PURE__*/React.forwardRef(function (inProps, ref) {
var pti = IconBase.getPTI(inProps);
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
width: "14",
height: "14",
viewBox: "0 0 14 14",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, pti), /*#__PURE__*/React.createElement("rect", {
width: "1",
height: "1",
fill: "currentColor",
fillOpacity: "0"
}));
}));
BlankIcon.displayName = 'BlankIcon';
export { BlankIcon };