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

19
node_modules/@fluentui/react-icons/lib/base/shared.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
// Data attribute names used by base icons for CSS targeting.
// The shipped base.css file uses these attribute selectors for styling.
/** Base data attribute applied to all icons (SVG and font). */
export const DATA_FUI_ICON = 'data-fui-icon';
/** Data attribute applied to icons that should flip in RTL text direction. */
export const DATA_FUI_ICON_RTL = 'data-fui-icon-rtl';
/** Data attribute applied to the inactive variant in a bundled icon pair. */
export const DATA_FUI_ICON_HIDDEN = 'data-fui-icon-hidden';
/** Data attribute for font icon font-family variant selection (filled|regular|resizable|light). */
export const DATA_FUI_ICON_FONT = 'data-fui-icon-font';
// Re-export existing constants (CSS class names for consumer targeting)
export { iconClassName, iconFilledClassName, iconRegularClassName, iconLightClassName, iconColorClassName, fontIconClassName, } from '../utils/constants';
/**
* Joins class name strings, filtering out falsy values.
*/
export function cx(...classes) {
const result = classes.filter(Boolean).join(' ');
return result || undefined;
}