circuit-to-svg 0.0.184 → 0.0.185

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.
package/dist/index.js CHANGED
@@ -4695,10 +4695,10 @@ var createSvgObjectsForSchPortBoxLine = ({
4695
4695
  });
4696
4696
  const { has_input_arrow, has_output_arrow } = schPort;
4697
4697
  if ((has_input_arrow || has_output_arrow) && schPort.side_of_component) {
4698
- const arrowSize = Math.abs(transform.a) * 0.15;
4698
+ const arrowSize = Math.abs(transform.a) * 0.1;
4699
4699
  const arrowColor = colorMap.schematic.component_outline;
4700
4700
  const arrowAxialLength = arrowSize * Math.cos(Math.PI / 6);
4701
- const strokeWidth = getSchStrokeSize(transform) / 2;
4701
+ const strokeWidth = getSchStrokeSize(transform) / 3;
4702
4702
  let inputAngleRads = 0;
4703
4703
  let outputAngleRads = 0;
4704
4704
  if (schPort.side_of_component === "left") {