communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
44 lines • 1.21 kB
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { mergeStyles } from '@fluentui/react';
/**
* @private
*/
export const screenSharingContainerStyle = mergeStyles({
width: '100%',
height: '100%'
});
/**
* @private
*/
export const screenSharingNotificationContainerStyle = (theme) => mergeStyles({
backgroundColor: 'inherit',
padding: '1rem',
maxWidth: '95%',
borderRadius: theme.effects.roundedCorner4,
color: theme.palette.neutralSecondary
});
/**
* @private
*/
export const screenSharingNotificationIconContainerStyle = mergeStyles({
height: '2rem',
lineHeight: 0
});
/**
* @private
*/
export const screenSharingNotificationIconStyle = (theme) => mergeStyles({
// svg is (20px x 20px) but path is only (16px x 12px), so need to scale at 2.5 to get 40px
transform: 'scale(2.5)',
color: theme.palette.neutralTertiary
});
/**
* @private
*/
export const screenSharingNotificationTextStyle = mergeStyles({
fontSize: '1rem',
// Text component will take body color by default (white in Dark Mode), so forcing it to be parent container color
color: 'inherit'
});
//# sourceMappingURL=LocalScreenShare.styles.js.map