communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
13 lines • 656 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import React from 'react';
import { Icon, Stack } from '@fluentui/react';
/**
* Renders the icon component for the insert table button in the rich text editor toolbar.
*/
export const RichTextToolbarTableIcon = () => {
return (React.createElement(Stack, null,
React.createElement(Icon, { iconName: "RichTextInsertTableFilledIcon", className: 'ribbon-table-button-filled-icon' }),
React.createElement(Icon, { iconName: "RichTextInsertTableRegularIcon", className: 'ribbon-table-button-regular-icon' })));
};
//# sourceMappingURL=RichTextToolbarTableIcon.js.map