UNPKG

@azure/communication-react

Version:

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

13 lines 701 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import React from 'react'; import { ControlBarButton } from "../../../../react-components/src"; import { MoreHorizontal20Filled } from '@fluentui/react-icons'; const icon = () => React.createElement(MoreHorizontal20Filled, { key: 'chatOnIconKey', primaryFill: "currentColor" }); /** * @private */ export const MoreButton = (props) => { return React.createElement(ControlBarButton, Object.assign({}, props, { labelKey: 'optionsButtonLabelKey', showLabel: props.showLabel, onRenderOnIcon: icon, onRenderOffIcon: icon, onClick: props.onClick, "data-ui-id": props['data-ui-id'] })); }; //# sourceMappingURL=MoreButton.js.map