Private
Public Access
1
0

feat: Fluent UI Outlook Lite + connections mockup

This commit is contained in:
2026-04-14 18:52:25 +00:00
parent 1199eff6c3
commit dfa4010406
34820 changed files with 1003813 additions and 205 deletions

View File

@@ -0,0 +1,15 @@
/** Base data attribute applied to all icons (SVG and font). */
export declare const DATA_FUI_ICON = "data-fui-icon";
/** Data attribute applied to icons that should flip in RTL text direction. */
export declare const DATA_FUI_ICON_RTL = "data-fui-icon-rtl";
/** Data attribute applied to the inactive variant in a bundled icon pair. */
export declare const DATA_FUI_ICON_HIDDEN = "data-fui-icon-hidden";
/** Data attribute for font icon font-family variant selection (filled|regular|resizable|light). */
export declare const DATA_FUI_ICON_FONT = "data-fui-icon-font";
export { iconClassName, iconFilledClassName, iconRegularClassName, iconLightClassName, iconColorClassName, fontIconClassName, } from '../utils/constants';
export type { FluentIconsProps } from '../utils/FluentIconsProps.types';
export type { FluentIcon, CreateFluentIconOptions } from './createFluentIcon';
/**
* Joins class name strings, filtering out falsy values.
*/
export declare function cx(...classes: (string | false | undefined | null)[]): string | undefined;