Files
starface-outlook-sync-addin/node_modules/@fluentui/react/lib/components/ChoiceGroup/ChoiceGroup.styles.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

28 lines
878 B
JavaScript

import { getGlobalClassNames } from '../../Styling';
var GlobalClassNames = {
root: 'ms-ChoiceFieldGroup',
flexContainer: 'ms-ChoiceFieldGroup-flexContainer',
};
export var getStyles = function (props) {
var className = props.className, optionsContainIconOrImage = props.optionsContainIconOrImage, theme = props.theme;
var classNames = getGlobalClassNames(GlobalClassNames, theme);
return {
root: [
className,
classNames.root,
theme.fonts.medium,
{
display: 'block',
},
],
flexContainer: [
classNames.flexContainer,
optionsContainIconOrImage && {
display: 'flex',
flexDirection: 'row',
flexWrap: 'wrap',
},
],
};
};
//# sourceMappingURL=ChoiceGroup.styles.js.map