22 lines
672 B
JavaScript
22 lines
672 B
JavaScript
import { memoizeFunction } from '../../Utilities';
|
|
import { mergeStyleSets } from '../../Styling';
|
|
/**
|
|
* @deprecated use getStyles exported from VerticalDivider.styles.ts
|
|
*/
|
|
export var getDividerClassNames = memoizeFunction(
|
|
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
function (theme) {
|
|
return mergeStyleSets({
|
|
wrapper: {
|
|
display: 'inline-flex',
|
|
height: '100%',
|
|
alignItems: 'center',
|
|
},
|
|
divider: {
|
|
width: 1,
|
|
height: '100%',
|
|
backgroundColor: theme.palette.neutralTertiaryAlt,
|
|
},
|
|
});
|
|
});
|
|
//# sourceMappingURL=VerticalDivider.classNames.js.map
|