UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

37 lines 1.3 kB
import { memoizeFunction } from '../../Utilities'; import { mergeStyleSets, HighContrastSelector } from '../../Styling'; export var getLabelClassNames = memoizeFunction(function (theme, className, disabled, required) { return mergeStyleSets({ root: ['ms-Label', { color: theme.semanticColors.bodyText, boxSizing: 'border-box', boxShadow: 'none', margin: 0, display: 'block', padding: '5px 0', wordWrap: 'break-word', overflowWrap: 'break-word', }, disabled && { color: theme.semanticColors.disabledBodyText, selectors: (_a = {}, _a[HighContrastSelector] = { color: 'GrayText' }, _a) }, required && { selectors: { '::after': { content: "' *'", color: theme.semanticColors.errorText, paddingRight: 12 } } }, className] }); var _a; }); //# sourceMappingURL=Label.classNames.js.map