19 lines
794 B
Plaintext
19 lines
794 B
Plaintext
export interface AccordionClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the root element unless `square={true}`. */
|
|
rounded: string;
|
|
/** State class applied to the root element if `expanded={true}`. */
|
|
expanded: string;
|
|
/** State 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 region element, the container of the children. */
|
|
region: string;
|
|
}
|
|
export type AccordionClassKey = keyof AccordionClasses;
|
|
export declare function getAccordionUtilityClass(slot: string): string;
|
|
declare const accordionClasses: AccordionClasses;
|
|
export default accordionClasses;
|