@mui/base
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
12 lines (11 loc) • 464 B
TypeScript
export interface TabClasses {
/** Class name applied to the root element. */
root: string;
/** State class applied to the root `button` element if `selected={true}`. */
selected: string;
/** State class applied to the root `button` element if `disabled={true}`. */
disabled: string;
}
export type TabClassKey = keyof TabClasses;
export declare function getTabUtilityClass(slot: string): string;
export declare const tabClasses: TabClasses;