UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

14 lines (13 loc) 363 B
import { FC } from 'react'; interface InitialsProps { initials: string; type: string; className?: string; } /** * The Initials component, rendering the passed in initials in a span * and throws console warnings in case the initials length is too big for the * specified type. */ declare const Initials: FC<InitialsProps>; export default Initials;