import { FC, useMemo } from 'react'; import { Base, BaseProps } from './Base'; import { ColorVariantType } from './types/ColorVariantType'; import { FontSizeType } from './types/FontSizeType'; import { FontWeightType } from './types/FontWeightType'; export interface TextProps extends BaseProps { variant?: ColorVariantType; fontWeight?: FontWeightType; fontSize?: FontSizeType; underline?: boolean; truncate?: boolean; center?: boolean; textEnd?: boolean; } export const Text: FC = props => { const { variant = 'black', fontWeight = null, fontSize = 0, underline = false, truncate = false, center = false, textEnd = false, ...rest } = props; const getClassNames = useMemo(() => { const newClassNames: string[] = [ 'd-inline' ]; if(variant) newClassNames.push('text-' + variant); if(fontWeight) newClassNames.push('fw-' + fontWeight); if(fontSize) newClassNames.push('fs-' + fontSize); if(underline) newClassNames.push('text-decoration-underline'); if(truncate) newClassNames.push('text-truncate'); if(center) newClassNames.push('text-center'); if(textEnd) newClassNames.push('text-end'); return newClassNames; }, [ variant, fontWeight, fontSize, underline, truncate, center, textEnd ]); return ; }