impaktapps-design 0.2.993-alpha.232 → 0.2.993-alpha.233

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22614,16 +22614,16 @@ const DrawStackBarLineGraph = ({
22614
22614
  const topStackIndex = barStacks.length - 1;
22615
22615
  return barStacks.map((barStack, stackIdx) => barStack.bars.map((bar) => {
22616
22616
  const isTop = stackIdx === topStackIndex;
22617
- const r2 = 6;
22617
+ const borderRadius2 = 6;
22618
22618
  return isTop ? /* @__PURE__ */ jsx$1("path", {
22619
22619
  d: `
22620
- M ${bar.x + r2},${bar.y}
22621
- h ${bar.width - 2 * r2}
22622
- q ${r2},0 ${r2},${r2}
22623
- v ${bar.height - r2}
22620
+ M ${bar.x + borderRadius2},${bar.y}
22621
+ h ${bar.width - 2 * borderRadius2}
22622
+ q ${borderRadius2},0 ${borderRadius2},${borderRadius2}
22623
+ v ${bar.height - borderRadius2}
22624
22624
  h ${-bar.width}
22625
- v ${-(bar.height - r2)}
22626
- q 0,${-r2} ${r2},${-r2}
22625
+ v ${-(bar.height - borderRadius2)}
22626
+ q 0,${-borderRadius2} ${borderRadius2},${-borderRadius2}
22627
22627
  z
22628
22628
  `,
22629
22629
  fill: bar.color,