8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
type InnerPanelOptionalProps = {
|
|
headerMarginOffset?: number | string;
|
|
mv?: number | string;
|
|
};
|
|
|
|
type InnerPanelProps = InnerPanelOptionalProps &
|
|
import('@mui/material').BoxProps;
|