UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

15 lines (14 loc) 466 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. * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`) */ declare const Initials: FC<InitialsProps>; export default Initials;