9 lines
No EOL
277 B
TypeScript
9 lines
No EOL
277 B
TypeScript
import { SxProps } from '@mui/system';
|
|
import { Theme } from '@mui/material/styles';
|
|
export interface ExportedBaseTabsProps {
|
|
className?: string;
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx?: SxProps<Theme>;
|
|
} |