How to use the @uifabric/fluent-theme.NeutralColors.black function in @uifabric/fluent-theme

To help you get started, we’ve selected a few @uifabric/fluent-theme 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 microsoft / BotFramework-Composer / Composer / packages / extensions / obiformeditor / src / Form / ObjectFieldTemplate / ObjectItem.tsx View on Github external
onClick: onAdd,
    });
  }

  const compoundType = schema.type && typeof schema.type === 'string' && ['array', 'object'].includes(schema.type);

  return (
    <div>
      <div>{content}</div>
      {contextItems.length &gt; 0 &amp;&amp; (
        <div>
          
        </div>
      )}
    </div>
  );
}
github microsoft / BotFramework-Composer / Composer / packages / extensions / obiformeditor / src / Form / ArrayFieldTemplate / ArrayItem.tsx View on Github external
iconProps: { iconName: 'Cancel' },
      disabled: !hasRemove,
      onClick: fabricMenuItemClickHandler(onDropIndexClick(index)),
    },
  ];

  return (
    <div>
      <div>{props.children}</div>
      <div>
        
      </div>
    </div>
  );
};
github microsoft / BotFramework-Composer / Composer / packages / extensions / obiformeditor / src / Form / fields / TableField.tsx View on Github external
{
      key: 'new',
      text: formatMessage('New'),
      subMenuProps: {
        items: newOptions,
        calloutProps: { calloutMaxHeight: 500 },
        directionalHint: DirectionalHint.rightTopEdge,
      },
    },
  ];

  return (
    
  );
}
github microsoft / BotFramework-Composer / Composer / packages / client / src / components / Header / styles.js View on Github external
import { FontWeights } from 'office-ui-fabric-react/lib/Styling';
import { NeutralColors } from '@uifabric/fluent-theme';
import { css } from '@emotion/core';

export const headerContainer = css`
  position: relative;
  background: ${NeutralColors.black};
  height: 50px;
  line-height: 50px;
`;

export const title = css`
  position: relative;
  margin-left: 56px;
  font-weight: ${FontWeights.semibold};
  font-size: 16px;
  color: #fff;
  &::after {
    content: '';
    position: absolute;
    top: 0px;
    right: -15px;
    bottom: 0px;