@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) • 335 B
TypeScript
import * as React from 'react';
import { ModalDialogProps } from './ModalDialogProps';
declare const ModalDialogVariantColorContext: React.Context<(Pick<ModalDialogProps, "color" | "variant"> & {
labelledBy?: string | undefined;
describedBy?: string | undefined;
}) | undefined>;
export default ModalDialogVariantColorContext;