@@ -19,6 +19,7 @@ import {
1919 MenuToggle ,
2020 MenuToggleElement
2121} from '@patternfly/react-core' ;
22+ import { LabelColor } from '../../../components/Label/Label' ;
2223import RhUiInformationFillIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-information-fill-icon' ;
2324import ArrowRightIcon from '@patternfly/react-icons/dist/esm/icons/arrow-right-icon' ;
2425import ExternalLinkAltIcon from '@patternfly/react-icons/dist/esm/icons/external-link-alt-icon' ;
@@ -88,16 +89,16 @@ export const CardHorizontalGrid: React.FunctionComponent = () => {
8889 < Level hasGutter >
8990 < CardTitle id = "titleId" > Getting Started</ CardTitle >
9091 < LabelGroup isCompact >
91- < Label isCompact icon = { < RhUiInformationFillIcon /> } color = " blue" >
92+ < Label isCompact icon = { < RhUiInformationFillIcon /> } color = { LabelColor . blue } >
9293 Set up your cluster
9394 </ Label >
94- < Label isCompact icon = { < RhUiInformationFillIcon /> } color = " purple" >
95+ < Label isCompact icon = { < RhUiInformationFillIcon /> } color = { LabelColor . purple } >
9596 Guided tours
9697 </ Label >
97- < Label isCompact icon = { < RhUiInformationFillIcon /> } color = " green" >
98+ < Label isCompact icon = { < RhUiInformationFillIcon /> } color = { LabelColor . green } >
9899 Quick starts
99100 </ Label >
100- < Label isCompact icon = { < RhUiInformationFillIcon /> } color = " orange" >
101+ < Label isCompact icon = { < RhUiInformationFillIcon /> } color = { LabelColor . orange } >
101102 Learning resources
102103 </ Label >
103104 </ LabelGroup >
@@ -118,7 +119,7 @@ export const CardHorizontalGrid: React.FunctionComponent = () => {
118119 direction = { { default : 'column' } }
119120 grow = { { default : 'grow' } }
120121 >
121- < Label icon = { < RhUiInformationFillIcon /> } color = " blue" >
122+ < Label icon = { < RhUiInformationFillIcon /> } color = { LabelColor . blue } >
122123 Set up your cluster
123124 </ Label >
124125 < p > Continue setting up your cluster to access all you cain in the Console</ p >
@@ -149,7 +150,7 @@ export const CardHorizontalGrid: React.FunctionComponent = () => {
149150 direction = { { default : 'column' } }
150151 grow = { { default : 'grow' } }
151152 >
152- < Label icon = { < RhUiInformationFillIcon /> } color = " purple" >
153+ < Label icon = { < RhUiInformationFillIcon /> } color = { LabelColor . purple } >
153154 Guided tours
154155 </ Label >
155156 < p > Tour some of the key features around the console</ p >
@@ -177,7 +178,7 @@ export const CardHorizontalGrid: React.FunctionComponent = () => {
177178 direction = { { default : 'column' } }
178179 grow = { { default : 'grow' } }
179180 >
180- < Label icon = { < RhUiInformationFillIcon /> } color = " green" >
181+ < Label icon = { < RhUiInformationFillIcon /> } color = { LabelColor . green } >
181182 Quick starts
182183 </ Label >
183184 < p > Get started with features using our step-by-step documentation</ p >
@@ -208,7 +209,7 @@ export const CardHorizontalGrid: React.FunctionComponent = () => {
208209 direction = { { default : 'column' } }
209210 grow = { { default : 'grow' } }
210211 >
211- < Label icon = { < RhUiInformationFillIcon /> } color = " orange" >
212+ < Label icon = { < RhUiInformationFillIcon /> } color = { LabelColor . orange } >
212213 Learning resources
213214 </ Label >
214215 < p > Learn about new features within the Console and get started with demo apps</ p >
0 commit comments