UNPKG

@material-ui/core

Version:

Quickly build beautiful React apps. Material-UI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

23 lines (22 loc) 1.16 kB
export interface AccordionSummaryClasses { /** Styles applied to the root element. */ root: string; /** Pseudo-class applied to the root element, children wrapper element and `IconButton` component if `expanded={true}`. */ expanded: string; /** Pseudo-class applied to the ButtonBase root element if the button is keyboard focused. */ focusVisible: string; /** Pseudo-class applied to the root element if `disabled={true}`. */ disabled: string; /** Styles applied to the root element unless `disableGutters={true}`. */ gutters: string; /** Styles applied to the children wrapper element unless `disableGutters={true}`. */ contentGutters: string; /** Styles applied to the children wrapper element. */ content: string; /** Styles applied to the `expandIcon`'s wrapper element. */ expandIconWrapper: string; } export declare type AccordionSummaryClassKey = keyof AccordionSummaryClasses; export declare function getAccordionSummaryUtilityClass(slot: string): string; declare const accordionSummaryClasses: AccordionSummaryClasses; export default accordionSummaryClasses;