@guruhotel/aura-ui
Version:
⚛️ React UI library by GuruHotel
12 lines (11 loc) • 415 B
TypeScript
import React from "react";
interface StepLabelProps {
isCurrentStep?: boolean;
opacity: number;
label?: string | React.ReactNode;
description?: string | React.ReactNode;
optional?: boolean;
optionalLabel?: string | React.ReactNode;
}
export declare const StepLabel: ({ isCurrentStep, opacity, label, description, optional, optionalLabel, }: StepLabelProps) => JSX.Element | null;
export {};