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