UNPKG

@azure/communication-react

Version:

React library for building modern communication user experiences utilizing Azure Communication Services

9 lines 269 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. /** * @internal * Converts px value to rem value. * For example, an input of `16` will return `1rem`. */ export const _pxToRem = (px) => `${px / 16}rem`; //# sourceMappingURL=cssUtils.js.map