design-react-kit
Version:
Componenti React per Bootstrap 5
13 lines (12 loc) • 534 B
TypeScript
import { FC, HTMLAttributes, ElementType } from 'react';
import { CSSModule } from 'reactstrap/types/lib/utils';
export interface CardTextProps extends HTMLAttributes<HTMLElement> {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente CardText */
className?: string;
/** Oggetto contenente la nuova mappatura per le classi CSS. */
cssModule?: CSSModule;
testId?: string;
}
export declare const CardText: FC<CardTextProps>;