communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
25 lines • 654 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/** @private */
export const scaledIconStyles = (theme) => {
return {
transform: 'scale(2)',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
lineHeight: '0.2rem',
color: theme.palette.themePrimary,
zIndex: 1
};
};
/** @private */
export const sitePermissionIconBackgroundStyle = (theme) => {
return {
root: {
borderRadius: '100%',
background: theme.palette.themeLighterAlt,
padding: '2rem'
}
};
};
//# sourceMappingURL=icons.styles.js.map