UNPKG

754 BTypeScriptView Raw
1export interface RadioClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** State class applied to the root element if `checked={true}`. */
5 checked: string;
6 /** State class applied to the root element if `disabled={true}`. */
7 disabled: string;
8 /** Styles applied to the root element if `color="primary"`. */
9 colorPrimary: string;
10 /** Styles applied to the root element if `color="secondary"`. */
11 colorSecondary: string;
12 /** Styles applied to the root element if `size="small"`. */
13 sizeSmall: string;
14}
15export type RadioClassKey = keyof RadioClasses;
16export declare function getRadioUtilityClass(slot: string): string;
17declare const radioClasses: RadioClasses;
18export default radioClasses;