welcome-ui
Version:
Customizable design system with react, typescript, tailwindcss and ariakit.
14 lines (13 loc) • 583 B
TypeScript
import { default as styles } from './stepper.module.scss';
import { StepperItemProps, StepperProps } from './types';
export { styles as stepperClasses };
export declare const Stepper: import('react').ForwardRefExoticComponent<Omit<StepperProps, "ref"> & import('react').RefAttributes<HTMLOListElement>> & {
Item: {
({ children, icon, isCompleted, isOpen, onClick }: StepperItemProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
Separator: {
(): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
};