import * as React from 'react'; import { Stack, Text } from 'office-ui-fabric-react'; import { PersonaTestImages } from '@uifabric/experiments/lib/common/TestImages'; import { PersonaCoin } from '@uifabric/experiments'; const tokens = { sectionStack: { childrenGap: 32, }, headingStack: { childrenGap: 16, }, personaCoinStack: { childrenGap: 12, }, }; const PersonaCoinStack = (props: { children: JSX.Element[] | JSX.Element }) => ( {props.children} ); export class PersonaCoinExample extends React.Component<{}, {}> { public render(): JSX.Element { return ( When passing text initials will be extracted from the text When passing specific initials Initials not available ); } }