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 DefaultRadius { xs: string; sm: string; md: string; lg: string; xl: string; } export interface RadiusOverrides { } export interface Radius extends OverridableRecord<DefaultRadius, RadiusOverrides, string> { }