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.

13 lines (12 loc) 291 B
import { OverridableRecord } from './utils'; export interface DefaultShadow { xs: string; sm: string; md: string; lg: string; xl: string; } export interface ShadowOverrides { } export interface Shadow extends OverridableRecord<DefaultShadow, ShadowOverrides, string> { }