@mui/joy
Version:
Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.
8 lines (7 loc) • 345 B
TypeScript
import { OverrideProps } from '@mui/types';
import { BoxTypeMap } from '@mui/system';
import { Theme } from '../styles/types';
export type BoxSlot = 'root';
export type BoxProps<D extends React.ElementType = BoxTypeMap['defaultComponent'], P = {}> = OverrideProps<BoxTypeMap<P, D, Theme>, D>;
export interface BoxOwnerState extends BoxProps {
}