UNPKG

@spaced-out/ui-design-system

Version:
15 lines 490 B
import type { Flow } from 'flow-to-typescript-codemod'; import * as COLORS from '../../styles/variables/_color'; type ClassNames = Readonly<{ wrapper?: string; donutChart?: string; }>; export interface ProgressDonutProps { classNames?: ClassNames; color?: keyof typeof COLORS; percentage: number; testId?: string; } export declare const ProgressDonut: Flow.AbstractComponent<ProgressDonutProps, HTMLDivElement>; export {}; //# sourceMappingURL=ProgressDonut.d.ts.map