File tree Expand file tree Collapse file tree
Pages/GlobalConfigurations Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ export type { NewClusterFormProps , NewClusterFormFooterProps } from './types'
Original file line number Diff line number Diff line change 1+ import { Dispatch , SetStateAction } from 'react'
2+
3+ export interface NewClusterFormFooterProps {
4+ apiCallInProgress : boolean
5+ handleModalClose : ( ) => void
6+ }
7+
8+ export interface NewClusterFormProps extends NewClusterFormFooterProps {
9+ setApiCallInProgress : Dispatch < SetStateAction < boolean > >
10+ FooterComponent : React . FunctionComponent < NewClusterFormFooterProps >
11+ }
Original file line number Diff line number Diff line change @@ -18,3 +18,4 @@ export * from './BuildInfra'
1818export * from './Authorization'
1919export * from './ScopedVariables'
2020export * from './DeploymentCharts'
21+ export * from './ClustersAndEnvironments'
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import { ReactComponent as ICCiWebhook } from '@IconsV2/ic-ci-webhook.svg'
2424import { ReactComponent as ICCircleLoader } from '@IconsV2/ic-circle-loader.svg'
2525import { ReactComponent as ICClock } from '@IconsV2/ic-clock.svg'
2626import { ReactComponent as ICCloseSmall } from '@IconsV2/ic-close-small.svg'
27+ import { ReactComponent as ICCluster } from '@IconsV2/ic-cluster.svg'
2728import { ReactComponent as ICCode } from '@IconsV2/ic-code.svg'
2829import { ReactComponent as ICContainer } from '@IconsV2/ic-container.svg'
2930import { ReactComponent as ICCookr } from '@IconsV2/ic-cookr.svg'
@@ -118,6 +119,7 @@ export const iconMap = {
118119 'ic-circle-loader' : ICCircleLoader ,
119120 'ic-clock' : ICClock ,
120121 'ic-close-small' : ICCloseSmall ,
122+ 'ic-cluster' : ICCluster ,
121123 'ic-code' : ICCode ,
122124 'ic-container' : ICContainer ,
123125 'ic-cookr' : ICCookr ,
You can’t perform that action at this time.
0 commit comments