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.

12 lines (11 loc) 289 B
import * as React from 'react'; /** * @ignore - internal component. */ declare const AccordionContext: React.Context<Partial<{ disabled: boolean; expanded: boolean; toggle: (event: React.SyntheticEvent) => void; accordionId: string; }>>; export default AccordionContext;