first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,17 @@
import type { IIconStyleProps, IIconStyles } from './Icon.types';
/** Class names used in themeable and non-themeable Icon components */
export declare const classNames: import("@fluentui/merge-styles/lib/IStyleSet").IProcessedStyleSet<{
root: {
display: string;
textDecoration: string;
};
placeholder: (string | {
width: string;
})[];
image: (string | {
overflow: string;
})[];
}>;
/** Class name used only in non-themeable Icon components */
export declare const MS_ICON = "ms-Icon";
export declare const getStyles: (props: IIconStyleProps) => IIconStyles;