mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-20 16:49:46 -06:00
12 lines
492 B
TypeScript
12 lines
492 B
TypeScript
export interface TabsListClasses {
|
|
/** Class name applied to the root element. */
|
|
root: string;
|
|
/** Class name applied to the root element if `orientation='horizontal'`. */
|
|
horizontal: string;
|
|
/** Class name applied to the root element if `orientation='vertical'`. */
|
|
vertical: string;
|
|
}
|
|
export type TabsListClassKey = keyof TabsListClasses;
|
|
export declare function getTabsListUtilityClass(slot: string): string;
|
|
export declare const tabsListClasses: TabsListClasses;
|