How to change size/shape of Holographic button?

I have a holographic button that I’m trying to make a rectangle instead of the default square. Whenever I try scaling, it stretches or squishes out the text like so https://playground.babylonjs.com/#E4GIP3#1

Is there a way to keep the text from distorting and change the button shape only?

A bit of a hack :slight_smile: https://playground.babylonjs.com/#E4GIP3#2

A working snippet

const addButton = (label: string) =>{
const holographicButton = new BABYLON.GUI.HolographicButton(label);
panel.addControl(holographicButton);

// Scaling
holographicButton.scaling = new BABYLON.Vector3(2, 2, 2);
holographicButton.mesh?.getChildMeshes().forEach((mesh: BABYLON.AbstractMesh) => {
mesh.scaling = new BABYLON.Vector3(2, 2, 2);
});

//Coloring
holographicButton.backMaterial.albedoColor = BABYLON.Color3.Purple();
holographicButton.backMaterial.alpha = 0.65;

return holographicButton;
}