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.
13 lines
548 B
TypeScript
13 lines
548 B
TypeScript
export interface TabScrollButtonClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the root element if `orientation="vertical"`. */
|
|
vertical: string;
|
|
/** State class applied to the root element if `disabled={true}`. */
|
|
disabled: string;
|
|
}
|
|
export type TabScrollButtonClassKey = keyof TabScrollButtonClasses;
|
|
export declare function getTabScrollButtonUtilityClass(slot: string): string;
|
|
declare const tabScrollButtonClasses: TabScrollButtonClasses;
|
|
export default tabScrollButtonClasses;
|