anvil/striker-ui/types/Tabs.d.ts
2023-02-14 22:42:50 -05:00

11 lines
293 B
TypeScript

type TabsOrientation = Exclude<
import('@mui/material').TabsProps['orientation'],
undefined
>;
type TabsProps = Omit<import('@mui/material').TabsProps, 'orientation'> & {
orientation?:
| TabsOrientation
| Partial<Record<import('@mui/material').Breakpoint, TabsOrientation>>;
};