@100mslive/react-native-room-kit
Version:
100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.
20 lines • 583 B
JavaScript
import * as React from 'react';
import { HMSNotification } from './HMSNotification';
import { PersonIcon } from '../Icons';
export const HMSRoleChangeDeclinedNotification = ({
peerName,
id,
autoDismiss,
dismissDelay
}) => {
return /*#__PURE__*/React.createElement(HMSNotification, {
id: id,
text: `${peerName} declined the request to join the stage`,
icon: /*#__PURE__*/React.createElement(PersonIcon, {
type: "off"
}),
autoDismiss: autoDismiss,
dismissDelay: dismissDelay
});
};
//# sourceMappingURL=HMSRoleChangeDeclinedNotification.js.map