File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ export interface PanelProps
2424 tabWidth ?: Distance
2525 tabLength ?: Distance
2626 mouseBites ?: boolean
27+ edgePadding ?: Distance
28+ edgePaddingLeft ?: Distance
29+ edgePaddingRight ?: Distance
30+ edgePaddingTop ?: Distance
31+ edgePaddingBottom ?: Distance
2732}
2833
2934export const panelProps = baseGroupProps
@@ -48,6 +53,11 @@ export const panelProps = baseGroupProps
4853 tabWidth : distance . optional ( ) ,
4954 tabLength : distance . optional ( ) ,
5055 mouseBites : z . boolean ( ) . optional ( ) ,
56+ edgePadding : distance . optional ( ) ,
57+ edgePaddingLeft : distance . optional ( ) ,
58+ edgePaddingRight : distance . optional ( ) ,
59+ edgePaddingTop : distance . optional ( ) ,
60+ edgePaddingBottom : distance . optional ( ) ,
5161 } )
5262
5363type InferredPanelProps = z . input < typeof panelProps >
You can’t perform that action at this time.
0 commit comments