UNPKG

603 BTypeScriptView Raw
1export interface CardActionAreaClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** State class applied to the ButtonBase root element if the action area is keyboard focused. */
5 focusVisible: string;
6 /** Styles applied to the overlay that covers the action area when it is keyboard focused. */
7 focusHighlight: string;
8}
9export type CardActionAreaClassKey = keyof CardActionAreaClasses;
10export declare function getCardActionAreaUtilityClass(slot: string): string;
11declare const cardActionAreaClasses: CardActionAreaClasses;
12export default cardActionAreaClasses;