@starter-ui/core
Version:
This is a UI Components built with the utility classes from Tailwind CSS.
19 lines (18 loc) • 412 B
TypeScript
interface StepItemProps {
id?: string;
title: string;
description?: string;
status?: string;
disabled?: boolean;
className?: string;
}
interface Props {
id?: string;
current: number;
direction?: 'horizontal' | 'vertical';
items: StepItemProps[];
className?: string;
onChange?: (value: number) => void;
}
declare const Steps: React.FC<Props>;
export default Steps;