UNPKG

@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.

9 lines (8 loc) 377 B
/// <reference types="react" /> 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 { }