Adding Logo to NavBar

Product: PowerShell Universal
Version: 2.3.0

I have successfully added a logo to the navigation bar at the top of my dashboard by using the code below. How can adjust the size of the image file? It does not appear that there are any parameters to modify the size directly.

$Pages = @()
$Pages +=New-UDPage -Name 'Page1' -Logo '/Images/Logo1.png' -Content {

}

New-UDDashboard -Title 'Title1' -Pages $Pages