first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,22 @@
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