Skip to content

Commit

Permalink
VMware Logo Update (#2377)
Browse files Browse the repository at this point in the history
* Replaces VMware logo with new SVG version

* Changed classes to use flex instead of inline

* Ran prettier for formatting
  • Loading branch information
jagabomb authored Feb 29, 2024
1 parent 0e5a547 commit 2177ad8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/js/common/ProviderLabel/ProviderLabel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import AzureLogo from '@static/azure-logo.svg';
import GcpLogo from '@static/gcp-logo.svg';
import NutanixLogo from '@static/nutanix-logo.svg';
import KvmLogo from '@static/suse-kvm-logo.svg';
import VmwareLogo from '@static/vmware-logo.png';
import VmwareLogo from '@static/vmware-logo.svg';
import {
AWS_PROVIDER,
AZURE_PROVIDER,
Expand Down Expand Up @@ -46,15 +46,15 @@ export const providerData = {

function ProviderLabel({ provider }) {
return (
<span>
<span className="flex items-center">
{providerData[provider] ? (
<img
src={providerData[provider].logo}
className="inline mr-2 h-4"
className="mr-2 h-4"
alt={provider}
/>
) : (
<EOS_HELP className="inline mr-2" />
<EOS_HELP className="mr-2" />
)}
{providerData[provider]
? providerData[provider].label
Expand Down
Binary file removed assets/static/vmware-logo.png
Binary file not shown.
11 changes: 11 additions & 0 deletions assets/static/vmware-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2177ad8

Please sign in to comment.