import * as React from 'react'; import { Button } from '@uifabric/experiments'; import { Icon, CommandBar, Stack, Text } from 'office-ui-fabric-react'; const tokens = { sectionStack: { childrenGap: 32, }, headingStack: { childrenGap: 16, padding: 8, }, buttonStack: { childrenGap: 12, }, }; const alertClicked = (): void => { alert('Clicked'); }; const ButtonStack = (props: { children: JSX.Element[] | JSX.Element }) => ( {props.children} ); export class ButtonExample extends React.Component<{}, {}> { public render(): JSX.Element { return ( ); } }