office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
29 lines • 840 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var Styling_1 = require("../../Styling");
var GlobalClassNames = {
root: 'ms-GroupShowAll',
link: 'ms-Link',
};
exports.getStyles = function (props) {
var _a;
var theme = props.theme;
var fonts = theme.fonts;
var classNames = Styling_1.getGlobalClassNames(GlobalClassNames, theme);
return {
root: [
classNames.root,
{
position: 'relative',
padding: '10px 84px',
cursor: 'pointer',
selectors: (_a = {},
_a["." + classNames.link] = {
fontSize: fonts.small.fontSize,
},
_a),
},
],
};
};
//# sourceMappingURL=GroupShowAll.styles.js.map
;