@fluentui/react-icons 2.0.323 → 2.0.324-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/README.md +9 -90
  2. package/docs/build-transforms.md +142 -0
  3. package/docs/preview-features/README.md +13 -0
  4. package/docs/preview-features/base.md +184 -0
  5. package/docs/preview-features/svg-sprites.md +158 -0
  6. package/lib/atoms/svg/comment-arrow-left.js +4 -4
  7. package/lib/atoms/svg/comment-arrow-right.js +14 -14
  8. package/lib/atoms/svg/text-hanging.js +6 -6
  9. package/lib/atoms/svg/text-paragraph.js +8 -8
  10. package/lib/base/bundleIcon.d.ts +8 -0
  11. package/lib/base/bundleIcon.js +18 -0
  12. package/lib/base/createFluentIcon.d.ts +20 -0
  13. package/lib/base/createFluentIcon.js +38 -0
  14. package/lib/base/createFluentIcon.svg-sprite.d.ts +9 -0
  15. package/lib/base/createFluentIcon.svg-sprite.js +28 -0
  16. package/lib/base/fonts/createFluentFontIcon.d.ts +20 -0
  17. package/lib/base/fonts/createFluentFontIcon.js +45 -0
  18. package/lib/base/fonts/index.d.ts +2 -0
  19. package/lib/base/fonts/index.js +2 -0
  20. package/lib/base/index.d.ts +8 -0
  21. package/lib/base/index.js +12 -0
  22. package/lib/base/shared.d.ts +15 -0
  23. package/lib/base/shared.js +19 -0
  24. package/lib/base/useIconState.d.ts +15 -0
  25. package/lib/base/useIconState.js +38 -0
  26. package/lib/icons/chunk-0.js +2 -2
  27. package/lib/icons/chunk-22.js +4 -4
  28. package/lib/sizedIcons/chunk-0.js +16 -16
  29. package/lib/sizedIcons/chunk-22.js +10 -10
  30. package/lib/utils/fonts/FluentSystemIcons-Filled.ttf +0 -0
  31. package/lib/utils/fonts/FluentSystemIcons-Filled.woff +0 -0
  32. package/lib/utils/fonts/FluentSystemIcons-Filled.woff2 +0 -0
  33. package/lib/utils/fonts/FluentSystemIcons-Regular.ttf +0 -0
  34. package/lib/utils/fonts/FluentSystemIcons-Regular.woff +0 -0
  35. package/lib/utils/fonts/FluentSystemIcons-Regular.woff2 +0 -0
  36. package/lib/utils/fonts/FluentSystemIcons-Resizable.ttf +0 -0
  37. package/lib/utils/fonts/FluentSystemIcons-Resizable.woff +0 -0
  38. package/lib/utils/fonts/FluentSystemIcons-Resizable.woff2 +0 -0
  39. package/lib-cjs/atoms/svg/comment-arrow-left.js +4 -4
  40. package/lib-cjs/atoms/svg/comment-arrow-right.js +14 -14
  41. package/lib-cjs/atoms/svg/text-hanging.js +6 -6
  42. package/lib-cjs/atoms/svg/text-paragraph.js +8 -8
  43. package/lib-cjs/base/bundleIcon.d.ts +8 -0
  44. package/lib-cjs/base/bundleIcon.js +23 -0
  45. package/lib-cjs/base/createFluentIcon.d.ts +20 -0
  46. package/lib-cjs/base/createFluentIcon.js +43 -0
  47. package/lib-cjs/base/createFluentIcon.svg-sprite.d.ts +9 -0
  48. package/lib-cjs/base/createFluentIcon.svg-sprite.js +33 -0
  49. package/lib-cjs/base/fonts/createFluentFontIcon.d.ts +20 -0
  50. package/lib-cjs/base/fonts/createFluentFontIcon.js +50 -0
  51. package/lib-cjs/base/fonts/index.d.ts +2 -0
  52. package/lib-cjs/base/fonts/index.js +6 -0
  53. package/lib-cjs/base/index.d.ts +8 -0
  54. package/lib-cjs/base/index.js +31 -0
  55. package/lib-cjs/base/shared.d.ts +15 -0
  56. package/lib-cjs/base/shared.js +29 -0
  57. package/lib-cjs/base/useIconState.d.ts +15 -0
  58. package/lib-cjs/base/useIconState.js +42 -0
  59. package/lib-cjs/icons/chunk-0.js +2 -2
  60. package/lib-cjs/icons/chunk-22.js +4 -4
  61. package/lib-cjs/sizedIcons/chunk-0.js +16 -16
  62. package/lib-cjs/sizedIcons/chunk-22.js +10 -10
  63. package/lib-cjs/utils/fonts/FluentSystemIcons-Filled.ttf +0 -0
  64. package/lib-cjs/utils/fonts/FluentSystemIcons-Filled.woff +0 -0
  65. package/lib-cjs/utils/fonts/FluentSystemIcons-Filled.woff2 +0 -0
  66. package/lib-cjs/utils/fonts/FluentSystemIcons-Regular.ttf +0 -0
  67. package/lib-cjs/utils/fonts/FluentSystemIcons-Regular.woff +0 -0
  68. package/lib-cjs/utils/fonts/FluentSystemIcons-Regular.woff2 +0 -0
  69. package/lib-cjs/utils/fonts/FluentSystemIcons-Resizable.ttf +0 -0
  70. package/lib-cjs/utils/fonts/FluentSystemIcons-Resizable.woff +0 -0
  71. package/lib-cjs/utils/fonts/FluentSystemIcons-Resizable.woff2 +0 -0
  72. package/package.json +8 -6
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import type { FluentIconsProps } from '../shared';
3
+ import { FontFile } from '../../utils/fonts/createFluentFontIcon.shared';
4
+ export declare type CreateFluentFontIconOptions = {
5
+ flipInRtl?: boolean;
6
+ };
7
+ export declare type FluentFontIcon = React.FC<FluentIconsProps<React.HTMLAttributes<HTMLElement>, HTMLElement>> & {
8
+ codepoint: string;
9
+ };
10
+ /**
11
+ * Headless createFluentFontIcon — font icon factory without Griffel.
12
+ *
13
+ * Sets data attributes for CSS targeting:
14
+ * - data-fui-icon="font" for base font icon styles
15
+ * - data-fui-icon-font="filled|regular|..." for font-family selection
16
+ *
17
+ * @access private
18
+ * @alpha
19
+ */
20
+ export declare function createFluentFontIcon(displayName: string, codepoint: string, font: FontFile, fontSize?: number, options?: CreateFluentFontIconOptions): FluentFontIcon;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createFluentFontIcon = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const React = tslib_1.__importStar(require("react"));
6
+ const shared_1 = require("../shared");
7
+ const useIconState_1 = require("../useIconState");
8
+ const FONT_VARIANT_MAP = {
9
+ [0 /* Filled */]: 'filled',
10
+ [1 /* Regular */]: 'regular',
11
+ [2 /* Resizable */]: 'resizable',
12
+ [3 /* Light */]: 'light',
13
+ };
14
+ /**
15
+ * Headless createFluentFontIcon — font icon factory without Griffel.
16
+ *
17
+ * Sets data attributes for CSS targeting:
18
+ * - data-fui-icon="font" for base font icon styles
19
+ * - data-fui-icon-font="filled|regular|..." for font-family selection
20
+ *
21
+ * @access private
22
+ * @alpha
23
+ */
24
+ function createFluentFontIcon(displayName, codepoint, font, fontSize, options) {
25
+ const Component = (props) => {
26
+ const className = shared_1.cx(shared_1.fontIconClassName, props.className);
27
+ const state = useIconState_1.useIconState({ ...props, className }, { flipInRtl: options === null || options === void 0 ? void 0 : options.flipInRtl });
28
+ // Override the default data-fui-icon to "font" for font-specific styles
29
+ state[shared_1.DATA_FUI_ICON] = 'font';
30
+ state[shared_1.DATA_FUI_ICON_FONT] = FONT_VARIANT_MAP[font];
31
+ // Map primaryFill to color for font icons
32
+ if (props.primaryFill && props.primaryFill.toLowerCase() !== 'currentcolor') {
33
+ state.style = {
34
+ ...state.style,
35
+ color: props.primaryFill,
36
+ };
37
+ }
38
+ if (fontSize) {
39
+ state.style = {
40
+ ...state.style,
41
+ fontSize,
42
+ };
43
+ }
44
+ return React.createElement("i", Object.assign({}, state), codepoint);
45
+ };
46
+ Component.displayName = displayName;
47
+ Component.codepoint = codepoint;
48
+ return Component;
49
+ }
50
+ exports.createFluentFontIcon = createFluentFontIcon;
@@ -0,0 +1,2 @@
1
+ export { createFluentFontIcon } from './createFluentFontIcon';
2
+ export type { FluentFontIcon, CreateFluentFontIconOptions } from './createFluentFontIcon';
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ // Base Fluent Font Icons API
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.createFluentFontIcon = void 0;
5
+ var createFluentFontIcon_1 = require("./createFluentFontIcon");
6
+ Object.defineProperty(exports, "createFluentFontIcon", { enumerable: true, get: function () { return createFluentFontIcon_1.createFluentFontIcon; } });
@@ -0,0 +1,8 @@
1
+ export type { FluentIconsProps, FluentIcon, CreateFluentIconOptions } from './shared';
2
+ export { iconClassName, iconFilledClassName, iconRegularClassName, iconLightClassName, iconColorClassName, fontIconClassName, DATA_FUI_ICON, DATA_FUI_ICON_RTL, DATA_FUI_ICON_HIDDEN, DATA_FUI_ICON_FONT, cx, } from './shared';
3
+ export { IconDirectionContextProvider, useIconContext } from '../contexts/index';
4
+ export type { IconDirectionContextValue } from '../contexts/index';
5
+ export { useIconState } from './useIconState';
6
+ export type { UseIconStateOptions } from './useIconState';
7
+ export { createFluentIcon } from './createFluentIcon';
8
+ export { bundleIcon } from './bundleIcon';
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ // Base Fluent Icons API
3
+ // Import the shipped CSS file (base.css) for default styling via data-attribute selectors.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.bundleIcon = exports.createFluentIcon = exports.useIconState = exports.useIconContext = exports.IconDirectionContextProvider = exports.cx = exports.DATA_FUI_ICON_FONT = exports.DATA_FUI_ICON_HIDDEN = exports.DATA_FUI_ICON_RTL = exports.DATA_FUI_ICON = exports.fontIconClassName = exports.iconColorClassName = exports.iconLightClassName = exports.iconRegularClassName = exports.iconFilledClassName = exports.iconClassName = void 0;
6
+ var shared_1 = require("./shared");
7
+ Object.defineProperty(exports, "iconClassName", { enumerable: true, get: function () { return shared_1.iconClassName; } });
8
+ Object.defineProperty(exports, "iconFilledClassName", { enumerable: true, get: function () { return shared_1.iconFilledClassName; } });
9
+ Object.defineProperty(exports, "iconRegularClassName", { enumerable: true, get: function () { return shared_1.iconRegularClassName; } });
10
+ Object.defineProperty(exports, "iconLightClassName", { enumerable: true, get: function () { return shared_1.iconLightClassName; } });
11
+ Object.defineProperty(exports, "iconColorClassName", { enumerable: true, get: function () { return shared_1.iconColorClassName; } });
12
+ Object.defineProperty(exports, "fontIconClassName", { enumerable: true, get: function () { return shared_1.fontIconClassName; } });
13
+ Object.defineProperty(exports, "DATA_FUI_ICON", { enumerable: true, get: function () { return shared_1.DATA_FUI_ICON; } });
14
+ Object.defineProperty(exports, "DATA_FUI_ICON_RTL", { enumerable: true, get: function () { return shared_1.DATA_FUI_ICON_RTL; } });
15
+ Object.defineProperty(exports, "DATA_FUI_ICON_HIDDEN", { enumerable: true, get: function () { return shared_1.DATA_FUI_ICON_HIDDEN; } });
16
+ Object.defineProperty(exports, "DATA_FUI_ICON_FONT", { enumerable: true, get: function () { return shared_1.DATA_FUI_ICON_FONT; } });
17
+ Object.defineProperty(exports, "cx", { enumerable: true, get: function () { return shared_1.cx; } });
18
+ // Context
19
+ var index_1 = require("../contexts/index");
20
+ Object.defineProperty(exports, "IconDirectionContextProvider", { enumerable: true, get: function () { return index_1.IconDirectionContextProvider; } });
21
+ Object.defineProperty(exports, "useIconContext", { enumerable: true, get: function () { return index_1.useIconContext; } });
22
+ // Core hook
23
+ var useIconState_1 = require("./useIconState");
24
+ Object.defineProperty(exports, "useIconState", { enumerable: true, get: function () { return useIconState_1.useIconState; } });
25
+ // SVG icon factories
26
+ var createFluentIcon_1 = require("./createFluentIcon");
27
+ Object.defineProperty(exports, "createFluentIcon", { enumerable: true, get: function () { return createFluentIcon_1.createFluentIcon; } });
28
+ var bundleIcon_1 = require("./bundleIcon");
29
+ Object.defineProperty(exports, "bundleIcon", { enumerable: true, get: function () { return bundleIcon_1.bundleIcon; } });
30
+ // TODO: to maintain API compat for build transform we will probably need to export this as well
31
+ // export { wrapIcon } from './wrapIcon';
@@ -0,0 +1,15 @@
1
+ /** Base data attribute applied to all icons (SVG and font). */
2
+ export declare const DATA_FUI_ICON = "data-fui-icon";
3
+ /** Data attribute applied to icons that should flip in RTL text direction. */
4
+ export declare const DATA_FUI_ICON_RTL = "data-fui-icon-rtl";
5
+ /** Data attribute applied to the inactive variant in a bundled icon pair. */
6
+ export declare const DATA_FUI_ICON_HIDDEN = "data-fui-icon-hidden";
7
+ /** Data attribute for font icon font-family variant selection (filled|regular|resizable|light). */
8
+ export declare const DATA_FUI_ICON_FONT = "data-fui-icon-font";
9
+ export { iconClassName, iconFilledClassName, iconRegularClassName, iconLightClassName, iconColorClassName, fontIconClassName, } from '../utils/constants';
10
+ export type { FluentIconsProps } from '../utils/FluentIconsProps.types';
11
+ export type { FluentIcon, CreateFluentIconOptions } from './createFluentIcon';
12
+ /**
13
+ * Joins class name strings, filtering out falsy values.
14
+ */
15
+ export declare function cx(...classes: (string | false | undefined | null)[]): string | undefined;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ // Data attribute names used by base icons for CSS targeting.
3
+ // The shipped base.css file uses these attribute selectors for styling.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.cx = exports.fontIconClassName = exports.iconColorClassName = exports.iconLightClassName = exports.iconRegularClassName = exports.iconFilledClassName = exports.iconClassName = exports.DATA_FUI_ICON_FONT = exports.DATA_FUI_ICON_HIDDEN = exports.DATA_FUI_ICON_RTL = exports.DATA_FUI_ICON = void 0;
6
+ /** Base data attribute applied to all icons (SVG and font). */
7
+ exports.DATA_FUI_ICON = 'data-fui-icon';
8
+ /** Data attribute applied to icons that should flip in RTL text direction. */
9
+ exports.DATA_FUI_ICON_RTL = 'data-fui-icon-rtl';
10
+ /** Data attribute applied to the inactive variant in a bundled icon pair. */
11
+ exports.DATA_FUI_ICON_HIDDEN = 'data-fui-icon-hidden';
12
+ /** Data attribute for font icon font-family variant selection (filled|regular|resizable|light). */
13
+ exports.DATA_FUI_ICON_FONT = 'data-fui-icon-font';
14
+ // Re-export existing constants (CSS class names for consumer targeting)
15
+ var constants_1 = require("../utils/constants");
16
+ Object.defineProperty(exports, "iconClassName", { enumerable: true, get: function () { return constants_1.iconClassName; } });
17
+ Object.defineProperty(exports, "iconFilledClassName", { enumerable: true, get: function () { return constants_1.iconFilledClassName; } });
18
+ Object.defineProperty(exports, "iconRegularClassName", { enumerable: true, get: function () { return constants_1.iconRegularClassName; } });
19
+ Object.defineProperty(exports, "iconLightClassName", { enumerable: true, get: function () { return constants_1.iconLightClassName; } });
20
+ Object.defineProperty(exports, "iconColorClassName", { enumerable: true, get: function () { return constants_1.iconColorClassName; } });
21
+ Object.defineProperty(exports, "fontIconClassName", { enumerable: true, get: function () { return constants_1.fontIconClassName; } });
22
+ /**
23
+ * Joins class name strings, filtering out falsy values.
24
+ */
25
+ function cx(...classes) {
26
+ const result = classes.filter(Boolean).join(' ');
27
+ return result || undefined;
28
+ }
29
+ exports.cx = cx;
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+ import type { FluentIconsProps } from './shared';
3
+ export declare type UseIconStateOptions = {
4
+ flipInRtl?: boolean;
5
+ };
6
+ /**
7
+ * Base version of useIconState
8
+ *
9
+ * Handles:
10
+ * - a11y: aria-hidden, aria-label, role="img"
11
+ * - RTL: sets data-fui-icon-rtl attribute when flipInRtl + RTL context
12
+ * - Base: sets data-fui-icon attribute for CSS targeting
13
+ * - Fill: maps primaryFill to fill prop
14
+ */
15
+ export declare const useIconState: <TBaseAttributes extends React.HTMLAttributes<HTMLElement> | React.SVGAttributes<SVGElement> = React.SVGAttributes<SVGElement>, TRefType extends HTMLElement | SVGSVGElement = SVGSVGElement>(props: FluentIconsProps<TBaseAttributes, TRefType>, options?: UseIconStateOptions | undefined) => Pick<FluentIconsProps<TBaseAttributes, TRefType>, "title" | "filled" | "ref" | "key" | "className" | Exclude<keyof TBaseAttributes, "primaryFill">>;
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.useIconState = void 0;
4
+ const contexts_1 = require("../contexts");
5
+ const shared_1 = require("./shared");
6
+ /**
7
+ * Base version of useIconState
8
+ *
9
+ * Handles:
10
+ * - a11y: aria-hidden, aria-label, role="img"
11
+ * - RTL: sets data-fui-icon-rtl attribute when flipInRtl + RTL context
12
+ * - Base: sets data-fui-icon attribute for CSS targeting
13
+ * - Fill: maps primaryFill to fill prop
14
+ */
15
+ const useIconState = (props, options) => {
16
+ const {
17
+ // remove unwanted props to be set on the svg/html element
18
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
19
+ filled, title, primaryFill = 'currentColor', ...rest } = props;
20
+ const state = {
21
+ ...rest,
22
+ fill: primaryFill,
23
+ };
24
+ const iconContext = contexts_1.useIconContext();
25
+ const isRtlFlip = (options === null || options === void 0 ? void 0 : options.flipInRtl) && (iconContext === null || iconContext === void 0 ? void 0 : iconContext.textDirection) === 'rtl';
26
+ // Data attributes for CSS targeting
27
+ state[shared_1.DATA_FUI_ICON] = '';
28
+ if (isRtlFlip) {
29
+ state[shared_1.DATA_FUI_ICON_RTL] = '';
30
+ }
31
+ if (title) {
32
+ state['aria-label'] = title;
33
+ }
34
+ if (!state['aria-label'] && !state['aria-labelledby']) {
35
+ state['aria-hidden'] = true;
36
+ }
37
+ else {
38
+ state['role'] = 'img';
39
+ }
40
+ return state;
41
+ };
42
+ exports.useIconState = useIconState;
@@ -209,8 +209,8 @@ exports.CommentAddFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('C
209
209
  exports.CommentAddRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentAddRegular', "1em", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm2 8.78V10.4c.36-.18.7-.4 1-.66v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5c-.16.32-.3.65-.4 1H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56Z"], { flipInRtl: true }));
210
210
  exports.CommentArrowLeftFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeftFilled', "1em", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5a5.5 5.5 0 0 0 4.9 8Z"], { flipInRtl: true }));
211
211
  exports.CommentArrowLeftRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeftRegular', "1em", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM17 12.28V10.4c.36-.18.7-.4 1-.66v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5c-.16.32-.3.65-.4 1H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56Z"], { flipInRtl: true }));
212
- exports.CommentArrowRightFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRightFilled', "1em", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5a5.5 5.5 0 0 0 4.9 8Z"], { flipInRtl: true }));
213
- exports.CommentArrowRightRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRightRegular', "1em", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM17 12.28V10.4c.36-.18.7-.4 1-.66v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5c-.16.32-.3.65-.4 1H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56Z"], { flipInRtl: true }));
212
+ exports.CommentArrowRightFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRightFilled', "1em", ["M14.5 1a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5a5.5 5.5 0 0 0 4.9 8Z"], { flipInRtl: true }));
213
+ exports.CommentArrowRightRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRightRegular', "1em", ["M14.5 1a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Zm.15 6.43V10.4c.36-.18.7-.4 1-.66v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5c-.16.32-.3.65-.4 1H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56Z"], { flipInRtl: true }));
214
214
  exports.CommentBadgeFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentBadgeFilled', "1em", ["M17 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 0 0 1-.17v5.45a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h9.57A3 3 0 0 0 17 7Z"]));
215
215
  exports.CommentBadgeRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentBadgeRegular', "1em", ["M17 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 0 0 1-.17v5.45a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h9.57A3 3 0 0 0 14 4H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56V7Z"]));
216
216
  exports.CommentCheckmarkFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentCheckmarkFilled', "1em", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L13.5 6.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5a5.5 5.5 0 0 0 4.9 8Z"], { flipInRtl: true }));
@@ -302,8 +302,8 @@ exports.TextGrammarSettingsFilled = ( /*#__PURE__*/createFluentIcon_1.createFlue
302
302
  exports.TextGrammarSettingsRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextGrammarSettingsRegular', "1em", ["M18 5.5a.5.5 0 0 0-.5-.5h-15a.5.5 0 0 0 0 1h15a.5.5 0 0 0 .5-.5Zm0 3a.5.5 0 0 0-.5-.5h-15a.5.5 0 0 0 0 1h15a.5.5 0 0 0 .5-.5Zm-9 6c0 .17 0 .34.02.5H2.5a.5.5 0 0 1 0-1h6.52l-.02.5Zm1.26-3.5c-.26.3-.48.64-.66 1H2.5a.5.5 0 0 1 0-1h7.76Zm1.8.44a2 2 0 0 1-1.42 2.48l-.47.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.44 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"]));
303
303
  exports.TextGrammarWandFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextGrammarWandFilled', "1em", ["M2.75 4.5a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Zm0 3a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Zm0 3a.75.75 0 0 0 0 1.5h6.63a1.5 1.5 0 0 1-.28-1.5H2.75Zm0 3h6.63L7.88 15H2.75a.75.75 0 0 1 0-1.5ZM14.5 7.44a.5.5 0 0 0-1 0l-.1.79a2.5 2.5 0 0 1-2.17 2.18l-.8.1a.5.5 0 0 0 0 .99l.8.1a2.5 2.5 0 0 1 2.18 2.17l.1.8a.5.5 0 0 0 .99 0l.1-.8a2.5 2.5 0 0 1 2.17-2.18l.8-.1a.5.5 0 0 0 0-.99l-.8-.1a2.5 2.5 0 0 1-2.18-2.17l-.1-.8Zm-2.65 5.7c.2.2.2.52 0 .71l-4 4a.5.5 0 0 1-.7-.7l4-4c.2-.2.5-.2.7 0Z"]));
304
304
  exports.TextGrammarWandRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextGrammarWandRegular', "1em", ["M2.5 5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm0 3a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm0 3a.5.5 0 0 0 0 1h6.88a1.5 1.5 0 0 1-.37-.99V11H2.5Zm0 3h6.38l-1 1H2.5a.5.5 0 0 1 0-1ZM14 7a.5.5 0 0 1 .5.44l.1.79a2.5 2.5 0 0 0 2.17 2.18l.8.1a.5.5 0 0 1 0 .99l-.8.1a2.5 2.5 0 0 0-2.18 2.17l-.1.8a.5.5 0 0 1-.99 0l-.1-.8a2.5 2.5 0 0 0-2.17-2.18l-.8-.1a.5.5 0 0 1 0-.99l.8-.1a2.5 2.5 0 0 0 2.18-2.17l.1-.8A.5.5 0 0 1 14 7Zm0 2.6a3.5 3.5 0 0 1-1.4 1.4c.59.32 1.08.81 1.4 1.4a3.5 3.5 0 0 1 1.4-1.4A3.5 3.5 0 0 1 14 9.6Zm-2.15 3.55c.2.2.2.5 0 .7l-4 4a.5.5 0 0 1-.7-.7l4-4c.2-.2.5-.2.7 0Z"]));
305
- exports.TextHangingFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHangingFilled', "1em", ["M16.25 3.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1 0-1.5h12.5Zm-5 10a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h7.5ZM12 9.25a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0 0 1.5h7.5c.41 0 .75-.34.75-.75Zm3.72 1.47a.75.75 0 1 1 1.06 1.06l-.97.97.97.97a.75.75 0 1 1-1.06 1.06l-1.5-1.5a.75.75 0 0 1 0-1.06l1.5-1.5Z"]));
306
- exports.TextHangingRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHangingRegular', "1em", ["M16.5 4a.5.5 0 0 1 0 1h-13a.5.5 0 0 1 0-1h13Zm-4 10a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1h9Zm.5-4.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0 0 1h9a.5.5 0 0 0 .5-.5Zm2.15 2.15 1.5-1.5a.5.5 0 0 1 .7.7L16.21 12l1.14 1.15a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7Z"]));
305
+ exports.TextHangingFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHangingFilled', "1em", ["M3.75 3.5a.75.75 0 0 0 0 1.5h12.5a.75.75 0 0 0 0-1.5H3.75Zm5 10a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5ZM8 9.25c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 8 9.25Zm-3.72 1.47a.75.75 0 0 0-1.06 1.06l.97.97-.97.97a.75.75 0 1 0 1.06 1.06l1.5-1.5c.3-.3.3-.77 0-1.06l-1.5-1.5Z"]));
306
+ exports.TextHangingRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHangingRegular', "1em", ["M3.5 4a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13Zm4 10a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9ZM7 9.5c0-.28.22-.5.5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5Zm-2.15 2.15-1.5-1.5a.5.5 0 0 0-.7.7L3.79 12l-1.14 1.15a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7Z"]));
307
307
  exports.TextHeader1Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHeader1Filled', "1em", ["M9.25 4c.41 0 .75.34.75.75v10.5a.75.75 0 0 1-1.5 0V10.5h-5v4.75a.75.75 0 0 1-1.5 0V4.75a.75.75 0 0 1 1.5 0V9h5V4.75c0-.41.34-.75.75-.75Zm7.11 0c.37.06.64.38.64.75v10.5a.75.75 0 0 1-1.5 0V7.46a9.48 9.48 0 0 1-1.81 1.65l-.07.04a.75.75 0 0 1-.8-1.27l.4-.28a7.73 7.73 0 0 0 2.3-3.01l.01-.06c.11-.35.46-.58.83-.52Z"]));
308
308
  exports.TextHeader1Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHeader1Regular', "1em", ["M16.55 4a.5.5 0 0 1 .45.5v11a.5.5 0 0 1-1 0V6.73a8.58 8.58 0 0 1-2.22 2.19.5.5 0 1 1-.56-.84 6.76 6.76 0 0 0 2.83-3.8.5.5 0 0 1 .5-.28ZM2.5 4c.28 0 .5.22.5.5V9h6V4.5a.5.5 0 1 1 1 0v11a.5.5 0 0 1-1 0V10H3v5.5a.5.5 0 0 1-1 0v-11c0-.28.22-.5.5-.5Z"]));
309
309
  exports.TextHeader1LinesFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHeader1LinesFilled', "1em", ["M10 8.25c0 .41.34.75.75.75s.75-.34.75-.75v-5.5a.75.75 0 0 0-.58-.73.73.73 0 0 0-.84.39 2.96 2.96 0 0 1-1.17 1.17.74.74 0 0 0-.33 1c.19.38.64.53 1.01.34.04-.02.2-.1.41-.25v3.58ZM2.75 2c.41 0 .75.34.75.75v2h2v-2a.75.75 0 1 1 1.5 0v5.5a.75.75 0 0 1-1.5 0v-2h-2v2a.75.75 0 0 1-1.5 0v-5.5c0-.41.34-.75.75-.75ZM2 16.25c0-.42.34-.75.75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Zm.75-4.75a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Z"]));
@@ -398,8 +398,8 @@ exports.TextNumberListRtl90Filled = ( /*#__PURE__*/createFluentIcon_1.createFlue
398
398
  exports.TextNumberListRtl90Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextNumberListRtl90Regular', "1em", ["M4.5 2c.28 0 .5.22.5.5v8a.5.5 0 0 1-1 0v-8c0-.28.22-.5.5-.5Zm5 0c.28 0 .5.22.5.5v8a.5.5 0 0 1-1 0v-8c0-.28.22-.5.5-.5Zm5 0c.28 0 .5.22.5.5v8a.5.5 0 0 1-1 0v-8c0-.28.22-.5.5-.5Zm-11 12.74c.28 0 .5.23.5.5 0 .35.1.54.18.63.09.1.2.13.3.13.2 0 .52-.19.52-.76 0-.4-.1-.62-.17-.72a.41.41 0 0 0-.07-.09l.02.01h-.02v-.01h-.01a.5.5 0 0 1 .47-.88h.01l.02.01a.83.83 0 0 1 .15.1c.08.07.17.17.27.3.18.29.33.7.33 1.28 0 1.03-.67 1.73-1.48 1.76-.37.01-.74-.12-1.02-.4-.28.28-.65.41-1.02.4-.8-.03-1.48-.73-1.48-1.76 0-.58.15-1 .33-1.27a1.4 1.4 0 0 1 .42-.4l.01-.02h.01a.5.5 0 0 1 .48.88.41.41 0 0 0-.08.1c-.07.09-.17.3-.17.71 0 .57.33.75.52.76.1 0 .21-.03.3-.13.08-.1.18-.28.18-.63 0-.27.22-.5.5-.5Zm7.15-1.1c.2-.2.5-.2.7 0h.01v.02a1.38 1.38 0 0 1 .11.12A2.44 2.44 0 0 1 12 15.3v.01c0 .37-.1.78-.35 1.1a1.4 1.4 0 0 1-1.15.57 1.5 1.5 0 0 1-1.2-.57 4.2 4.2 0 0 1-.5-.83l-.06-.12c-.16-.31-.3-.55-.47-.72a.93.93 0 0 0-.27-.17v1.91a.5.5 0 1 1-1 0V14c0-.27.22-.5.5-.5.62 0 1.08.2 1.44.53a3.32 3.32 0 0 1 .77 1.15c.13.27.23.46.35.61a.5.5 0 0 0 .44.21c.18 0 .28-.06.35-.16.09-.11.15-.3.15-.52a1.5 1.5 0 0 0-.35-.96.5.5 0 0 1 0-.7Zm7.34 1.97a.5.5 0 0 1-.49.38h-4a.5.5 0 1 1 0-1h2.58c-.2-.21-.38-.47-.53-.77a.5.5 0 1 1 .9-.45 2.96 2.96 0 0 0 1.15 1.2l.12.08c.2.1.32.33.27.56Z"]));
399
399
  exports.TextNumberListRtlRotate270Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextNumberListRtlRotate270Filled', "1em", ["M1.01 4.4A.5.5 0 0 1 1.5 4h4a.5.5 0 1 1 0 1H2.92c.2.22.38.48.53.78a.5.5 0 1 1-.9.45 2.96 2.96 0 0 0-1.15-1.2 2.07 2.07 0 0 0-.12-.08A.5.5 0 0 1 1 4.4Zm7.34 1.96a.5.5 0 0 1-.7 0h-.01v-.02a1.38 1.38 0 0 1-.11-.12A2.5 2.5 0 0 1 7 4.7c0-.38.1-.79.35-1.12a1.4 1.4 0 0 1 1.15-.56c.55 0 .93.24 1.2.57a4.2 4.2 0 0 1 .56.95c.16.31.3.55.47.72.08.06.16.12.27.17V3.5a.5.5 0 1 1 1 0V6a.5.5 0 0 1-.5.5c-.62 0-1.08-.2-1.44-.53a3.32 3.32 0 0 1-.77-1.14c-.13-.28-.23-.47-.35-.62A.5.5 0 0 0 8.5 4c-.18 0-.28.06-.35.16a.93.93 0 0 0-.15.52 1.5 1.5 0 0 0 .35.96c.2.2.2.51 0 .7ZM15 4.76a.5.5 0 0 0 1 0c0-.35.1-.54.18-.63.09-.1.2-.13.3-.13.2 0 .52.19.52.76 0 .4-.1.62-.17.72a.42.42 0 0 1-.07.09.5.5 0 0 0 .46.88h.01l.02-.01a.8.8 0 0 0 .15-.1c.08-.07.17-.17.27-.3.18-.29.33-.7.33-1.28 0-1.03-.67-1.73-1.48-1.76-.37-.01-.74.12-1.02.4a1.37 1.37 0 0 0-1.02-.4c-.8.03-1.48.73-1.48 1.76 0 .58.15 1 .33 1.27a1.4 1.4 0 0 0 .42.4l.01.02h.01a.5.5 0 0 0 .48-.88.42.42 0 0 1-.08-.1c-.07-.09-.17-.3-.17-.71 0-.57.33-.75.52-.76.1 0 .21.03.3.13.08.1.18.28.18.63Zm-.75.81h-.02v-.01l.02.01ZM9.75 18a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5c0 .41-.34.75-.75.75Zm-5 0a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5c0 .41-.34.75-.75.75Zm9.25-.75a.75.75 0 0 0 1.5 0v-7.5a.75.75 0 0 0-1.5 0v7.5Z"]));
400
400
  exports.TextNumberListRtlRotate270Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextNumberListRtlRotate270Regular', "1em", ["M1.01 4.4A.5.5 0 0 1 1.5 4h4a.5.5 0 1 1 0 1H2.92c.2.22.38.48.53.78a.5.5 0 1 1-.9.45 2.96 2.96 0 0 0-1.15-1.2 2.07 2.07 0 0 0-.12-.08A.5.5 0 0 1 1 4.4Zm7.34 1.96a.5.5 0 0 1-.7 0h-.01v-.02a1.38 1.38 0 0 1-.11-.12A2.5 2.5 0 0 1 7 4.7c0-.38.1-.79.35-1.12a1.4 1.4 0 0 1 1.15-.56c.55 0 .93.24 1.2.57a4.2 4.2 0 0 1 .56.95c.16.31.3.55.47.72.08.06.16.12.27.17V3.5a.5.5 0 1 1 1 0V6a.5.5 0 0 1-.5.5c-.62 0-1.08-.2-1.44-.53a3.32 3.32 0 0 1-.77-1.14c-.13-.28-.23-.47-.35-.62A.5.5 0 0 0 8.5 4c-.18 0-.28.06-.35.16a.93.93 0 0 0-.15.52 1.5 1.5 0 0 0 .35.96c.2.2.2.51 0 .7ZM15 4.76a.5.5 0 0 0 1 0c0-.35.1-.54.18-.63.09-.1.2-.13.3-.13.2 0 .52.19.52.76 0 .4-.1.62-.17.72a.42.42 0 0 1-.07.09.5.5 0 0 0 .46.88h.01l.02-.01a.8.8 0 0 0 .15-.1c.08-.07.17-.17.27-.3.18-.29.33-.7.33-1.28 0-1.03-.67-1.73-1.48-1.76-.37-.01-.74.12-1.02.4a1.37 1.37 0 0 0-1.02-.4c-.8.03-1.48.73-1.48 1.76 0 .58.15 1 .33 1.27a1.4 1.4 0 0 0 .42.4l.01.02h.01a.5.5 0 0 0 .48-.88.42.42 0 0 1-.08-.1c-.07-.09-.17-.3-.17-.71 0-.57.33-.75.52-.76.1 0 .21.03.3.13.08.1.18.28.18.63Zm-.75.81h-.02v-.01l.02.01ZM9.5 18a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 1 1 0v8a.5.5 0 0 1-.5.5Zm-5 0a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 1 1 0v8a.5.5 0 0 1-.5.5Zm9.5-.5a.5.5 0 0 0 1 0v-8a.5.5 0 0 0-1 0v8Z"]));
401
- exports.TextParagraphFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphFilled', "1em", ["M13.5 7a3.5 3.5 0 1 0 0 7h.5v3.5a.5.5 0 0 0 1 0V8h1v9.5a.5.5 0 0 0 1 0V8h.5a.5.5 0 0 0 0-1h-4Zm-11-2a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm6.76 4H2.5a.5.5 0 0 0 0 1h6.53c.04-.35.11-.68.23-1Zm.5 4H2.5a.5.5 0 0 0 0 1h8.17a4.53 4.53 0 0 1-.91-1Z"]));
402
- exports.TextParagraphRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphRegular', "1em", ["M13.5 8a2.5 2.5 0 0 0 0 5h.5V8h-.5Zm.5 6h-.5a3.5 3.5 0 1 1 0-7h4a.5.5 0 0 1 0 1H17v9.5a.5.5 0 0 1-1 0V8h-1v9.5a.5.5 0 0 1-1 0V14ZM2.5 5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm6.76 4H2.5a.5.5 0 0 0 0 1h6.53c.04-.35.11-.68.23-1Zm.5 4H2.5a.5.5 0 0 0 0 1h8.17a4.53 4.53 0 0 1-.91-1Z"]));
401
+ exports.TextParagraphFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphFilled', "1em", ["M17.25 2c.41 0 .75.34.75.75v2.5A2.75 2.75 0 0 1 15.25 8h-3.8l1.36 1.5a.75.75 0 0 1-1.12 1L9.2 7.75a.75.75 0 0 1 0-1L11.7 4a.75.75 0 0 1 1.12 1l-1.36 1.5h3.8c.69 0 1.25-.56 1.25-1.25v-2.5c0-.41.34-.75.75-.75ZM8.3 9.5a.75.75 0 1 0-1.1 1L8.55 12h-5.8a.75.75 0 0 0 0 1.5h5.8L7.2 15a.75.75 0 0 0 1.1 1l2.5-2.75a.75.75 0 0 0 0-1L8.3 9.5Z"]));
402
+ exports.TextParagraphRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphRegular', "1em", ["M12.15 10.85a.5.5 0 0 0 .7-.7L10.71 8h4.79A2.5 2.5 0 0 0 18 5.5v-3s0-.5-.5-.5-.5.5-.5.5v3c0 .83-.67 1.5-1.5 1.5h-4.8l2.15-2.15a.5.5 0 0 0-.7-.7l-3 3a.5.5 0 0 0 0 .7l3 3Zm-4.3-1.7a.5.5 0 1 0-.7.7L9.29 12H2.5s-.5 0-.5.5.5.5.5.5h6.8l-2.15 2.15a.5.5 0 0 0 .7.7l3-3a.5.5 0 0 0 0-.7l-3-3Z"]));
403
403
  exports.TextParagraphDirectionFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphDirectionFilled', "1em", ["M11.5 3a4 4 0 1 0 0 8H13v6.5a.5.5 0 0 0 1 0V4h1v13.5a.5.5 0 0 0 1 0V4h.5a.5.5 0 0 0 0-1h-5ZM3.15 5.65c.2-.2.5-.2.7 0l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L4.79 8 3.15 6.35a.5.5 0 0 1 0-.7Zm2.7 6a.5.5 0 0 0-.7 0l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L4.21 14l1.64-1.65a.5.5 0 0 0 0-.7Z"]));
404
404
  exports.TextParagraphDirectionRegular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphDirectionRegular', "1em", ["M11.5 3a4 4 0 1 0 0 8H13v6.5a.5.5 0 0 0 1 0V4h1v13.5a.5.5 0 0 0 1 0V4h.5a.5.5 0 0 0 0-1h-5ZM13 4v6h-1.5a3 3 0 0 1 0-6H13ZM3.15 5.65c.2-.2.5-.2.7 0l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L4.79 8 3.15 6.35a.5.5 0 0 1 0-.7Zm2.7 6a.5.5 0 0 0-.7 0l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L4.21 14l1.64-1.65a.5.5 0 0 0 0-.7Z"]));
405
405
  exports.TextParagraphDirectionLeftFilled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphDirectionLeftFilled', "1em", ["M11.5 3a4 4 0 1 0 0 8H13v6.5a.5.5 0 0 0 1 0V4h1v13.5a.5.5 0 0 0 1 0V4h.5a.5.5 0 0 0 0-1h-5ZM5.15 7.65a.5.5 0 1 1 .7.7L4.21 10l1.64 1.65a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7l2-2Z"]));
@@ -820,24 +820,24 @@ exports.CommentArrowLeft16Filled = ( /*#__PURE__*/createFluentIcon_1.createFluen
820
820
  exports.CommentArrowLeft16Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft16Regular', "16", ["M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35A.5.5 0 0 0 8 5.5a.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L9.71 6h2.79a.5.5 0 0 0 0-1H9.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM3.5 3h2.1c.18-.36.4-.7.66-1H3.5A2.5 2.5 0 0 0 1 4.5v5A2.5 2.5 0 0 0 3.5 12H4v1.94c0 .84 1 1.3 1.63.74L8.69 12h3.81A2.5 2.5 0 0 0 15 9.5v-.84c-.29.41-.63.78-1.02 1.1A1.5 1.5 0 0 1 12.5 11H8.31L5 13.9V11H3.5A1.5 1.5 0 0 1 2 9.5v-5C2 3.67 2.67 3 3.5 3Z"], { flipInRtl: true }));
821
821
  exports.CommentArrowLeft20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft20Filled', "20", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5a5.5 5.5 0 0 0 4.9 8Z"], { flipInRtl: true }));
822
822
  exports.CommentArrowLeft20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft20Regular', "20", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM17 12.28V10.4c.36-.18.7-.4 1-.66v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5c-.16.32-.3.65-.4 1H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56Z"], { flipInRtl: true }));
823
- exports.CommentArrowLeft24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft24Filled', "24", ["M12.02 3A6.5 6.5 0 0 0 22 11.2v3.55c0 1.8-1.46 3.25-3.25 3.25h-5.79l-5.38 3.82A1 1 0 0 1 6 21v-3h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77Zm5.48-2a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-1.28 2.59-.07.06-2.53 2.53-.03.04-.04.07-.03.08-.02.08v.14l.02.06.03.06.03.06.04.05 2.53 2.53a.5.5 0 0 0 .76-.63l-.06-.07L15.21 7h5.29a.5.5 0 0 0 .5-.41V6.5a.5.5 0 0 0-.41-.5H15.2l1.65-1.65a.5.5 0 0 0 .06-.63l-.06-.07a.5.5 0 0 0-.63-.06Z"], { flipInRtl: true }));
824
- exports.CommentArrowLeft24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft24Regular', "24", ["M12.02 3c-.3.46-.53.97-.7 1.5H5.24c-.97 0-1.75.78-1.75 1.75v8.5c0 .97.78 1.75 1.75 1.75H7.5v3.75l5.01-3.75h6.24c.97 0 1.75-.78 1.75-1.75v-2.48a6.52 6.52 0 0 0 1.5-1.08v3.56c0 1.8-1.46 3.25-3.25 3.25h-5.74L8 21.75a1.25 1.25 0 0 1-2-1V18h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77Zm5.48-2a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-1.28 2.59-.07.06-2.53 2.53-.03.04-.04.07-.03.08-.02.08v.14l.02.06.03.06.03.06.04.05 2.53 2.53a.5.5 0 0 0 .76-.63l-.06-.07L15.21 7h5.29a.5.5 0 0 0 .5-.41V6.5a.5.5 0 0 0-.41-.5H15.2l1.65-1.65a.5.5 0 0 0 .06-.63l-.06-.07a.5.5 0 0 0-.63-.06Z"], { flipInRtl: true }));
825
- exports.CommentArrowLeft28Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft28Filled', "28", ["M27 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L19.71 7h4.79Zm-3 6c1.75 0 3.33-.69 4.5-1.81v6.06A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h10.27a6.5 6.5 0 0 0 5.48 10Z"], { flipInRtl: true }));
826
- exports.CommentArrowLeft28Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft28Regular', "28", ["M27 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L19.71 7h4.79Zm0 10.25v-4.98a6.52 6.52 0 0 0 1.5-1.08v6.06A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h10.27c-.3.46-.53.97-.7 1.5H5.74c-1.24 0-2.25 1-2.25 2.25v10.5c0 1.24 1 2.25 2.25 2.25H8.5v4.8c0 .2.23.32.4.2l6.92-5h6.43c1.24 0 2.25-1 2.25-2.25Z"], { flipInRtl: true }));
823
+ exports.CommentArrowLeft24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft24Filled', "24", ["M17.5 12a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm3-5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L15.71 7h4.79Zm-3 6c1.75 0 3.33-.69 4.5-1.81v3.56c0 1.8-1.46 3.25-3.25 3.25H13l-5 3.75c-.82.62-2 .03-2-1V18h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77a6.5 6.5 0 0 0 5.48 10Z"], { flipInRtl: true }));
824
+ exports.CommentArrowLeft24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft24Regular', "24", ["M17.5 12a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm3-5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L15.71 7h4.79Zm0 7.75v-2.48a6.52 6.52 0 0 0 1.5-1.08v3.56c0 1.8-1.46 3.25-3.25 3.25h-5.74L8 21.75a1.25 1.25 0 0 1-2-1V18h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77c-.3.46-.53.97-.7 1.5H5.24c-.97 0-1.75.78-1.75 1.75v8.5c0 .97.78 1.75 1.75 1.75H7.5v3.75l5.01-3.75h6.24c.97 0 1.75-.78 1.75-1.75Z"], { flipInRtl: true }));
825
+ exports.CommentArrowLeft28Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft28Filled', "28", ["M20.5 14a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13Zm4-6a.5.5 0 0 0 0-1h-6.8l2.15-2.15a.5.5 0 0 0-.7-.7l-3 3a.5.5 0 0 0-.15.35c0 .13.05.26.15.35l3 3a.5.5 0 0 0 .7-.7L17.71 8h6.79Zm-4 7c2.17 0 4.13-.92 5.5-2.4v4.65A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h8.75a7.5 7.5 0 0 0 6 12Z"], { flipInRtl: true }));
826
+ exports.CommentArrowLeft28Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft28Regular', "28", ["M20.5 14a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13Zm4-6a.5.5 0 0 0 0-1h-6.8l2.15-2.15a.5.5 0 0 0-.7-.7l-3 3a.5.5 0 0 0-.15.35c0 .13.05.26.15.35l3 3a.5.5 0 0 0 .7-.7L17.71 8h6.79Zm0 9.25v-3.4A7.54 7.54 0 0 0 26 12.6v4.65A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h8.75c-.35.46-.64.96-.88 1.5H5.75c-1.24 0-2.25 1-2.25 2.25v10.5c0 1.24 1 2.25 2.25 2.25H8.5v4.8c0 .2.23.32.4.2l6.92-5h6.43c1.24 0 2.25-1 2.25-2.25Z"], { flipInRtl: true }));
827
827
  exports.CommentArrowLeft48Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft48Filled', "48", ["M46 13a11 11 0 1 1-22 0 11 11 0 0 1 22 0ZM33.7 7.3a1 1 0 0 0-1.4 0l-5 5a1 1 0 0 0 0 1.4l5 5a1 1 0 0 0 1.4-1.4L30.42 14H42a1 1 0 1 0 0-2H30.41l3.3-3.3a1 1 0 0 0 0-1.4ZM35 26c3.5 0 6.66-1.38 9-3.62v6.37c0 4-3.25 7.25-7.25 7.25H26.4l-10.85 7.66A2.25 2.25 0 0 1 12 41.82V36h-.75C7.25 36 4 32.75 4 28.75v-15.5C4 9.25 7.25 6 11.25 6h12.8A13 13 0 0 0 35 26Z"], { flipInRtl: true }));
828
828
  exports.CommentArrowLeft48Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowLeft48Regular', "48", ["M46 13a11 11 0 1 1-22 0 11 11 0 0 1 22 0ZM33.7 7.3a1 1 0 0 0-1.4 0l-5 5a1 1 0 0 0 0 1.4l5 5a1 1 0 0 0 1.4-1.4L30.42 14H42a1 1 0 1 0 0-2H30.41l3.3-3.3a1 1 0 0 0 0-1.4Zm7.8 21.45v-4.49c.9-.52 1.75-1.16 2.5-1.88v6.37c0 4-3.25 7.25-7.25 7.25H26.4l-10.85 7.66A2.25 2.25 0 0 1 12 41.82V36h-.75C7.25 36 4 32.75 4 28.75v-15.5C4 9.25 7.25 6 11.25 6h12.8c-.5.78-.92 1.62-1.25 2.5H11.25a4.75 4.75 0 0 0-4.75 4.75v15.5a4.75 4.75 0 0 0 4.75 4.75h3.25v7.84l11.1-7.84h11.15a4.75 4.75 0 0 0 4.75-4.75Z"], { flipInRtl: true }));
829
- exports.CommentArrowRight12Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight12Filled', "12", ["M12 3.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-1.5.5a.5.5 0 0 0 0-1H7.7l.65-.65a.5.5 0 1 0-.7-.7l-1.5 1.5A.5.5 0 0 0 6 3.5a.5.5 0 0 0 .15.35l1.5 1.5a.5.5 0 1 0 .7-.7L7.71 4h2.79Zm-2 4c.92 0 1.77-.28 2.48-.75A2 2 0 0 1 9 9H6.65l-2.87 1.92A.5.5 0 0 1 3 10.5V9a2 2 0 0 1-2-2V3c0-1.1.9-2 2-2h1.76A4.5 4.5 0 0 0 8.5 8Z"], { flipInRtl: true }));
830
- exports.CommentArrowRight12Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight12Regular', "12", ["M12 3.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-1.5.5a.5.5 0 0 0 0-1H7.7l.65-.65a.5.5 0 1 0-.7-.7l-1.5 1.5A.5.5 0 0 0 6 3.5a.5.5 0 0 0 .15.35l1.5 1.5a.5.5 0 1 0 .7-.7L7.71 4h2.79ZM3 2h1.26c.12-.36.3-.7.5-1H3a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2v1.5a.5.5 0 0 0 .78.42L6.65 9H9a2 2 0 0 0 1.98-1.75c-.46.31-.99.54-1.55.65A1 1 0 0 1 9 8H6.5a.5.5 0 0 0-.28.08L4 9.57V8.5a.5.5 0 0 0-.5-.5H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Z"], { flipInRtl: true }));
831
- exports.CommentArrowRight16Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight16Filled', "16", ["M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35A.5.5 0 0 0 8 5.5a.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L9.71 6h2.79a.5.5 0 0 0 0-1H9.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM10.5 11A5.5 5.5 0 0 0 15 8.66v.84a2.5 2.5 0 0 1-2.5 2.5H8.69l-3.06 2.68A.98.98 0 0 1 4 13.94V12h-.5A2.5 2.5 0 0 1 1 9.5v-5A2.5 2.5 0 0 1 3.5 2h2.76a5.5 5.5 0 0 0 4.24 9Z"], { flipInRtl: true }));
832
- exports.CommentArrowRight16Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight16Regular', "16", ["M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35A.5.5 0 0 0 8 5.5a.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L9.71 6h2.79a.5.5 0 0 0 0-1H9.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM3.5 3h2.1c.18-.36.4-.7.66-1H3.5A2.5 2.5 0 0 0 1 4.5v5A2.5 2.5 0 0 0 3.5 12H4v1.94c0 .84 1 1.3 1.63.74L8.69 12h3.81A2.5 2.5 0 0 0 15 9.5v-.84c-.29.41-.63.78-1.02 1.1A1.5 1.5 0 0 1 12.5 11H8.31L5 13.9V11H3.5A1.5 1.5 0 0 1 2 9.5v-5C2 3.67 2.67 3 3.5 3Z"], { flipInRtl: true }));
833
- exports.CommentArrowRight20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight20Filled', "20", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5a5.5 5.5 0 0 0 4.9 8Z"], { flipInRtl: true }));
834
- exports.CommentArrowRight20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight20Regular', "20", ["M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 6h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2ZM17 12.28V10.4c.36-.18.7-.4 1-.66v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5c-.16.32-.3.65-.4 1H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56Z"], { flipInRtl: true }));
835
- exports.CommentArrowRight24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight24Filled', "24", ["M12.02 3A6.5 6.5 0 0 0 22 11.2v3.55c0 1.8-1.46 3.25-3.25 3.25h-5.79l-5.38 3.82A1 1 0 0 1 6 21v-3h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77Zm5.48-2a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-1.28 2.59-.07.06-2.53 2.53-.03.04-.04.07-.03.08-.02.08v.14l.02.06.03.06.03.06.04.05 2.53 2.53a.5.5 0 0 0 .76-.63l-.06-.07L15.21 7h5.29a.5.5 0 0 0 .5-.41V6.5a.5.5 0 0 0-.41-.5H15.2l1.65-1.65a.5.5 0 0 0 .06-.63l-.06-.07a.5.5 0 0 0-.63-.06Z"], { flipInRtl: true }));
836
- exports.CommentArrowRight24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight24Regular', "24", ["M12.02 3c-.3.46-.53.97-.7 1.5H5.24c-.97 0-1.75.78-1.75 1.75v8.5c0 .97.78 1.75 1.75 1.75H7.5v3.75l5.01-3.75h6.24c.97 0 1.75-.78 1.75-1.75v-2.48a6.52 6.52 0 0 0 1.5-1.08v3.56c0 1.8-1.46 3.25-3.25 3.25h-5.74L8 21.75a1.25 1.25 0 0 1-2-1V18h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77Zm5.48-2a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-1.28 2.59-.07.06-2.53 2.53-.03.04-.04.07-.03.08-.02.08v.14l.02.06.03.06.03.06.04.05 2.53 2.53a.5.5 0 0 0 .76-.63l-.06-.07L15.21 7h5.29a.5.5 0 0 0 .5-.41V6.5a.5.5 0 0 0-.41-.5H15.2l1.65-1.65a.5.5 0 0 0 .06-.63l-.06-.07a.5.5 0 0 0-.63-.06Z"], { flipInRtl: true }));
837
- exports.CommentArrowRight28Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight28Filled', "28", ["M27 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L19.71 7h4.79Zm-3 6c1.75 0 3.33-.69 4.5-1.81v6.06A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h10.27a6.5 6.5 0 0 0 5.48 10Z"], { flipInRtl: true }));
838
- exports.CommentArrowRight28Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight28Regular', "28", ["M27 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L19.71 7h4.79Zm0 10.25v-4.98a6.52 6.52 0 0 0 1.5-1.08v6.06A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h10.27c-.3.46-.53.97-.7 1.5H5.74c-1.24 0-2.25 1-2.25 2.25v10.5c0 1.24 1 2.25 2.25 2.25H8.5v4.8c0 .2.23.32.4.2l6.92-5h6.43c1.24 0 2.25-1 2.25-2.25Z"], { flipInRtl: true }));
839
- exports.CommentArrowRight48Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight48Filled', "48", ["M46 13a11 11 0 1 1-22 0 11 11 0 0 1 22 0ZM33.7 7.3a1 1 0 0 0-1.4 0l-5 5a1 1 0 0 0 0 1.4l5 5a1 1 0 0 0 1.4-1.4L30.42 14H42a1 1 0 1 0 0-2H30.41l3.3-3.3a1 1 0 0 0 0-1.4ZM35 26c3.5 0 6.66-1.38 9-3.62v6.37c0 4-3.25 7.25-7.25 7.25H26.4l-10.85 7.66A2.25 2.25 0 0 1 12 41.82V36h-.75C7.25 36 4 32.75 4 28.75v-15.5C4 9.25 7.25 6 11.25 6h12.8A13 13 0 0 0 35 26Z"], { flipInRtl: true }));
840
- exports.CommentArrowRight48Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight48Regular', "48", ["M46 13a11 11 0 1 1-22 0 11 11 0 0 1 22 0ZM33.7 7.3a1 1 0 0 0-1.4 0l-5 5a1 1 0 0 0 0 1.4l5 5a1 1 0 0 0 1.4-1.4L30.42 14H42a1 1 0 1 0 0-2H30.41l3.3-3.3a1 1 0 0 0 0-1.4Zm7.8 21.45v-4.49c.9-.52 1.75-1.16 2.5-1.88v6.37c0 4-3.25 7.25-7.25 7.25H26.4l-10.85 7.66A2.25 2.25 0 0 1 12 41.82V36h-.75C7.25 36 4 32.75 4 28.75v-15.5C4 9.25 7.25 6 11.25 6h12.8c-.5.78-.92 1.62-1.25 2.5H11.25a4.75 4.75 0 0 0-4.75 4.75v15.5a4.75 4.75 0 0 0 4.75 4.75h3.25v7.84l11.1-7.84h11.15a4.75 4.75 0 0 0 4.75-4.75Z"], { flipInRtl: true }));
829
+ exports.CommentArrowRight12Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight12Filled', "12", ["M12 3.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0ZM6.5 3a.5.5 0 0 0 0 1h2.8l-.65.65a.5.5 0 1 0 .7.7l1.5-1.5A.5.5 0 0 0 11 3.5a.5.5 0 0 0-.15-.35l-1.5-1.5a.5.5 0 1 0-.7.7l.64.65H6.5Zm2 5c.92 0 1.77-.28 2.48-.75A2 2 0 0 1 9 9H6.65l-2.87 1.92A.5.5 0 0 1 3 10.5V9a2 2 0 0 1-2-2V3c0-1.1.9-2 2-2h1.76A4.5 4.5 0 0 0 8.5 8Z"], { flipInRtl: true }));
830
+ exports.CommentArrowRight12Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight12Regular', "12", ["M12 3.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0ZM6.5 3a.5.5 0 0 0 0 1h2.8l-.65.65a.5.5 0 1 0 .7.7l1.5-1.5A.5.5 0 0 0 11 3.5a.5.5 0 0 0-.15-.35l-1.5-1.5a.5.5 0 1 0-.7.7l.64.65H6.5ZM3 2h1.26c.12-.36.3-.7.5-1H3a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2v1.5a.5.5 0 0 0 .78.42L6.65 9H9a2 2 0 0 0 1.98-1.75c-.46.31-.99.54-1.55.65A1 1 0 0 1 9 8H6.5a.5.5 0 0 0-.28.08L4 9.57V8.5a.5.5 0 0 0-.5-.5H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Z"], { flipInRtl: true }));
831
+ exports.CommentArrowRight16Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight16Filled', "16", ["M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35A.5.5 0 0 0 13 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L11.29 5H8.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM10.5 11A5.5 5.5 0 0 0 15 8.66v.84a2.5 2.5 0 0 1-2.5 2.5H8.69l-3.06 2.68A.98.98 0 0 1 4 13.94V12h-.5A2.5 2.5 0 0 1 1 9.5v-5A2.5 2.5 0 0 1 3.5 2h2.76a5.5 5.5 0 0 0 4.24 9Z"], { flipInRtl: true }));
832
+ exports.CommentArrowRight16Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight16Regular', "16", ["M15 5.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-2.15.35-2 2a.5.5 0 0 1-.7-.7L11.29 6H8.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35ZM3.5 3h2.1c.18-.36.4-.7.66-1H3.5A2.5 2.5 0 0 0 1 4.5v5A2.5 2.5 0 0 0 3.5 12H4v1.94c0 .84 1 1.3 1.63.74L8.69 12h3.81A2.5 2.5 0 0 0 15 9.5v-.84c-.29.41-.63.78-1.02 1.1A1.5 1.5 0 0 1 12.5 11H8.31L5 13.9V11H3.5A1.5 1.5 0 0 1 2 9.5v-5C2 3.67 2.67 3 3.5 3Z"], { flipInRtl: true }));
833
+ exports.CommentArrowRight20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight20Filled', "20", ["M14.5 1a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5a5.5 5.5 0 0 0 4.9 8Z"], { flipInRtl: true }));
834
+ exports.CommentArrowRight20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight20Regular', "20", ["M14.5 1a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Zm.15 6.43V10.4c.36-.18.7-.4 1-.66v2.54a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h5c-.16.32-.3.65-.4 1H4.6C3.7 4 3 4.71 3 5.57v6.7c0 .86.7 1.57 1.6 1.57h1.6V17l4.28-3.16h4.92c.9 0 1.6-.71 1.6-1.56Z"], { flipInRtl: true }));
835
+ exports.CommentArrowRight24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight24Filled', "24", ["M17.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-3 5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 6H14.5Zm3 7c1.75 0 3.33-.69 4.5-1.81v3.56c0 1.8-1.46 3.25-3.25 3.25H13l-5 3.75c-.82.62-2 .03-2-1V18h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77a6.5 6.5 0 0 0 5.48 10Z"], { flipInRtl: true }));
836
+ exports.CommentArrowRight24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight24Regular', "24", ["M17.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-3 5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 6H14.5Zm6 8.75v-2.48a6.52 6.52 0 0 0 1.5-1.08v3.56c0 1.8-1.46 3.25-3.25 3.25h-5.74L8 21.75a1.25 1.25 0 0 1-2-1V18h-.75A3.25 3.25 0 0 1 2 14.75v-8.5C2 4.45 3.46 3 5.25 3h6.77c-.3.46-.53.97-.7 1.5H5.24c-.97 0-1.75.78-1.75 1.75v8.5c0 .97.78 1.75 1.75 1.75H7.5v3.75l5.01-3.75h6.24c.97 0 1.75-.78 1.75-1.75Z"], { flipInRtl: true }));
837
+ exports.CommentArrowRight28Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight28Filled', "28", ["M27 7.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0ZM16.5 7a.5.5 0 0 0 0 1h6.8l-2.15 2.15a.5.5 0 0 0 .7.7l3-3A.5.5 0 0 0 25 7.5a.5.5 0 0 0-.15-.35l-3-3a.5.5 0 0 0-.7.7L23.29 7H16.5Zm4 8c2.17 0 4.13-.92 5.5-2.4v4.65A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h8.75a7.5 7.5 0 0 0 6 12Z"], { flipInRtl: true }));
838
+ exports.CommentArrowRight28Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight28Regular', "28", ["M27 7.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0ZM16.5 7a.5.5 0 0 0 0 1h6.8l-2.15 2.15a.5.5 0 0 0 .7.7l3-3A.5.5 0 0 0 25 7.5a.5.5 0 0 0-.15-.35l-3-3a.5.5 0 0 0-.7.7L23.29 7H16.5Zm8 10.25v-3.4A7.54 7.54 0 0 0 26 12.6v4.65A3.75 3.75 0 0 1 22.25 21h-5.94l-6.54 4.71C8.62 26.55 7 25.72 7 24.3V21H5.75A3.75 3.75 0 0 1 2 17.25V6.75A3.75 3.75 0 0 1 5.75 3h8.75c-.35.46-.64.96-.88 1.5H5.75c-1.24 0-2.25 1-2.25 2.25v10.5c0 1.24 1 2.25 2.25 2.25H8.5v4.8c0 .2.23.32.4.2l6.92-5h6.43c1.24 0 2.25-1 2.25-2.25Z"], { flipInRtl: true }));
839
+ exports.CommentArrowRight48Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight48Filled', "48", ["M46 13a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-9.7-5.7a1 1 0 0 0 0 1.4l3.29 3.3H28a1 1 0 1 0 0 2h11.59l-3.3 3.3a1 1 0 0 0 1.42 1.4l5-5a1 1 0 0 0 0-1.4l-5-5a1 1 0 0 0-1.42 0ZM35 26c3.5 0 6.66-1.38 9-3.62v6.37c0 4-3.25 7.25-7.25 7.25H26.4l-10.85 7.66A2.25 2.25 0 0 1 12 41.82V36h-.75C7.25 36 4 32.75 4 28.75v-15.5C4 9.25 7.25 6 11.25 6h12.8A13 13 0 0 0 35 26Z"], { flipInRtl: true }));
840
+ exports.CommentArrowRight48Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentArrowRight48Regular', "48", ["M46 13a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-9.7-5.7a1 1 0 0 0 0 1.4l3.29 3.3H28a1 1 0 1 0 0 2h11.59l-3.3 3.3a1 1 0 0 0 1.42 1.4l5-5a1 1 0 0 0 0-1.4l-5-5a1 1 0 0 0-1.42 0Zm5.2 21.45v-4.49c.9-.52 1.75-1.16 2.5-1.88v6.37c0 4-3.25 7.25-7.25 7.25H26.4l-10.85 7.66A2.25 2.25 0 0 1 12 41.82V36h-.75C7.25 36 4 32.75 4 28.75v-15.5C4 9.25 7.25 6 11.25 6h12.8c-.5.78-.92 1.62-1.25 2.5H11.25a4.75 4.75 0 0 0-4.75 4.75v15.5a4.75 4.75 0 0 0 4.75 4.75h3.25v7.84l11.1-7.84h11.15a4.75 4.75 0 0 0 4.75-4.75Z"], { flipInRtl: true }));
841
841
  exports.CommentBadge16Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentBadge16Filled', "16", ["M14 5a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM3.5 2h7.67A3 3 0 0 0 15 5.83V9.5a2.5 2.5 0 0 1-2.5 2.5H8.69l-3.06 2.68A.98.98 0 0 1 4 13.94V12h-.5A2.5 2.5 0 0 1 1 9.5v-5A2.5 2.5 0 0 1 3.5 2Z"]));
842
842
  exports.CommentBadge16Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentBadge16Regular', "16", ["M14 5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm1 4.5V5.83A3 3 0 0 1 14 6v3.5c0 .83-.67 1.5-1.5 1.5H8.31L5 13.9V11H3.5A1.5 1.5 0 0 1 2 9.5v-5C2 3.67 2.67 3 3.5 3H11a3 3 0 0 1 .17-1H3.5A2.5 2.5 0 0 0 1 4.5v5A2.5 2.5 0 0 0 3.5 12H4v1.94c0 .84 1 1.3 1.63.74L8.69 12h3.81A2.5 2.5 0 0 0 15 9.5Z"]));
843
843
  exports.CommentBadge20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('CommentBadge20Filled', "20", ["M17 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 0 0 1-.17v5.45a2.58 2.58 0 0 1-2.6 2.56h-4.59L6.8 17.8a1 1 0 0 1-1.4-.2.98.98 0 0 1-.2-.59v-2.17h-.6A2.58 2.58 0 0 1 2 12.28V5.57A2.58 2.58 0 0 1 4.6 3h9.57A3 3 0 0 0 17 7Z"]));
@@ -904,10 +904,10 @@ exports.TextGrammarWand20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluent
904
904
  exports.TextGrammarWand20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextGrammarWand20Regular', "20", ["M2.5 5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm0 3a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm0 3a.5.5 0 0 0 0 1h6.88a1.5 1.5 0 0 1-.37-.99V11H2.5Zm0 3h6.38l-1 1H2.5a.5.5 0 0 1 0-1ZM14 7a.5.5 0 0 1 .5.44l.1.79a2.5 2.5 0 0 0 2.17 2.18l.8.1a.5.5 0 0 1 0 .99l-.8.1a2.5 2.5 0 0 0-2.18 2.17l-.1.8a.5.5 0 0 1-.99 0l-.1-.8a2.5 2.5 0 0 0-2.17-2.18l-.8-.1a.5.5 0 0 1 0-.99l.8-.1a2.5 2.5 0 0 0 2.18-2.17l.1-.8A.5.5 0 0 1 14 7Zm0 2.6a3.5 3.5 0 0 1-1.4 1.4c.59.32 1.08.81 1.4 1.4a3.5 3.5 0 0 1 1.4-1.4A3.5 3.5 0 0 1 14 9.6Zm-2.15 3.55c.2.2.2.5 0 .7l-4 4a.5.5 0 0 1-.7-.7l4-4c.2-.2.5-.2.7 0Z"]));
905
905
  exports.TextGrammarWand24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextGrammarWand24Filled', "24", ["M3 17h7.52l-2 2H3a1 1 0 0 1-.12-2H3Zm0-2h7.85a1.75 1.75 0 0 1-.78-2H2.88A1 1 0 0 0 3 15Zm0-8h18.12A1 1 0 0 0 21 5H2.88A1 1 0 0 0 3 7Zm9.72 9.22a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 1 1-1.06-1.06l4.5-4.5ZM3 9h10a1 1 0 0 1 .12 2H3a1 1 0 0 1-.12-2H3Zm13.5-1c.38 0 .7.28.74.66l.14 1.13a3.25 3.25 0 0 0 2.83 2.83l1.13.14a.75.75 0 0 1 0 1.48l-1.13.14a3.25 3.25 0 0 0-2.83 2.83l-.14 1.13a.75.75 0 0 1-1.48 0l-.14-1.13a3.25 3.25 0 0 0-2.83-2.83l-1.13-.14a.75.75 0 0 1 0-1.48l1.13-.14a3.25 3.25 0 0 0 2.83-2.83l.14-1.13A.75.75 0 0 1 16.5 8Z"]));
906
906
  exports.TextGrammarWand24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextGrammarWand24Regular', "24", ["M2.75 17h7.78l-1.5 1.5H2.75a.75.75 0 0 1-.1-1.5h.1Zm0-2.5h7.56a1.74 1.74 0 0 1-.24-1.5H2.65a.75.75 0 0 0 .1 1.5Zm9.97 1.72a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 0 1-1.06-1.06l4.5-4.5ZM2.75 9h10.5a.75.75 0 0 1 .1 1.5H2.75a.75.75 0 0 1-.1-1.5h.1Zm0-4h18.5a.75.75 0 0 1 .1 1.5H2.75a.75.75 0 0 1-.1-1.5h.1ZM16.5 8c.38 0 .7.28.74.66l.14 1.13a3.25 3.25 0 0 0 2.83 2.83l1.13.14a.75.75 0 0 1 0 1.48l-1.13.14a3.25 3.25 0 0 0-2.83 2.83l-.14 1.13a.75.75 0 0 1-1.48 0l-.14-1.13a3.25 3.25 0 0 0-2.83-2.83l-1.13-.14a.75.75 0 0 1 0-1.48l1.13-.14a3.25 3.25 0 0 0 2.83-2.83l.14-1.13A.75.75 0 0 1 16.5 8Zm0 3.77a4.76 4.76 0 0 1-1.73 1.73 4.76 4.76 0 0 1 1.73 1.73 4.76 4.76 0 0 1 1.73-1.73 4.76 4.76 0 0 1-1.73-1.73Z"]));
907
- exports.TextHanging20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging20Filled', "20", ["M16.25 3.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1 0-1.5h12.5Zm-5 10a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h7.5ZM12 9.25a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0 0 1.5h7.5c.41 0 .75-.34.75-.75Zm3.72 1.47a.75.75 0 1 1 1.06 1.06l-.97.97.97.97a.75.75 0 1 1-1.06 1.06l-1.5-1.5a.75.75 0 0 1 0-1.06l1.5-1.5Z"]));
908
- exports.TextHanging20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging20Regular', "20", ["M16.5 4a.5.5 0 0 1 0 1h-13a.5.5 0 0 1 0-1h13Zm-4 10a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1h9Zm.5-4.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0 0 1h9a.5.5 0 0 0 .5-.5Zm2.15 2.15 1.5-1.5a.5.5 0 0 1 .7.7L16.21 12l1.14 1.15a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7Z"]));
909
- exports.TextHanging24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging24Filled', "24", ["M21 5a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-7 12a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h11Zm1-5a1 1 0 0 0-1-1H3a1 1 0 1 0 0 2h11a1 1 0 0 0 1-1Zm4.3 1.3a1 1 0 0 1 1.4 1.4L19.42 16l1.3 1.3a1 1 0 0 1-1.42 1.4l-2-2a1 1 0 0 1 0-1.4l2-2Z"]));
910
- exports.TextHanging24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging24Regular', "24", ["M21.25 5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5h18.5Zm-7 13a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5h11.5Zm.75-5.75a.75.75 0 0 0-.75-.75H2.75a.75.75 0 0 0 0 1.5h11.5c.41 0 .75-.34.75-.75Zm5.22.72a.75.75 0 1 1 1.06 1.06l-1.47 1.47 1.47 1.47a.75.75 0 1 1-1.06 1.06l-2-2a.75.75 0 0 1 0-1.06l2-2Z"]));
907
+ exports.TextHanging20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging20Filled', "20", ["M3.75 3.5a.75.75 0 0 0 0 1.5h12.5a.75.75 0 0 0 0-1.5H3.75Zm5 10a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5ZM8 9.25c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 8 9.25Zm-3.72 1.47a.75.75 0 0 0-1.06 1.06l.97.97-.97.97a.75.75 0 1 0 1.06 1.06l1.5-1.5c.3-.3.3-.77 0-1.06l-1.5-1.5Z"]));
908
+ exports.TextHanging20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging20Regular', "20", ["M3.5 4a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13Zm4 10a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9ZM7 9.5c0-.28.22-.5.5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5Zm-2.15 2.15-1.5-1.5a.5.5 0 0 0-.7.7L3.79 12l-1.14 1.15a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7Z"]));
909
+ exports.TextHanging24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging24Filled', "24", ["M3 5a1 1 0 0 0 0 2h18a1 1 0 1 0 0-2H3Zm7 12a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H10Zm-1-5a1 1 0 0 1 1-1h11a1 1 0 1 1 0 2H10a1 1 0 0 1-1-1Zm-4.3 1.3a1 1 0 0 0-1.4 1.4L4.58 16l-1.3 1.3a1 1 0 1 0 1.42 1.4l2-2a1 1 0 0 0 0-1.4l-2-2Z"]));
910
+ exports.TextHanging24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHanging24Regular', "24", ["M2.75 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5H2.75Zm7 13a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5H9.75ZM9 12.25c0-.41.34-.75.75-.75h11.5a.75.75 0 0 1 0 1.5H9.75a.75.75 0 0 1-.75-.75Zm-5.22.72a.75.75 0 0 0-1.06 1.06l1.47 1.47-1.47 1.47a.75.75 0 1 0 1.06 1.06l2-2c.3-.3.3-.77 0-1.06l-2-2Z"]));
911
911
  exports.TextHeader120Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHeader120Filled', "20", ["M9.25 4c.41 0 .75.34.75.75v10.5a.75.75 0 0 1-1.5 0V10.5h-5v4.75a.75.75 0 0 1-1.5 0V4.75a.75.75 0 0 1 1.5 0V9h5V4.75c0-.41.34-.75.75-.75Zm7.11 0c.37.06.64.38.64.75v10.5a.75.75 0 0 1-1.5 0V7.46a9.48 9.48 0 0 1-1.81 1.65l-.07.04a.75.75 0 0 1-.8-1.27l.4-.28a7.73 7.73 0 0 0 2.3-3.01l.01-.06c.11-.35.46-.58.83-.52Z"]));
912
912
  exports.TextHeader120Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHeader120Regular', "20", ["M16.55 4a.5.5 0 0 1 .45.5v11a.5.5 0 0 1-1 0V6.73a8.58 8.58 0 0 1-2.22 2.19.5.5 0 1 1-.56-.84 6.76 6.76 0 0 0 2.83-3.8.5.5 0 0 1 .5-.28ZM2.5 4c.28 0 .5.22.5.5V9h6V4.5a.5.5 0 1 1 1 0v11a.5.5 0 0 1-1 0V10H3v5.5a.5.5 0 0 1-1 0v-11c0-.28.22-.5.5-.5Z"]));
913
913
  exports.TextHeader124Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextHeader124Filled', "24", ["M20.18 5.02A1 1 0 0 1 21 6.03V18a1 1 0 1 1-2 0V9.61a5.66 5.66 0 0 1-2.18 1.34 1 1 0 0 1-.64-1.9c1.13-.37 2.19-1.33 2.86-3.34a1 1 0 0 1 1.14-.7ZM3 5a1 1 0 0 1 1 1v5h6V6a1 1 0 1 1 2 0v12a1 1 0 1 1-2 0v-5H4v5a1 1 0 1 1-2 0V6a1 1 0 0 1 1-1Z"]));
@@ -1132,12 +1132,12 @@ exports.TextNumberListRtlRotate27020Filled = ( /*#__PURE__*/createFluentIcon_1.c
1132
1132
  exports.TextNumberListRtlRotate27020Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextNumberListRtlRotate27020Regular', "20", ["M1.01 4.4A.5.5 0 0 1 1.5 4h4a.5.5 0 1 1 0 1H2.92c.2.22.38.48.53.78a.5.5 0 1 1-.9.45 2.96 2.96 0 0 0-1.15-1.2 2.07 2.07 0 0 0-.12-.08A.5.5 0 0 1 1 4.4Zm7.34 1.96a.5.5 0 0 1-.7 0h-.01v-.02a1.38 1.38 0 0 1-.11-.12A2.5 2.5 0 0 1 7 4.7c0-.38.1-.79.35-1.12a1.4 1.4 0 0 1 1.15-.56c.55 0 .93.24 1.2.57a4.2 4.2 0 0 1 .56.95c.16.31.3.55.47.72.08.06.16.12.27.17V3.5a.5.5 0 1 1 1 0V6a.5.5 0 0 1-.5.5c-.62 0-1.08-.2-1.44-.53a3.32 3.32 0 0 1-.77-1.14c-.13-.28-.23-.47-.35-.62A.5.5 0 0 0 8.5 4c-.18 0-.28.06-.35.16a.93.93 0 0 0-.15.52 1.5 1.5 0 0 0 .35.96c.2.2.2.51 0 .7ZM15 4.76a.5.5 0 0 0 1 0c0-.35.1-.54.18-.63.09-.1.2-.13.3-.13.2 0 .52.19.52.76 0 .4-.1.62-.17.72a.42.42 0 0 1-.07.09.5.5 0 0 0 .46.88h.01l.02-.01a.8.8 0 0 0 .15-.1c.08-.07.17-.17.27-.3.18-.29.33-.7.33-1.28 0-1.03-.67-1.73-1.48-1.76-.37-.01-.74.12-1.02.4a1.37 1.37 0 0 0-1.02-.4c-.8.03-1.48.73-1.48 1.76 0 .58.15 1 .33 1.27a1.4 1.4 0 0 0 .42.4l.01.02h.01a.5.5 0 0 0 .48-.88.42.42 0 0 1-.08-.1c-.07-.09-.17-.3-.17-.71 0-.57.33-.75.52-.76.1 0 .21.03.3.13.08.1.18.28.18.63Zm-.75.81h-.02v-.01l.02.01ZM9.5 18a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 1 1 0v8a.5.5 0 0 1-.5.5Zm-5 0a.5.5 0 0 1-.5-.5v-8a.5.5 0 0 1 1 0v8a.5.5 0 0 1-.5.5Zm9.5-.5a.5.5 0 0 0 1 0v-8a.5.5 0 0 0-1 0v8Z"]));
1133
1133
  exports.TextNumberListRtlRotate27024Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextNumberListRtlRotate27024Filled', "24", ["M2.75 4a.75.75 0 0 0-.3 1.43 1.42 1.42 0 0 1 .13.07c.1.05.23.13.38.24.32.22.66.52.9.9a.75.75 0 1 0 1.28-.79 3.96 3.96 0 0 0-.25-.35h2.36a.75.75 0 1 0 0-1.5h-4.5ZM18 11v8.62a1 1 0 0 0 2-.12v-8.62a1 1 0 0 0-2 .12Zm-6.5 0v8.62a1 1 0 0 0 2-.12v-8.62a1 1 0 0 0-2 .12ZM6 10a1 1 0 0 0-1 1v8.62a1 1 0 0 0 2-.12v-8.62A1 1 0 0 0 6 10Zm4.52-5.15c-.05.3.07.68.26.87a.75.75 0 0 1-1.06 1.06 2.57 2.57 0 0 1-.68-2.2c.07-.39.26-.8.6-1.1A2 2 0 0 1 11 3c.62 0 1.08.27 1.42.6.28.28.51.64.69.91l.05.08c.13.2.24.36.34.48V3.75a.75.75 0 0 1 1.5 0v2.5c0 .41-.34.75-.75.75-1.31 0-1.95-.98-2.34-1.58l-.04-.06a4.2 4.2 0 0 0-.5-.68c-.14-.14-.24-.18-.37-.18-.22 0-.32.06-.36.1a.42.42 0 0 0-.12.25Zm10.76 2.18s.08-.1 0 0l.01-.01.01-.01a1.4 1.4 0 0 0 .13-.15A3.24 3.24 0 0 0 22 5c0-.64-.18-1.2-.54-1.6-.36-.4-.86-.61-1.36-.6-.42.02-.8.17-1.1.43a1.73 1.73 0 0 0-2.46.17c-.36.4-.54.96-.54 1.6a3.24 3.24 0 0 0 .57 1.86 1.95 1.95 0 0 0 .13.15l.01.01.01.01a.75.75 0 1 0 1.05-1.07A1.75 1.75 0 0 1 17.5 5c0-.36.1-.54.16-.6a.23.23 0 0 1 .2-.1c.06 0 .14.04.22.13.08.09.17.26.17.57a.75.75 0 0 0 1.5 0c0-.31.1-.48.17-.57.08-.1.16-.12.23-.13.06 0 .13.02.19.1.06.06.16.24.16.6a1.75 1.75 0 0 1-.27.96.75.75 0 1 0 1.05 1.07Zm-4.56 0Z"]));
1134
1134
  exports.TextNumberListRtlRotate27024Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextNumberListRtlRotate27024Regular', "24", ["M2.75 4a.75.75 0 0 0-.3 1.43 1.42 1.42 0 0 1 .13.07c.1.05.23.13.38.24.32.22.66.52.9.9a.75.75 0 1 0 1.28-.79 3.96 3.96 0 0 0-.25-.35h2.36a.75.75 0 1 0 0-1.5h-4.5Zm16 6a.75.75 0 0 0-.75.75v9a.75.75 0 0 0 1.5 0v-9a.75.75 0 0 0-.75-.75Zm-6.5 0a.75.75 0 0 0-.76.75v9a.75.75 0 0 0 1.5 0v-9a.75.75 0 0 0-.75-.75Zm-6.5 0a.75.75 0 0 0-.75.75v9a.75.75 0 0 0 1.5 0v-9a.75.75 0 0 0-.75-.75Zm4.77-5.15c-.05.3.07.68.26.87a.75.75 0 0 1-1.06 1.06 2.57 2.57 0 0 1-.68-2.2c.07-.39.26-.8.6-1.1A2 2 0 0 1 11 3c.62 0 1.08.27 1.42.6.28.28.51.64.69.91l.05.08c.13.2.24.36.34.48V3.75a.75.75 0 0 1 1.5 0v2.5c0 .41-.34.75-.75.75-1.31 0-1.95-.98-2.34-1.58l-.04-.06a4.2 4.2 0 0 0-.5-.68c-.14-.14-.24-.18-.37-.18-.22 0-.32.06-.36.1a.42.42 0 0 0-.12.25Zm10.76 2.18s.08-.1 0 0l.01-.01.01-.01a1.4 1.4 0 0 0 .13-.15A3.24 3.24 0 0 0 22 5c0-.64-.18-1.2-.54-1.6-.36-.4-.86-.61-1.36-.6-.42.02-.8.17-1.1.43a1.73 1.73 0 0 0-2.46.17c-.36.4-.54.96-.54 1.6a3.24 3.24 0 0 0 .57 1.86 1.95 1.95 0 0 0 .13.15l.01.01.01.01a.75.75 0 1 0 1.05-1.07A1.75 1.75 0 0 1 17.5 5c0-.36.1-.54.16-.6a.23.23 0 0 1 .2-.1c.06 0 .14.04.22.13.08.09.17.26.17.57a.75.75 0 0 0 1.5 0c0-.31.1-.48.17-.57.08-.1.16-.12.23-.13.06 0 .13.02.19.1.06.06.16.24.16.6a1.75 1.75 0 0 1-.27.96.75.75 0 1 0 1.05 1.07Zm-4.56 0Z"]));
1135
- exports.TextParagraph16Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph16Filled', "16", ["M2 3.5c0-.28.22-.5.5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5Zm10 10a.5.5 0 0 1-1 0V11a3 3 0 1 1 0-6h3.5a.5.5 0 0 1 0 1H14v7.5a.5.5 0 0 1-1 0V6h-1v7.5ZM2.5 6h5.04c-.18.31-.32.65-.41 1H2.5a.5.5 0 0 1 0-1Zm5.04 4a3.98 3.98 0 0 1-.41-1H2.5a.5.5 0 0 0 0 1h5.04Z"]));
1136
- exports.TextParagraph16Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph16Regular', "16", ["M2.5 3a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1h-11Zm9 11a.5.5 0 0 0 .5-.5V6h1v7.5a.5.5 0 0 0 1 0V6h.5a.5.5 0 0 0 0-1H11a3 3 0 1 0 0 6v2.5c0 .28.22.5.5.5ZM10 6.27A2 2 0 0 1 11 6v4a2 2 0 0 1-2-2 2 2 0 0 1 1-1.73ZM7.54 6H2.5a.5.5 0 0 0 0 1h4.63c.09-.35.23-.69.4-1Zm-.41 3c.09.35.23.69.4 1H2.5a.5.5 0 0 1 0-1h4.63Z"]));
1137
- exports.TextParagraph20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph20Filled', "20", ["M13.5 7a3.5 3.5 0 1 0 0 7h.5v3.5a.5.5 0 0 0 1 0V8h1v9.5a.5.5 0 0 0 1 0V8h.5a.5.5 0 0 0 0-1h-4Zm-11-2a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm6.76 4H2.5a.5.5 0 0 0 0 1h6.53c.04-.35.11-.68.23-1Zm.5 4H2.5a.5.5 0 0 0 0 1h8.17a4.53 4.53 0 0 1-.91-1Z"]));
1138
- exports.TextParagraph20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph20Regular', "20", ["M13.5 8a2.5 2.5 0 0 0 0 5h.5V8h-.5Zm.5 6h-.5a3.5 3.5 0 1 1 0-7h4a.5.5 0 0 1 0 1H17v9.5a.5.5 0 0 1-1 0V8h-1v9.5a.5.5 0 0 1-1 0V14ZM2.5 5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm6.76 4H2.5a.5.5 0 0 0 0 1h6.53c.04-.35.11-.68.23-1Zm.5 4H2.5a.5.5 0 0 0 0 1h8.17a4.53 4.53 0 0 1-.91-1Z"]));
1139
- exports.TextParagraph24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph24Filled', "24", ["M12.25 12.25C12.25 9.9 14.15 8 16.5 8h4.75a.75.75 0 0 1 0 1.5H21v11.75a.75.75 0 0 1-1.5 0V9.5h-1v11.75a.75.75 0 0 1-1.5 0V16.5h-.5a4.25 4.25 0 0 1-4.25-4.25ZM2 5.75c0-.41.34-.75.75-.75h18.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 5.75Zm0 5c0-.41.34-.75.75-.75h9c-.22.47-.37.97-.45 1.5H2.75a.75.75 0 0 1-.75-.75ZM2.75 15h9.28c.36.59.83 1.1 1.39 1.5H2.75a.75.75 0 0 1 0-1.5Z"]));
1140
- exports.TextParagraph24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph24Regular', "24", ["M16.5 8a4.25 4.25 0 0 0 0 8.5h.5v4.75a.75.75 0 0 0 1.5 0V9.5h1v11.75a.75.75 0 0 0 1.5 0V9.5h.25a.75.75 0 0 0 0-1.5H16.5Zm0 1.5h.5V15h-.5a2.75 2.75 0 1 1 0-5.5ZM2.75 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5H2.75Zm0 5a.75.75 0 0 0 0 1.5h8.55c.08-.53.23-1.03.46-1.5H2.75Zm9.28 5H2.75a.75.75 0 0 0 0 1.5h10.67a5.28 5.28 0 0 1-1.4-1.5Z"]));
1135
+ exports.TextParagraph16Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph16Filled', "16", ["M13.25 2a.75.75 0 0 0-.75.75v2c0 .41-.34.75-.75.75H9.56l.72-.72a.75.75 0 1 0-1.06-1.06l-2 2c-.3.3-.3.77 0 1.06l2 2a.75.75 0 1 0 1.06-1.06L9.56 7h2.19C12.99 7 14 6 14 4.75v-2a.75.75 0 0 0-.75-.75ZM5.72 8.22c.3-.3.77-.3 1.06 0l2 2c.3.3.3.77 0 1.06l-2 2a.75.75 0 0 1-1.06-1.06l.72-.72H1.75a.75.75 0 0 1 0-1.5h4.69l-.72-.72a.75.75 0 0 1 0-1.06Z"]));
1136
+ exports.TextParagraph16Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph16Regular', "16", ["M13.5 2a.5.5 0 0 0-.5.5V5a1 1 0 0 1-1 1H8.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 1 0 .7-.7L8.71 7H12a2 2 0 0 0 2-2V2.5a.5.5 0 0 0-.5-.5ZM5.65 8.15c.2-.2.5-.2.7 0l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L6.79 11H1.5a.5.5 0 0 1 0-1h5.3L5.64 8.85a.5.5 0 0 1 0-.7Z"]));
1137
+ exports.TextParagraph20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph20Filled', "20", ["M17.25 2c.41 0 .75.34.75.75v2.5A2.75 2.75 0 0 1 15.25 8h-3.8l1.36 1.5a.75.75 0 0 1-1.12 1L9.2 7.75a.75.75 0 0 1 0-1L11.7 4a.75.75 0 0 1 1.12 1l-1.36 1.5h3.8c.69 0 1.25-.56 1.25-1.25v-2.5c0-.41.34-.75.75-.75ZM8.3 9.5a.75.75 0 1 0-1.1 1L8.55 12h-5.8a.75.75 0 0 0 0 1.5h5.8L7.2 15a.75.75 0 0 0 1.1 1l2.5-2.75a.75.75 0 0 0 0-1L8.3 9.5Z"]));
1138
+ exports.TextParagraph20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph20Regular', "20", ["M12.15 10.85a.5.5 0 0 0 .7-.7L10.71 8h4.79A2.5 2.5 0 0 0 18 5.5v-3s0-.5-.5-.5-.5.5-.5.5v3c0 .83-.67 1.5-1.5 1.5h-4.8l2.15-2.15a.5.5 0 0 0-.7-.7l-3 3a.5.5 0 0 0 0 .7l3 3Zm-4.3-1.7a.5.5 0 1 0-.7.7L9.29 12H2.5s-.5 0-.5.5.5.5.5.5h6.8l-2.15 2.15a.5.5 0 0 0 .7.7l3-3a.5.5 0 0 0 0-.7l-3-3Z"]));
1139
+ exports.TextParagraph24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph24Filled', "24", ["M21 2a1 1 0 0 1 1 1v4a3 3 0 0 1-3 3h-4.59l2.3 2.3a1 1 0 0 1-1.42 1.4l-4-4a1 1 0 0 1 0-1.4l4-4a1 1 0 1 1 1.42 1.4L14.4 8H19a1 1 0 0 0 1-1V3a1 1 0 0 1 1-1ZM7.3 11.3a1 1 0 0 0 0 1.4L9.58 15H3a1 1 0 1 0 0 2h6.59l-2.3 2.3a1 1 0 1 0 1.42 1.4l4-4A1 1 0 0 0 13 16a1 1 0 0 0-.3-.71l-4-4a1 1 0 0 0-1.4 0Z"]));
1140
+ exports.TextParagraph24Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraph24Regular', "24", ["M21.25 2c.41 0 .75.34.75.75v4a2.75 2.75 0 0 1-2.75 2.75h-5.69l2.72 2.72a.75.75 0 1 1-1.06 1.06l-4-4a.75.75 0 0 1 0-1.06l4-4a.75.75 0 1 1 1.06 1.06L13.56 8h5.69c.69 0 1.25-.56 1.25-1.25v-4c0-.41.34-.75.75-.75ZM7.72 11.22c-.3.3-.3.77 0 1.06L10.44 15H2.75a.75.75 0 0 0 0 1.5h7.69l-2.72 2.72a.75.75 0 1 0 1.06 1.06l4-4c.3-.3.3-.77 0-1.06l-4-4a.75.75 0 0 0-1.06 0Z"]));
1141
1141
  exports.TextParagraphDirection20Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphDirection20Filled', "20", ["M11.5 3a4 4 0 1 0 0 8H13v6.5a.5.5 0 0 0 1 0V4h1v13.5a.5.5 0 0 0 1 0V4h.5a.5.5 0 0 0 0-1h-5ZM3.15 5.65c.2-.2.5-.2.7 0l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L4.79 8 3.15 6.35a.5.5 0 0 1 0-.7Zm2.7 6a.5.5 0 0 0-.7 0l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L4.21 14l1.64-1.65a.5.5 0 0 0 0-.7Z"]));
1142
1142
  exports.TextParagraphDirection20Regular = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphDirection20Regular', "20", ["M11.5 3a4 4 0 1 0 0 8H13v6.5a.5.5 0 0 0 1 0V4h1v13.5a.5.5 0 0 0 1 0V4h.5a.5.5 0 0 0 0-1h-5ZM13 4v6h-1.5a3 3 0 0 1 0-6H13ZM3.15 5.65c.2-.2.5-.2.7 0l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L4.79 8 3.15 6.35a.5.5 0 0 1 0-.7Zm2.7 6a.5.5 0 0 0-.7 0l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L4.21 14l1.64-1.65a.5.5 0 0 0 0-.7Z"]));
1143
1143
  exports.TextParagraphDirection24Filled = ( /*#__PURE__*/createFluentIcon_1.createFluentIcon('TextParagraphDirection24Filled', "24", ["M13.5 3a5.5 5.5 0 1 0 0 11H15v7.2c0 .45.34.8.75.8s.75-.35.75-.8V4.5H18v16.7c0 .45.34.8.75.8s.75-.35.75-.8V4.5h.67c.47-.06.83-.37.83-.75 0-.41-.43-.75-.95-.75H13.5Zm-9.42 8.86a.67.67 0 0 1-.9-.99L4.9 9 3.18 7.13l-.06-.08a.67.67 0 0 1 1.03-.84L6.3 8.54l.06.08c.18.26.16.6-.06.84l-2.15 2.33-.07.07Zm1.32 8a.67.67 0 0 0 .9-.99L4.59 17l1.7-1.87.07-.08a.67.67 0 0 0-1.03-.84l-2.15 2.33-.06.08c-.18.26-.16.6.06.84l2.15 2.33.07.07Z"]));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-icons",
3
- "version": "2.0.323",
3
+ "version": "2.0.324-alpha.1",
4
4
  "sideEffects": false,
5
5
  "main": "lib-cjs/index.js",
6
6
  "module": "lib/index.js",
@@ -14,8 +14,8 @@
14
14
  "scripts": {
15
15
  "clean": "git clean -fXd lib/ lib-cjs/ intermediate/ src/ tmp/",
16
16
  "generate:assets-to-svg": "node ../../importer/generate.js --source=../../assets --dest=./intermediate --extension=svg --target=react",
17
- "convert:svg": "node convert.js --source=./intermediate --dest=./src --perIconDest=./src/atoms/svg --spriteDest=./src/atoms/svg-sprite --rtl=./intermediate/rtl.json --metadata=./tmp/metadata-svg.json",
18
- "convert:fonts": "node convert-font.js --source=./src/utils/fonts --dest=./src/fonts --perIconDest=./src/atoms/fonts --codepointDest=./src/utils/fonts --rtl=./intermediate/rtl.json --metadata=./tmp/metadata-font.json",
17
+ "convert:svg": "node convert.js --source=./intermediate --dest=./src --perIconDest=./src/atoms/svg --spriteDest=./src/atoms/svg-sprite --headlessPerIconDest=./src/atoms/base-svg --headlessSpriteDest=./src/atoms/base-svg-sprite --rtl=./intermediate/rtl.json --metadata=./tmp/metadata-svg.json",
18
+ "convert:fonts": "node convert-font.js --source=./src/utils/fonts --dest=./src/fonts --perIconDest=./src/atoms/fonts --headlessPerIconDest=./src/atoms/base-fonts --codepointDest=./src/utils/fonts --rtl=./intermediate/rtl.json --metadata=./tmp/metadata-font.json",
19
19
  "convert:merge-metadata": "node merge-metadata.js --svgMetadata=./tmp/metadata-svg.json --fontMetadata=./tmp/metadata-font.json --output=./metadata.json",
20
20
  "generate:font-regular": "node ../../importer/generateFont.js --source=intermediate --dest=src/utils/fonts --iconType=Regular --codepoints=../../fonts/FluentSystemIcons-Regular.json",
21
21
  "generate:font-filled": "node ../../importer/generateFont.js --source=intermediate --dest=src/utils/fonts --iconType=Filled --codepoints=../../fonts/FluentSystemIcons-Filled.json",
@@ -30,10 +30,10 @@
30
30
  "build:js": "node build.js",
31
31
  "prebuild": "npm run clean",
32
32
  "build": "npm run build:fonts-and-svg && npm run build:generate-chunks-and-atoms && npm run build:js",
33
- "build-verify": "vitest run build-verify.test.js",
33
+ "build-verify": "vitest run build-verify.test.js build-transforms.test.js",
34
34
  "bundle-size": "monosize measure",
35
35
  "lint": "eslint src",
36
- "test": "vitest --exclude build-verify.test.js",
36
+ "test": "vitest --exclude build-verify.test.js --exclude build-transforms.test.js",
37
37
  "type-check:infra": "../../node_modules/.bin/tsc -p tsconfig.utils.json"
38
38
  },
39
39
  "devDependencies": {
@@ -45,7 +45,7 @@
45
45
  "eslint": "8.57.1",
46
46
  "eslint-plugin-react-hooks": "^5.2.0",
47
47
  "glob": "^7.2.0",
48
- "lodash": "^4.17.21",
48
+ "lodash": "4.18.1",
49
49
  "mkdirp": "^1.0.4",
50
50
  "renamer": "^2.0.1",
51
51
  "svgo": "2.8.2",
@@ -61,6 +61,8 @@
61
61
  "react": ">=16.8.0 <20.0.0"
62
62
  },
63
63
  "files": [
64
+ "docs/preview-features/*.md",
65
+ "docs/build-transforms.md",
64
66
  "lib/",
65
67
  "lib-cjs/"
66
68
  ],