File tree Expand file tree Collapse file tree
packages/code-connect/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import ExclamationTriangleIcon from '@patternfly/react-icons/dist/esm/icons/excl
66import ExclamationCircleIcon from '@patternfly/react-icons/dist/esm/icons/exclamation-circle-icon' ;
77
88// TODO: FIGMA: Add buttons boolean to footerContent
9- // TODO: REACT: Add iconWrapper support
9+ // TODO: REACT: Add icon support
1010
1111figma . connect (
1212 Popover ,
@@ -62,7 +62,7 @@ figma.connect(
6262 footerContent = { props . footerContent }
6363 position = { props . position }
6464 headerIcon = { props . status . icon }
65- alertSeverityVariant = { props . status . state }
65+ alertSeverityVariant = { props . status . state as any }
6666 />
6767 )
6868 }
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ figma.connect(
88 props : {
99 text : figma . string ( 'Text' ) ,
1010 state : figma . enum ( 'State' , {
11- Default : 'default' ,
11+ Default : undefined ,
1212 'Hover - Light' : 'hover---light' ,
1313 'Hover - Dark' : 'hover---dark' ,
1414 'Selected - Light' : 'selected---light' ,
1515 'Selected - Dark' : 'selected---dark' ,
1616 Disabled : 'disabled'
1717 } ) ,
1818 type : figma . enum ( 'Type' , {
19- Default : 'default' ,
19+ Default : undefined ,
2020 Link : 'link'
2121 } )
2222 } ,
You can’t perform that action at this time.
0 commit comments