File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/code-connect/components Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import ExclamationTriangleIcon from '@patternfly/react-icons/dist/esm/icons/excl
6
6
import ExclamationCircleIcon from '@patternfly/react-icons/dist/esm/icons/exclamation-circle-icon' ;
7
7
8
8
// TODO: FIGMA: Add buttons boolean to footerContent
9
- // TODO: REACT: Add iconWrapper support
9
+ // TODO: REACT: Add icon support
10
10
11
11
figma . connect (
12
12
Popover ,
@@ -62,7 +62,7 @@ figma.connect(
62
62
footerContent = { props . footerContent }
63
63
position = { props . position }
64
64
headerIcon = { props . status . icon }
65
- alertSeverityVariant = { props . status . state }
65
+ alertSeverityVariant = { props . status . state as any }
66
66
/>
67
67
)
68
68
}
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ figma.connect(
8
8
props : {
9
9
text : figma . string ( 'Text' ) ,
10
10
state : figma . enum ( 'State' , {
11
- Default : 'default' ,
11
+ Default : undefined ,
12
12
'Hover - Light' : 'hover---light' ,
13
13
'Hover - Dark' : 'hover---dark' ,
14
14
'Selected - Light' : 'selected---light' ,
15
15
'Selected - Dark' : 'selected---dark' ,
16
16
Disabled : 'disabled'
17
17
} ) ,
18
18
type : figma . enum ( 'Type' , {
19
- Default : 'default' ,
19
+ Default : undefined ,
20
20
Link : 'link'
21
21
} )
22
22
} ,
You can’t perform that action at this time.
0 commit comments