UNPKG

mui-simple

Version:

Override mui-v7 components to simplify usage

10 lines 393 B
import type { DividerProps } from '@mui/material'; import type { ComponentType } from 'react'; interface DividerStyledProps { thickness?: number | string; [key: string]: any; } type DividerStyledPropsType = Omit<DividerProps, 'thickness'> & DividerStyledProps; export declare const Divider: ComponentType<DividerStyledPropsType>; export {}; //# sourceMappingURL=Divider.styled.d.ts.map