design-react-kit
Version:
Componenti React per Bootstrap 5
10 lines (9 loc) • 387 B
TypeScript
import { ElementType, FC, HTMLAttributes } from 'react';
export interface ChipLabelProps extends HTMLAttributes<HTMLElement> {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente ChipLabel */
className?: string;
testId?: string;
}
export declare const ChipLabel: FC<ChipLabelProps>;