UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

12 lines (11 loc) 484 B
import { FC, HTMLAttributes, ElementType } from 'react'; export interface StepperContentProps extends HTMLAttributes<HTMLElement> { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente Badge */ className?: string; /** Abilita il tema scuro per il componente StepperContent */ dark?: boolean; testId?: string; } export declare const StepperContent: FC<StepperContentProps>;