@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
18 lines (14 loc) • 509 B
text/typescript
import { module } from 'angular';
import { react2angular } from 'react2angular';
import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary';
import { CloudProviderLogo } from './CloudProviderLogo';
export const CLOUD_PROVIDER_LOGO = 'spinnaker.core.cloudProviderLogo.directive';
module(CLOUD_PROVIDER_LOGO, []).component(
'cloudProviderLogo',
react2angular(withErrorBoundary(CloudProviderLogo, 'cloudProviderLogo'), [
'provider',
'height',
'width',
'showTooltip',
]),
);