anvil/striker-ui/types/Tabs.d.ts

11 lines
293 B
TypeScript
Raw Normal View History

2023-02-02 00:36:53 +00:00
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>>;
};