ohctechv3/.svn/pristine/7f/7f2d332b55e5278580b0a6dde8cb60e6e277b661.svn-base
2024-10-28 15:03:36 +05:30

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;