design-react-kit
Version:
Componenti React per Bootstrap 5
10 lines (9 loc) • 416 B
TypeScript
import { ElementType, FC, HTMLAttributes } from 'react';
export interface GridItemTextWrapperProps extends HTMLAttributes<HTMLSpanElement> {
/** Classi aggiuntive da usare per l'elemento */
className?: string;
testId?: string;
/** Tag dell'elemento (può essere ad esempio trasformato in figcaption) */
tag?: ElementType;
}
export declare const GridItemTextWrapper: FC<GridItemTextWrapperProps>;