UNPKG

517 BTypeScriptView Raw
1export interface TabsListClasses {
2 /** Class name applied to the root element. */
3 root: string;
4 /** Class name applied to the root element if `orientation='horizontal'`. */
5 horizontal: string;
6 /** Class name applied to the root element if `orientation='vertical'`. */
7 vertical: string;
8}
9export type TabsListClassKey = keyof TabsListClasses;
10export declare function getTabsListUtilityClass(slot: string): string;
11declare const tabsListClasses: TabsListClasses;
12export default tabsListClasses;