@helpwave/hightide
Version:
helpwave's component and theming library
80 lines (79 loc) • 2.86 kB
JavaScript
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/components/layout-and-navigation/VerticalDivider.tsx
var VerticalDivider_exports = {};
__export(VerticalDivider_exports, {
VerticalDivider: () => VerticalDivider
});
module.exports = __toCommonJS(VerticalDivider_exports);
var import_jsx_runtime = require("react/jsx-runtime");
var VerticalDivider = ({
width = 1,
height = 100,
strokeWidth = 4,
dashGap = 4,
dashLength = 4
}) => {
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { style: { width: width + "px", height: height + "px" }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
"svg",
{
width,
height,
viewBox: `0 0 ${width} ${height}`,
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"line",
{
opacity: "0.5",
x1: width / 2,
y1: height,
x2: width / 2,
y2: "0",
stroke: "url(#paint_linear)",
strokeWidth,
strokeDasharray: `${dashLength} ${dashLength + dashGap}`,
strokeLinecap: "round"
}
),
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
"linearGradient",
{
id: "paint_linear",
x1: width / 2,
y1: "0",
x2: width / 2,
y2: height,
gradientUnits: "userSpaceOnUse",
children: [
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { stopOpacity: "0", stopColor: "currentColor" }),
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "0.5", stopColor: "currentColor" }),
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: "1", stopColor: "currentColor", stopOpacity: "0" })
]
}
) })
]
}
) });
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
VerticalDivider
});
//# sourceMappingURL=VerticalDivider.js.map