@kelvininc/ui-components
Version:
Kelvin UI Components
51 lines (50 loc) • 1.05 kB
JavaScript
import { EIconName } from "../../../types";
export const DEFAULT_CONFIG = [
{
title: 'Name ID',
description: 'cluster-a-brownie'
},
{
title: 'Kubernetes Version',
description: '1.20.5'
},
{
title: 'Kelvin Version',
description: '4.2.4'
}
];
export const WITH_TEXT_TOOLTIP = [
{
title: 'Name ID',
description: 'cluster-a-brownie',
popoverInfo: {
text: `This name cannot be changed`
}
},
{
title: 'Kubernetes Version',
description: '1.20.5'
},
{
title: 'Kelvin Version',
description: '4.2.4'
}
];
export const WITH_ICON_TOOLTIP = [
{
title: 'Name ID',
description: 'cluster-a-brownie',
popoverInfo: {
text: `This name cannot be changed`,
icon: EIconName.Info
}
},
{
title: 'Kubernetes Version',
description: '1.20.5'
},
{
title: 'Kelvin Version',
description: '4.2.4'
}
];