UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

11 lines (10 loc) 405 B
import { ElementType, FC, PropsWithChildren } from 'react'; export interface CalloutMoreFooterProps { id?: string; /** Utilizzarlo in caso si utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente */ className?: string; fileUrl?: string; } export declare const CalloutMoreFooter: FC<PropsWithChildren<CalloutMoreFooterProps>>;