import * as React from 'react';
import { Stack, Text } from '@fluentui/react';
import { PersonaTestImages } from '@fluentui/react-experiments/lib/common/TestImages';
import { PersonaCoin } from '@fluentui/react-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
);
}
}