UNPKG

brightyui

Version:

Brighty UI library

20 lines (19 loc) 763 B
import { FC, ReactNode } from 'react'; interface InfoCellProps { icon?: ReactNode; title: string | ReactNode; type?: 'default' | 'value'; showIcon?: boolean; showCaption?: boolean; caption?: string; value?: string | ReactNode; showValue?: boolean; showSubvalue?: boolean; subvalue?: string; showInfo?: boolean; showIconCopy?: boolean; infoOnClick?: () => void; fontSize?: 'h1' | 'h2' | 'h3' | 'h4' | 'pLargeSemibold' | 'pLargeMedium' | 'pLargeRegular' | 'pMediumMedium' | 'pMediumSemibold' | 'pMediumRegular' | 'pSmallMedium' | 'pSmallSemibold' | 'pSmallRegular' | 'captionMedium' | 'captionSemibold' | 'captionRegular' | 'otherMedium'; } declare const InfoCell: FC<InfoCellProps>; export default InfoCell;