@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
17 lines (16 loc) • 574 B
TypeScript
import { DividerProps } from '@fluentui/react-components';
import { FluentIcon } from '@fluentui/react-icons';
import React from 'react';
interface IProps extends DividerProps {
steps: number;
step: number;
stepLabel?: string;
css?: string[];
/** optional, send an icon instead of the step number */
stepIcons?: FluentIcon[];
onStepClick?: (step: number) => void;
}
export declare const ProgressBarEX: (props: IProps & {
children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null;
export {};