UNPKG

865 BTypeScriptView Raw
1export interface AccordionClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the heading element. */
5 heading: string;
6 /** Styles applied to the root element unless `square={true}`. */
7 rounded: string;
8 /** State class applied to the root element if `expanded={true}`. */
9 expanded: string;
10 /** State class applied to the root element if `disabled={true}`. */
11 disabled: string;
12 /** Styles applied to the root element unless `disableGutters={true}`. */
13 gutters: string;
14 /** Styles applied to the region element, the container of the children. */
15 region: string;
16}
17export type AccordionClassKey = keyof AccordionClasses;
18export declare function getAccordionUtilityClass(slot: string): string;
19declare const accordionClasses: AccordionClasses;
20export default accordionClasses;