How to use the @uifabric/experiments.ChicletSize.medium function in @uifabric/experiments

To help you get started, we’ve selected a few @uifabric/experiments examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github OfficeDev / office-ui-fabric-react / packages / experiments / src / components / Chiclet / examples / Chiclet.Breadcrumb.Example.tsx View on Github external
{ text: 'OneDrive Design', key: 'OneDrive Design' },
          { text: 'Emails', key: 'Emails' },
          { text: 'Campaigns', key: 'Campaigns' }
        ]}
        className={descriptionStyle}
        onRenderItem={this._onRenderItem}
        dividerAs={divider}
      />
    );

    return (
      
    );
  }
github OfficeDev / office-ui-fabric-react / packages / experiments / src / components / Chiclet / examples / Chiclet.Footer.Example.tsx View on Github external
export const ChicletFooterExample: React.FunctionComponent<{}> = () => {
  const footerButtonProps: IButtonProps[] = [
    { iconProps: { iconName: 'More' } },
    { iconProps: { iconName: 'Save' } },
    { iconProps: { iconName: 'Share' } }
  ];
  const footer = ;

  return (
    
  );
};