UNPKG

@useloops/design-system

Version:

The official React based Loops design system

15 lines (12 loc) 511 B
import { FunctionComponent } from 'react'; import { TestStatusProps } from '../TestStatus/types.js'; import { TopNumber } from './_partials/QuestionControllerSegment/QuestionControllerSegment.js'; interface ExtendedTestStatusProps { animated?: boolean; loading?: boolean; segments: TopNumber[]; status: TestStatusProps['status']; } declare const ExtendedTestStatus: FunctionComponent<ExtendedTestStatusProps>; export { ExtendedTestStatus as default }; export type { ExtendedTestStatusProps };