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
380 B
TypeScript
13 lines
380 B
TypeScript
export interface SwitchBaseClasses {
|
|
root: string;
|
|
checked: string;
|
|
disabled: string;
|
|
input: string;
|
|
edgeStart: string;
|
|
edgeEnd: string;
|
|
}
|
|
export type SwitchBaseClassKey = keyof SwitchBaseClasses;
|
|
export declare function getSwitchBaseUtilityClass(slot: string): string;
|
|
declare const switchBaseClasses: SwitchBaseClasses;
|
|
export default switchBaseClasses;
|