@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) • 508 B
TypeScript
export interface AccordionClasses {
/** Class name applied to the root element. */
root: string;
/** Class name applied to the root element if `expanded` is true. */
expanded: string;
/** Class name applied to the root element if `disabled` is true. */
disabled: string;
}
export type AccordionClassKey = keyof AccordionClasses;
export declare function getAccordionUtilityClass(slot: string): string;
declare const accordionClasses: AccordionClasses;
export default accordionClasses;