communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
13 lines • 703 B
JavaScript
// 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