UNPKG

653 BTypeScriptView Raw
1export interface StepIconClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the SVG text element. */
5 text: string;
6 /** State class applied to the root element if `active={true}`. */
7 active: string;
8 /** State class applied to the root element if `completed={true}`. */
9 completed: string;
10 /** State class applied to the root element if `error={true}`. */
11 error: string;
12}
13export type StepIconClassKey = keyof StepIconClasses;
14export declare function getStepIconUtilityClass(slot: string): string;
15declare const stepIconClasses: StepIconClasses;
16export default stepIconClasses;