Delete node_modules directory

This commit is contained in:
Oliver Bryan
2026-02-08 07:17:51 +00:00
committed by GitHub
parent c2a62a4e08
commit 4ec9e4a1ca
16242 changed files with 0 additions and 2190069 deletions

View File

@@ -1,25 +0,0 @@
"use strict";
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.HumanHeight = void 0;
const react_1 = __importDefault(require("react"));
const HumanHeight = (_a) => {
var { size = 24, className = "" } = _a, props = __rest(_a, ["size", "className"]);
return (react_1.default.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", className: `${className}` }, props),
react_1.default.createElement("path", { d: "M6 2h4v4H6V2zM3 7h10v9h-2v6H9v-6H7v6H5v-6H3V7zm18-4h-6v2h6V3zm-4 4h4v2h-4V7zm4 4h-6v2h6v-2zm-6 8h6v2h-6v-2zm6-4h-4v2h4v-2z", fill: "currentColor" })));
};
exports.HumanHeight = HumanHeight;
exports.HumanHeight.displayName = 'HumanHeight';