You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
383 B
TypeScript
10 lines
383 B
TypeScript
export interface TabPanelClasses {
|
|
/** Class name applied to the root element. */
|
|
root: string;
|
|
/** State class applied to the root `div` element if `hidden={true}`. */
|
|
hidden: string;
|
|
}
|
|
export type TabPanelClassKey = keyof TabPanelClasses;
|
|
export declare function getTabPanelUtilityClass(slot: string): string;
|
|
export declare const tabPanelClasses: TabPanelClasses;
|