UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

16 lines (15 loc) 648 B
import { FC, HTMLAttributes, ElementType } from 'react'; export interface CardReadMoreProps extends HTMLAttributes<HTMLElement> { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente CardReadMore*/ className?: string; /** Il contenuto in testo da mostrare */ text: string; /** Passare l'URL target. */ href?: string; /** Mostra un'icona nella Card per l'azione "Leggi di più". Passare il nome dell'icona per utilizzarlo. */ iconName?: string; testId?: string; } export declare const CardReadMore: FC<CardReadMoreProps>;